project.pbxproj 375 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  10. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  11. 2C1D5D7723E2DE5F00334ABB /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  12. 2C1D5D7823E2DE6A00334ABB /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  13. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  14. 2C1D5D7A23E2DEBF00334ABB /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  15. 2C1D5D7B23E2DED200334ABB /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  16. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C33C48123E2C475005F963B /* NotificationService.swift */; };
  17. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  18. 2C59AC5823E2DFEE00733BE8 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  19. 2C59AC5923E2E00F00733BE8 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  20. 2C59AC5A23E2E01A00733BE8 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  21. 2C59AC5B23E2E02700733BE8 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  22. 2C59AC5C23E2E03400733BE8 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  23. 2CB7D1C923E2E40B00376EF9 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  24. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  25. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3704EB2923D5A58400455C5B /* NCMenu.storyboard */; };
  26. 371B5A2E23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */; };
  27. 371B5A3323D0BD5500FAFAE9 /* FloatingPanel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */; };
  28. 3757A35523D9D76300EC369E /* NCMenuPanelController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */; };
  29. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */; };
  30. 3781B9B223DB2B9F006B4B1D /* CCMain+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */; };
  31. 3781B9B423DB2BC9006B4B1D /* CCFavorites+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */; };
  32. 37ECC83B23D0C7410082EFA2 /* NCMenuAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */; };
  33. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  34. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  35. F70022B31EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  36. F70022B41EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  37. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  38. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  39. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  40. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  41. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  42. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  43. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  44. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  45. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  46. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  47. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  48. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  49. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  50. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  51. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  52. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  53. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  54. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  55. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  56. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  57. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  58. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  59. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  60. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  61. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  62. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  63. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  64. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  65. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  66. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  67. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  68. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  69. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  70. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  71. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  72. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  73. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  74. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  75. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F700510022DF63AC003A3356 /* NCShare.storyboard */; };
  76. F700510322DF6897003A3356 /* Parchment.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F700510222DF6897003A3356 /* Parchment.framework */; };
  77. F700510522DF6A89003A3356 /* NCShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = F700510422DF6A89003A3356 /* NCShare.swift */; };
  78. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */; };
  79. F704FA5C232A343F00BBA952 /* IMImagemeterViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */; };
  80. F7063DED2199E55F003F38DA /* SVGKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DEC2199E55F003F38DA /* SVGKit.framework */; };
  81. F7063DEF2199E568003F38DA /* CocoaLumberjack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */; };
  82. F7063DF12199E56F003F38DA /* CocoaLumberjackSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */; };
  83. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = F707C26421A2DC5200F6181E /* NCStoreReview.swift */; };
  84. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  85. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  86. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  87. F70CEF5623E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  88. F70CEF5723E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  89. F70CEF5823E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  90. F70CEF5923E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  91. F70F2BA5225F2D8900EBB73E /* ZIPFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */; };
  92. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
  93. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  94. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  95. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  96. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  97. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 /* ShareViewController.m */; };
  98. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  99. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  100. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  101. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  102. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  103. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  104. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
  105. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  106. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  107. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A181EE590930086BD69 /* NCShares.m */; };
  108. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A1A1EE590930086BD69 /* NCSharesCell.m */; };
  109. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7169A1B1EE590930086BD69 /* NCSharesCell.xib */; };
  110. F716FE7823795E5000FABE50 /* NCCommunication.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F716FE7723795E5000FABE50 /* NCCommunication.framework */; settings = {ATTRIBUTES = (Required, ); }; };
  111. F716FE7A23795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */; };
  112. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  113. F722814323C8C34500C41898 /* NCRichWorkspace.xib in Resources */ = {isa = PBXBuildFile; fileRef = F722814223C8C34500C41898 /* NCRichWorkspace.xib */; };
  114. F72382C02295856A005B8A07 /* FirebaseMLVisionTextModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */; };
  115. F72382C22295856A005B8A07 /* GoogleMVTextDetectorResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */; };
  116. F72382C32295856A005B8A07 /* GoogleToolboxForMac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */; };
  117. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */; };
  118. F7267A82225DFCE100D6DB7D /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7267A81225DFCE100D6DB7D /* AFNetworking.framework */; };
  119. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  120. F72747762382E31600E9B76D /* IMCreate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72747752382E31600E9B76D /* IMCreate.swift */; };
  121. F729B92B217A2E4E00FE2150 /* NCActionSheetHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F729B92A217A2E4E00FE2150 /* NCActionSheetHeaderView.xib */; };
  122. F729B92D217A2F1B00FE2150 /* NCActionSheetHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F729B92C217A2F1B00FE2150 /* NCActionSheetHeaderView.swift */; };
  123. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */; };
  124. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */; };
  125. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  126. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */; };
  127. F72E0B9D21AD60BC00898D7B /* WeScan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72E0B9C21AD60BC00898D7B /* WeScan.framework */; };
  128. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  129. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  130. F733B65221997CC2001C1FFA /* TLPhotoPicker.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */; };
  131. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */; };
  132. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381EDA218218C9000B1560 /* NCOffline.swift */; };
  133. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7381EDE218218C9000B1560 /* NCOffline.storyboard */; };
  134. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */; };
  135. F739513A221B127F00D986C8 /* NCSectionMediaHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */; };
  136. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */; };
  137. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */; };
  138. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */; };
  139. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */; };
  140. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */; };
  141. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */; };
  142. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB41F470D9100BBEE4B /* JISFreq.tab */; };
  143. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */; };
  144. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */; };
  145. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */; };
  146. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */; };
  147. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */; };
  148. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */; };
  149. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */; };
  150. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */; };
  151. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */; };
  152. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */; };
  153. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */; };
  154. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */; };
  155. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */; };
  156. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */; };
  157. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */; };
  158. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */; };
  159. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */; };
  160. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */; };
  161. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */; };
  162. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */; };
  163. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */; };
  164. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */; };
  165. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */; };
  166. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */; };
  167. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */; };
  168. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */; };
  169. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */; };
  170. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */; };
  171. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */; };
  172. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */; };
  173. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */; };
  174. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */; };
  175. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EEA1F470D9100BBEE4B /* symbols.cmake */; };
  176. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */; };
  177. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */; };
  178. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  179. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  180. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  181. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  182. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  183. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  184. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  185. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  186. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  187. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  188. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  189. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  190. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  191. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  192. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  193. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  194. F73D71621F2673C200E233EB /* NCText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D71611F2673C200E233EB /* NCText.swift */; };
  195. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D71631F2674A400E233EB /* NCText.storyboard */; };
  196. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* CCMore.swift */; };
  197. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */; };
  198. F7421EAF2294044B00C4B7C1 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7421EAE2294044B00C4B7C1 /* Accelerate.framework */; };
  199. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  200. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  201. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  202. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  203. F7434B3A20E2403500417916 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  204. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  205. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  206. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  207. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  208. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  209. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  210. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  211. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  212. F7434B4320E2405900417916 /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  213. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  214. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  215. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  216. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  217. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  218. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  219. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  220. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  221. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  222. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  223. F7434B5620E2412900417916 /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  224. F7434B5820E241B100417916 /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  225. F7434B5920E241B600417916 /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  226. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  227. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  228. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  229. F7434B5D20E241E800417916 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  230. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  231. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  232. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  233. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  234. F745B251222D871800346520 /* QRCodeReader.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F745B250222D871800346520 /* QRCodeReader.framework */; };
  235. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F745B252222D88AE00346520 /* NCLoginQRCode.swift */; };
  236. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */; };
  237. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */; };
  238. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10823C4A5330027D966 /* NCIntroViewController.swift */; };
  239. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F749C10923C4A5330027D966 /* NCIntro.storyboard */; };
  240. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */; };
  241. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  242. F74AFCE922E8B025003DE61F /* FSCalendar.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F74AFCE822E8B024003DE61F /* FSCalendar.framework */; };
  243. F74C4FBB2328C3C200A23E25 /* OpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */; };
  244. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  245. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  246. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7501C302212E57400FB1415 /* NCMedia.storyboard */; };
  247. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7501C312212E57400FB1415 /* NCMedia.swift */; };
  248. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 /* ALView+PureLayout.m */; };
  249. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */; };
  250. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */; };
  251. F75153242226920200323DDC /* FastScroll.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75153232226920200323DDC /* FastScroll.framework */; };
  252. F754EEC921772B6100BB1CDF /* DropdownItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC421772B6100BB1CDF /* DropdownItem.swift */; };
  253. F754EECA21772B6100BB1CDF /* DropUpMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC521772B6100BB1CDF /* DropUpMenu.swift */; };
  254. F754EECB21772B6100BB1CDF /* DropdownMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC721772B6100BB1CDF /* DropdownMenu.swift */; };
  255. F754EECC21772B6100BB1CDF /* SectionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC821772B6100BB1CDF /* SectionHeader.swift */; };
  256. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  257. F758B45A212C564000515F55 /* Scan.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 /* Scan.storyboard */; };
  258. F758B45E212C569D00515F55 /* ScanCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 /* ScanCell.swift */; };
  259. F758B460212C56A400515F55 /* ScanCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 /* ScanCollectionView.swift */; };
  260. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  261. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  262. F75A9EE823796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  263. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  264. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */; };
  265. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */; };
  266. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */; };
  267. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */; };
  268. F760F77B21F21F61006B1A73 /* icomoon.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F760F75721F21F61006B1A73 /* icomoon.ttf */; };
  269. F760F77C21F21F61006B1A73 /* StickersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F75821F21F61006B1A73 /* StickersViewController.xib */; };
  270. F760F77D21F21F61006B1A73 /* ColorsCollectionViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */; };
  271. F760F77E21F21F61006B1A73 /* PhotoEditor+Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */; };
  272. F760F77F21F21F61006B1A73 /* PhotoEditor+Controls.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */; };
  273. F760F78021F21F61006B1A73 /* PhotoEditorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */; };
  274. F760F78121F21F61006B1A73 /* PhotoEditor+StickersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */; };
  275. F760F78221F21F61006B1A73 /* PhotoEditor+UITextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */; };
  276. F760F78321F21F61006B1A73 /* UIImageView+Alpha.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */; };
  277. F760F78421F21F61006B1A73 /* ColorCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */; };
  278. F760F78521F21F61006B1A73 /* EmojiCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */; };
  279. F760F78621F21F61006B1A73 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */; };
  280. F760F78721F21F61006B1A73 /* PhotoEditor+Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */; };
  281. F760F78821F21F61006B1A73 /* PhotoCropEditorBorder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */; };
  282. F760F78921F21F61006B1A73 /* UIView+Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76621F21F61006B1A73 /* UIView+Image.swift */; };
  283. F760F78A21F21F61006B1A73 /* UIImage+Size.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76721F21F61006B1A73 /* UIImage+Size.swift */; };
  284. F760F78B21F21F61006B1A73 /* UIImage+Crop.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76821F21F61006B1A73 /* UIImage+Crop.swift */; };
  285. F760F78C21F21F61006B1A73 /* StickersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76921F21F61006B1A73 /* StickersViewController.swift */; };
  286. F760F78D21F21F61006B1A73 /* Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76A21F21F61006B1A73 /* Protocols.swift */; };
  287. F760F78E21F21F61006B1A73 /* PhotoEditor+Drawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */; };
  288. F760F78F21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */; };
  289. F760F79021F21F61006B1A73 /* PhotoCropEditorBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */; };
  290. F760F79121F21F61006B1A73 /* EmojiCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */; };
  291. F760F79221F21F61006B1A73 /* EmojisCollectionViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */; };
  292. F760F79321F21F61006B1A73 /* CropView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77021F21F61006B1A73 /* CropView.swift */; };
  293. F760F79421F21F61006B1A73 /* ResizeControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77121F21F61006B1A73 /* ResizeControl.swift */; };
  294. F760F79521F21F61006B1A73 /* PhotoEditor+Gestures.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */; };
  295. F760F79621F21F61006B1A73 /* PhotoEditorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */; };
  296. F760F79721F21F61006B1A73 /* StickerCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */; };
  297. F760F79821F21F61006B1A73 /* StickerCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */; };
  298. F760F79921F21F61006B1A73 /* CropViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77621F21F61006B1A73 /* CropViewController.swift */; };
  299. F760F79A21F21F61006B1A73 /* PhotoEditor+Crop.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */; };
  300. F760F79B21F21F61006B1A73 /* ColorCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */; };
  301. F760F79C21F21F61006B1A73 /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77921F21F61006B1A73 /* GradientView.swift */; };
  302. F760F79D21F21F61006B1A73 /* CropRectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77A21F21F61006B1A73 /* CropRectView.swift */; };
  303. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA41EACB66200B38484 /* XLFormBaseCell.m */; };
  304. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA61EACB66200B38484 /* XLFormButtonCell.m */; };
  305. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA81EACB66200B38484 /* XLFormCheckCell.m */; };
  306. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAA1EACB66200B38484 /* XLFormDateCell.m */; };
  307. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */; };
  308. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAF1EACB66200B38484 /* XLFormImageCell.m */; };
  309. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */; };
  310. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */; };
  311. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB61EACB66200B38484 /* XLFormPickerCell.m */; };
  312. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */; };
  313. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */; };
  314. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABC1EACB66200B38484 /* XLFormSliderCell.m */; };
  315. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */; };
  316. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */; };
  317. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */; };
  318. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */; };
  319. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */; };
  320. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */; };
  321. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACC1EACB66200B38484 /* XLFormViewController.m */; };
  322. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACF1EACB66200B38484 /* XLFormDescriptor.m */; };
  323. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */; };
  324. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */; };
  325. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */; };
  326. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */; };
  327. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */; };
  328. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */; };
  329. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */; };
  330. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */; };
  331. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */; };
  332. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */; };
  333. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */; };
  334. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEA1EACB66200B38484 /* XLFormTextView.m */; };
  335. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */; };
  336. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */; };
  337. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF11EACB66200B38484 /* XLFormValidator.m */; };
  338. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF41EACB66200B38484 /* XLForm.m */; };
  339. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F762CAF51EACB66200B38484 /* XLForm.bundle */; };
  340. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */; };
  341. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */; };
  342. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */; };
  343. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */; };
  344. F765608723BF806D00765969 /* QuickLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F765608623BF806C00765969 /* QuickLayout.framework */; };
  345. F765608B23BF80A400765969 /* SwiftEntryKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F765608A23BF80A400765969 /* SwiftEntryKit.framework */; };
  346. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  347. F765609023BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  348. F765609123BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  349. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  350. F76673EE22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  351. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EF22C90433007ED366 /* FileProviderUtility.swift */; };
  352. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */; };
  353. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453B22E9CFFF000A798A /* NCShareUserCell.xib */; };
  354. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */; };
  355. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769453F22E9F077000A798A /* NCSharePaging.swift */; };
  356. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */; };
  357. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454322E9F142000A798A /* NCShareUserMenuView.swift */; };
  358. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454522E9F1B0000A798A /* NCShareCommon.swift */; };
  359. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454722E9F20D000A798A /* NCShareNetworking.swift */; };
  360. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  361. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  362. F76C6F8E21943C8C0063591B /* NCActionSheetHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76C6F8D21943C8C0063591B /* NCActionSheetHeader.swift */; };
  363. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  364. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  365. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  366. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  367. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  368. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  369. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  370. F774264122EB3F7300B23912 /* DropDown.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F774264022EB3F7300B23912 /* DropDown.framework */; };
  371. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */; };
  372. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F322281649000D5EB0 /* NCGridMediaCell.swift */; };
  373. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F77444F422281649000D5EB0 /* NCGridMediaCell.xib */; };
  374. F77444F8222816D5000D5EB0 /* NCPhotosPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */; };
  375. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */; };
  376. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */; };
  377. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */; };
  378. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */; };
  379. F77B0DF41D118A16002130FE /* CCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E /* CCMain.m */; };
  380. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  381. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  382. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  383. F77B0E141D118A16002130FE /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  384. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  385. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  386. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 /* CCManageLocation.m */; };
  387. F77B0E301D118A16002130FE /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  388. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  389. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D0E65F1BC5042E008D989A /* CCDetail.m */; };
  390. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  391. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
  392. F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  393. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  394. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
  395. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  396. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  397. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  398. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
  399. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  400. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
  401. F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
  402. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
  403. F77B0F481D118A16002130FE /* synchronized.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 /* synchronized.gif */; };
  404. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 /* synchronizedcrypto.gif */; };
  405. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  406. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  407. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  408. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E /* CCCellMain.xib */; };
  409. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */; };
  410. F77D49A91DC238E500CDC568 /* loading.gif in Resources */ = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 /* loading.gif */; };
  411. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  412. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  413. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  414. F781996922636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  415. F781996A22636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  416. F781996B22636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  417. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  418. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F787704E22E7019900F287A9 /* NCShareLinkCell.xib */; };
  419. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */; };
  420. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */; };
  421. F78AA20621F783E900D0F205 /* SwiftRichString.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F78AA20521F783E900D0F205 /* SwiftRichString.framework */; };
  422. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  423. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  424. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  425. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  426. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell.swift */; };
  427. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4921903F850088454D /* NCTrashListCell.xib */; };
  428. F78ACD4F2190440D0088454D /* NCLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4E2190440D0088454D /* NCLayout.swift */; };
  429. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
  430. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  431. F78ACD56219047E90088454D /* NCSectionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD55219047E90088454D /* NCSectionHeader.xib */; };
  432. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  433. F78B9685234F785300F54315 /* NCSelectDestination.m in Sources */ = {isa = PBXBuildFile; fileRef = F78B9682234F785300F54315 /* NCSelectDestination.m */; };
  434. F78B9686234F785300F54315 /* NCSelectDestination.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78B9684234F785300F54315 /* NCSelectDestination.storyboard */; };
  435. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */; };
  436. F78E7065219F096B006F23E4 /* NCAvatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E7064219F096B006F23E4 /* NCAvatar.swift */; };
  437. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78F74332163757000C2ADAD /* NCTrash.storyboard */; };
  438. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78F74352163781100C2ADAD /* NCTrash.swift */; };
  439. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */; };
  440. F79630EE215527D40015EEA5 /* NCViewerMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79630ED215527D40015EEA5 /* NCViewerMedia.swift */; };
  441. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */; };
  442. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */; };
  443. F79918A221997FA300C2E308 /* UICKeyChainStore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F79918A021997F9000C2E308 /* UICKeyChainStore.framework */; };
  444. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */; };
  445. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79A65C52191D95E00FF6DCC /* NCSelect.swift */; };
  446. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3214F1E9E2A070069AD1B /* CCFavorites.m */; };
  447. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */; };
  448. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  449. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377141EB2364A002856D3 /* Crashlytics.framework */; };
  450. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377151EB2364A002856D3 /* Fabric.framework */; };
  451. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */; };
  452. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */; };
  453. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */; };
  454. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */; };
  455. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */; };
  456. F7B174C822FAC0A8000B7579 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B174C722FAC0A8000B7579 /* AppDelegate.m */; };
  457. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */; };
  458. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F7B2DEED1F976785007CF4D2 /* english.txt */; };
  459. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B4F1C81F44356F00B53B42 /* NCUchardet.m */; };
  460. F7B6ACD622FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  461. F7B6ACD722FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  462. F7B6ACD822FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  463. F7B6ACDB22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  464. F7B6ACDC22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  465. F7B6ACDD22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  466. F7B7504B2397D38F004E13EC /* UIImage+fixedOrientation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */; };
  467. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  468. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  469. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  470. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  471. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 /* CCLogin.m */; };
  472. F7C40BE521998D5B0004137E /* MGSwipeTableCell.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */; };
  473. F7C40BE721998F410004137E /* DZNEmptyDataSet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */; };
  474. F7C40BEF219994ED0004137E /* KTVCocoaHTTPServer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */; };
  475. F7C40BF1219994F20004137E /* KTVHTTPCache.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BF0219994F20004137E /* KTVHTTPCache.framework */; };
  476. F7C40BF32199978B0004137E /* MBProgressHUD.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BF22199978B0004137E /* MBProgressHUD.framework */; };
  477. F7C40C102199BA5D0004137E /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40C0F2199BA5D0004137E /* Realm.framework */; };
  478. F7C40C122199BA620004137E /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40C112199BA620004137E /* RealmSwift.framework */; };
  479. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C /* CCNotification.swift */; };
  480. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */; };
  481. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C9555221F0C4CA0024296E /* NCActivity.storyboard */; };
  482. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9555421F0C5470024296E /* NCActivity.swift */; };
  483. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */; };
  484. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */; };
  485. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */; };
  486. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */; };
  487. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */; };
  488. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */; };
  489. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */; };
  490. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */; };
  491. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */; };
  492. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */; };
  493. F7D2D127230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  494. F7D2D128230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  495. F7D2D129230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  496. F7D423331F0596AC009C9782 /* AppIcon-076.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423161F0596AC009C9782 /* AppIcon-076.png */; };
  497. F7D423341F0596AC009C9782 /* AppIcon-120.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423171F0596AC009C9782 /* AppIcon-120.png */; };
  498. F7D423351F0596AC009C9782 /* AppIcon-152.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423181F0596AC009C9782 /* AppIcon-152.png */; };
  499. F7D423361F0596AC009C9782 /* AppIcon-167.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423191F0596AC009C9782 /* AppIcon-167.png */; };
  500. F7D423371F0596AC009C9782 /* AppIcon-180.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231A1F0596AC009C9782 /* AppIcon-180.png */; };
  501. F7D423381F0596AC009C9782 /* Reader-Button-H.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */; };
  502. F7D423391F0596AC009C9782 /* Reader-Button-H@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */; };
  503. F7D4233A1F0596AC009C9782 /* Reader-Button-H@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */; };
  504. F7D4233B1F0596AC009C9782 /* Reader-Button-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */; };
  505. F7D4233C1F0596AC009C9782 /* Reader-Button-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */; };
  506. F7D4233D1F0596AC009C9782 /* Reader-Button-N@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */; };
  507. F7D4233E1F0596AC009C9782 /* Reader-Email.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423211F0596AC009C9782 /* Reader-Email.png */; };
  508. F7D4233F1F0596AC009C9782 /* Reader-Email@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423221F0596AC009C9782 /* Reader-Email@2x.png */; };
  509. F7D423401F0596AC009C9782 /* Reader-Email@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423231F0596AC009C9782 /* Reader-Email@3x.png */; };
  510. F7D423411F0596AC009C9782 /* Reader-Export.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423241F0596AC009C9782 /* Reader-Export.png */; };
  511. F7D423421F0596AC009C9782 /* Reader-Export@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423251F0596AC009C9782 /* Reader-Export@2x.png */; };
  512. F7D423431F0596AC009C9782 /* Reader-Export@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423261F0596AC009C9782 /* Reader-Export@3x.png */; };
  513. F7D423441F0596AC009C9782 /* Reader-Mark-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423271F0596AC009C9782 /* Reader-Mark-N.png */; };
  514. F7D423451F0596AC009C9782 /* Reader-Mark-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */; };
  515. F7D423461F0596AC009C9782 /* Reader-Mark-N@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */; };
  516. F7D423471F0596AC009C9782 /* Reader-Mark-Y.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */; };
  517. F7D423481F0596AC009C9782 /* Reader-Mark-Y@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */; };
  518. F7D423491F0596AC009C9782 /* Reader-Mark-Y@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */; };
  519. F7D4234A1F0596AC009C9782 /* Reader-Print.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232D1F0596AC009C9782 /* Reader-Print.png */; };
  520. F7D4234B1F0596AC009C9782 /* Reader-Print@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */; };
  521. F7D4234C1F0596AC009C9782 /* Reader-Print@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */; };
  522. F7D4234D1F0596AC009C9782 /* Reader-Thumbs.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423301F0596AC009C9782 /* Reader-Thumbs.png */; };
  523. F7D4234E1F0596AC009C9782 /* Reader-Thumbs@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */; };
  524. F7D4234F1F0596AC009C9782 /* Reader-Thumbs@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */; };
  525. F7D423791F0596C6009C9782 /* CGPDFDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423521F0596C6009C9782 /* CGPDFDocument.m */; };
  526. F7D4237A1F0596C6009C9782 /* ReaderConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423541F0596C6009C9782 /* ReaderConstants.m */; };
  527. F7D4237B1F0596C6009C9782 /* ReaderContentPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423561F0596C6009C9782 /* ReaderContentPage.m */; };
  528. F7D4237C1F0596C6009C9782 /* ReaderContentTile.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423581F0596C6009C9782 /* ReaderContentTile.m */; };
  529. F7D4237D1F0596C6009C9782 /* ReaderContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235A1F0596C6009C9782 /* ReaderContentView.m */; };
  530. F7D4237E1F0596C6009C9782 /* ReaderDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235C1F0596C6009C9782 /* ReaderDocument.m */; };
  531. F7D4237F1F0596C6009C9782 /* ReaderDocumentOutline.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */; };
  532. F7D423801F0596C6009C9782 /* ReaderMainPagebar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */; };
  533. F7D423811F0596C6009C9782 /* ReaderMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */; };
  534. F7D423821F0596C6009C9782 /* ReaderThumbCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423641F0596C6009C9782 /* ReaderThumbCache.m */; };
  535. F7D423831F0596C6009C9782 /* ReaderThumbFetch.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */; };
  536. F7D423841F0596C6009C9782 /* ReaderThumbQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */; };
  537. F7D423851F0596C6009C9782 /* ReaderThumbRender.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */; };
  538. F7D423861F0596C6009C9782 /* ReaderThumbRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */; };
  539. F7D423871F0596C6009C9782 /* ReaderThumbsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */; };
  540. F7D423881F0596C6009C9782 /* ReaderThumbView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423701F0596C6009C9782 /* ReaderThumbView.m */; };
  541. F7D423891F0596C6009C9782 /* ReaderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423721F0596C6009C9782 /* ReaderViewController.m */; };
  542. F7D4238A1F0596C6009C9782 /* ThumbsMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */; };
  543. F7D4238B1F0596C6009C9782 /* ThumbsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423761F0596C6009C9782 /* ThumbsViewController.m */; };
  544. F7D4238C1F0596C6009C9782 /* UIXToolbarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423781F0596C6009C9782 /* UIXToolbarView.m */; };
  545. F7D4B6852295663D000C2C86 /* GoogleAppMeasurement.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */; };
  546. F7D4B6862295663D000C2C86 /* FirebaseCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */; };
  547. F7D4B6872295663D000C2C86 /* FirebaseAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */; };
  548. F7D4B6882295663D000C2C86 /* GoogleUtilities.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */; };
  549. F7D4B6892295663D000C2C86 /* nanopb.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6812295663D000C2C86 /* nanopb.framework */; };
  550. F7D4B68A2295663D000C2C86 /* FIRAnalyticsConnector.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */; };
  551. F7D4B68B2295663D000C2C86 /* FirebaseInstanceID.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */; };
  552. F7D4B68C2295663D000C2C86 /* FirebaseCoreDiagnostics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */; };
  553. F7D4B6952295666E000C2C86 /* Protobuf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B68E2295666E000C2C86 /* Protobuf.framework */; };
  554. F7D4B6962295666E000C2C86 /* GTMSessionFetcher.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */; };
  555. F7D4B6972295666E000C2C86 /* GoogleAPIClientForREST.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */; };
  556. F7D4B6982295666E000C2C86 /* FirebaseMLVision.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */; };
  557. F7D4B6992295666E000C2C86 /* GoogleToolboxForMac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */; };
  558. F7D4B69A2295666E000C2C86 /* FirebaseMLCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */; };
  559. F7D4B69B2295666E000C2C86 /* GoogleMobileVision.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */; };
  560. F7D6650720FF341600BFBA9E /* NCMainCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D6650620FF341600BFBA9E /* NCMainCommon.swift */; };
  561. F7D91AAA23FBDED60038FC09 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  562. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */; };
  563. F7DBC37F23325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  564. F7DBC38023325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  565. F7DBC38123325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  566. F7DBD82C23E46A4700ECB7C6 /* MarkdownKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */; };
  567. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */; };
  568. F7DFB7E0219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  569. F7DFB7E1219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  570. F7DFB7E2219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  571. F7DFB7EB219C5A2E00680748 /* NCCreateMenuAdd.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7EA219C5A2E00680748 /* NCCreateMenuAdd.swift */; };
  572. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */; };
  573. F7DFB7F2219C5C0000680748 /* NCCreateFormUploadFileText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */; };
  574. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */; };
  575. F7E09CE323E3088000FB3E9E /* NCMainRefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */; };
  576. F7E09CE523E3088C00FB3E9E /* NCSplitViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */; };
  577. F7E09CE723E308AD00FB3E9E /* NCMasterNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */; };
  578. F7E0E1DC22327885006B0911 /* NCAudioRecorderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */; };
  579. F7E0E1DE22327DBA006B0911 /* NCAudioRecorderViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */; };
  580. F7E4D9C422ED929B003675FD /* NCShareComments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E4D9C322ED929B003675FD /* NCShareComments.swift */; };
  581. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E9C41820F4CA870040CF18 /* CCTransfers.m */; };
  582. F7F4B1D823C74B3E00D82A6E /* NCRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */; };
  583. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CAF1E5B14C700E19C62 /* ImageError.png */; };
  584. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */; };
  585. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */; };
  586. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */; };
  587. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */; };
  588. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */; };
  589. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */; };
  590. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */; };
  591. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */; };
  592. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */; };
  593. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */; };
  594. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */; };
  595. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */; };
  596. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */; };
  597. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */; };
  598. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */; };
  599. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */; };
  600. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */; };
  601. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */; };
  602. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */; };
  603. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */; };
  604. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */; };
  605. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */; };
  606. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */; };
  607. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */; };
  608. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */; };
  609. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */; };
  610. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */; };
  611. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */; };
  612. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */; };
  613. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */; };
  614. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */; };
  615. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */; };
  616. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */; };
  617. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD81E5B14C700E19C62 /* MWPhoto.m */; };
  618. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */; };
  619. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */; };
  620. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */; };
  621. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */; };
  622. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */; };
  623. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  624. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  625. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */; };
  626. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */; };
  627. F7FB1D3E215E191D00D669EA /* NCViewerDocumentWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */; };
  628. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A /* libz.tbd */; };
  629. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */; };
  630. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */; };
  631. /* End PBXBuildFile section */
  632. /* Begin PBXContainerItemProxy section */
  633. 2C33C48423E2C475005F963B /* PBXContainerItemProxy */ = {
  634. isa = PBXContainerItemProxy;
  635. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  636. proxyType = 1;
  637. remoteGlobalIDString = 2C33C47E23E2C475005F963B;
  638. remoteInfo = "Notification Service Extension";
  639. };
  640. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  641. isa = PBXContainerItemProxy;
  642. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  643. proxyType = 1;
  644. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  645. remoteInfo = "Share Ext Nextcloud";
  646. };
  647. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  648. isa = PBXContainerItemProxy;
  649. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  650. proxyType = 1;
  651. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  652. remoteInfo = "File Provider Extension";
  653. };
  654. /* End PBXContainerItemProxy section */
  655. /* Begin PBXCopyFilesBuildPhase section */
  656. F736B556234DCF7C008A5C9F /* Embed Frameworks */ = {
  657. isa = PBXCopyFilesBuildPhase;
  658. buildActionMask = 2147483647;
  659. dstPath = "";
  660. dstSubfolderSpec = 10;
  661. files = (
  662. );
  663. name = "Embed Frameworks";
  664. runOnlyForDeploymentPostprocessing = 0;
  665. };
  666. F736B559234DCF93008A5C9F /* Embed Frameworks */ = {
  667. isa = PBXCopyFilesBuildPhase;
  668. buildActionMask = 2147483647;
  669. dstPath = "";
  670. dstSubfolderSpec = 10;
  671. files = (
  672. );
  673. name = "Embed Frameworks";
  674. runOnlyForDeploymentPostprocessing = 0;
  675. };
  676. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  677. isa = PBXCopyFilesBuildPhase;
  678. buildActionMask = 2147483647;
  679. dstPath = "";
  680. dstSubfolderSpec = 13;
  681. files = (
  682. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */,
  683. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  684. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */,
  685. );
  686. name = "Embed App Extensions";
  687. runOnlyForDeploymentPostprocessing = 0;
  688. };
  689. /* End PBXCopyFilesBuildPhase section */
  690. /* Begin PBXFileReference section */
  691. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  692. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  693. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  694. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  695. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  696. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  697. 2C33C48123E2C475005F963B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
  698. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Notification_Service_Extension-Bridging-Header.h"; sourceTree = "<group>"; };
  699. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMenu.storyboard; sourceTree = "<group>"; };
  700. 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainMenuTableViewController.swift; sourceTree = "<group>"; };
  701. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FloatingPanel.framework; path = Carthage/Build/iOS/FloatingPanel.framework; sourceTree = "<group>"; };
  702. 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuPanelController.swift; sourceTree = "<group>"; };
  703. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Menu.swift"; sourceTree = "<group>"; };
  704. 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCMain+Menu.swift"; sourceTree = "<group>"; };
  705. 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCFavorites+Menu.swift"; sourceTree = "<group>"; };
  706. 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuAction.swift; sourceTree = "<group>"; };
  707. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  708. F70022661EC4C9100080073F /* OCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCActivity.h; sourceTree = "<group>"; };
  709. F70022671EC4C9100080073F /* OCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCActivity.m; sourceTree = "<group>"; };
  710. F70022681EC4C9100080073F /* OCCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCapabilities.h; sourceTree = "<group>"; };
  711. F70022691EC4C9100080073F /* OCCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCapabilities.m; sourceTree = "<group>"; };
  712. F700226A1EC4C9100080073F /* OCCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCommunication.h; sourceTree = "<group>"; };
  713. F700226B1EC4C9100080073F /* OCCommunication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCommunication.m; sourceTree = "<group>"; };
  714. F700226C1EC4C9100080073F /* OCErrorMsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCErrorMsg.h; sourceTree = "<group>"; };
  715. F700226D1EC4C9100080073F /* OCExternalSites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCExternalSites.h; sourceTree = "<group>"; };
  716. F700226E1EC4C9100080073F /* OCExternalSites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCExternalSites.m; sourceTree = "<group>"; };
  717. F700226F1EC4C9100080073F /* OCFileDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFileDto.h; sourceTree = "<group>"; };
  718. F70022701EC4C9100080073F /* OCFileDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCFileDto.m; sourceTree = "<group>"; };
  719. F70022711EC4C9100080073F /* OCFrameworkConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFrameworkConstants.h; sourceTree = "<group>"; };
  720. F70022721EC4C9100080073F /* OCNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotifications.h; sourceTree = "<group>"; };
  721. F70022731EC4C9100080073F /* OCNotifications.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotifications.m; sourceTree = "<group>"; };
  722. F70022741EC4C9100080073F /* OCNotificationsAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotificationsAction.h; sourceTree = "<group>"; };
  723. F70022751EC4C9100080073F /* OCNotificationsAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotificationsAction.m; sourceTree = "<group>"; };
  724. F70022761EC4C9100080073F /* OCRichObjectStrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCRichObjectStrings.h; sourceTree = "<group>"; };
  725. F70022771EC4C9100080073F /* OCRichObjectStrings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCRichObjectStrings.m; sourceTree = "<group>"; };
  726. F70022781EC4C9100080073F /* OCSharedDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCSharedDto.h; sourceTree = "<group>"; };
  727. F70022791EC4C9100080073F /* OCSharedDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCSharedDto.m; sourceTree = "<group>"; };
  728. F700227A1EC4C9100080073F /* OCShareUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCShareUser.h; sourceTree = "<group>"; };
  729. F700227B1EC4C9100080073F /* OCShareUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCShareUser.m; sourceTree = "<group>"; };
  730. F700227C1EC4C9100080073F /* OCUserProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCUserProfile.h; sourceTree = "<group>"; };
  731. F700227D1EC4C9100080073F /* OCUserProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCUserProfile.m; sourceTree = "<group>"; };
  732. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+ISO8601.h"; sourceTree = "<group>"; };
  733. F70022801EC4C9100080073F /* NSDate+ISO8601.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+ISO8601.m"; sourceTree = "<group>"; };
  734. F70022811EC4C9100080073F /* NSDate+RFC1123.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+RFC1123.h"; sourceTree = "<group>"; };
  735. F70022821EC4C9100080073F /* NSDate+RFC1123.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+RFC1123.m"; sourceTree = "<group>"; };
  736. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCHTTPRequestOperation.h; sourceTree = "<group>"; };
  737. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCHTTPRequestOperation.m; sourceTree = "<group>"; };
  738. F70022851EC4C9100080073F /* OCWebDAVClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCWebDAVClient.h; sourceTree = "<group>"; };
  739. F70022861EC4C9100080073F /* OCWebDAVClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCWebDAVClient.m; sourceTree = "<group>"; };
  740. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLServerErrorsParser.h; sourceTree = "<group>"; };
  741. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLServerErrorsParser.m; sourceTree = "<group>"; };
  742. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLShareByLinkParser.h; sourceTree = "<group>"; };
  743. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLShareByLinkParser.m; sourceTree = "<group>"; };
  744. F70022901EC4C9100080073F /* OCXMLSharedParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLSharedParser.h; sourceTree = "<group>"; };
  745. F70022911EC4C9100080073F /* OCXMLSharedParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLSharedParser.m; sourceTree = "<group>"; };
  746. F700229C1EC4C9100080073F /* NSString+Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Encode.h"; sourceTree = "<group>"; };
  747. F700229D1EC4C9100080073F /* NSString+Encode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Encode.m"; sourceTree = "<group>"; };
  748. F700229E1EC4C9100080073F /* OCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCConstants.h; sourceTree = "<group>"; };
  749. F700229F1EC4C9100080073F /* UtilsFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsFramework.h; sourceTree = "<group>"; };
  750. F70022A01EC4C9100080073F /* UtilsFramework.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UtilsFramework.m; sourceTree = "<group>"; };
  751. F700510022DF63AC003A3356 /* NCShare.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCShare.storyboard; sourceTree = "<group>"; };
  752. F700510222DF6897003A3356 /* Parchment.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parchment.framework; path = Carthage/Build/iOS/Parchment.framework; sourceTree = "<group>"; };
  753. F700510422DF6A89003A3356 /* NCShare.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShare.swift; sourceTree = "<group>"; };
  754. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadVoiceNote.swift; sourceTree = "<group>"; };
  755. F70211F51BAC56E9003FC03E /* CCCellMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
  756. F70211F61BAC56E9003FC03E /* CCCellMain.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
  757. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
  758. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
  759. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
  760. F70211FA1BAC56E9003FC03E /* CCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
  761. F70211FB1BAC56E9003FC03E /* CCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMain.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  762. F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IMImagemeterViewer.swift; sourceTree = "<group>"; };
  763. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  764. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  765. F7063DEC2199E55F003F38DA /* SVGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SVGKit.framework; path = Carthage/Build/iOS/SVGKit.framework; sourceTree = "<group>"; };
  766. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjack.framework; path = Carthage/Build/iOS/CocoaLumberjack.framework; sourceTree = "<group>"; };
  767. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjackSwift.framework; path = Carthage/Build/iOS/CocoaLumberjackSwift.framework; sourceTree = "<group>"; };
  768. F707C26421A2DC5200F6181E /* NCStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCStoreReview.swift; sourceTree = "<group>"; };
  769. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  770. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  771. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  772. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  773. F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+adjust.swift"; sourceTree = "<group>"; };
  774. F70F02B31C889183008DAB36 /* AFViewShaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFViewShaker.h; sourceTree = "<group>"; };
  775. F70F02B41C889183008DAB36 /* AFViewShaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
  776. F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  777. F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  778. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  779. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  780. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZIPFoundation.framework; path = Carthage/Build/iOS/ZIPFoundation.framework; sourceTree = "<group>"; };
  781. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  782. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  783. F7169A171EE590930086BD69 /* NCShares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCShares.h; sourceTree = "<group>"; };
  784. F7169A181EE590930086BD69 /* NCShares.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCShares.m; sourceTree = "<group>"; };
  785. F7169A191EE590930086BD69 /* NCSharesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSharesCell.h; sourceTree = "<group>"; };
  786. F7169A1A1EE590930086BD69 /* NCSharesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSharesCell.m; sourceTree = "<group>"; };
  787. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSharesCell.xib; sourceTree = "<group>"; };
  788. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  789. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  790. F716FE7723795E5000FABE50 /* NCCommunication.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NCCommunication.framework; path = Carthage/Build/iOS/NCCommunication.framework; sourceTree = "<group>"; };
  791. F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+NetworkingDelegate.swift"; sourceTree = "<group>"; };
  792. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  793. F722814223C8C34500C41898 /* NCRichWorkspace.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCRichWorkspace.xib; sourceTree = "<group>"; };
  794. F7229B491DF71BB300E8C4E7 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
  795. F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLVisionTextModel.framework; sourceTree = "<group>"; };
  796. F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = GoogleMVTextDetectorResources.bundle; sourceTree = "<group>"; };
  797. F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  798. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareCommentsCell.xib; sourceTree = "<group>"; };
  799. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AFNetworking.framework; path = Carthage/Build/iOS/AFNetworking.framework; sourceTree = "<group>"; };
  800. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  801. F72747752382E31600E9B76D /* IMCreate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IMCreate.swift; sourceTree = "<group>"; };
  802. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Notification_Service_Extension.plist; sourceTree = "<group>"; };
  803. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Notification_Service_Extension.entitlements; sourceTree = "<group>"; };
  804. F7296A661C8880ED001A7809 /* CCloadItemData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
  805. F729B92A217A2E4E00FE2150 /* NCActionSheetHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCActionSheetHeaderView.xib; sourceTree = "<group>"; };
  806. F729B92C217A2F1B00FE2150 /* NCActionSheetHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCActionSheetHeaderView.swift; sourceTree = "<group>"; };
  807. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheet.h; sourceTree = "<group>"; };
  808. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheet.m; sourceTree = "<group>"; };
  809. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheetViewController.h; sourceTree = "<group>"; };
  810. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheetViewController.m; sourceTree = "<group>"; };
  811. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
  812. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
  813. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerNextcloudText.swift; sourceTree = "<group>"; };
  814. F72E0B9C21AD60BC00898D7B /* WeScan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WeScan.framework; path = Carthage/Build/iOS/WeScan.framework; sourceTree = "<group>"; };
  815. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
  816. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
  817. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  818. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  819. F732BA031D76CE1500E9878B /* CCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
  820. F732BA041D76CE1500E9878B /* CCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
  821. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TLPhotoPicker.framework; path = Carthage/Build/iOS/TLPhotoPicker.framework; sourceTree = "<group>"; };
  822. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
  823. F736B551234DCF57008A5C9F /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = "<group>"; };
  824. F7381EDA218218C9000B1560 /* NCOffline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCOffline.swift; sourceTree = "<group>"; };
  825. F7381EDE218218C9000B1560 /* NCOffline.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCOffline.storyboard; sourceTree = "<group>"; };
  826. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCManageEndToEndEncryption.h; sourceTree = "<group>"; };
  827. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCManageEndToEndEncryption.m; sourceTree = "<group>"; };
  828. F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSectionMediaHeader.xib; sourceTree = "<group>"; };
  829. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Big5Freq.tab; sourceTree = "<group>"; };
  830. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CharDistribution.cpp; sourceTree = "<group>"; };
  831. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CharDistribution.h; sourceTree = "<group>"; };
  832. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
  833. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCKRFreq.tab; sourceTree = "<group>"; };
  834. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCTWFreq.tab; sourceTree = "<group>"; };
  835. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GB2312Freq.tab; sourceTree = "<group>"; };
  836. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = JISFreq.tab; sourceTree = "<group>"; };
  837. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JpCntx.cpp; sourceTree = "<group>"; };
  838. F73B4EB61F470D9100BBEE4B /* JpCntx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JpCntx.h; sourceTree = "<group>"; };
  839. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangArabicModel.cpp; sourceTree = "<group>"; };
  840. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangBulgarianModel.cpp; sourceTree = "<group>"; };
  841. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangDanishModel.cpp; sourceTree = "<group>"; };
  842. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangEsperantoModel.cpp; sourceTree = "<group>"; };
  843. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangFrenchModel.cpp; sourceTree = "<group>"; };
  844. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGermanModel.cpp; sourceTree = "<group>"; };
  845. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGreekModel.cpp; sourceTree = "<group>"; };
  846. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHebrewModel.cpp; sourceTree = "<group>"; };
  847. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHungarianModel.cpp; sourceTree = "<group>"; };
  848. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangRussianModel.cpp; sourceTree = "<group>"; };
  849. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangSpanishModel.cpp; sourceTree = "<group>"; };
  850. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangThaiModel.cpp; sourceTree = "<group>"; };
  851. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangTurkishModel.cpp; sourceTree = "<group>"; };
  852. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangVietnameseModel.cpp; sourceTree = "<group>"; };
  853. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsBig5Prober.cpp; sourceTree = "<group>"; };
  854. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsBig5Prober.h; sourceTree = "<group>"; };
  855. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsCharSetProber.cpp; sourceTree = "<group>"; };
  856. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCharSetProber.h; sourceTree = "<group>"; };
  857. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCodingStateMachine.h; sourceTree = "<group>"; };
  858. F73B4ECB1F470D9100BBEE4B /* nscore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nscore.h; sourceTree = "<group>"; };
  859. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscCharsetProber.cpp; sourceTree = "<group>"; };
  860. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEscCharsetProber.h; sourceTree = "<group>"; };
  861. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscSM.cpp; sourceTree = "<group>"; };
  862. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCJPProber.cpp; sourceTree = "<group>"; };
  863. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCJPProber.h; sourceTree = "<group>"; };
  864. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCKRProber.cpp; sourceTree = "<group>"; };
  865. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCKRProber.h; sourceTree = "<group>"; };
  866. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCTWProber.cpp; sourceTree = "<group>"; };
  867. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCTWProber.h; sourceTree = "<group>"; };
  868. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsGB2312Prober.cpp; sourceTree = "<group>"; };
  869. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsGB2312Prober.h; sourceTree = "<group>"; };
  870. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsHebrewProber.cpp; sourceTree = "<group>"; };
  871. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsHebrewProber.h; sourceTree = "<group>"; };
  872. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsLatin1Prober.cpp; sourceTree = "<group>"; };
  873. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsLatin1Prober.h; sourceTree = "<group>"; };
  874. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSGroupProber.cpp; sourceTree = "<group>"; };
  875. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsMBCSGroupProber.h; sourceTree = "<group>"; };
  876. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSSM.cpp; sourceTree = "<group>"; };
  877. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsPkgInt.h; sourceTree = "<group>"; };
  878. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCharSetProber.cpp; sourceTree = "<group>"; };
  879. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCharSetProber.h; sourceTree = "<group>"; };
  880. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCSGroupProber.cpp; sourceTree = "<group>"; };
  881. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCSGroupProber.h; sourceTree = "<group>"; };
  882. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSJISProber.cpp; sourceTree = "<group>"; };
  883. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSJISProber.h; sourceTree = "<group>"; };
  884. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUniversalDetector.cpp; sourceTree = "<group>"; };
  885. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUniversalDetector.h; sourceTree = "<group>"; };
  886. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUTF8Prober.cpp; sourceTree = "<group>"; };
  887. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUTF8Prober.h; sourceTree = "<group>"; };
  888. F73B4EE91F470D9100BBEE4B /* prmem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prmem.h; sourceTree = "<group>"; };
  889. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = symbols.cmake; sourceTree = "<group>"; };
  890. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uchardet.cpp; sourceTree = "<group>"; };
  891. F73B4EED1F470D9100BBEE4B /* uchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchardet.h; sourceTree = "<group>"; };
  892. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCShareHeaderView.xib; sourceTree = "<group>"; };
  893. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  894. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeDummyViewController.h; sourceTree = "<group>"; };
  895. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeDummyViewController.m; sourceTree = "<group>"; };
  896. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeField.h; sourceTree = "<group>"; };
  897. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeField.m; sourceTree = "<group>"; };
  898. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeInputView.h; sourceTree = "<group>"; };
  899. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeInputView.m; sourceTree = "<group>"; };
  900. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeLockScreenManager.h; sourceTree = "<group>"; };
  901. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeLockScreenManager.m; sourceTree = "<group>"; };
  902. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeUtils.h; sourceTree = "<group>"; };
  903. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeViewController.h; sourceTree = "<group>"; };
  904. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeViewController.m; sourceTree = "<group>"; };
  905. F73CC0631E813DFF006E3047 /* BKShiftingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKShiftingView.h; sourceTree = "<group>"; };
  906. F73CC0641E813DFF006E3047 /* BKShiftingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKShiftingView.m; sourceTree = "<group>"; };
  907. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDManager.h; sourceTree = "<group>"; };
  908. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDManager.m; sourceTree = "<group>"; };
  909. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDSwitchView.h; sourceTree = "<group>"; };
  910. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDSwitchView.m; sourceTree = "<group>"; };
  911. F73D71611F2673C200E233EB /* NCText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCText.swift; sourceTree = "<group>"; };
  912. F73D71631F2674A400E233EB /* NCText.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCText.storyboard; sourceTree = "<group>"; };
  913. F73F537E1E929C8500F8678D /* CCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMore.swift; sourceTree = "<group>"; };
  914. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrashSectionHeaderFooter.swift; sourceTree = "<group>"; };
  915. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  916. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  917. F745B250222D871800346520 /* QRCodeReader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QRCodeReader.framework; path = Carthage/Build/iOS/QRCodeReader.framework; sourceTree = "<group>"; };
  918. F745B252222D88AE00346520 /* NCLoginQRCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginQRCode.swift; sourceTree = "<group>"; };
  919. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadVoiceNote.storyboard; sourceTree = "<group>"; };
  920. F7496B81208F5651004B299C /* iOSClient.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
  921. F7496B83208F5652004B299C /* Share.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
  922. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroCollectionViewCell.swift; sourceTree = "<group>"; };
  923. F749C10823C4A5330027D966 /* NCIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroViewController.swift; sourceTree = "<group>"; };
  924. F749C10923C4A5330027D966 /* NCIntro.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCIntro.storyboard; sourceTree = "<group>"; };
  925. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCIntroCollectionViewCell.xib; sourceTree = "<group>"; };
  926. F74AFCE822E8B024003DE61F /* FSCalendar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FSCalendar.framework; path = Carthage/Build/iOS/FSCalendar.framework; sourceTree = "<group>"; };
  927. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = Carthage/Build/iOS/OpenSSL.framework; sourceTree = "<group>"; };
  928. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
  929. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
  930. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCNetworkingEndToEnd.h; sourceTree = "<group>"; };
  931. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCNetworkingEndToEnd.m; sourceTree = "<group>"; };
  932. F7501C302212E57400FB1415 /* NCMedia.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCMedia.storyboard; sourceTree = "<group>"; };
  933. F7501C312212E57400FB1415 /* NCMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMedia.swift; sourceTree = "<group>"; };
  934. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
  935. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
  936. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
  937. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
  938. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
  939. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
  940. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
  941. F750374A1DBFA91A008FB480 /* PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
  942. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
  943. F7514EDA1C7B1336008F3338 /* CCHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
  944. F7514EDB1C7B1336008F3338 /* CCHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
  945. F75153232226920200323DDC /* FastScroll.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastScroll.framework; path = Carthage/Build/iOS/FastScroll.framework; sourceTree = "<group>"; };
  946. F753701822723D620041C76C /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  947. F753701922723E0D0041C76C /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  948. F753701A22723EC80041C76C /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  949. F754EEC421772B6100BB1CDF /* DropdownItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropdownItem.swift; sourceTree = "<group>"; };
  950. F754EEC521772B6100BB1CDF /* DropUpMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropUpMenu.swift; sourceTree = "<group>"; };
  951. F754EEC621772B6100BB1CDF /* DropdownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DropdownMenu.h; sourceTree = "<group>"; };
  952. F754EEC721772B6100BB1CDF /* DropdownMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropdownMenu.swift; sourceTree = "<group>"; };
  953. F754EEC821772B6100BB1CDF /* SectionHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SectionHeader.swift; sourceTree = "<group>"; };
  954. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  955. F758B457212C564000515F55 /* Scan.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Scan.storyboard; sourceTree = "<group>"; };
  956. F758B45D212C569C00515F55 /* ScanCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCell.swift; sourceTree = "<group>"; };
  957. F758B45F212C56A400515F55 /* ScanCollectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCollectionView.swift; sourceTree = "<group>"; };
  958. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworking.swift; sourceTree = "<group>"; };
  959. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  960. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
  961. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  962. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  963. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  964. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspaceCommon.swift; sourceTree = "<group>"; };
  965. F75CDBF51DF063AD00116AD0 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
  966. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  967. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  968. F760F75721F21F61006B1A73 /* icomoon.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = icomoon.ttf; sourceTree = "<group>"; };
  969. F760F75821F21F61006B1A73 /* StickersViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StickersViewController.xib; sourceTree = "<group>"; };
  970. F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsCollectionViewDelegate.swift; sourceTree = "<group>"; };
  971. F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Keyboard.swift"; sourceTree = "<group>"; };
  972. F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Controls.swift"; sourceTree = "<group>"; };
  973. F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhotoEditorViewController.xib; sourceTree = "<group>"; };
  974. F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+StickersViewController.swift"; sourceTree = "<group>"; };
  975. F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+UITextView.swift"; sourceTree = "<group>"; };
  976. F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImageView+Alpha.swift"; sourceTree = "<group>"; };
  977. F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ColorCollectionViewCell.xib; sourceTree = "<group>"; };
  978. F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EmojiCollectionViewCell.xib; sourceTree = "<group>"; };
  979. F760F76321F21F61006B1A73 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  980. F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Font.swift"; sourceTree = "<group>"; };
  981. F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PhotoCropEditorBorder@2x.png"; sourceTree = "<group>"; };
  982. F760F76621F21F61006B1A73 /* UIView+Image.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Image.swift"; sourceTree = "<group>"; };
  983. F760F76721F21F61006B1A73 /* UIImage+Size.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Size.swift"; sourceTree = "<group>"; };
  984. F760F76821F21F61006B1A73 /* UIImage+Crop.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Crop.swift"; sourceTree = "<group>"; };
  985. F760F76921F21F61006B1A73 /* StickersViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StickersViewController.swift; sourceTree = "<group>"; };
  986. F760F76A21F21F61006B1A73 /* Protocols.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protocols.swift; sourceTree = "<group>"; };
  987. F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Drawing.swift"; sourceTree = "<group>"; };
  988. F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PhotoCropEditorBorder@3x.png"; sourceTree = "<group>"; };
  989. F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PhotoCropEditorBorder.png; sourceTree = "<group>"; };
  990. F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EmojiCollectionViewCell.swift; sourceTree = "<group>"; };
  991. F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EmojisCollectionViewDelegate.swift; sourceTree = "<group>"; };
  992. F760F77021F21F61006B1A73 /* CropView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropView.swift; sourceTree = "<group>"; };
  993. F760F77121F21F61006B1A73 /* ResizeControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResizeControl.swift; sourceTree = "<group>"; };
  994. F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Gestures.swift"; sourceTree = "<group>"; };
  995. F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhotoEditorViewController.swift; sourceTree = "<group>"; };
  996. F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StickerCollectionViewCell.xib; sourceTree = "<group>"; };
  997. F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StickerCollectionViewCell.swift; sourceTree = "<group>"; };
  998. F760F77621F21F61006B1A73 /* CropViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropViewController.swift; sourceTree = "<group>"; };
  999. F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Crop.swift"; sourceTree = "<group>"; };
  1000. F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorCollectionViewCell.swift; sourceTree = "<group>"; };
  1001. F760F77921F21F61006B1A73 /* GradientView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GradientView.swift; sourceTree = "<group>"; };
  1002. F760F77A21F21F61006B1A73 /* CropRectView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropRectView.swift; sourceTree = "<group>"; };
  1003. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormBaseCell.h; sourceTree = "<group>"; };
  1004. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormBaseCell.m; sourceTree = "<group>"; };
  1005. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormButtonCell.h; sourceTree = "<group>"; };
  1006. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormButtonCell.m; sourceTree = "<group>"; };
  1007. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormCheckCell.h; sourceTree = "<group>"; };
  1008. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormCheckCell.m; sourceTree = "<group>"; };
  1009. F762CAA91EACB66200B38484 /* XLFormDateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDateCell.h; sourceTree = "<group>"; };
  1010. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDateCell.m; sourceTree = "<group>"; };
  1011. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDatePickerCell.h; sourceTree = "<group>"; };
  1012. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDatePickerCell.m; sourceTree = "<group>"; };
  1013. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorCell.h; sourceTree = "<group>"; };
  1014. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormImageCell.h; sourceTree = "<group>"; };
  1015. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormImageCell.m; sourceTree = "<group>"; };
  1016. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineRowDescriptorCell.h; sourceTree = "<group>"; };
  1017. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineSelectorCell.h; sourceTree = "<group>"; };
  1018. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormInlineSelectorCell.m; sourceTree = "<group>"; };
  1019. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormLeftRightSelectorCell.h; sourceTree = "<group>"; };
  1020. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormLeftRightSelectorCell.m; sourceTree = "<group>"; };
  1021. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormPickerCell.h; sourceTree = "<group>"; };
  1022. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormPickerCell.m; sourceTree = "<group>"; };
  1023. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSegmentedCell.h; sourceTree = "<group>"; };
  1024. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSegmentedCell.m; sourceTree = "<group>"; };
  1025. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSelectorCell.h; sourceTree = "<group>"; };
  1026. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSelectorCell.m; sourceTree = "<group>"; };
  1027. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSliderCell.h; sourceTree = "<group>"; };
  1028. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSliderCell.m; sourceTree = "<group>"; };
  1029. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormStepCounterCell.h; sourceTree = "<group>"; };
  1030. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormStepCounterCell.m; sourceTree = "<group>"; };
  1031. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSwitchCell.h; sourceTree = "<group>"; };
  1032. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSwitchCell.m; sourceTree = "<group>"; };
  1033. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextFieldCell.h; sourceTree = "<group>"; };
  1034. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextFieldCell.m; sourceTree = "<group>"; };
  1035. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextViewCell.h; sourceTree = "<group>"; };
  1036. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextViewCell.m; sourceTree = "<group>"; };
  1037. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsObject.h; sourceTree = "<group>"; };
  1038. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsObject.m; sourceTree = "<group>"; };
  1039. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsViewController.h; sourceTree = "<group>"; };
  1040. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsViewController.m; sourceTree = "<group>"; };
  1041. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptorViewController.h; sourceTree = "<group>"; };
  1042. F762CACB1EACB66200B38484 /* XLFormViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormViewController.h; sourceTree = "<group>"; };
  1043. F762CACC1EACB66200B38484 /* XLFormViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormViewController.m; sourceTree = "<group>"; };
  1044. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptor.h; sourceTree = "<group>"; };
  1045. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDescriptor.m; sourceTree = "<group>"; };
  1046. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorDelegate.h; sourceTree = "<group>"; };
  1047. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptor.h; sourceTree = "<group>"; };
  1048. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowDescriptor.m; sourceTree = "<group>"; };
  1049. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSectionDescriptor.h; sourceTree = "<group>"; };
  1050. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSectionDescriptor.m; sourceTree = "<group>"; };
  1051. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+XLFormAdditions.h"; sourceTree = "<group>"; };
  1052. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+XLFormAdditions.m"; sourceTree = "<group>"; };
  1053. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSExpression+XLFormAdditions.h"; sourceTree = "<group>"; };
  1054. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSExpression+XLFormAdditions.m"; sourceTree = "<group>"; };
  1055. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XLFormAdditions.h"; sourceTree = "<group>"; };
  1056. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XLFormAdditions.m"; sourceTree = "<group>"; };
  1057. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPredicate+XLFormAdditions.h"; sourceTree = "<group>"; };
  1058. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPredicate+XLFormAdditions.m"; sourceTree = "<group>"; };
  1059. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XLFormAdditions.h"; sourceTree = "<group>"; };
  1060. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XLFormAdditions.m"; sourceTree = "<group>"; };
  1061. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XLFormAdditions.h"; sourceTree = "<group>"; };
  1062. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XLFormAdditions.m"; sourceTree = "<group>"; };
  1063. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightDetailCell.h; sourceTree = "<group>"; };
  1064. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightDetailCell.m; sourceTree = "<group>"; };
  1065. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightImageButton.h; sourceTree = "<group>"; };
  1066. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightImageButton.m; sourceTree = "<group>"; };
  1067. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowNavigationAccessoryView.h; sourceTree = "<group>"; };
  1068. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowNavigationAccessoryView.m; sourceTree = "<group>"; };
  1069. F762CAE91EACB66200B38484 /* XLFormTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextView.h; sourceTree = "<group>"; };
  1070. F762CAEA1EACB66200B38484 /* XLFormTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextView.m; sourceTree = "<group>"; };
  1071. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRegexValidator.h; sourceTree = "<group>"; };
  1072. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRegexValidator.m; sourceTree = "<group>"; };
  1073. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidationStatus.h; sourceTree = "<group>"; };
  1074. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidationStatus.m; sourceTree = "<group>"; };
  1075. F762CAF01EACB66200B38484 /* XLFormValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidator.h; sourceTree = "<group>"; };
  1076. F762CAF11EACB66200B38484 /* XLFormValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidator.m; sourceTree = "<group>"; };
  1077. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidatorProtocol.h; sourceTree = "<group>"; };
  1078. F762CAF31EACB66200B38484 /* XLForm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLForm.h; sourceTree = "<group>"; };
  1079. F762CAF41EACB66200B38484 /* XLForm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLForm.m; sourceTree = "<group>"; };
  1080. F762CAF51EACB66200B38484 /* XLForm.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XLForm.bundle; sourceTree = "<group>"; };
  1081. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionHeaderMenu.xib; sourceTree = "<group>"; };
  1082. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionFooter.xib; sourceTree = "<group>"; };
  1083. F76344751BF259A800188725 /* synchronized.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
  1084. F76344761BF259A800188725 /* synchronizedcrypto.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
  1085. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadDocuments.storyboard; sourceTree = "<group>"; };
  1086. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadDocuments.swift; sourceTree = "<group>"; };
  1087. F765608623BF806C00765969 /* QuickLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLayout.framework; path = Carthage/Build/iOS/QuickLayout.framework; sourceTree = "<group>"; };
  1088. F765608A23BF80A400765969 /* SwiftEntryKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftEntryKit.framework; path = Carthage/Build/iOS/SwiftEntryKit.framework; sourceTree = "<group>"; };
  1089. F765608E23BF813500765969 /* NCContentPresenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCContentPresenter.swift; sourceTree = "<group>"; };
  1090. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderDomain.swift; sourceTree = "<group>"; };
  1091. F76673EF22C90433007ED366 /* FileProviderUtility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderUtility.swift; sourceTree = "<group>"; };
  1092. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainTabBar.swift; sourceTree = "<group>"; };
  1093. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserCell.xib; sourceTree = "<group>"; };
  1094. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserMenuView.xib; sourceTree = "<group>"; };
  1095. F769453F22E9F077000A798A /* NCSharePaging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSharePaging.swift; sourceTree = "<group>"; };
  1096. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkMenuView.swift; sourceTree = "<group>"; };
  1097. F769454322E9F142000A798A /* NCShareUserMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserMenuView.swift; sourceTree = "<group>"; };
  1098. F769454522E9F1B0000A798A /* NCShareCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommon.swift; sourceTree = "<group>"; };
  1099. F769454722E9F20D000A798A /* NCShareNetworking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareNetworking.swift; sourceTree = "<group>"; };
  1100. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  1101. F76C3B831C6388BC00DC4301 /* CCGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
  1102. F76C3B841C6388BC00DC4301 /* CCGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
  1103. F76C3B871C638A4C00DC4301 /* CCError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
  1104. F76C3B881C638A4C00DC4301 /* CCError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
  1105. F76C6F8D21943C8C0063591B /* NCActionSheetHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActionSheetHeader.swift; sourceTree = "<group>"; };
  1106. F76E71E42244DF6900690001 /* Zip.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Zip.framework; path = Carthage/Build/iOS/Zip.framework; sourceTree = "<group>"; };
  1107. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  1108. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1109. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  1110. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  1111. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  1112. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  1113. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  1114. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  1115. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
  1116. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
  1117. F774264022EB3F7300B23912 /* DropDown.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropDown.framework; path = Carthage/Build/iOS/DropDown.framework; sourceTree = "<group>"; };
  1118. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserDropDownCell.xib; sourceTree = "<group>"; };
  1119. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1120. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1121. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1122. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1123. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1124. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1125. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1126. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1127. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1128. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1129. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1130. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1131. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1132. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1133. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1134. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1135. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1136. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1137. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGridMediaCell.swift; sourceTree = "<group>"; };
  1138. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCGridMediaCell.xib; sourceTree = "<group>"; };
  1139. F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPhotosPickerViewController.swift; sourceTree = "<group>"; };
  1140. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@1x.png"; sourceTree = "<group>"; };
  1141. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@2x.png"; sourceTree = "<group>"; };
  1142. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@3x.png"; sourceTree = "<group>"; };
  1143. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
  1144. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
  1145. F77D49A71DC238E500CDC568 /* loading.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = loading.gif; sourceTree = "<group>"; };
  1146. F77F5D2C23D5F28100D2B7EB /* NCMainRefreshControl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainRefreshControl.swift; sourceTree = "<group>"; };
  1147. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  1148. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  1149. F781996722636BFA00EBDF6A /* HCFeatures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HCFeatures.h; sourceTree = "<group>"; };
  1150. F781996822636BFA00EBDF6A /* HCFeatures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HCFeatures.m; sourceTree = "<group>"; };
  1151. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkCell.xib; sourceTree = "<group>"; };
  1152. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspaceWebView.swift; sourceTree = "<group>"; };
  1153. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspace.swift; sourceTree = "<group>"; };
  1154. F78AA20521F783E900D0F205 /* SwiftRichString.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftRichString.framework; path = Carthage/Build/iOS/SwiftRichString.framework; sourceTree = "<group>"; };
  1155. F78ACD3F21903CC20088454D /* NCGridCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGridCell.swift; sourceTree = "<group>"; };
  1156. F78ACD4121903CE00088454D /* NCListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCListCell.swift; sourceTree = "<group>"; };
  1157. F78ACD4321903CF20088454D /* NCListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCListCell.xib; sourceTree = "<group>"; };
  1158. F78ACD4521903D010088454D /* NCGridCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCGridCell.xib; sourceTree = "<group>"; };
  1159. F78ACD4821903F850088454D /* NCTrashListCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTrashListCell.swift; sourceTree = "<group>"; };
  1160. F78ACD4921903F850088454D /* NCTrashListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCTrashListCell.xib; sourceTree = "<group>"; };
  1161. F78ACD4E2190440D0088454D /* NCLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLayout.swift; sourceTree = "<group>"; };
  1162. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSectionHeaderFooter.swift; sourceTree = "<group>"; };
  1163. F78ACD53219047D40088454D /* NCSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionFooter.xib; sourceTree = "<group>"; };
  1164. F78ACD55219047E90088454D /* NCSectionHeader.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeader.xib; sourceTree = "<group>"; };
  1165. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeaderMenu.xib; sourceTree = "<group>"; };
  1166. F78B9682234F785300F54315 /* NCSelectDestination.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSelectDestination.m; sourceTree = "<group>"; };
  1167. F78B9683234F785300F54315 /* NCSelectDestination.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSelectDestination.h; sourceTree = "<group>"; };
  1168. F78B9684234F785300F54315 /* NCSelectDestination.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCSelectDestination.storyboard; sourceTree = "<group>"; };
  1169. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1170. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1171. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1172. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1173. F78E7064219F096B006F23E4 /* NCAvatar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAvatar.swift; sourceTree = "<group>"; };
  1174. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
  1175. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
  1176. F78F74332163757000C2ADAD /* NCTrash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCTrash.storyboard; sourceTree = "<group>"; };
  1177. F78F74352163781100C2ADAD /* NCTrash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrash.swift; sourceTree = "<group>"; };
  1178. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
  1179. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
  1180. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
  1181. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
  1182. F79630ED215527D40015EEA5 /* NCViewerMedia.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerMedia.swift; sourceTree = "<group>"; };
  1183. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkFolderMenuView.xib; sourceTree = "<group>"; };
  1184. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserFolderMenuView.xib; sourceTree = "<group>"; };
  1185. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UICKeyChainStore.framework; path = Carthage/Build/iOS/UICKeyChainStore.framework; sourceTree = "<group>"; };
  1186. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sheeeeeeeeet.framework; path = Carthage/Build/iOS/Sheeeeeeeeet.framework; sourceTree = "<group>"; };
  1187. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSelect.storyboard; sourceTree = "<group>"; };
  1188. F79A65C52191D95E00FF6DCC /* NCSelect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelect.swift; sourceTree = "<group>"; };
  1189. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavorites.h; sourceTree = "<group>"; };
  1190. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCFavorites.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1191. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuAccount.h; sourceTree = "<group>"; };
  1192. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuAccount.m; sourceTree = "<group>"; };
  1193. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  1194. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  1195. F7A377141EB2364A002856D3 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
  1196. F7A377151EB2364A002856D3 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Fabric.framework; sourceTree = "<group>"; };
  1197. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
  1198. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
  1199. F7A582D71A24DAB500E903D7 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
  1200. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1201. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1202. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1203. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1204. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1205. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  1206. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  1207. F7ACE4301BAC0268006C0017 /* CCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
  1208. F7ACE4311BAC0268006C0017 /* CCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
  1209. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginWeb.swift; sourceTree = "<group>"; };
  1210. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCBrowserWeb.swift; sourceTree = "<group>"; };
  1211. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCBrowserWeb.storyboard; sourceTree = "<group>"; };
  1212. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
  1213. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
  1214. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAutoUpload.h; sourceTree = "<group>"; };
  1215. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAutoUpload.m; sourceTree = "<group>"; };
  1216. F7B174C722FAC0A8000B7579 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  1217. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1218. F7B2DEED1F976785007CF4D2 /* english.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  1219. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  1220. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  1221. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUchardet.h; sourceTree = "<group>"; };
  1222. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUchardet.m; sourceTree = "<group>"; };
  1223. F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLCommentsParser.m; sourceTree = "<group>"; };
  1224. F7B6ACD522FC2BD4008AB646 /* NCXMLCommentsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLCommentsParser.h; sourceTree = "<group>"; };
  1225. F7B6ACD922FC2D14008AB646 /* NCComments.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCComments.h; sourceTree = "<group>"; };
  1226. F7B6ACDA22FC2D15008AB646 /* NCComments.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCComments.m; sourceTree = "<group>"; };
  1227. F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+fixedOrientation.swift"; sourceTree = "<group>"; };
  1228. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  1229. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  1230. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1231. F7BF1B3F1D51E893000854F6 /* CCLogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
  1232. F7BF1B401D51E893000854F6 /* CCLogin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
  1233. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
  1234. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
  1235. F7C0F46E1C8880540059EC54 /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1236. F7C0F46F1C8880540059EC54 /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1237. F7C40BE221998C050004137E /* PDFGenerator.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PDFGenerator.framework; path = Carthage/Build/iOS/PDFGenerator.framework; sourceTree = "<group>"; };
  1238. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MGSwipeTableCell.framework; path = Carthage/Build/iOS/MGSwipeTableCell.framework; sourceTree = "<group>"; };
  1239. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DZNEmptyDataSet.framework; path = Carthage/Build/iOS/DZNEmptyDataSet.framework; sourceTree = "<group>"; };
  1240. F7C40BE8219991A60004137E /* EAIntroView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EAIntroView.framework; path = Carthage/Build/iOS/EAIntroView.framework; sourceTree = "<group>"; };
  1241. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EARestrictedScrollView.framework; path = Carthage/Build/iOS/EARestrictedScrollView.framework; sourceTree = "<group>"; };
  1242. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JDStatusBarNotification.framework; path = Carthage/Build/iOS/JDStatusBarNotification.framework; sourceTree = "<group>"; };
  1243. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVCocoaHTTPServer.framework; path = Carthage/Build/iOS/KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
  1244. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVHTTPCache.framework; path = Carthage/Build/iOS/KTVHTTPCache.framework; sourceTree = "<group>"; };
  1245. F7C40BF22199978B0004137E /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = "<group>"; };
  1246. F7C40C0F2199BA5D0004137E /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Realm.framework; path = Carthage/Build/iOS/Realm.framework; sourceTree = "<group>"; };
  1247. F7C40C112199BA620004137E /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RealmSwift.framework; path = Carthage/Build/iOS/RealmSwift.framework; sourceTree = "<group>"; };
  1248. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
  1249. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
  1250. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  1251. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  1252. F7C8C1901B482CEA0048180E /* CCGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
  1253. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCActivity.storyboard; sourceTree = "<group>"; };
  1254. F7C9555421F0C5470024296E /* NCActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivity.swift; sourceTree = "<group>"; };
  1255. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+PKDownloadButton.m"; sourceTree = "<group>"; };
  1256. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKBorderedButton.h; sourceTree = "<group>"; };
  1257. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleProgressView.m; sourceTree = "<group>"; };
  1258. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKDownloadButton.h; sourceTree = "<group>"; };
  1259. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+PKDownloadButtonAnimations.h"; sourceTree = "<group>"; };
  1260. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleView.m; sourceTree = "<group>"; };
  1261. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKStopDownloadButton.m; sourceTree = "<group>"; };
  1262. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKPendingView.m; sourceTree = "<group>"; };
  1263. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PKDownloadButton.h"; sourceTree = "<group>"; };
  1264. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKMacros.h; sourceTree = "<group>"; };
  1265. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+PKDownloadButtonAnimations.m"; sourceTree = "<group>"; };
  1266. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKDownloadButton.m; sourceTree = "<group>"; };
  1267. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleProgressView.h; sourceTree = "<group>"; };
  1268. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKBorderedButton.m; sourceTree = "<group>"; };
  1269. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+PKDownloadButton.h"; sourceTree = "<group>"; };
  1270. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKStopDownloadButton.h; sourceTree = "<group>"; };
  1271. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleView.h; sourceTree = "<group>"; };
  1272. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PKDownloadButton.m"; sourceTree = "<group>"; };
  1273. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKPendingView.h; sourceTree = "<group>"; };
  1274. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1275. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1276. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1277. F7D0E65E1BC5042E008D989A /* CCDetail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = CCDetail.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1278. F7D0E65F1BC5042E008D989A /* CCDetail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCDetail.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1279. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  1280. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichWorkspace.storyboard; sourceTree = "<group>"; };
  1281. F7D2D125230804DF00FD3ED7 /* NCXMLListParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLListParser.h; sourceTree = "<group>"; };
  1282. F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLListParser.m; sourceTree = "<group>"; };
  1283. F7D423161F0596AC009C9782 /* AppIcon-076.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-076.png"; sourceTree = "<group>"; };
  1284. F7D423171F0596AC009C9782 /* AppIcon-120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-120.png"; sourceTree = "<group>"; };
  1285. F7D423181F0596AC009C9782 /* AppIcon-152.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-152.png"; sourceTree = "<group>"; };
  1286. F7D423191F0596AC009C9782 /* AppIcon-167.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-167.png"; sourceTree = "<group>"; };
  1287. F7D4231A1F0596AC009C9782 /* AppIcon-180.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-180.png"; sourceTree = "<group>"; };
  1288. F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H.png"; sourceTree = "<group>"; };
  1289. F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@2x.png"; sourceTree = "<group>"; };
  1290. F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@3x.png"; sourceTree = "<group>"; };
  1291. F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N.png"; sourceTree = "<group>"; };
  1292. F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@2x.png"; sourceTree = "<group>"; };
  1293. F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@3x.png"; sourceTree = "<group>"; };
  1294. F7D423211F0596AC009C9782 /* Reader-Email.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email.png"; sourceTree = "<group>"; };
  1295. F7D423221F0596AC009C9782 /* Reader-Email@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@2x.png"; sourceTree = "<group>"; };
  1296. F7D423231F0596AC009C9782 /* Reader-Email@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@3x.png"; sourceTree = "<group>"; };
  1297. F7D423241F0596AC009C9782 /* Reader-Export.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export.png"; sourceTree = "<group>"; };
  1298. F7D423251F0596AC009C9782 /* Reader-Export@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@2x.png"; sourceTree = "<group>"; };
  1299. F7D423261F0596AC009C9782 /* Reader-Export@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@3x.png"; sourceTree = "<group>"; };
  1300. F7D423271F0596AC009C9782 /* Reader-Mark-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N.png"; sourceTree = "<group>"; };
  1301. F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@2x.png"; sourceTree = "<group>"; };
  1302. F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@3x.png"; sourceTree = "<group>"; };
  1303. F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y.png"; sourceTree = "<group>"; };
  1304. F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@2x.png"; sourceTree = "<group>"; };
  1305. F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@3x.png"; sourceTree = "<group>"; };
  1306. F7D4232D1F0596AC009C9782 /* Reader-Print.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print.png"; sourceTree = "<group>"; };
  1307. F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@2x.png"; sourceTree = "<group>"; };
  1308. F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@3x.png"; sourceTree = "<group>"; };
  1309. F7D423301F0596AC009C9782 /* Reader-Thumbs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs.png"; sourceTree = "<group>"; };
  1310. F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@2x.png"; sourceTree = "<group>"; };
  1311. F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@3x.png"; sourceTree = "<group>"; };
  1312. F7D423511F0596C6009C9782 /* CGPDFDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CGPDFDocument.h; sourceTree = "<group>"; };
  1313. F7D423521F0596C6009C9782 /* CGPDFDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGPDFDocument.m; sourceTree = "<group>"; };
  1314. F7D423531F0596C6009C9782 /* ReaderConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderConstants.h; sourceTree = "<group>"; };
  1315. F7D423541F0596C6009C9782 /* ReaderConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderConstants.m; sourceTree = "<group>"; };
  1316. F7D423551F0596C6009C9782 /* ReaderContentPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentPage.h; sourceTree = "<group>"; };
  1317. F7D423561F0596C6009C9782 /* ReaderContentPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentPage.m; sourceTree = "<group>"; };
  1318. F7D423571F0596C6009C9782 /* ReaderContentTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentTile.h; sourceTree = "<group>"; };
  1319. F7D423581F0596C6009C9782 /* ReaderContentTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentTile.m; sourceTree = "<group>"; };
  1320. F7D423591F0596C6009C9782 /* ReaderContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentView.h; sourceTree = "<group>"; };
  1321. F7D4235A1F0596C6009C9782 /* ReaderContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentView.m; sourceTree = "<group>"; };
  1322. F7D4235B1F0596C6009C9782 /* ReaderDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocument.h; sourceTree = "<group>"; };
  1323. F7D4235C1F0596C6009C9782 /* ReaderDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocument.m; sourceTree = "<group>"; };
  1324. F7D4235D1F0596C6009C9782 /* ReaderDocumentOutline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocumentOutline.h; sourceTree = "<group>"; };
  1325. F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocumentOutline.m; sourceTree = "<group>"; };
  1326. F7D4235F1F0596C6009C9782 /* ReaderMainPagebar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainPagebar.h; sourceTree = "<group>"; };
  1327. F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainPagebar.m; sourceTree = "<group>"; };
  1328. F7D423611F0596C6009C9782 /* ReaderMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainToolbar.h; sourceTree = "<group>"; };
  1329. F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainToolbar.m; sourceTree = "<group>"; };
  1330. F7D423631F0596C6009C9782 /* ReaderThumbCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbCache.h; sourceTree = "<group>"; };
  1331. F7D423641F0596C6009C9782 /* ReaderThumbCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbCache.m; sourceTree = "<group>"; };
  1332. F7D423651F0596C6009C9782 /* ReaderThumbFetch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbFetch.h; sourceTree = "<group>"; };
  1333. F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbFetch.m; sourceTree = "<group>"; };
  1334. F7D423671F0596C6009C9782 /* ReaderThumbQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbQueue.h; sourceTree = "<group>"; };
  1335. F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbQueue.m; sourceTree = "<group>"; };
  1336. F7D423691F0596C6009C9782 /* ReaderThumbRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRender.h; sourceTree = "<group>"; };
  1337. F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRender.m; sourceTree = "<group>"; };
  1338. F7D4236B1F0596C6009C9782 /* ReaderThumbRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRequest.h; sourceTree = "<group>"; };
  1339. F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRequest.m; sourceTree = "<group>"; };
  1340. F7D4236D1F0596C6009C9782 /* ReaderThumbsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbsView.h; sourceTree = "<group>"; };
  1341. F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbsView.m; sourceTree = "<group>"; };
  1342. F7D4236F1F0596C6009C9782 /* ReaderThumbView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbView.h; sourceTree = "<group>"; };
  1343. F7D423701F0596C6009C9782 /* ReaderThumbView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbView.m; sourceTree = "<group>"; };
  1344. F7D423711F0596C6009C9782 /* ReaderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderViewController.h; sourceTree = "<group>"; };
  1345. F7D423721F0596C6009C9782 /* ReaderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderViewController.m; sourceTree = "<group>"; };
  1346. F7D423731F0596C6009C9782 /* ThumbsMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsMainToolbar.h; sourceTree = "<group>"; };
  1347. F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsMainToolbar.m; sourceTree = "<group>"; };
  1348. F7D423751F0596C6009C9782 /* ThumbsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsViewController.h; sourceTree = "<group>"; };
  1349. F7D423761F0596C6009C9782 /* ThumbsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsViewController.m; sourceTree = "<group>"; };
  1350. F7D423771F0596C6009C9782 /* UIXToolbarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIXToolbarView.h; sourceTree = "<group>"; };
  1351. F7D423781F0596C6009C9782 /* UIXToolbarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIXToolbarView.m; sourceTree = "<group>"; };
  1352. F7D4B67B22956610000C2C86 /* Firebase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Firebase.h; sourceTree = "<group>"; };
  1353. F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleAppMeasurement.framework; sourceTree = "<group>"; };
  1354. F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  1355. F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  1356. F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleUtilities.framework; sourceTree = "<group>"; };
  1357. F7D4B6812295663D000C2C86 /* nanopb.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = nanopb.framework; sourceTree = "<group>"; };
  1358. F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FIRAnalyticsConnector.framework; sourceTree = "<group>"; };
  1359. F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  1360. F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
  1361. F7D4B68E2295666E000C2C86 /* Protobuf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Protobuf.framework; sourceTree = "<group>"; };
  1362. F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GTMSessionFetcher.framework; sourceTree = "<group>"; };
  1363. F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleAPIClientForREST.framework; sourceTree = "<group>"; };
  1364. F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLVision.framework; sourceTree = "<group>"; };
  1365. F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  1366. F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLCommon.framework; sourceTree = "<group>"; };
  1367. F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleMobileVision.framework; sourceTree = "<group>"; };
  1368. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  1369. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1370. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1371. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1372. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1373. F7D6650620FF341600BFBA9E /* NCMainCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainCommon.swift; sourceTree = "<group>"; };
  1374. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAppConfigView.swift; sourceTree = "<group>"; };
  1375. F7DBC37D23325E2D001A85BA /* NCXMLGetAppPasswordParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLGetAppPasswordParser.h; sourceTree = "<group>"; };
  1376. F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLGetAppPasswordParser.m; sourceTree = "<group>"; };
  1377. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MarkdownKit.framework; path = Carthage/Build/iOS/MarkdownKit.framework; sourceTree = "<group>"; };
  1378. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  1379. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkMenuView.xib; sourceTree = "<group>"; };
  1380. F7DFB7DE219C312D00680748 /* NCRichDocumentTemplate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCRichDocumentTemplate.h; sourceTree = "<group>"; };
  1381. F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCRichDocumentTemplate.m; sourceTree = "<group>"; };
  1382. F7DFB7EA219C5A2E00680748 /* NCCreateMenuAdd.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateMenuAdd.swift; sourceTree = "<group>"; };
  1383. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadAssets.swift; sourceTree = "<group>"; };
  1384. F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadFileText.swift; sourceTree = "<group>"; };
  1385. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadScanDocument.swift; sourceTree = "<group>"; };
  1386. F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMainRefreshControl.swift; sourceTree = "<group>"; };
  1387. F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSplitViewController.swift; sourceTree = "<group>"; };
  1388. F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMasterNavigationController.swift; sourceTree = "<group>"; };
  1389. F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAudioRecorderViewController.swift; sourceTree = "<group>"; };
  1390. F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCAudioRecorderViewController.storyboard; sourceTree = "<group>"; };
  1391. F7E45E6D21E75BF200579249 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1392. F7E4D9C322ED929B003675FD /* NCShareComments.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareComments.swift; sourceTree = "<group>"; };
  1393. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyXMLParser.framework; path = Carthage/Build/iOS/SwiftyXMLParser.framework; sourceTree = "<group>"; };
  1394. F7E9C41520F4CA870040CF18 /* CCTransfers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransfers.h; sourceTree = "<group>"; };
  1395. F7E9C41820F4CA870040CF18 /* CCTransfers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransfers.m; sourceTree = "<group>"; };
  1396. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
  1397. F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspace.swift; sourceTree = "<group>"; };
  1398. F7F54CAF1E5B14C700E19C62 /* ImageError.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
  1399. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
  1400. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
  1401. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
  1402. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
  1403. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
  1404. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
  1405. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
  1406. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
  1407. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
  1408. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
  1409. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
  1410. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
  1411. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
  1412. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
  1413. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
  1414. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
  1415. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
  1416. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
  1417. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
  1418. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
  1419. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
  1420. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
  1421. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
  1422. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
  1423. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
  1424. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
  1425. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
  1426. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
  1427. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
  1428. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
  1429. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
  1430. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
  1431. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
  1432. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
  1433. F7F54CD21E5B14C700E19C62 /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
  1434. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
  1435. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
  1436. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
  1437. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
  1438. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
  1439. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
  1440. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
  1441. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
  1442. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
  1443. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
  1444. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
  1445. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
  1446. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
  1447. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
  1448. F7F67BAD1A24D27800EE80DA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  1449. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1450. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  1451. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
  1452. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
  1453. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
  1454. F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerDocumentWeb.swift; sourceTree = "<group>"; };
  1455. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1456. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
  1457. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
  1458. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
  1459. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBKPasscode.h; sourceTree = "<group>"; };
  1460. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBKPasscode.m; sourceTree = "<group>"; };
  1461. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
  1462. /* End PBXFileReference section */
  1463. /* Begin PBXFrameworksBuildPhase section */
  1464. 2C33C47C23E2C475005F963B /* Frameworks */ = {
  1465. isa = PBXFrameworksBuildPhase;
  1466. buildActionMask = 2147483647;
  1467. files = (
  1468. );
  1469. runOnlyForDeploymentPostprocessing = 0;
  1470. };
  1471. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1472. isa = PBXFrameworksBuildPhase;
  1473. buildActionMask = 2147483647;
  1474. files = (
  1475. );
  1476. runOnlyForDeploymentPostprocessing = 0;
  1477. };
  1478. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  1479. isa = PBXFrameworksBuildPhase;
  1480. buildActionMask = 2147483647;
  1481. files = (
  1482. );
  1483. runOnlyForDeploymentPostprocessing = 0;
  1484. };
  1485. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1486. isa = PBXFrameworksBuildPhase;
  1487. buildActionMask = 2147483647;
  1488. files = (
  1489. F716FE7823795E5000FABE50 /* NCCommunication.framework in Frameworks */,
  1490. F74C4FBB2328C3C200A23E25 /* OpenSSL.framework in Frameworks */,
  1491. F7421EAF2294044B00C4B7C1 /* Accelerate.framework in Frameworks */,
  1492. F7D4B68C2295663D000C2C86 /* FirebaseCoreDiagnostics.framework in Frameworks */,
  1493. F7D4B6992295666E000C2C86 /* GoogleToolboxForMac.framework in Frameworks */,
  1494. F7267A82225DFCE100D6DB7D /* AFNetworking.framework in Frameworks */,
  1495. F7C40BF32199978B0004137E /* MBProgressHUD.framework in Frameworks */,
  1496. F7D4B69A2295666E000C2C86 /* FirebaseMLCommon.framework in Frameworks */,
  1497. F7D4B6962295666E000C2C86 /* GTMSessionFetcher.framework in Frameworks */,
  1498. F79918A221997FA300C2E308 /* UICKeyChainStore.framework in Frameworks */,
  1499. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */,
  1500. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */,
  1501. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */,
  1502. F733B65221997CC2001C1FFA /* TLPhotoPicker.framework in Frameworks */,
  1503. F7D4B6872295663D000C2C86 /* FirebaseAnalytics.framework in Frameworks */,
  1504. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */,
  1505. F7C40BE521998D5B0004137E /* MGSwipeTableCell.framework in Frameworks */,
  1506. F7D4B68B2295663D000C2C86 /* FirebaseInstanceID.framework in Frameworks */,
  1507. F745B251222D871800346520 /* QRCodeReader.framework in Frameworks */,
  1508. F765608723BF806D00765969 /* QuickLayout.framework in Frameworks */,
  1509. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */,
  1510. F72382C32295856A005B8A07 /* GoogleToolboxForMac.framework in Frameworks */,
  1511. F72E0B9D21AD60BC00898D7B /* WeScan.framework in Frameworks */,
  1512. F7063DED2199E55F003F38DA /* SVGKit.framework in Frameworks */,
  1513. F7D4B6892295663D000C2C86 /* nanopb.framework in Frameworks */,
  1514. F7063DEF2199E568003F38DA /* CocoaLumberjack.framework in Frameworks */,
  1515. F765608B23BF80A400765969 /* SwiftEntryKit.framework in Frameworks */,
  1516. F72382C02295856A005B8A07 /* FirebaseMLVisionTextModel.framework in Frameworks */,
  1517. F7063DF12199E56F003F38DA /* CocoaLumberjackSwift.framework in Frameworks */,
  1518. F7D4B6952295666E000C2C86 /* Protobuf.framework in Frameworks */,
  1519. F7D4B6852295663D000C2C86 /* GoogleAppMeasurement.framework in Frameworks */,
  1520. F7C40BE721998F410004137E /* DZNEmptyDataSet.framework in Frameworks */,
  1521. F7C40BEF219994ED0004137E /* KTVCocoaHTTPServer.framework in Frameworks */,
  1522. F7C40BF1219994F20004137E /* KTVHTTPCache.framework in Frameworks */,
  1523. F7C40C102199BA5D0004137E /* Realm.framework in Frameworks */,
  1524. F774264122EB3F7300B23912 /* DropDown.framework in Frameworks */,
  1525. F7D4B69B2295666E000C2C86 /* GoogleMobileVision.framework in Frameworks */,
  1526. F75153242226920200323DDC /* FastScroll.framework in Frameworks */,
  1527. F7C40C122199BA620004137E /* RealmSwift.framework in Frameworks */,
  1528. F78AA20621F783E900D0F205 /* SwiftRichString.framework in Frameworks */,
  1529. F7DBD82C23E46A4700ECB7C6 /* MarkdownKit.framework in Frameworks */,
  1530. F74AFCE922E8B025003DE61F /* FSCalendar.framework in Frameworks */,
  1531. F7D4B6982295666E000C2C86 /* FirebaseMLVision.framework in Frameworks */,
  1532. F7D4B6862295663D000C2C86 /* FirebaseCore.framework in Frameworks */,
  1533. F7D4B68A2295663D000C2C86 /* FIRAnalyticsConnector.framework in Frameworks */,
  1534. F700510322DF6897003A3356 /* Parchment.framework in Frameworks */,
  1535. F7D4B6882295663D000C2C86 /* GoogleUtilities.framework in Frameworks */,
  1536. 371B5A3323D0BD5500FAFAE9 /* FloatingPanel.framework in Frameworks */,
  1537. F70F2BA5225F2D8900EBB73E /* ZIPFoundation.framework in Frameworks */,
  1538. F7D4B6972295666E000C2C86 /* GoogleAPIClientForREST.framework in Frameworks */,
  1539. );
  1540. runOnlyForDeploymentPostprocessing = 0;
  1541. };
  1542. /* End PBXFrameworksBuildPhase section */
  1543. /* Begin PBXGroup section */
  1544. 2C33C48023E2C475005F963B /* Notification Service Extension */ = {
  1545. isa = PBXGroup;
  1546. children = (
  1547. 2C33C48123E2C475005F963B /* NotificationService.swift */,
  1548. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */,
  1549. );
  1550. path = "Notification Service Extension";
  1551. sourceTree = "<group>";
  1552. };
  1553. 371B5A2F23D0B04B00FAFAE9 /* Menu */ = {
  1554. isa = PBXGroup;
  1555. children = (
  1556. 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */,
  1557. 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */,
  1558. 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */,
  1559. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */,
  1560. 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */,
  1561. 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */,
  1562. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */,
  1563. );
  1564. path = Menu;
  1565. sourceTree = "<group>";
  1566. };
  1567. F70022561EC4C9100080073F /* OCCommunicationLib */ = {
  1568. isa = PBXGroup;
  1569. children = (
  1570. F7DFB7DE219C312D00680748 /* NCRichDocumentTemplate.h */,
  1571. F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */,
  1572. F781996722636BFA00EBDF6A /* HCFeatures.h */,
  1573. F781996822636BFA00EBDF6A /* HCFeatures.m */,
  1574. F7B6ACD922FC2D14008AB646 /* NCComments.h */,
  1575. F7B6ACDA22FC2D15008AB646 /* NCComments.m */,
  1576. F70022661EC4C9100080073F /* OCActivity.h */,
  1577. F70022671EC4C9100080073F /* OCActivity.m */,
  1578. F70022681EC4C9100080073F /* OCCapabilities.h */,
  1579. F70022691EC4C9100080073F /* OCCapabilities.m */,
  1580. F700226A1EC4C9100080073F /* OCCommunication.h */,
  1581. F700226B1EC4C9100080073F /* OCCommunication.m */,
  1582. F700226C1EC4C9100080073F /* OCErrorMsg.h */,
  1583. F700226D1EC4C9100080073F /* OCExternalSites.h */,
  1584. F700226E1EC4C9100080073F /* OCExternalSites.m */,
  1585. F700226F1EC4C9100080073F /* OCFileDto.h */,
  1586. F70022701EC4C9100080073F /* OCFileDto.m */,
  1587. F70022711EC4C9100080073F /* OCFrameworkConstants.h */,
  1588. F70022721EC4C9100080073F /* OCNotifications.h */,
  1589. F70022731EC4C9100080073F /* OCNotifications.m */,
  1590. F70022741EC4C9100080073F /* OCNotificationsAction.h */,
  1591. F70022751EC4C9100080073F /* OCNotificationsAction.m */,
  1592. F70022761EC4C9100080073F /* OCRichObjectStrings.h */,
  1593. F70022771EC4C9100080073F /* OCRichObjectStrings.m */,
  1594. F70022781EC4C9100080073F /* OCSharedDto.h */,
  1595. F70022791EC4C9100080073F /* OCSharedDto.m */,
  1596. F700227A1EC4C9100080073F /* OCShareUser.h */,
  1597. F700227B1EC4C9100080073F /* OCShareUser.m */,
  1598. F700227C1EC4C9100080073F /* OCUserProfile.h */,
  1599. F700227D1EC4C9100080073F /* OCUserProfile.m */,
  1600. F700227E1EC4C9100080073F /* OCWebDavClient */,
  1601. F700229B1EC4C9100080073F /* Utils */,
  1602. );
  1603. name = OCCommunicationLib;
  1604. path = Library/OCCommunicationLib;
  1605. sourceTree = "<group>";
  1606. };
  1607. F700227E1EC4C9100080073F /* OCWebDavClient */ = {
  1608. isa = PBXGroup;
  1609. children = (
  1610. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */,
  1611. F70022801EC4C9100080073F /* NSDate+ISO8601.m */,
  1612. F70022811EC4C9100080073F /* NSDate+RFC1123.h */,
  1613. F70022821EC4C9100080073F /* NSDate+RFC1123.m */,
  1614. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */,
  1615. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */,
  1616. F70022851EC4C9100080073F /* OCWebDAVClient.h */,
  1617. F70022861EC4C9100080073F /* OCWebDAVClient.m */,
  1618. F70022871EC4C9100080073F /* Parsers */,
  1619. );
  1620. path = OCWebDavClient;
  1621. sourceTree = "<group>";
  1622. };
  1623. F70022871EC4C9100080073F /* Parsers */ = {
  1624. isa = PBXGroup;
  1625. children = (
  1626. F7DBC37D23325E2D001A85BA /* NCXMLGetAppPasswordParser.h */,
  1627. F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */,
  1628. F7B6ACD522FC2BD4008AB646 /* NCXMLCommentsParser.h */,
  1629. F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */,
  1630. F7D2D125230804DF00FD3ED7 /* NCXMLListParser.h */,
  1631. F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */,
  1632. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */,
  1633. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */,
  1634. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */,
  1635. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */,
  1636. F70022901EC4C9100080073F /* OCXMLSharedParser.h */,
  1637. F70022911EC4C9100080073F /* OCXMLSharedParser.m */,
  1638. );
  1639. path = Parsers;
  1640. sourceTree = "<group>";
  1641. };
  1642. F700229B1EC4C9100080073F /* Utils */ = {
  1643. isa = PBXGroup;
  1644. children = (
  1645. F700229C1EC4C9100080073F /* NSString+Encode.h */,
  1646. F700229D1EC4C9100080073F /* NSString+Encode.m */,
  1647. F700229E1EC4C9100080073F /* OCConstants.h */,
  1648. F700229F1EC4C9100080073F /* UtilsFramework.h */,
  1649. F70022A01EC4C9100080073F /* UtilsFramework.m */,
  1650. );
  1651. path = Utils;
  1652. sourceTree = "<group>";
  1653. };
  1654. F70211F31BAC56E9003FC03E /* Main */ = {
  1655. isa = PBXGroup;
  1656. children = (
  1657. F78ACD5921904E460088454D /* ActionSheetHeaderView */,
  1658. F78ACD3E21903BA20088454D /* Cell */,
  1659. F7DFB7E9219C5A0500680748 /* Create cloud */,
  1660. F78ACD4D219043E70088454D /* Layout */,
  1661. 371B5A2F23D0B04B00FAFAE9 /* Menu */,
  1662. F78ACD50219046AC0088454D /* Section */,
  1663. F7D0E65E1BC5042E008D989A /* CCDetail.h */,
  1664. F7D0E65F1BC5042E008D989A /* CCDetail.m */,
  1665. F70211FA1BAC56E9003FC03E /* CCMain.h */,
  1666. F70211FB1BAC56E9003FC03E /* CCMain.m */,
  1667. F73F537E1E929C8500F8678D /* CCMore.swift */,
  1668. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */,
  1669. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */,
  1670. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1671. F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */,
  1672. F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */,
  1673. F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */,
  1674. F7D6650620FF341600BFBA9E /* NCMainCommon.swift */,
  1675. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */,
  1676. F77F5D2C23D5F28100D2B7EB /* NCMainRefreshControl.swift */,
  1677. F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */,
  1678. );
  1679. path = Main;
  1680. sourceTree = "<group>";
  1681. };
  1682. F704FA5A232A341800BBA952 /* Imagemeter */ = {
  1683. isa = PBXGroup;
  1684. children = (
  1685. F72747752382E31600E9B76D /* IMCreate.swift */,
  1686. F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */,
  1687. );
  1688. path = Imagemeter;
  1689. sourceTree = "<group>";
  1690. };
  1691. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */ = {
  1692. isa = PBXGroup;
  1693. children = (
  1694. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */,
  1695. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */,
  1696. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */,
  1697. );
  1698. path = UploadFromOtherUpp;
  1699. sourceTree = "<group>";
  1700. };
  1701. F70F02A81C889183008DAB36 /* Libraries external */ = {
  1702. isa = PBXGroup;
  1703. children = (
  1704. F70F02B21C889183008DAB36 /* AFViewShaker */,
  1705. F7A377131EB2364A002856D3 /* Fabric */,
  1706. F7D4B67A22956610000C2C86 /* Firebase */,
  1707. F704FA5A232A341800BBA952 /* Imagemeter */,
  1708. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */,
  1709. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */,
  1710. F75037421DBFA91A008FB480 /* PureLayout */,
  1711. F70F05241C889184008DAB36 /* Reachability */,
  1712. F70F05561C889184008DAB36 /* UIImage+animatedGIF */,
  1713. );
  1714. path = "Libraries external";
  1715. sourceTree = SOURCE_ROOT;
  1716. };
  1717. F70F02B21C889183008DAB36 /* AFViewShaker */ = {
  1718. isa = PBXGroup;
  1719. children = (
  1720. F70F02B31C889183008DAB36 /* AFViewShaker.h */,
  1721. F70F02B41C889183008DAB36 /* AFViewShaker.m */,
  1722. );
  1723. path = AFViewShaker;
  1724. sourceTree = "<group>";
  1725. };
  1726. F70F05241C889184008DAB36 /* Reachability */ = {
  1727. isa = PBXGroup;
  1728. children = (
  1729. F70F05251C889184008DAB36 /* Reachability.h */,
  1730. F70F05261C889184008DAB36 /* Reachability.m */,
  1731. );
  1732. path = Reachability;
  1733. sourceTree = "<group>";
  1734. };
  1735. F70F05561C889184008DAB36 /* UIImage+animatedGIF */ = {
  1736. isa = PBXGroup;
  1737. children = (
  1738. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */,
  1739. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */,
  1740. );
  1741. path = "UIImage+animatedGIF";
  1742. sourceTree = "<group>";
  1743. };
  1744. F710E80C1EF95C9C00DC2427 /* Intro */ = {
  1745. isa = PBXGroup;
  1746. children = (
  1747. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
  1748. F749C10923C4A5330027D966 /* NCIntro.storyboard */,
  1749. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */,
  1750. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */,
  1751. F749C10823C4A5330027D966 /* NCIntroViewController.swift */,
  1752. );
  1753. path = Intro;
  1754. sourceTree = "<group>";
  1755. };
  1756. F7169A161EE590930086BD69 /* Shares */ = {
  1757. isa = PBXGroup;
  1758. children = (
  1759. F7169A171EE590930086BD69 /* NCShares.h */,
  1760. F7169A181EE590930086BD69 /* NCShares.m */,
  1761. F7169A191EE590930086BD69 /* NCSharesCell.h */,
  1762. F7169A1A1EE590930086BD69 /* NCSharesCell.m */,
  1763. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */,
  1764. );
  1765. path = Shares;
  1766. sourceTree = "<group>";
  1767. };
  1768. F72382BA22958569005B8A07 /* MLVisionTextModel */ = {
  1769. isa = PBXGroup;
  1770. children = (
  1771. F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */,
  1772. F72382BD22958569005B8A07 /* Resources */,
  1773. F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */,
  1774. );
  1775. path = MLVisionTextModel;
  1776. sourceTree = "<group>";
  1777. };
  1778. F72382BD22958569005B8A07 /* Resources */ = {
  1779. isa = PBXGroup;
  1780. children = (
  1781. F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */,
  1782. );
  1783. path = Resources;
  1784. sourceTree = "<group>";
  1785. };
  1786. F728CE741BF6322C00E69702 /* Share */ = {
  1787. isa = PBXGroup;
  1788. children = (
  1789. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */,
  1790. F700510022DF63AC003A3356 /* NCShare.storyboard */,
  1791. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */,
  1792. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */,
  1793. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */,
  1794. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */,
  1795. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */,
  1796. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */,
  1797. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */,
  1798. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */,
  1799. F769453F22E9F077000A798A /* NCSharePaging.swift */,
  1800. F700510422DF6A89003A3356 /* NCShare.swift */,
  1801. F7E4D9C322ED929B003675FD /* NCShareComments.swift */,
  1802. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */,
  1803. F769454322E9F142000A798A /* NCShareUserMenuView.swift */,
  1804. F769454722E9F20D000A798A /* NCShareNetworking.swift */,
  1805. F769454522E9F1B0000A798A /* NCShareCommon.swift */,
  1806. );
  1807. path = Share;
  1808. sourceTree = "<group>";
  1809. };
  1810. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */ = {
  1811. isa = PBXGroup;
  1812. children = (
  1813. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */,
  1814. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */,
  1815. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */,
  1816. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */,
  1817. );
  1818. path = AHKActionSheet;
  1819. sourceTree = "<group>";
  1820. };
  1821. F72B60941A24F04E004EF66F /* Localizations */ = {
  1822. isa = PBXGroup;
  1823. children = (
  1824. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1825. );
  1826. name = Localizations;
  1827. sourceTree = "<group>";
  1828. };
  1829. F7381ED9218218A4000B1560 /* Offline */ = {
  1830. isa = PBXGroup;
  1831. children = (
  1832. F7381EDE218218C9000B1560 /* NCOffline.storyboard */,
  1833. F7381EDA218218C9000B1560 /* NCOffline.swift */,
  1834. );
  1835. path = Offline;
  1836. sourceTree = "<group>";
  1837. };
  1838. F73B4EAC1F470D9100BBEE4B /* src */ = {
  1839. isa = PBXGroup;
  1840. children = (
  1841. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */,
  1842. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */,
  1843. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */,
  1844. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */,
  1845. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */,
  1846. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */,
  1847. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */,
  1848. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */,
  1849. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */,
  1850. F73B4EB61F470D9100BBEE4B /* JpCntx.h */,
  1851. F73B4EB71F470D9100BBEE4B /* LangModels */,
  1852. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */,
  1853. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */,
  1854. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */,
  1855. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */,
  1856. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */,
  1857. F73B4ECB1F470D9100BBEE4B /* nscore.h */,
  1858. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */,
  1859. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */,
  1860. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */,
  1861. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */,
  1862. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */,
  1863. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */,
  1864. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */,
  1865. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */,
  1866. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */,
  1867. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */,
  1868. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */,
  1869. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */,
  1870. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */,
  1871. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */,
  1872. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */,
  1873. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */,
  1874. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */,
  1875. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */,
  1876. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */,
  1877. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */,
  1878. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */,
  1879. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */,
  1880. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */,
  1881. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */,
  1882. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */,
  1883. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */,
  1884. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */,
  1885. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */,
  1886. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */,
  1887. F73B4EE91F470D9100BBEE4B /* prmem.h */,
  1888. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */,
  1889. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */,
  1890. F73B4EED1F470D9100BBEE4B /* uchardet.h */,
  1891. );
  1892. path = src;
  1893. sourceTree = "<group>";
  1894. };
  1895. F73B4EB71F470D9100BBEE4B /* LangModels */ = {
  1896. isa = PBXGroup;
  1897. children = (
  1898. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */,
  1899. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */,
  1900. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */,
  1901. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */,
  1902. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */,
  1903. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */,
  1904. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */,
  1905. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */,
  1906. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */,
  1907. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */,
  1908. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */,
  1909. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */,
  1910. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */,
  1911. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */,
  1912. );
  1913. path = LangModels;
  1914. sourceTree = "<group>";
  1915. };
  1916. F73CC0571E813DFF006E3047 /* BKPasscodeView */ = {
  1917. isa = PBXGroup;
  1918. children = (
  1919. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */,
  1920. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */,
  1921. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */,
  1922. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */,
  1923. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */,
  1924. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */,
  1925. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */,
  1926. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */,
  1927. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */,
  1928. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */,
  1929. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */,
  1930. F73CC0631E813DFF006E3047 /* BKShiftingView.h */,
  1931. F73CC0641E813DFF006E3047 /* BKShiftingView.m */,
  1932. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */,
  1933. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */,
  1934. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */,
  1935. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */,
  1936. );
  1937. path = BKPasscodeView;
  1938. sourceTree = "<group>";
  1939. };
  1940. F73D71561F26739100E233EB /* Text */ = {
  1941. isa = PBXGroup;
  1942. children = (
  1943. F73D71611F2673C200E233EB /* NCText.swift */,
  1944. F73D71631F2674A400E233EB /* NCText.storyboard */,
  1945. );
  1946. path = Text;
  1947. sourceTree = "<group>";
  1948. };
  1949. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  1950. isa = PBXGroup;
  1951. children = (
  1952. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  1953. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */,
  1954. F732BA031D76CE1500E9878B /* CCNetworking.h */,
  1955. F732BA041D76CE1500E9878B /* CCNetworking.m */,
  1956. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */,
  1957. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */,
  1958. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */,
  1959. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */,
  1960. );
  1961. path = Networking;
  1962. sourceTree = "<group>";
  1963. };
  1964. F75037421DBFA91A008FB480 /* PureLayout */ = {
  1965. isa = PBXGroup;
  1966. children = (
  1967. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */,
  1968. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */,
  1969. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */,
  1970. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */,
  1971. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */,
  1972. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */,
  1973. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */,
  1974. F750374A1DBFA91A008FB480 /* PureLayout.h */,
  1975. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */,
  1976. );
  1977. path = PureLayout;
  1978. sourceTree = "<group>";
  1979. };
  1980. F754EEC321772B6100BB1CDF /* DropdownMenu */ = {
  1981. isa = PBXGroup;
  1982. children = (
  1983. F754EEC421772B6100BB1CDF /* DropdownItem.swift */,
  1984. F754EEC521772B6100BB1CDF /* DropUpMenu.swift */,
  1985. F754EEC621772B6100BB1CDF /* DropdownMenu.h */,
  1986. F754EEC721772B6100BB1CDF /* DropdownMenu.swift */,
  1987. F754EEC821772B6100BB1CDF /* SectionHeader.swift */,
  1988. );
  1989. path = DropdownMenu;
  1990. sourceTree = "<group>";
  1991. };
  1992. F758B41E212C516300515F55 /* ScanDocument */ = {
  1993. isa = PBXGroup;
  1994. children = (
  1995. F758B45F212C56A400515F55 /* ScanCollectionView.swift */,
  1996. F758B45D212C569C00515F55 /* ScanCell.swift */,
  1997. F758B457212C564000515F55 /* Scan.storyboard */,
  1998. );
  1999. path = ScanDocument;
  2000. sourceTree = "<group>";
  2001. };
  2002. F760F75621F21F61006B1A73 /* PhotoEditor */ = {
  2003. isa = PBXGroup;
  2004. children = (
  2005. F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */,
  2006. F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */,
  2007. F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */,
  2008. F760F77A21F21F61006B1A73 /* CropRectView.swift */,
  2009. F760F77021F21F61006B1A73 /* CropView.swift */,
  2010. F760F77621F21F61006B1A73 /* CropViewController.swift */,
  2011. F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */,
  2012. F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */,
  2013. F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */,
  2014. F760F77921F21F61006B1A73 /* GradientView.swift */,
  2015. F760F75721F21F61006B1A73 /* icomoon.ttf */,
  2016. F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */,
  2017. F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */,
  2018. F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */,
  2019. F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */,
  2020. F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */,
  2021. F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */,
  2022. F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */,
  2023. F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */,
  2024. F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */,
  2025. F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */,
  2026. F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */,
  2027. F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */,
  2028. F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */,
  2029. F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */,
  2030. F760F76A21F21F61006B1A73 /* Protocols.swift */,
  2031. F760F77121F21F61006B1A73 /* ResizeControl.swift */,
  2032. F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */,
  2033. F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */,
  2034. F760F76921F21F61006B1A73 /* StickersViewController.swift */,
  2035. F760F75821F21F61006B1A73 /* StickersViewController.xib */,
  2036. F760F76821F21F61006B1A73 /* UIImage+Crop.swift */,
  2037. F760F76721F21F61006B1A73 /* UIImage+Size.swift */,
  2038. F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */,
  2039. F760F76621F21F61006B1A73 /* UIView+Image.swift */,
  2040. );
  2041. path = PhotoEditor;
  2042. sourceTree = "<group>";
  2043. };
  2044. F762CA9F1EACB66200B38484 /* XLForm */ = {
  2045. isa = PBXGroup;
  2046. children = (
  2047. F762CAA11EACB66200B38484 /* XL */,
  2048. F762CAF51EACB66200B38484 /* XLForm.bundle */,
  2049. );
  2050. path = XLForm;
  2051. sourceTree = "<group>";
  2052. };
  2053. F762CAA11EACB66200B38484 /* XL */ = {
  2054. isa = PBXGroup;
  2055. children = (
  2056. F762CAA21EACB66200B38484 /* Cell */,
  2057. F762CAC51EACB66200B38484 /* Controllers */,
  2058. F762CACD1EACB66200B38484 /* Descriptors */,
  2059. F762CAD51EACB66200B38484 /* Helpers */,
  2060. F762CAEB1EACB66200B38484 /* Validation */,
  2061. F762CAF31EACB66200B38484 /* XLForm.h */,
  2062. F762CAF41EACB66200B38484 /* XLForm.m */,
  2063. );
  2064. path = XL;
  2065. sourceTree = "<group>";
  2066. };
  2067. F762CAA21EACB66200B38484 /* Cell */ = {
  2068. isa = PBXGroup;
  2069. children = (
  2070. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */,
  2071. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */,
  2072. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */,
  2073. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */,
  2074. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */,
  2075. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */,
  2076. F762CAA91EACB66200B38484 /* XLFormDateCell.h */,
  2077. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */,
  2078. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */,
  2079. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */,
  2080. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */,
  2081. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */,
  2082. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */,
  2083. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */,
  2084. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */,
  2085. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */,
  2086. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */,
  2087. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */,
  2088. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */,
  2089. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */,
  2090. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */,
  2091. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */,
  2092. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */,
  2093. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */,
  2094. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */,
  2095. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */,
  2096. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */,
  2097. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */,
  2098. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */,
  2099. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */,
  2100. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */,
  2101. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */,
  2102. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */,
  2103. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */,
  2104. );
  2105. path = Cell;
  2106. sourceTree = "<group>";
  2107. };
  2108. F762CAC51EACB66200B38484 /* Controllers */ = {
  2109. isa = PBXGroup;
  2110. children = (
  2111. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */,
  2112. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */,
  2113. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */,
  2114. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */,
  2115. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */,
  2116. F762CACB1EACB66200B38484 /* XLFormViewController.h */,
  2117. F762CACC1EACB66200B38484 /* XLFormViewController.m */,
  2118. );
  2119. path = Controllers;
  2120. sourceTree = "<group>";
  2121. };
  2122. F762CACD1EACB66200B38484 /* Descriptors */ = {
  2123. isa = PBXGroup;
  2124. children = (
  2125. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */,
  2126. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */,
  2127. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */,
  2128. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */,
  2129. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */,
  2130. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */,
  2131. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */,
  2132. );
  2133. path = Descriptors;
  2134. sourceTree = "<group>";
  2135. };
  2136. F762CAD51EACB66200B38484 /* Helpers */ = {
  2137. isa = PBXGroup;
  2138. children = (
  2139. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */,
  2140. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */,
  2141. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */,
  2142. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */,
  2143. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */,
  2144. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */,
  2145. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */,
  2146. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */,
  2147. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */,
  2148. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */,
  2149. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */,
  2150. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */,
  2151. F762CAE21EACB66200B38484 /* Views */,
  2152. );
  2153. path = Helpers;
  2154. sourceTree = "<group>";
  2155. };
  2156. F762CAE21EACB66200B38484 /* Views */ = {
  2157. isa = PBXGroup;
  2158. children = (
  2159. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */,
  2160. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */,
  2161. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */,
  2162. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */,
  2163. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */,
  2164. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */,
  2165. F762CAE91EACB66200B38484 /* XLFormTextView.h */,
  2166. F762CAEA1EACB66200B38484 /* XLFormTextView.m */,
  2167. );
  2168. path = Views;
  2169. sourceTree = "<group>";
  2170. };
  2171. F762CAEB1EACB66200B38484 /* Validation */ = {
  2172. isa = PBXGroup;
  2173. children = (
  2174. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */,
  2175. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */,
  2176. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */,
  2177. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */,
  2178. F762CAF01EACB66200B38484 /* XLFormValidator.h */,
  2179. F762CAF11EACB66200B38484 /* XLFormValidator.m */,
  2180. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */,
  2181. );
  2182. path = Validation;
  2183. sourceTree = "<group>";
  2184. };
  2185. F762CB1C1EACB7D400B38484 /* VFR Pdf Reader */ = {
  2186. isa = PBXGroup;
  2187. children = (
  2188. F7D423501F0596C6009C9782 /* Sources */,
  2189. F7D423151F0596AC009C9782 /* Graphics */,
  2190. );
  2191. path = "VFR Pdf Reader";
  2192. sourceTree = "<group>";
  2193. };
  2194. F7632FC32183667400721B71 /* Section */ = {
  2195. isa = PBXGroup;
  2196. children = (
  2197. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */,
  2198. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */,
  2199. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */,
  2200. );
  2201. path = Section;
  2202. sourceTree = "<group>";
  2203. };
  2204. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  2205. isa = PBXGroup;
  2206. children = (
  2207. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  2208. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */,
  2209. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  2210. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  2211. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  2212. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  2213. F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */,
  2214. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  2215. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  2216. F76673EF22C90433007ED366 /* FileProviderUtility.swift */,
  2217. );
  2218. path = "File Provider Extension";
  2219. sourceTree = "<group>";
  2220. };
  2221. F78ACD3E21903BA20088454D /* Cell */ = {
  2222. isa = PBXGroup;
  2223. children = (
  2224. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */,
  2225. F70211F51BAC56E9003FC03E /* CCCellMain.m */,
  2226. F70211F61BAC56E9003FC03E /* CCCellMain.xib */,
  2227. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */,
  2228. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */,
  2229. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */,
  2230. F78ACD3F21903CC20088454D /* NCGridCell.swift */,
  2231. F78ACD4521903D010088454D /* NCGridCell.xib */,
  2232. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */,
  2233. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */,
  2234. F78ACD4121903CE00088454D /* NCListCell.swift */,
  2235. F78ACD4321903CF20088454D /* NCListCell.xib */,
  2236. );
  2237. path = Cell;
  2238. sourceTree = "<group>";
  2239. };
  2240. F78ACD4721903F850088454D /* Cell */ = {
  2241. isa = PBXGroup;
  2242. children = (
  2243. F78ACD4821903F850088454D /* NCTrashListCell.swift */,
  2244. F78ACD4921903F850088454D /* NCTrashListCell.xib */,
  2245. );
  2246. path = Cell;
  2247. sourceTree = "<group>";
  2248. };
  2249. F78ACD4D219043E70088454D /* Layout */ = {
  2250. isa = PBXGroup;
  2251. children = (
  2252. F78ACD4E2190440D0088454D /* NCLayout.swift */,
  2253. );
  2254. path = Layout;
  2255. sourceTree = "<group>";
  2256. };
  2257. F78ACD50219046AC0088454D /* Section */ = {
  2258. isa = PBXGroup;
  2259. children = (
  2260. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */,
  2261. F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */,
  2262. F78ACD55219047E90088454D /* NCSectionHeader.xib */,
  2263. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */,
  2264. F78ACD53219047D40088454D /* NCSectionFooter.xib */,
  2265. );
  2266. path = Section;
  2267. sourceTree = "<group>";
  2268. };
  2269. F78ACD5921904E460088454D /* ActionSheetHeaderView */ = {
  2270. isa = PBXGroup;
  2271. children = (
  2272. F729B92C217A2F1B00FE2150 /* NCActionSheetHeaderView.swift */,
  2273. F76C6F8D21943C8C0063591B /* NCActionSheetHeader.swift */,
  2274. F729B92A217A2E4E00FE2150 /* NCActionSheetHeaderView.xib */,
  2275. );
  2276. path = ActionSheetHeaderView;
  2277. sourceTree = "<group>";
  2278. };
  2279. F78F74322163753B00C2ADAD /* Trash */ = {
  2280. isa = PBXGroup;
  2281. children = (
  2282. F78F74332163757000C2ADAD /* NCTrash.storyboard */,
  2283. F78F74352163781100C2ADAD /* NCTrash.swift */,
  2284. F78ACD4721903F850088454D /* Cell */,
  2285. F7632FC32183667400721B71 /* Section */,
  2286. );
  2287. path = Trash;
  2288. sourceTree = "<group>";
  2289. };
  2290. F79630EC215526B60015EEA5 /* Viewer */ = {
  2291. isa = PBXGroup;
  2292. children = (
  2293. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */,
  2294. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */,
  2295. F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */,
  2296. F79630ED215527D40015EEA5 /* NCViewerMedia.swift */,
  2297. );
  2298. path = Viewer;
  2299. sourceTree = "<group>";
  2300. };
  2301. F79A65C12191D8DC00FF6DCC /* Select */ = {
  2302. isa = PBXGroup;
  2303. children = (
  2304. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */,
  2305. F79A65C52191D95E00FF6DCC /* NCSelect.swift */,
  2306. );
  2307. path = Select;
  2308. sourceTree = "<group>";
  2309. };
  2310. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  2311. isa = PBXGroup;
  2312. children = (
  2313. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */,
  2314. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */,
  2315. );
  2316. path = Favorites;
  2317. sourceTree = "<group>";
  2318. };
  2319. F7A321621E9E37960069AD1B /* Activity */ = {
  2320. isa = PBXGroup;
  2321. children = (
  2322. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */,
  2323. F7C9555421F0C5470024296E /* NCActivity.swift */,
  2324. );
  2325. path = Activity;
  2326. sourceTree = "<group>";
  2327. };
  2328. F7A321891E9E42B20069AD1B /* MenuAccount */ = {
  2329. isa = PBXGroup;
  2330. children = (
  2331. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */,
  2332. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */,
  2333. );
  2334. path = MenuAccount;
  2335. sourceTree = "<group>";
  2336. };
  2337. F7A377131EB2364A002856D3 /* Fabric */ = {
  2338. isa = PBXGroup;
  2339. children = (
  2340. F7A377141EB2364A002856D3 /* Crashlytics.framework */,
  2341. F7A377151EB2364A002856D3 /* Fabric.framework */,
  2342. );
  2343. name = Fabric;
  2344. path = "Libraries external/Fabric";
  2345. sourceTree = SOURCE_ROOT;
  2346. };
  2347. F7ACE4281BAC0268006C0017 /* Settings */ = {
  2348. isa = PBXGroup;
  2349. children = (
  2350. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  2351. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  2352. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  2353. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  2354. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  2355. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  2356. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  2357. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  2358. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  2359. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  2360. F7ACE4301BAC0268006C0017 /* CCSettings.h */,
  2361. F7ACE4311BAC0268006C0017 /* CCSettings.m */,
  2362. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  2363. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */,
  2364. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */,
  2365. );
  2366. path = Settings;
  2367. sourceTree = "<group>";
  2368. };
  2369. F7AE00F6230E8191007ACF8A /* BrowserWeb */ = {
  2370. isa = PBXGroup;
  2371. children = (
  2372. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */,
  2373. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */,
  2374. );
  2375. path = BrowserWeb;
  2376. sourceTree = "<group>";
  2377. };
  2378. F7B0C0CA1EE7E7750033AC24 /* Synchronize */ = {
  2379. isa = PBXGroup;
  2380. children = (
  2381. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */,
  2382. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */,
  2383. );
  2384. path = Synchronize;
  2385. sourceTree = "<group>";
  2386. };
  2387. F7B0C1701EE8397E0033AC24 /* AutoUpload */ = {
  2388. isa = PBXGroup;
  2389. children = (
  2390. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */,
  2391. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */,
  2392. );
  2393. path = AutoUpload;
  2394. sourceTree = "<group>";
  2395. };
  2396. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */ = {
  2397. isa = PBXGroup;
  2398. children = (
  2399. F7B2DEEC1F976785007CF4D2 /* languages */,
  2400. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */,
  2401. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */,
  2402. );
  2403. path = NYMnemonic;
  2404. sourceTree = "<group>";
  2405. };
  2406. F7B2DEEC1F976785007CF4D2 /* languages */ = {
  2407. isa = PBXGroup;
  2408. children = (
  2409. F7B2DEED1F976785007CF4D2 /* english.txt */,
  2410. );
  2411. path = languages;
  2412. sourceTree = "<group>";
  2413. };
  2414. F7B4F1C51F44356F00B53B42 /* NCUchardet */ = {
  2415. isa = PBXGroup;
  2416. children = (
  2417. F73B4EAC1F470D9100BBEE4B /* src */,
  2418. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */,
  2419. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */,
  2420. );
  2421. path = NCUchardet;
  2422. sourceTree = "<group>";
  2423. };
  2424. F7BAAD951ED5A63D00B7EAD4 /* Database */ = {
  2425. isa = PBXGroup;
  2426. children = (
  2427. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  2428. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  2429. );
  2430. path = Database;
  2431. sourceTree = "<group>";
  2432. };
  2433. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */ = {
  2434. isa = PBXGroup;
  2435. children = (
  2436. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */,
  2437. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */,
  2438. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */,
  2439. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */,
  2440. );
  2441. path = "ManageLocation+ManageAsset";
  2442. sourceTree = "<group>";
  2443. };
  2444. F7BFFA621A24D7300044ED85 /* Login */ = {
  2445. isa = PBXGroup;
  2446. children = (
  2447. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */,
  2448. F7BF1B3F1D51E893000854F6 /* CCLogin.h */,
  2449. F7BF1B401D51E893000854F6 /* CCLogin.m */,
  2450. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */,
  2451. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */,
  2452. F745B252222D88AE00346520 /* NCLoginQRCode.swift */,
  2453. );
  2454. path = Login;
  2455. sourceTree = "<group>";
  2456. };
  2457. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  2458. isa = PBXGroup;
  2459. children = (
  2460. F76C3B871C638A4C00DC4301 /* CCError.h */,
  2461. F76C3B881C638A4C00DC4301 /* CCError.m */,
  2462. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */,
  2463. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */,
  2464. F76C3B831C6388BC00DC4301 /* CCGraphics.h */,
  2465. F76C3B841C6388BC00DC4301 /* CCGraphics.m */,
  2466. F7514EDA1C7B1336008F3338 /* CCHud.h */,
  2467. F7514EDB1C7B1336008F3338 /* CCHud.m */,
  2468. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  2469. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  2470. F78E7064219F096B006F23E4 /* NCAvatar.swift */,
  2471. F765608E23BF813500765969 /* NCContentPresenter.swift */,
  2472. F707C26421A2DC5200F6181E /* NCStoreReview.swift */,
  2473. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  2474. F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */,
  2475. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  2476. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  2477. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */,
  2478. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */,
  2479. F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */,
  2480. );
  2481. path = Utility;
  2482. sourceTree = "<group>";
  2483. };
  2484. F7C0F46D1C8880540059EC54 /* Share */ = {
  2485. isa = PBXGroup;
  2486. children = (
  2487. F78B9683234F785300F54315 /* NCSelectDestination.h */,
  2488. F78B9682234F785300F54315 /* NCSelectDestination.m */,
  2489. F78B9684234F785300F54315 /* NCSelectDestination.storyboard */,
  2490. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */,
  2491. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */,
  2492. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */,
  2493. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */,
  2494. F7C0F46E1C8880540059EC54 /* ShareViewController.h */,
  2495. F7C0F46F1C8880540059EC54 /* ShareViewController.m */,
  2496. F7296A661C8880ED001A7809 /* CCloadItemData.swift */,
  2497. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */,
  2498. );
  2499. path = Share;
  2500. sourceTree = "<group>";
  2501. };
  2502. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  2503. isa = PBXGroup;
  2504. children = (
  2505. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  2506. F710E80C1EF95C9C00DC2427 /* Intro */,
  2507. F700222B1EC479840080073F /* Custom.xcassets */,
  2508. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */,
  2509. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  2510. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  2511. );
  2512. path = Brand;
  2513. sourceTree = "<group>";
  2514. };
  2515. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  2516. isa = PBXGroup;
  2517. children = (
  2518. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */,
  2519. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */,
  2520. );
  2521. name = Notification;
  2522. sourceTree = "<group>";
  2523. };
  2524. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  2525. isa = PBXGroup;
  2526. children = (
  2527. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */,
  2528. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */,
  2529. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  2530. F7496B81208F5651004B299C /* iOSClient.plist */,
  2531. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */,
  2532. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */,
  2533. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  2534. F7496B83208F5652004B299C /* Share.plist */,
  2535. );
  2536. name = "Supporting Files";
  2537. sourceTree = "<group>";
  2538. };
  2539. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */ = {
  2540. isa = PBXGroup;
  2541. children = (
  2542. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */,
  2543. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */,
  2544. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */,
  2545. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */,
  2546. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */,
  2547. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */,
  2548. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */,
  2549. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */,
  2550. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */,
  2551. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */,
  2552. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */,
  2553. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */,
  2554. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */,
  2555. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */,
  2556. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */,
  2557. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */,
  2558. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */,
  2559. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */,
  2560. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */,
  2561. );
  2562. path = PKDownloadButton;
  2563. sourceTree = "<group>";
  2564. };
  2565. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */ = {
  2566. isa = PBXGroup;
  2567. children = (
  2568. F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */,
  2569. F722814223C8C34500C41898 /* NCRichWorkspace.xib */,
  2570. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */,
  2571. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */,
  2572. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */,
  2573. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */,
  2574. );
  2575. path = RichWorkspace;
  2576. sourceTree = "<group>";
  2577. };
  2578. F7D423151F0596AC009C9782 /* Graphics */ = {
  2579. isa = PBXGroup;
  2580. children = (
  2581. F7D423161F0596AC009C9782 /* AppIcon-076.png */,
  2582. F7D423171F0596AC009C9782 /* AppIcon-120.png */,
  2583. F7D423181F0596AC009C9782 /* AppIcon-152.png */,
  2584. F7D423191F0596AC009C9782 /* AppIcon-167.png */,
  2585. F7D4231A1F0596AC009C9782 /* AppIcon-180.png */,
  2586. F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */,
  2587. F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */,
  2588. F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */,
  2589. F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */,
  2590. F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */,
  2591. F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */,
  2592. F7D423211F0596AC009C9782 /* Reader-Email.png */,
  2593. F7D423221F0596AC009C9782 /* Reader-Email@2x.png */,
  2594. F7D423231F0596AC009C9782 /* Reader-Email@3x.png */,
  2595. F7D423241F0596AC009C9782 /* Reader-Export.png */,
  2596. F7D423251F0596AC009C9782 /* Reader-Export@2x.png */,
  2597. F7D423261F0596AC009C9782 /* Reader-Export@3x.png */,
  2598. F7D423271F0596AC009C9782 /* Reader-Mark-N.png */,
  2599. F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */,
  2600. F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */,
  2601. F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */,
  2602. F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */,
  2603. F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */,
  2604. F7D4232D1F0596AC009C9782 /* Reader-Print.png */,
  2605. F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */,
  2606. F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */,
  2607. F7D423301F0596AC009C9782 /* Reader-Thumbs.png */,
  2608. F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */,
  2609. F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */,
  2610. );
  2611. path = Graphics;
  2612. sourceTree = "<group>";
  2613. };
  2614. F7D423501F0596C6009C9782 /* Sources */ = {
  2615. isa = PBXGroup;
  2616. children = (
  2617. F7D423511F0596C6009C9782 /* CGPDFDocument.h */,
  2618. F7D423521F0596C6009C9782 /* CGPDFDocument.m */,
  2619. F7D423531F0596C6009C9782 /* ReaderConstants.h */,
  2620. F7D423541F0596C6009C9782 /* ReaderConstants.m */,
  2621. F7D423551F0596C6009C9782 /* ReaderContentPage.h */,
  2622. F7D423561F0596C6009C9782 /* ReaderContentPage.m */,
  2623. F7D423571F0596C6009C9782 /* ReaderContentTile.h */,
  2624. F7D423581F0596C6009C9782 /* ReaderContentTile.m */,
  2625. F7D423591F0596C6009C9782 /* ReaderContentView.h */,
  2626. F7D4235A1F0596C6009C9782 /* ReaderContentView.m */,
  2627. F7D4235B1F0596C6009C9782 /* ReaderDocument.h */,
  2628. F7D4235C1F0596C6009C9782 /* ReaderDocument.m */,
  2629. F7D4235D1F0596C6009C9782 /* ReaderDocumentOutline.h */,
  2630. F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */,
  2631. F7D4235F1F0596C6009C9782 /* ReaderMainPagebar.h */,
  2632. F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */,
  2633. F7D423611F0596C6009C9782 /* ReaderMainToolbar.h */,
  2634. F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */,
  2635. F7D423631F0596C6009C9782 /* ReaderThumbCache.h */,
  2636. F7D423641F0596C6009C9782 /* ReaderThumbCache.m */,
  2637. F7D423651F0596C6009C9782 /* ReaderThumbFetch.h */,
  2638. F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */,
  2639. F7D423671F0596C6009C9782 /* ReaderThumbQueue.h */,
  2640. F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */,
  2641. F7D423691F0596C6009C9782 /* ReaderThumbRender.h */,
  2642. F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */,
  2643. F7D4236B1F0596C6009C9782 /* ReaderThumbRequest.h */,
  2644. F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */,
  2645. F7D4236D1F0596C6009C9782 /* ReaderThumbsView.h */,
  2646. F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */,
  2647. F7D4236F1F0596C6009C9782 /* ReaderThumbView.h */,
  2648. F7D423701F0596C6009C9782 /* ReaderThumbView.m */,
  2649. F7D423711F0596C6009C9782 /* ReaderViewController.h */,
  2650. F7D423721F0596C6009C9782 /* ReaderViewController.m */,
  2651. F7D423731F0596C6009C9782 /* ThumbsMainToolbar.h */,
  2652. F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */,
  2653. F7D423751F0596C6009C9782 /* ThumbsViewController.h */,
  2654. F7D423761F0596C6009C9782 /* ThumbsViewController.m */,
  2655. F7D423771F0596C6009C9782 /* UIXToolbarView.h */,
  2656. F7D423781F0596C6009C9782 /* UIXToolbarView.m */,
  2657. );
  2658. path = Sources;
  2659. sourceTree = "<group>";
  2660. };
  2661. F7D4B67A22956610000C2C86 /* Firebase */ = {
  2662. isa = PBXGroup;
  2663. children = (
  2664. F7D4B67C2295663D000C2C86 /* Analytics */,
  2665. F7D4B68D2295666E000C2C86 /* MLVision */,
  2666. F72382BA22958569005B8A07 /* MLVisionTextModel */,
  2667. F7D4B67B22956610000C2C86 /* Firebase.h */,
  2668. );
  2669. path = Firebase;
  2670. sourceTree = "<group>";
  2671. };
  2672. F7D4B67C2295663D000C2C86 /* Analytics */ = {
  2673. isa = PBXGroup;
  2674. children = (
  2675. F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */,
  2676. F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */,
  2677. F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */,
  2678. F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */,
  2679. F7D4B6812295663D000C2C86 /* nanopb.framework */,
  2680. F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */,
  2681. F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */,
  2682. F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */,
  2683. );
  2684. path = Analytics;
  2685. sourceTree = "<group>";
  2686. };
  2687. F7D4B68D2295666E000C2C86 /* MLVision */ = {
  2688. isa = PBXGroup;
  2689. children = (
  2690. F7D4B68E2295666E000C2C86 /* Protobuf.framework */,
  2691. F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */,
  2692. F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */,
  2693. F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */,
  2694. F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */,
  2695. F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */,
  2696. F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */,
  2697. );
  2698. path = MLVision;
  2699. sourceTree = "<group>";
  2700. };
  2701. F7DFB7E9219C5A0500680748 /* Create cloud */ = {
  2702. isa = PBXGroup;
  2703. children = (
  2704. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */,
  2705. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */,
  2706. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */,
  2707. F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */,
  2708. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */,
  2709. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */,
  2710. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */,
  2711. F7DFB7EA219C5A2E00680748 /* NCCreateMenuAdd.swift */,
  2712. );
  2713. path = "Create cloud";
  2714. sourceTree = "<group>";
  2715. };
  2716. F7E0E1DA22327885006B0911 /* AudioRecorder */ = {
  2717. isa = PBXGroup;
  2718. children = (
  2719. F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */,
  2720. F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */,
  2721. );
  2722. path = AudioRecorder;
  2723. sourceTree = "<group>";
  2724. };
  2725. F7E9C41320F4CA870040CF18 /* Transfers */ = {
  2726. isa = PBXGroup;
  2727. children = (
  2728. F7E9C41520F4CA870040CF18 /* CCTransfers.h */,
  2729. F7E9C41820F4CA870040CF18 /* CCTransfers.m */,
  2730. );
  2731. path = Transfers;
  2732. sourceTree = "<group>";
  2733. };
  2734. F7EC9CB921185F2000F1C5CE /* Media */ = {
  2735. isa = PBXGroup;
  2736. children = (
  2737. F7501C302212E57400FB1415 /* NCMedia.storyboard */,
  2738. F7501C312212E57400FB1415 /* NCMedia.swift */,
  2739. );
  2740. path = Media;
  2741. sourceTree = "<group>";
  2742. };
  2743. F7F54CAC1E5B143100E19C62 /* Library */ = {
  2744. isa = PBXGroup;
  2745. children = (
  2746. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */,
  2747. F73CC0571E813DFF006E3047 /* BKPasscodeView */,
  2748. F754EEC321772B6100BB1CDF /* DropdownMenu */,
  2749. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */,
  2750. F7B4F1C51F44356F00B53B42 /* NCUchardet */,
  2751. F760F75621F21F61006B1A73 /* PhotoEditor */,
  2752. F762CB1C1EACB7D400B38484 /* VFR Pdf Reader */,
  2753. F762CA9F1EACB66200B38484 /* XLForm */,
  2754. );
  2755. path = Library;
  2756. sourceTree = "<group>";
  2757. };
  2758. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */ = {
  2759. isa = PBXGroup;
  2760. children = (
  2761. F7F54CAE1E5B14C700E19C62 /* Assets */,
  2762. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */,
  2763. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */,
  2764. F7F54CD21E5B14C700E19C62 /* MWCommon.h */,
  2765. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */,
  2766. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */,
  2767. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */,
  2768. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */,
  2769. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */,
  2770. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */,
  2771. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */,
  2772. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */,
  2773. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */,
  2774. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */,
  2775. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */,
  2776. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */,
  2777. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */,
  2778. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */,
  2779. );
  2780. path = MWPhotoBrowser;
  2781. sourceTree = "<group>";
  2782. };
  2783. F7F54CAE1E5B14C700E19C62 /* Assets */ = {
  2784. isa = PBXGroup;
  2785. children = (
  2786. F7F54CAF1E5B14C700E19C62 /* ImageError.png */,
  2787. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */,
  2788. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */,
  2789. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */,
  2790. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */,
  2791. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */,
  2792. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */,
  2793. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */,
  2794. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */,
  2795. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */,
  2796. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */,
  2797. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */,
  2798. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */,
  2799. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */,
  2800. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */,
  2801. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */,
  2802. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */,
  2803. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */,
  2804. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */,
  2805. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */,
  2806. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */,
  2807. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */,
  2808. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */,
  2809. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */,
  2810. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */,
  2811. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */,
  2812. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */,
  2813. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */,
  2814. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */,
  2815. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */,
  2816. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */,
  2817. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */,
  2818. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */,
  2819. );
  2820. path = Assets;
  2821. sourceTree = "<group>";
  2822. };
  2823. F7F67B9F1A24D27800EE80DA = {
  2824. isa = PBXGroup;
  2825. children = (
  2826. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  2827. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  2828. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  2829. F7C0F46D1C8880540059EC54 /* Share */,
  2830. 2C33C48023E2C475005F963B /* Notification Service Extension */,
  2831. F7FC7D651DC1F98700BB2C6A /* Products */,
  2832. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  2833. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  2834. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */,
  2835. );
  2836. sourceTree = "<group>";
  2837. };
  2838. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  2839. isa = PBXGroup;
  2840. children = (
  2841. F70F02A81C889183008DAB36 /* Libraries external */,
  2842. F70022561EC4C9100080073F /* OCCommunicationLib */,
  2843. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  2844. F70211F31BAC56E9003FC03E /* Main */,
  2845. F7A582D71A24DAB500E903D7 /* AppDelegate.h */,
  2846. F7B174C722FAC0A8000B7579 /* AppDelegate.m */,
  2847. F7C8C1901B482CEA0048180E /* CCGlobal.h */,
  2848. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  2849. F7A321621E9E37960069AD1B /* Activity */,
  2850. F7E0E1DA22327885006B0911 /* AudioRecorder */,
  2851. F7B0C1701EE8397E0033AC24 /* AutoUpload */,
  2852. F7AE00F6230E8191007ACF8A /* BrowserWeb */,
  2853. F7BAAD951ED5A63D00B7EAD4 /* Database */,
  2854. F7A3214D1E9E2A070069AD1B /* Favorites */,
  2855. F7F54CAC1E5B143100E19C62 /* Library */,
  2856. F7BFFA621A24D7300044ED85 /* Login */,
  2857. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */,
  2858. F7EC9CB921185F2000F1C5CE /* Media */,
  2859. F7A321891E9E42B20069AD1B /* MenuAccount */,
  2860. F74D3DB81BAC1941000BAE4B /* Networking */,
  2861. F7C5259A1E3B441D00FFE02C /* Notification */,
  2862. F7381ED9218218A4000B1560 /* Offline */,
  2863. F7FCFFD51D70798C000E6E29 /* PeekPop */,
  2864. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */,
  2865. F758B41E212C516300515F55 /* ScanDocument */,
  2866. F7FE125B1BAC03FB0041924B /* Security */,
  2867. F79A65C12191D8DC00FF6DCC /* Select */,
  2868. F7ACE4281BAC0268006C0017 /* Settings */,
  2869. F728CE741BF6322C00E69702 /* Share */,
  2870. F7169A161EE590930086BD69 /* Shares */,
  2871. F7B0C0CA1EE7E7750033AC24 /* Synchronize */,
  2872. F73D71561F26739100E233EB /* Text */,
  2873. F7E9C41320F4CA870040CF18 /* Transfers */,
  2874. F78F74322163753B00C2ADAD /* Trash */,
  2875. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */,
  2876. F7BFFA991A24D7BB0044ED85 /* Utility */,
  2877. F79630EC215526B60015EEA5 /* Viewer */,
  2878. );
  2879. path = iOSClient;
  2880. sourceTree = "<group>";
  2881. };
  2882. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  2883. isa = PBXGroup;
  2884. children = (
  2885. F72B60941A24F04E004EF66F /* Localizations */,
  2886. F75CDBF51DF063AD00116AD0 /* .gitignore */,
  2887. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */,
  2888. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */,
  2889. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */,
  2890. F7229B491DF71BB300E8C4E7 /* AUTHORS */,
  2891. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */,
  2892. F77D49A71DC238E500CDC568 /* loading.gif */,
  2893. F7F67BAD1A24D27800EE80DA /* main.m */,
  2894. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  2895. F76344751BF259A800188725 /* synchronized.gif */,
  2896. F76344761BF259A800188725 /* synchronizedcrypto.gif */,
  2897. );
  2898. name = "Supporting Files";
  2899. path = iOSClient;
  2900. sourceTree = "<group>";
  2901. };
  2902. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  2903. isa = PBXGroup;
  2904. children = (
  2905. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */,
  2906. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */,
  2907. F765608A23BF80A400765969 /* SwiftEntryKit.framework */,
  2908. F765608623BF806C00765969 /* QuickLayout.framework */,
  2909. F716FE7723795E5000FABE50 /* NCCommunication.framework */,
  2910. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */,
  2911. F736B551234DCF57008A5C9F /* Alamofire.framework */,
  2912. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */,
  2913. F774264022EB3F7300B23912 /* DropDown.framework */,
  2914. F74AFCE822E8B024003DE61F /* FSCalendar.framework */,
  2915. F700510222DF6897003A3356 /* Parchment.framework */,
  2916. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */,
  2917. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */,
  2918. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */,
  2919. F76E71E42244DF6900690001 /* Zip.framework */,
  2920. F745B250222D871800346520 /* QRCodeReader.framework */,
  2921. F75153232226920200323DDC /* FastScroll.framework */,
  2922. F78AA20521F783E900D0F205 /* SwiftRichString.framework */,
  2923. F72E0B9C21AD60BC00898D7B /* WeScan.framework */,
  2924. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */,
  2925. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */,
  2926. F7063DEC2199E55F003F38DA /* SVGKit.framework */,
  2927. F7C40C112199BA620004137E /* RealmSwift.framework */,
  2928. F7C40C0F2199BA5D0004137E /* Realm.framework */,
  2929. F7C40BF22199978B0004137E /* MBProgressHUD.framework */,
  2930. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */,
  2931. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */,
  2932. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */,
  2933. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */,
  2934. F7C40BE8219991A60004137E /* EAIntroView.framework */,
  2935. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */,
  2936. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */,
  2937. F7C40BE221998C050004137E /* PDFGenerator.framework */,
  2938. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */,
  2939. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */,
  2940. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */,
  2941. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  2942. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  2943. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  2944. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  2945. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  2946. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  2947. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  2948. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  2949. );
  2950. name = Frameworks;
  2951. sourceTree = "<group>";
  2952. };
  2953. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  2954. isa = PBXGroup;
  2955. children = (
  2956. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  2957. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  2958. );
  2959. name = Products;
  2960. sourceTree = "<group>";
  2961. };
  2962. F7FCFFD51D70798C000E6E29 /* PeekPop */ = {
  2963. isa = PBXGroup;
  2964. children = (
  2965. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */,
  2966. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */,
  2967. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */,
  2968. );
  2969. path = PeekPop;
  2970. sourceTree = "<group>";
  2971. };
  2972. F7FE125B1BAC03FB0041924B /* Security */ = {
  2973. isa = PBXGroup;
  2974. children = (
  2975. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */,
  2976. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */,
  2977. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  2978. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */,
  2979. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */,
  2980. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  2981. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  2982. );
  2983. path = Security;
  2984. sourceTree = "<group>";
  2985. };
  2986. /* End PBXGroup section */
  2987. /* Begin PBXNativeTarget section */
  2988. 2C33C47E23E2C475005F963B /* Notification Service Extension */ = {
  2989. isa = PBXNativeTarget;
  2990. buildConfigurationList = 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */;
  2991. buildPhases = (
  2992. 2C33C47B23E2C475005F963B /* Sources */,
  2993. 2C33C47C23E2C475005F963B /* Frameworks */,
  2994. 2C33C47D23E2C475005F963B /* Resources */,
  2995. );
  2996. buildRules = (
  2997. );
  2998. dependencies = (
  2999. );
  3000. name = "Notification Service Extension";
  3001. productName = "Notification Service Extension";
  3002. productReference = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */;
  3003. productType = "com.apple.product-type.app-extension";
  3004. };
  3005. F71459B41D12E3B700CAFEEC /* Share */ = {
  3006. isa = PBXNativeTarget;
  3007. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  3008. buildPhases = (
  3009. F71459B51D12E3B700CAFEEC /* Sources */,
  3010. F7145A141D12E3B700CAFEEC /* Frameworks */,
  3011. F7145A181D12E3B700CAFEEC /* Resources */,
  3012. F736B556234DCF7C008A5C9F /* Embed Frameworks */,
  3013. );
  3014. buildRules = (
  3015. );
  3016. dependencies = (
  3017. );
  3018. name = Share;
  3019. productName = "Share Ext";
  3020. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  3021. productType = "com.apple.product-type.app-extension";
  3022. };
  3023. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  3024. isa = PBXNativeTarget;
  3025. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  3026. buildPhases = (
  3027. F771E3CC20E2392D00AFB62D /* Sources */,
  3028. F771E3CD20E2392D00AFB62D /* Frameworks */,
  3029. F771E3CE20E2392D00AFB62D /* Resources */,
  3030. F736B559234DCF93008A5C9F /* Embed Frameworks */,
  3031. );
  3032. buildRules = (
  3033. );
  3034. dependencies = (
  3035. );
  3036. name = "File Provider Extension";
  3037. productName = "File Provider Extension";
  3038. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  3039. productType = "com.apple.product-type.app-extension";
  3040. };
  3041. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  3042. isa = PBXNativeTarget;
  3043. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  3044. buildPhases = (
  3045. F77B0DEF1D118A16002130FE /* Sources */,
  3046. F77B0EDC1D118A16002130FE /* Frameworks */,
  3047. F77B0EE91D118A16002130FE /* Resources */,
  3048. F77B0F981D118A16002130FE /* Embed App Extensions */,
  3049. F73B02C01DC0F1C900EC2C33 /* ShellScript */,
  3050. F7A377371EB24469002856D3 /* ShellScript */,
  3051. F75A40001EBCB82B00B213E8 /* ShellScript */,
  3052. );
  3053. buildRules = (
  3054. );
  3055. dependencies = (
  3056. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  3057. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  3058. 2C33C48523E2C475005F963B /* PBXTargetDependency */,
  3059. );
  3060. name = Nextcloud;
  3061. productName = "Crypto Cloud";
  3062. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  3063. productType = "com.apple.product-type.application";
  3064. };
  3065. /* End PBXNativeTarget section */
  3066. /* Begin PBXProject section */
  3067. F7F67BA01A24D27800EE80DA /* Project object */ = {
  3068. isa = PBXProject;
  3069. attributes = {
  3070. LastSwiftUpdateCheck = 1130;
  3071. LastUpgradeCheck = 1020;
  3072. ORGANIZATIONNAME = "Marino Faggiana";
  3073. TargetAttributes = {
  3074. 2C33C47E23E2C475005F963B = {
  3075. CreatedOnToolsVersion = 11.3.1;
  3076. DevelopmentTeam = 6JLRKY9ZV7;
  3077. ProvisioningStyle = Automatic;
  3078. };
  3079. F71459B41D12E3B700CAFEEC = {
  3080. DevelopmentTeam = 6JLRKY9ZV7;
  3081. LastSwiftMigration = 1020;
  3082. SystemCapabilities = {
  3083. com.apple.ApplicationGroups.iOS = {
  3084. enabled = 1;
  3085. };
  3086. com.apple.iCloud = {
  3087. enabled = 0;
  3088. };
  3089. };
  3090. };
  3091. F771E3CF20E2392D00AFB62D = {
  3092. CreatedOnToolsVersion = 9.4.1;
  3093. DevelopmentTeam = 6JLRKY9ZV7;
  3094. LastSwiftMigration = 1020;
  3095. ProvisioningStyle = Automatic;
  3096. };
  3097. F77B0DEB1D118A16002130FE = {
  3098. DevelopmentTeam = 6JLRKY9ZV7;
  3099. LastSwiftMigration = 1020;
  3100. ProvisioningStyle = Automatic;
  3101. SystemCapabilities = {
  3102. com.apple.Push = {
  3103. enabled = 1;
  3104. };
  3105. com.apple.iCloud = {
  3106. enabled = 1;
  3107. };
  3108. };
  3109. };
  3110. };
  3111. };
  3112. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  3113. compatibilityVersion = "Xcode 3.2";
  3114. developmentRegion = en;
  3115. hasScannedForEncodings = 0;
  3116. knownRegions = (
  3117. en,
  3118. Base,
  3119. de,
  3120. fr,
  3121. "pt-BR",
  3122. ru,
  3123. it,
  3124. tr,
  3125. "es-MX",
  3126. "nb-NO",
  3127. pl,
  3128. sv,
  3129. es,
  3130. is,
  3131. nl,
  3132. "sk-SK",
  3133. "en-GB",
  3134. "zh-Hans",
  3135. "ka-GE",
  3136. hu,
  3137. "zh-Hant-TW",
  3138. sr,
  3139. "es-CL",
  3140. "es-CO",
  3141. "es-CR",
  3142. "es-DO",
  3143. "es-EC",
  3144. "es-GT",
  3145. "es-HN",
  3146. "es-NI",
  3147. "es-PA",
  3148. "es-PE",
  3149. "es-PR",
  3150. "es-PY",
  3151. "es-SV",
  3152. "es-UY",
  3153. "cs-CZ",
  3154. ko,
  3155. "es-419",
  3156. "pt-PT",
  3157. "ja-JP",
  3158. gl,
  3159. ca,
  3160. da,
  3161. );
  3162. mainGroup = F7F67B9F1A24D27800EE80DA;
  3163. productRefGroup = F7F67B9F1A24D27800EE80DA;
  3164. projectDirPath = "";
  3165. projectRoot = "";
  3166. targets = (
  3167. F77B0DEB1D118A16002130FE /* Nextcloud */,
  3168. F71459B41D12E3B700CAFEEC /* Share */,
  3169. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  3170. 2C33C47E23E2C475005F963B /* Notification Service Extension */,
  3171. );
  3172. };
  3173. /* End PBXProject section */
  3174. /* Begin PBXResourcesBuildPhase section */
  3175. 2C33C47D23E2C475005F963B /* Resources */ = {
  3176. isa = PBXResourcesBuildPhase;
  3177. buildActionMask = 2147483647;
  3178. files = (
  3179. );
  3180. runOnlyForDeploymentPostprocessing = 0;
  3181. };
  3182. F7145A181D12E3B700CAFEEC /* Resources */ = {
  3183. isa = PBXResourcesBuildPhase;
  3184. buildActionMask = 2147483647;
  3185. files = (
  3186. F78B9686234F785300F54315 /* NCSelectDestination.storyboard in Resources */,
  3187. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */,
  3188. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  3189. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */,
  3190. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  3191. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  3192. );
  3193. runOnlyForDeploymentPostprocessing = 0;
  3194. };
  3195. F771E3CE20E2392D00AFB62D /* Resources */ = {
  3196. isa = PBXResourcesBuildPhase;
  3197. buildActionMask = 2147483647;
  3198. files = (
  3199. );
  3200. runOnlyForDeploymentPostprocessing = 0;
  3201. };
  3202. F77B0EE91D118A16002130FE /* Resources */ = {
  3203. isa = PBXResourcesBuildPhase;
  3204. buildActionMask = 2147483647;
  3205. files = (
  3206. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */,
  3207. F760F78421F21F61006B1A73 /* ColorCollectionViewCell.xib in Resources */,
  3208. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */,
  3209. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */,
  3210. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */,
  3211. F7D4234D1F0596AC009C9782 /* Reader-Thumbs.png in Resources */,
  3212. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */,
  3213. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */,
  3214. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */,
  3215. F77D49A91DC238E500CDC568 /* loading.gif in Resources */,
  3216. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */,
  3217. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */,
  3218. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */,
  3219. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */,
  3220. F7D4233D1F0596AC009C9782 /* Reader-Button-N@3x.png in Resources */,
  3221. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */,
  3222. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */,
  3223. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  3224. F758B45A212C564000515F55 /* Scan.storyboard in Resources */,
  3225. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */,
  3226. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */,
  3227. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */,
  3228. F7D4233B1F0596AC009C9782 /* Reader-Button-N.png in Resources */,
  3229. F760F78821F21F61006B1A73 /* PhotoCropEditorBorder@2x.png in Resources */,
  3230. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */,
  3231. F7D423441F0596AC009C9782 /* Reader-Mark-N.png in Resources */,
  3232. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */,
  3233. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */,
  3234. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */,
  3235. F7D423371F0596AC009C9782 /* AppIcon-180.png in Resources */,
  3236. F7D423401F0596AC009C9782 /* Reader-Email@3x.png in Resources */,
  3237. F7D423391F0596AC009C9782 /* Reader-Button-H@2x.png in Resources */,
  3238. F7D423351F0596AC009C9782 /* AppIcon-152.png in Resources */,
  3239. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */,
  3240. F7D4234E1F0596AC009C9782 /* Reader-Thumbs@2x.png in Resources */,
  3241. F760F78521F21F61006B1A73 /* EmojiCollectionViewCell.xib in Resources */,
  3242. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */,
  3243. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */,
  3244. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */,
  3245. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */,
  3246. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */,
  3247. F7D4234B1F0596AC009C9782 /* Reader-Print@2x.png in Resources */,
  3248. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */,
  3249. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */,
  3250. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  3251. F7D423471F0596AC009C9782 /* Reader-Mark-Y.png in Resources */,
  3252. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */,
  3253. F7D423431F0596AC009C9782 /* Reader-Export@3x.png in Resources */,
  3254. F7D4233C1F0596AC009C9782 /* Reader-Button-N@2x.png in Resources */,
  3255. F729B92B217A2E4E00FE2150 /* NCActionSheetHeaderView.xib in Resources */,
  3256. F7D423411F0596AC009C9782 /* Reader-Export.png in Resources */,
  3257. F739513A221B127F00D986C8 /* NCSectionMediaHeader.xib in Resources */,
  3258. F77B0F481D118A16002130FE /* synchronized.gif in Resources */,
  3259. F7D4233E1F0596AC009C9782 /* Reader-Email.png in Resources */,
  3260. F7D423361F0596AC009C9782 /* AppIcon-167.png in Resources */,
  3261. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */,
  3262. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */,
  3263. F7E0E1DE22327DBA006B0911 /* NCAudioRecorderViewController.storyboard in Resources */,
  3264. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
  3265. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */,
  3266. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */,
  3267. F760F78621F21F61006B1A73 /* LaunchScreen.storyboard in Resources */,
  3268. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */,
  3269. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */,
  3270. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */,
  3271. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */,
  3272. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */,
  3273. F760F77C21F21F61006B1A73 /* StickersViewController.xib in Resources */,
  3274. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */,
  3275. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */,
  3276. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */,
  3277. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */,
  3278. F72382C22295856A005B8A07 /* GoogleMVTextDetectorResources.bundle in Resources */,
  3279. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */,
  3280. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */,
  3281. F760F79721F21F61006B1A73 /* StickerCollectionViewCell.xib in Resources */,
  3282. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */,
  3283. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */,
  3284. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */,
  3285. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */,
  3286. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */,
  3287. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */,
  3288. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */,
  3289. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */,
  3290. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */,
  3291. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */,
  3292. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */,
  3293. F760F78F21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png in Resources */,
  3294. F7D423461F0596AC009C9782 /* Reader-Mark-N@3x.png in Resources */,
  3295. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */,
  3296. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */,
  3297. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */,
  3298. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */,
  3299. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */,
  3300. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  3301. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */,
  3302. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  3303. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */,
  3304. F7D4234C1F0596AC009C9782 /* Reader-Print@3x.png in Resources */,
  3305. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */,
  3306. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */,
  3307. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */,
  3308. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */,
  3309. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */,
  3310. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */,
  3311. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */,
  3312. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */,
  3313. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */,
  3314. F7D4233A1F0596AC009C9782 /* Reader-Button-H@3x.png in Resources */,
  3315. F7D423341F0596AC009C9782 /* AppIcon-120.png in Resources */,
  3316. F7D4234F1F0596AC009C9782 /* Reader-Thumbs@3x.png in Resources */,
  3317. F722814323C8C34500C41898 /* NCRichWorkspace.xib in Resources */,
  3318. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */,
  3319. F7D423381F0596AC009C9782 /* Reader-Button-H.png in Resources */,
  3320. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */,
  3321. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  3322. F760F79021F21F61006B1A73 /* PhotoCropEditorBorder.png in Resources */,
  3323. F78ACD56219047E90088454D /* NCSectionHeader.xib in Resources */,
  3324. F7D423491F0596AC009C9782 /* Reader-Mark-Y@3x.png in Resources */,
  3325. F7D423421F0596AC009C9782 /* Reader-Export@2x.png in Resources */,
  3326. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */,
  3327. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */,
  3328. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */,
  3329. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */,
  3330. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */,
  3331. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */,
  3332. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */,
  3333. F760F77B21F21F61006B1A73 /* icomoon.ttf in Resources */,
  3334. F7D423451F0596AC009C9782 /* Reader-Mark-N@2x.png in Resources */,
  3335. F760F78021F21F61006B1A73 /* PhotoEditorViewController.xib in Resources */,
  3336. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */,
  3337. F7D423481F0596AC009C9782 /* Reader-Mark-Y@2x.png in Resources */,
  3338. F7D4233F1F0596AC009C9782 /* Reader-Email@2x.png in Resources */,
  3339. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */,
  3340. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */,
  3341. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */,
  3342. F7D4234A1F0596AC009C9782 /* Reader-Print.png in Resources */,
  3343. F7D423331F0596AC009C9782 /* AppIcon-076.png in Resources */,
  3344. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */,
  3345. );
  3346. runOnlyForDeploymentPostprocessing = 0;
  3347. };
  3348. /* End PBXResourcesBuildPhase section */
  3349. /* Begin PBXShellScriptBuildPhase section */
  3350. F73B02C01DC0F1C900EC2C33 /* ShellScript */ = {
  3351. isa = PBXShellScriptBuildPhase;
  3352. buildActionMask = 2147483647;
  3353. files = (
  3354. );
  3355. inputPaths = (
  3356. );
  3357. outputPaths = (
  3358. );
  3359. runOnlyForDeploymentPostprocessing = 0;
  3360. shellPath = /bin/sh;
  3361. 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\"\n";
  3362. };
  3363. F75A40001EBCB82B00B213E8 /* ShellScript */ = {
  3364. isa = PBXShellScriptBuildPhase;
  3365. buildActionMask = 2147483647;
  3366. files = (
  3367. );
  3368. inputPaths = (
  3369. "$(SRCROOT)/Carthage/Build/iOS/Sheeeeeeeeet.framework",
  3370. "$(SRCROOT)/Carthage/Build/iOS/TLPhotoPicker.framework",
  3371. "$(SRCROOT)/Carthage/Build/iOS/UICKeyChainStore.framework",
  3372. "$(SRCROOT)/Carthage/Build/iOS/MGSwipeTableCell.framework",
  3373. "$(SRCROOT)/Carthage/Build/iOS/DZNEmptyDataSet.framework",
  3374. "$(SRCROOT)/Carthage/Build/iOS/KTVHTTPCache.framework",
  3375. "$(SRCROOT)/Carthage/Build/iOS/KTVCocoaHTTPServer.framework",
  3376. "$(SRCROOT)/Carthage/Build/iOS/MBProgressHUD.framework",
  3377. "$(SRCROOT)/Carthage/Build/iOS/Realm.framework",
  3378. "$(SRCROOT)/Carthage/Build/iOS/RealmSwift.framework",
  3379. "$(SRCROOT)/Carthage/Build/iOS/SVGKit.framework",
  3380. "$(SRCROOT)/Carthage/Build/iOS/CocoaLumberjack.framework",
  3381. "$(SRCROOT)/Carthage/Build/iOS/CocoaLumberjackSwift.framework",
  3382. "$(SRCROOT)/Carthage/Build/iOS/WeScan.framework",
  3383. "$(SRCROOT)/Carthage/Build/iOS/SwiftRichString.framework",
  3384. "$(SRCROOT)/Carthage/Build/iOS/FastScroll.framework",
  3385. "$(SRCROOT)/Carthage/Build/iOS/QRCodeReader.framework",
  3386. "$(SRCROOT)/Carthage/Build/iOS/AFNetworking.framework",
  3387. "$(SRCROOT)/Carthage/Build/iOS/ZIPFoundation.framework",
  3388. "$(SRCROOT)/Carthage/Build/iOS/Parchment.framework",
  3389. "$(SRCROOT)/Carthage/Build/iOS/FSCalendar.framework",
  3390. "$(SRCROOT)/Carthage/Build/iOS/DropDown.framework",
  3391. "$(SRCROOT)/Carthage/Build/iOS/OpenSSL.framework",
  3392. "$(SRCROOT)/Carthage/Build/iOS/Alamofire.framework",
  3393. "$(SRCROOT)/Carthage/Build/iOS/SwiftyXMLParser.framework",
  3394. "$(SRCROOT)/Carthage/Build/iOS/NCCommunication.framework",
  3395. "$(SRCROOT)/Carthage/Build/iOS/SwiftyJSON.framework",
  3396. "$(SRCROOT)/Carthage/Build/iOS/QuickLayout.framework",
  3397. "$(SRCROOT)/Carthage/Build/iOS/SwiftEntryKit.framework",
  3398. "$(SRCROOT)/Carthage/Build/iOS/FloatingPanel.framework",
  3399. "$(SRCROOT)/Carthage/Build/iOS/MarkdownKit.framework",
  3400. );
  3401. outputPaths = (
  3402. );
  3403. runOnlyForDeploymentPostprocessing = 0;
  3404. shellPath = /bin/sh;
  3405. shellScript = "/usr/local/bin/carthage copy-frameworks\n";
  3406. };
  3407. F7A377371EB24469002856D3 /* ShellScript */ = {
  3408. isa = PBXShellScriptBuildPhase;
  3409. buildActionMask = 2147483647;
  3410. files = (
  3411. );
  3412. inputPaths = (
  3413. );
  3414. outputPaths = (
  3415. );
  3416. runOnlyForDeploymentPostprocessing = 0;
  3417. shellPath = /bin/sh;
  3418. shellScript = "\"${PROJECT_DIR}/Libraries external/Fabric/Fabric.framework/run\" 52fe877f4a4ff58868da789df0b0eb915fd94ae1 3d6e5abfdc40776a4a8468ddf5910958596ccbccc341e19f7aaf0fbeb4ff6cf5\n";
  3419. };
  3420. /* End PBXShellScriptBuildPhase section */
  3421. /* Begin PBXSourcesBuildPhase section */
  3422. 2C33C47B23E2C475005F963B /* Sources */ = {
  3423. isa = PBXSourcesBuildPhase;
  3424. buildActionMask = 2147483647;
  3425. files = (
  3426. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */,
  3427. 2CB7D1C923E2E40B00376EF9 /* NCUtility.swift in Sources */,
  3428. F70CEF5923E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3429. 2C59AC5A23E2E01A00733BE8 /* OCCapabilities.m in Sources */,
  3430. 2C1D5D7723E2DE5F00334ABB /* CCUtility.m in Sources */,
  3431. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */,
  3432. 2C1D5D7823E2DE6A00334ABB /* CCGraphics.m in Sources */,
  3433. 2C59AC5B23E2E02700733BE8 /* OCExternalSites.m in Sources */,
  3434. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */,
  3435. F7D91AAA23FBDED60038FC09 /* NCContentPresenter.swift in Sources */,
  3436. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */,
  3437. 2C59AC5C23E2E03400733BE8 /* OCSharedDto.m in Sources */,
  3438. 2C59AC5923E2E00F00733BE8 /* OCActivity.m in Sources */,
  3439. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */,
  3440. 2C1D5D7B23E2DED200334ABB /* NCComments.m in Sources */,
  3441. 2C59AC5823E2DFEE00733BE8 /* OCUserProfile.m in Sources */,
  3442. 2C1D5D7A23E2DEBF00334ABB /* HCFeatures.m in Sources */,
  3443. );
  3444. runOnlyForDeploymentPostprocessing = 0;
  3445. };
  3446. F71459B51D12E3B700CAFEEC /* Sources */ = {
  3447. isa = PBXSourcesBuildPhase;
  3448. buildActionMask = 2147483647;
  3449. files = (
  3450. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */,
  3451. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3452. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */,
  3453. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */,
  3454. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */,
  3455. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3456. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */,
  3457. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */,
  3458. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */,
  3459. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3460. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3461. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3462. F7B6ACD722FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3463. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */,
  3464. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3465. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3466. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  3467. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */,
  3468. F7DFB7E1219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3469. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3470. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3471. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3472. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3473. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */,
  3474. F7DBC38023325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3475. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */,
  3476. F7D2D128230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3477. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3478. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3479. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  3480. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */,
  3481. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */,
  3482. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */,
  3483. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */,
  3484. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */,
  3485. F765609023BF813600765969 /* NCContentPresenter.swift in Sources */,
  3486. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3487. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3488. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3489. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3490. F781996A22636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3491. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3492. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */,
  3493. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */,
  3494. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3495. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3496. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3497. F78B9685234F785300F54315 /* NCSelectDestination.m in Sources */,
  3498. F70022B41EC4C9100080073F /* OCActivity.m in Sources */,
  3499. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3500. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3501. F7B6ACDC22FC2D15008AB646 /* NCComments.m in Sources */,
  3502. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */,
  3503. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3504. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3505. F70CEF5723E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3506. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3507. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */,
  3508. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3509. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3510. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3511. );
  3512. runOnlyForDeploymentPostprocessing = 0;
  3513. };
  3514. F771E3CC20E2392D00AFB62D /* Sources */ = {
  3515. isa = PBXSourcesBuildPhase;
  3516. buildActionMask = 2147483647;
  3517. files = (
  3518. F781996B22636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3519. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */,
  3520. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  3521. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */,
  3522. F7B6ACD822FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3523. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */,
  3524. F7DFB7E2219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3525. F7434B3A20E2403500417916 /* OCActivity.m in Sources */,
  3526. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */,
  3527. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */,
  3528. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */,
  3529. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */,
  3530. F7434B5920E241B600417916 /* OCNetworking.m in Sources */,
  3531. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */,
  3532. F75A9EE823796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3533. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */,
  3534. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */,
  3535. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  3536. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */,
  3537. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */,
  3538. F7434B4320E2405900417916 /* OCShareUser.m in Sources */,
  3539. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */,
  3540. F76673EE22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  3541. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  3542. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */,
  3543. F7434B5620E2412900417916 /* CCError.m in Sources */,
  3544. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */,
  3545. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */,
  3546. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */,
  3547. F7D2D129230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3548. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */,
  3549. F7DBC38123325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3550. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */,
  3551. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  3552. F70CEF5823E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3553. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */,
  3554. F7B6ACDD22FC2D15008AB646 /* NCComments.m in Sources */,
  3555. F7434B5D20E241E800417916 /* CCUtility.m in Sources */,
  3556. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */,
  3557. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  3558. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  3559. F716FE7A23795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift in Sources */,
  3560. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  3561. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  3562. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */,
  3563. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */,
  3564. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */,
  3565. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */,
  3566. F765609123BF813600765969 /* NCContentPresenter.swift in Sources */,
  3567. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */,
  3568. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  3569. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */,
  3570. F7434B5820E241B100417916 /* CCNetworking.m in Sources */,
  3571. );
  3572. runOnlyForDeploymentPostprocessing = 0;
  3573. };
  3574. F77B0DEF1D118A16002130FE /* Sources */ = {
  3575. isa = PBXSourcesBuildPhase;
  3576. buildActionMask = 2147483647;
  3577. files = (
  3578. F760F79521F21F61006B1A73 /* PhotoEditor+Gestures.swift in Sources */,
  3579. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3580. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */,
  3581. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */,
  3582. F754EECB21772B6100BB1CDF /* DropdownMenu.swift in Sources */,
  3583. F760F78221F21F61006B1A73 /* PhotoEditor+UITextView.swift in Sources */,
  3584. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */,
  3585. F7E09CE323E3088000FB3E9E /* NCMainRefreshControl.swift in Sources */,
  3586. F77B0DF41D118A16002130FE /* CCMain.m in Sources */,
  3587. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */,
  3588. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */,
  3589. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */,
  3590. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  3591. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */,
  3592. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */,
  3593. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */,
  3594. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */,
  3595. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */,
  3596. F760F78321F21F61006B1A73 /* UIImageView+Alpha.swift in Sources */,
  3597. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */,
  3598. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */,
  3599. F754EEC921772B6100BB1CDF /* DropdownItem.swift in Sources */,
  3600. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */,
  3601. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */,
  3602. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3603. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */,
  3604. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */,
  3605. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */,
  3606. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */,
  3607. F754EECA21772B6100BB1CDF /* DropUpMenu.swift in Sources */,
  3608. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */,
  3609. F7D423881F0596C6009C9782 /* ReaderThumbView.m in Sources */,
  3610. 37ECC83B23D0C7410082EFA2 /* NCMenuAction.swift in Sources */,
  3611. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */,
  3612. F7D4238A1F0596C6009C9782 /* ThumbsMainToolbar.m in Sources */,
  3613. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */,
  3614. F760F79921F21F61006B1A73 /* CropViewController.swift in Sources */,
  3615. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3616. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */,
  3617. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */,
  3618. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */,
  3619. F7D423801F0596C6009C9782 /* ReaderMainPagebar.m in Sources */,
  3620. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */,
  3621. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */,
  3622. F78ACD4F2190440D0088454D /* NCLayout.swift in Sources */,
  3623. F760F79C21F21F61006B1A73 /* GradientView.swift in Sources */,
  3624. F7D4237F1F0596C6009C9782 /* ReaderDocumentOutline.m in Sources */,
  3625. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */,
  3626. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */,
  3627. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */,
  3628. F7FB1D3E215E191D00D669EA /* NCViewerDocumentWeb.swift in Sources */,
  3629. F78E7065219F096B006F23E4 /* NCAvatar.swift in Sources */,
  3630. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */,
  3631. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */,
  3632. F760F79421F21F61006B1A73 /* ResizeControl.swift in Sources */,
  3633. F7DFB7F2219C5C0000680748 /* NCCreateFormUploadFileText.swift in Sources */,
  3634. 371B5A2E23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift in Sources */,
  3635. F76C6F8E21943C8C0063591B /* NCActionSheetHeader.swift in Sources */,
  3636. F760F79121F21F61006B1A73 /* EmojiCollectionViewCell.swift in Sources */,
  3637. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */,
  3638. F77444F8222816D5000D5EB0 /* NCPhotosPickerViewController.swift in Sources */,
  3639. F77B0E141D118A16002130FE /* CCError.m in Sources */,
  3640. F7E09CE523E3088C00FB3E9E /* NCSplitViewController.swift in Sources */,
  3641. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */,
  3642. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */,
  3643. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */,
  3644. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */,
  3645. F760F77E21F21F61006B1A73 /* PhotoEditor+Keyboard.swift in Sources */,
  3646. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */,
  3647. F7B6ACD622FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3648. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */,
  3649. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */,
  3650. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */,
  3651. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3652. F760F79D21F21F61006B1A73 /* CropRectView.swift in Sources */,
  3653. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */,
  3654. F758B460212C56A400515F55 /* ScanCollectionView.swift in Sources */,
  3655. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */,
  3656. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */,
  3657. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */,
  3658. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */,
  3659. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3660. 3757A35523D9D76300EC369E /* NCMenuPanelController.swift in Sources */,
  3661. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */,
  3662. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */,
  3663. F7D423871F0596C6009C9782 /* ReaderThumbsView.m in Sources */,
  3664. F7DFB7EB219C5A2E00680748 /* NCCreateMenuAdd.swift in Sources */,
  3665. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */,
  3666. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */,
  3667. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */,
  3668. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3669. F760F78B21F21F61006B1A73 /* UIImage+Crop.swift in Sources */,
  3670. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */,
  3671. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */,
  3672. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */,
  3673. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */,
  3674. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3675. F7D6650720FF341600BFBA9E /* NCMainCommon.swift in Sources */,
  3676. F700510522DF6A89003A3356 /* NCShare.swift in Sources */,
  3677. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */,
  3678. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */,
  3679. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */,
  3680. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */,
  3681. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */,
  3682. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */,
  3683. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */,
  3684. F7DFB7E0219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3685. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */,
  3686. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */,
  3687. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */,
  3688. F77B0E301D118A16002130FE /* CCHud.m in Sources */,
  3689. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  3690. F7D423891F0596C6009C9782 /* ReaderViewController.m in Sources */,
  3691. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3692. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */,
  3693. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */,
  3694. F7D423831F0596C6009C9782 /* ReaderThumbFetch.m in Sources */,
  3695. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */,
  3696. F7D4237A1F0596C6009C9782 /* ReaderConstants.m in Sources */,
  3697. F7B6ACDB22FC2D15008AB646 /* NCComments.m in Sources */,
  3698. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */,
  3699. F760F78121F21F61006B1A73 /* PhotoEditor+StickersViewController.swift in Sources */,
  3700. F760F78D21F21F61006B1A73 /* Protocols.swift in Sources */,
  3701. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */,
  3702. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  3703. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3704. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */,
  3705. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */,
  3706. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */,
  3707. F760F78C21F21F61006B1A73 /* StickersViewController.swift in Sources */,
  3708. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */,
  3709. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  3710. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */,
  3711. F760F77D21F21F61006B1A73 /* ColorsCollectionViewDelegate.swift in Sources */,
  3712. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3713. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3714. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */,
  3715. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */,
  3716. F729B92D217A2F1B00FE2150 /* NCActionSheetHeaderView.swift in Sources */,
  3717. F760F78721F21F61006B1A73 /* PhotoEditor+Font.swift in Sources */,
  3718. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3719. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */,
  3720. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */,
  3721. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */,
  3722. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */,
  3723. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */,
  3724. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */,
  3725. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */,
  3726. F7D4237D1F0596C6009C9782 /* ReaderContentView.m in Sources */,
  3727. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */,
  3728. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */,
  3729. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */,
  3730. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */,
  3731. F7D4237E1F0596C6009C9782 /* ReaderDocument.m in Sources */,
  3732. F7D4237C1F0596C6009C9782 /* ReaderContentTile.m in Sources */,
  3733. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3734. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */,
  3735. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */,
  3736. 3781B9B223DB2B9F006B4B1D /* CCMain+Menu.swift in Sources */,
  3737. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */,
  3738. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */,
  3739. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3740. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */,
  3741. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */,
  3742. F73D71621F2673C200E233EB /* NCText.swift in Sources */,
  3743. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */,
  3744. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */,
  3745. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */,
  3746. F77B0E671D118A16002130FE /* Reachability.m in Sources */,
  3747. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */,
  3748. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */,
  3749. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3750. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3751. F754EECC21772B6100BB1CDF /* SectionHeader.swift in Sources */,
  3752. F7B174C822FAC0A8000B7579 /* AppDelegate.m in Sources */,
  3753. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3754. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */,
  3755. F7DBC37F23325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3756. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
  3757. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */,
  3758. F7D423861F0596C6009C9782 /* ReaderThumbRequest.m in Sources */,
  3759. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */,
  3760. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3761. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3762. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */,
  3763. F760F79821F21F61006B1A73 /* StickerCollectionViewCell.swift in Sources */,
  3764. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3765. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */,
  3766. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */,
  3767. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */,
  3768. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */,
  3769. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */,
  3770. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */,
  3771. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */,
  3772. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */,
  3773. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */,
  3774. F760F79B21F21F61006B1A73 /* ColorCollectionViewCell.swift in Sources */,
  3775. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */,
  3776. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  3777. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */,
  3778. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  3779. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */,
  3780. F760F77F21F21F61006B1A73 /* PhotoEditor+Controls.swift in Sources */,
  3781. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */,
  3782. F7B7504B2397D38F004E13EC /* UIImage+fixedOrientation.swift in Sources */,
  3783. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */,
  3784. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */,
  3785. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */,
  3786. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */,
  3787. F7D2D127230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3788. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */,
  3789. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */,
  3790. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3791. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */,
  3792. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3793. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3794. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */,
  3795. F760F79321F21F61006B1A73 /* CropView.swift in Sources */,
  3796. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */,
  3797. F760F78A21F21F61006B1A73 /* UIImage+Size.swift in Sources */,
  3798. F70022B31EC4C9100080073F /* OCActivity.m in Sources */,
  3799. F7E09CE723E308AD00FB3E9E /* NCMasterNavigationController.swift in Sources */,
  3800. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3801. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */,
  3802. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */,
  3803. F7D4238C1F0596C6009C9782 /* UIXToolbarView.m in Sources */,
  3804. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */,
  3805. F7F4B1D823C74B3E00D82A6E /* NCRichWorkspace.swift in Sources */,
  3806. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  3807. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */,
  3808. F7E0E1DC22327885006B0911 /* NCAudioRecorderViewController.swift in Sources */,
  3809. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  3810. 3781B9B423DB2BC9006B4B1D /* CCFavorites+Menu.swift in Sources */,
  3811. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */,
  3812. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */,
  3813. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */,
  3814. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */,
  3815. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */,
  3816. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */,
  3817. F7D423791F0596C6009C9782 /* CGPDFDocument.m in Sources */,
  3818. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */,
  3819. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3820. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */,
  3821. F704FA5C232A343F00BBA952 /* IMImagemeterViewer.swift in Sources */,
  3822. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */,
  3823. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */,
  3824. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */,
  3825. F72747762382E31600E9B76D /* IMCreate.swift in Sources */,
  3826. F7D423821F0596C6009C9782 /* ReaderThumbCache.m in Sources */,
  3827. F760F79A21F21F61006B1A73 /* PhotoEditor+Crop.swift in Sources */,
  3828. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */,
  3829. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */,
  3830. F760F78E21F21F61006B1A73 /* PhotoEditor+Drawing.swift in Sources */,
  3831. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */,
  3832. F760F78921F21F61006B1A73 /* UIView+Image.swift in Sources */,
  3833. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */,
  3834. F760F79221F21F61006B1A73 /* EmojisCollectionViewDelegate.swift in Sources */,
  3835. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */,
  3836. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */,
  3837. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */,
  3838. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */,
  3839. F7D4238B1F0596C6009C9782 /* ThumbsViewController.m in Sources */,
  3840. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */,
  3841. F7D423811F0596C6009C9782 /* ReaderMainToolbar.m in Sources */,
  3842. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */,
  3843. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */,
  3844. F7D4237B1F0596C6009C9782 /* ReaderContentPage.m in Sources */,
  3845. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */,
  3846. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */,
  3847. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */,
  3848. F760F79621F21F61006B1A73 /* PhotoEditorViewController.swift in Sources */,
  3849. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */,
  3850. F70CEF5623E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3851. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  3852. F79630EE215527D40015EEA5 /* NCViewerMedia.swift in Sources */,
  3853. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */,
  3854. F758B45E212C569D00515F55 /* ScanCell.swift in Sources */,
  3855. F781996922636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3856. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3857. F7D423851F0596C6009C9782 /* ReaderThumbRender.m in Sources */,
  3858. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */,
  3859. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */,
  3860. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3861. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */,
  3862. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3863. F7D423841F0596C6009C9782 /* ReaderThumbQueue.m in Sources */,
  3864. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  3865. F7E4D9C422ED929B003675FD /* NCShareComments.swift in Sources */,
  3866. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3867. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */,
  3868. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */,
  3869. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */,
  3870. F77B0ED91D118A16002130FE /* main.m in Sources */,
  3871. );
  3872. runOnlyForDeploymentPostprocessing = 0;
  3873. };
  3874. /* End PBXSourcesBuildPhase section */
  3875. /* Begin PBXTargetDependency section */
  3876. 2C33C48523E2C475005F963B /* PBXTargetDependency */ = {
  3877. isa = PBXTargetDependency;
  3878. target = 2C33C47E23E2C475005F963B /* Notification Service Extension */;
  3879. targetProxy = 2C33C48423E2C475005F963B /* PBXContainerItemProxy */;
  3880. };
  3881. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  3882. isa = PBXTargetDependency;
  3883. target = F71459B41D12E3B700CAFEEC /* Share */;
  3884. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  3885. };
  3886. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  3887. isa = PBXTargetDependency;
  3888. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  3889. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  3890. };
  3891. /* End PBXTargetDependency section */
  3892. /* Begin PBXVariantGroup section */
  3893. F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */ = {
  3894. isa = PBXVariantGroup;
  3895. children = (
  3896. F760F76321F21F61006B1A73 /* Base */,
  3897. );
  3898. name = LaunchScreen.storyboard;
  3899. sourceTree = "<group>";
  3900. };
  3901. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  3902. isa = PBXVariantGroup;
  3903. children = (
  3904. F7151A811D477A4B00E6AF45 /* en */,
  3905. F7B1A7761EBB3C8000BFB6D1 /* de */,
  3906. F75B91E21ECAE17800199C96 /* fr */,
  3907. F75B91F71ECAE26300199C96 /* pt-BR */,
  3908. F75B923D1ECAE55E00199C96 /* ru */,
  3909. F7169A301EE59BB70086BD69 /* it */,
  3910. F7169A4C1EE59C640086BD69 /* tr */,
  3911. F78D6F461F0B7CB9002F9619 /* es-MX */,
  3912. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  3913. F78D6F541F0B7D47002F9619 /* pl */,
  3914. F7DE9AB01F482FA5008DFE10 /* sv */,
  3915. F7CC04E61F5AD50D00378CEF /* es */,
  3916. F7D532461F5D4123006568B1 /* is */,
  3917. F7D5324D1F5D4137006568B1 /* nl */,
  3918. F7D532541F5D4155006568B1 /* sk-SK */,
  3919. F7D5328F1F5D443B006568B1 /* en-GB */,
  3920. F7D532A41F5D4461006568B1 /* zh-Hans */,
  3921. F77438EB1FCD694900662C46 /* ka-GE */,
  3922. F77438F21FCD69D300662C46 /* hu */,
  3923. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  3924. F77439001FCD6B7F00662C46 /* sr */,
  3925. F77439071FCD6BF000662C46 /* es-CL */,
  3926. F774390E1FCD6C0C00662C46 /* es-CO */,
  3927. F77439151FCD6C4A00662C46 /* es-CR */,
  3928. F774391C1FCD6C6700662C46 /* es-DO */,
  3929. F77439231FCD6C8700662C46 /* es-EC */,
  3930. F774392A1FCD6CAA00662C46 /* es-GT */,
  3931. F77439311FCD6CC400662C46 /* es-HN */,
  3932. F77439381FCD6CDE00662C46 /* es-NI */,
  3933. F774393F1FCD6D0B00662C46 /* es-PA */,
  3934. F77439461FCD6D2300662C46 /* es-PE */,
  3935. F774394D1FCD6D3E00662C46 /* es-PR */,
  3936. F77439541FCD6D6100662C46 /* es-PY */,
  3937. F774395B1FCD6D8200662C46 /* es-SV */,
  3938. F77439621FCD6D9C00662C46 /* es-UY */,
  3939. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  3940. F7320934201B812F008A0888 /* ko */,
  3941. F732093B201B81E4008A0888 /* es-419 */,
  3942. F70A07C8205285FB00DC1231 /* pt-PT */,
  3943. F7E45E6D21E75BF200579249 /* ja-JP */,
  3944. F753701822723D620041C76C /* gl */,
  3945. F753701922723E0D0041C76C /* ca */,
  3946. F753701A22723EC80041C76C /* da */,
  3947. );
  3948. name = Localizable.strings;
  3949. path = "Supporting Files";
  3950. sourceTree = "<group>";
  3951. };
  3952. /* End PBXVariantGroup section */
  3953. /* Begin XCBuildConfiguration section */
  3954. 2C33C48723E2C475005F963B /* Debug */ = {
  3955. isa = XCBuildConfiguration;
  3956. buildSettings = {
  3957. APPLICATION_EXTENSION_API_ONLY = NO;
  3958. CLANG_ANALYZER_NONNULL = YES;
  3959. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3960. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3961. CLANG_ENABLE_OBJC_WEAK = YES;
  3962. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3963. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3964. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3965. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3966. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3967. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  3968. CODE_SIGN_IDENTITY = "iPhone Developer";
  3969. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3970. CODE_SIGN_STYLE = Automatic;
  3971. CURRENT_PROJECT_VERSION = 2;
  3972. DEBUG_INFORMATION_FORMAT = dwarf;
  3973. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3974. FRAMEWORK_SEARCH_PATHS = (
  3975. "$(inherited)",
  3976. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3977. );
  3978. GCC_C_LANGUAGE_STANDARD = gnu11;
  3979. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3980. GCC_PREPROCESSOR_DEFINITIONS = (
  3981. "$(inherited)",
  3982. EXTENSION,
  3983. EXTENSION_NOTIFICATION_SERVICE,
  3984. );
  3985. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3986. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  3987. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3988. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3989. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3990. MARKETING_VERSION = 2.25.9;
  3991. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3992. MTL_FAST_MATH = YES;
  3993. OTHER_LDFLAGS = "-ObjC";
  3994. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3995. PRODUCT_NAME = "$(TARGET_NAME)";
  3996. SKIP_INSTALL = YES;
  3997. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3998. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  3999. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4000. SWIFT_VERSION = 5.0;
  4001. TARGETED_DEVICE_FAMILY = "1,2";
  4002. };
  4003. name = Debug;
  4004. };
  4005. 2C33C48823E2C475005F963B /* Release */ = {
  4006. isa = XCBuildConfiguration;
  4007. buildSettings = {
  4008. APPLICATION_EXTENSION_API_ONLY = NO;
  4009. CLANG_ANALYZER_NONNULL = YES;
  4010. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4011. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4012. CLANG_ENABLE_OBJC_WEAK = YES;
  4013. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4014. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4015. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4016. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4017. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4018. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  4019. CODE_SIGN_IDENTITY = "iPhone Developer";
  4020. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4021. CODE_SIGN_STYLE = Automatic;
  4022. CURRENT_PROJECT_VERSION = 2;
  4023. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4024. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4025. FRAMEWORK_SEARCH_PATHS = (
  4026. "$(inherited)",
  4027. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4028. );
  4029. GCC_C_LANGUAGE_STANDARD = gnu11;
  4030. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4031. GCC_PREPROCESSOR_DEFINITIONS = (
  4032. "$(inherited)",
  4033. EXTENSION,
  4034. EXTENSION_NOTIFICATION_SERVICE,
  4035. );
  4036. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4037. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  4038. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4039. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4040. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4041. MARKETING_VERSION = 2.25.9;
  4042. MTL_FAST_MATH = YES;
  4043. OTHER_LDFLAGS = "-ObjC";
  4044. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  4045. PRODUCT_NAME = "$(TARGET_NAME)";
  4046. SKIP_INSTALL = YES;
  4047. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4048. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  4049. SWIFT_VERSION = 5.0;
  4050. TARGETED_DEVICE_FAMILY = "1,2";
  4051. };
  4052. name = Release;
  4053. };
  4054. F7145A261D12E3B700CAFEEC /* Debug */ = {
  4055. isa = XCBuildConfiguration;
  4056. buildSettings = {
  4057. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4058. APPLICATION_EXTENSION_API_ONLY = NO;
  4059. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4060. CLANG_ENABLE_MODULES = YES;
  4061. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4062. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4063. CODE_SIGN_IDENTITY = "iPhone Developer";
  4064. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4065. CURRENT_PROJECT_VERSION = 2;
  4066. DEBUG_INFORMATION_FORMAT = dwarf;
  4067. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4068. FRAMEWORK_SEARCH_PATHS = (
  4069. "$(inherited)",
  4070. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4071. );
  4072. GCC_NO_COMMON_BLOCKS = YES;
  4073. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4074. GCC_PREPROCESSOR_DEFINITIONS = (
  4075. "$(inherited)",
  4076. EXTENSION,
  4077. EXTENSION_SHARE,
  4078. );
  4079. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4080. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4081. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4082. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4083. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4084. MARKETING_VERSION = 2.25.9;
  4085. OTHER_LDFLAGS = "-ObjC";
  4086. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4087. PRODUCT_NAME = "$(TARGET_NAME)";
  4088. SKIP_INSTALL = YES;
  4089. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4090. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  4091. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4092. SWIFT_VERSION = 5.0;
  4093. TARGETED_DEVICE_FAMILY = "1,2";
  4094. USE_HEADERMAP = YES;
  4095. };
  4096. name = Debug;
  4097. };
  4098. F7145A271D12E3B700CAFEEC /* Release */ = {
  4099. isa = XCBuildConfiguration;
  4100. buildSettings = {
  4101. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4102. APPLICATION_EXTENSION_API_ONLY = NO;
  4103. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4104. CLANG_ENABLE_MODULES = YES;
  4105. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4106. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4107. CODE_SIGN_IDENTITY = "iPhone Developer";
  4108. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4109. CURRENT_PROJECT_VERSION = 2;
  4110. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4111. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4112. FRAMEWORK_SEARCH_PATHS = (
  4113. "$(inherited)",
  4114. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4115. );
  4116. GCC_NO_COMMON_BLOCKS = YES;
  4117. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4118. GCC_PREPROCESSOR_DEFINITIONS = (
  4119. "$(inherited)",
  4120. EXTENSION,
  4121. EXTENSION_SHARE,
  4122. );
  4123. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4124. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4125. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4126. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4127. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4128. MARKETING_VERSION = 2.25.9;
  4129. OTHER_LDFLAGS = "-ObjC";
  4130. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4131. PRODUCT_NAME = "$(TARGET_NAME)";
  4132. SKIP_INSTALL = YES;
  4133. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4134. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  4135. SWIFT_VERSION = 5.0;
  4136. TARGETED_DEVICE_FAMILY = "1,2";
  4137. USE_HEADERMAP = YES;
  4138. };
  4139. name = Release;
  4140. };
  4141. F771E3F020E2392E00AFB62D /* Debug */ = {
  4142. isa = XCBuildConfiguration;
  4143. buildSettings = {
  4144. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4145. APPLICATION_EXTENSION_API_ONLY = NO;
  4146. CLANG_ANALYZER_NONNULL = YES;
  4147. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4148. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4149. CLANG_ENABLE_OBJC_WEAK = YES;
  4150. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  4151. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4152. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4153. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4154. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4155. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  4156. CODE_SIGN_IDENTITY = "iPhone Developer";
  4157. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4158. CODE_SIGN_STYLE = Automatic;
  4159. CURRENT_PROJECT_VERSION = 2;
  4160. DEBUG_INFORMATION_FORMAT = dwarf;
  4161. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4162. FRAMEWORK_SEARCH_PATHS = (
  4163. "$(inherited)",
  4164. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4165. );
  4166. GCC_C_LANGUAGE_STANDARD = gnu11;
  4167. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4168. GCC_PREPROCESSOR_DEFINITIONS = (
  4169. "$(inherited)",
  4170. EXTENSION,
  4171. EXTENSION_FILE_PROVIDER_EXTENSION,
  4172. );
  4173. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4174. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  4175. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4176. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4177. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4178. MARKETING_VERSION = 2.25.9;
  4179. OTHER_LDFLAGS = "-ObjC";
  4180. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4181. PRODUCT_NAME = "$(TARGET_NAME)";
  4182. SKIP_INSTALL = YES;
  4183. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4184. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4185. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4186. SWIFT_VERSION = 5.0;
  4187. TARGETED_DEVICE_FAMILY = "1,2";
  4188. };
  4189. name = Debug;
  4190. };
  4191. F771E3F120E2392E00AFB62D /* Release */ = {
  4192. isa = XCBuildConfiguration;
  4193. buildSettings = {
  4194. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4195. APPLICATION_EXTENSION_API_ONLY = NO;
  4196. CLANG_ANALYZER_NONNULL = YES;
  4197. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4198. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4199. CLANG_ENABLE_OBJC_WEAK = YES;
  4200. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  4201. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4202. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4203. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4204. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4205. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  4206. CODE_SIGN_IDENTITY = "iPhone Developer";
  4207. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4208. CODE_SIGN_STYLE = Automatic;
  4209. CURRENT_PROJECT_VERSION = 2;
  4210. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4211. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4212. FRAMEWORK_SEARCH_PATHS = (
  4213. "$(inherited)",
  4214. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4215. );
  4216. GCC_C_LANGUAGE_STANDARD = gnu11;
  4217. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4218. GCC_PREPROCESSOR_DEFINITIONS = (
  4219. "$(inherited)",
  4220. EXTENSION,
  4221. EXTENSION_FILE_PROVIDER_EXTENSION,
  4222. );
  4223. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4224. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  4225. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4226. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4227. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4228. MARKETING_VERSION = 2.25.9;
  4229. OTHER_LDFLAGS = "-ObjC";
  4230. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4231. PRODUCT_NAME = "$(TARGET_NAME)";
  4232. SKIP_INSTALL = YES;
  4233. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4234. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4235. SWIFT_VERSION = 5.0;
  4236. TARGETED_DEVICE_FAMILY = "1,2";
  4237. };
  4238. name = Release;
  4239. };
  4240. F77B0F9B1D118A16002130FE /* Debug */ = {
  4241. isa = XCBuildConfiguration;
  4242. buildSettings = {
  4243. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4244. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4245. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4246. CLANG_ENABLE_MODULES = YES;
  4247. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4248. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4249. CODE_SIGN_IDENTITY = "iPhone Developer";
  4250. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4251. CURRENT_PROJECT_VERSION = 2;
  4252. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4253. ENABLE_BITCODE = YES;
  4254. FRAMEWORK_SEARCH_PATHS = (
  4255. "$(inherited)",
  4256. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4257. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4258. "$(PROJECT_DIR)\"/Libraries external/Firebase\"/**",
  4259. );
  4260. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4261. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4262. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  4263. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4264. HEADER_SEARCH_PATHS = "$(PROJECT_DIR)\"/Libraries external/openssl\"";
  4265. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4266. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4267. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4268. LIBRARY_SEARCH_PATHS = "";
  4269. MARKETING_VERSION = 2.25.9;
  4270. OTHER_LDFLAGS = "-ObjC";
  4271. OTHER_SWIFT_FLAGS = "";
  4272. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4273. PRODUCT_NAME = "$(TARGET_NAME)";
  4274. PROVISIONING_PROFILE = "";
  4275. PROVISIONING_PROFILE_SPECIFIER = "";
  4276. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4277. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4278. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4279. SWIFT_VERSION = 5.0;
  4280. TARGETED_DEVICE_FAMILY = "1,2";
  4281. USE_HEADERMAP = YES;
  4282. VERSIONING_SYSTEM = "";
  4283. };
  4284. name = Debug;
  4285. };
  4286. F77B0F9C1D118A16002130FE /* Release */ = {
  4287. isa = XCBuildConfiguration;
  4288. buildSettings = {
  4289. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4290. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4291. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4292. CLANG_ENABLE_MODULES = YES;
  4293. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4294. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4295. CODE_SIGN_IDENTITY = "iPhone Developer";
  4296. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4297. COPY_PHASE_STRIP = NO;
  4298. CURRENT_PROJECT_VERSION = 2;
  4299. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4300. ENABLE_BITCODE = YES;
  4301. FRAMEWORK_SEARCH_PATHS = (
  4302. "$(inherited)",
  4303. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4304. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4305. "$(PROJECT_DIR)\"/Libraries external/Firebase\"/**",
  4306. );
  4307. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4308. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4309. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  4310. HEADER_SEARCH_PATHS = "$(PROJECT_DIR)\"/Libraries external/openssl\"";
  4311. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4312. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4313. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4314. LIBRARY_SEARCH_PATHS = "";
  4315. MARKETING_VERSION = 2.25.9;
  4316. OTHER_LDFLAGS = "-ObjC";
  4317. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4318. PRODUCT_NAME = "$(TARGET_NAME)";
  4319. PROVISIONING_PROFILE = "";
  4320. PROVISIONING_PROFILE_SPECIFIER = "";
  4321. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4322. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4323. SWIFT_VERSION = 5.0;
  4324. TARGETED_DEVICE_FAMILY = "1,2";
  4325. USE_HEADERMAP = YES;
  4326. VERSIONING_SYSTEM = "";
  4327. };
  4328. name = Release;
  4329. };
  4330. F7F67BC91A24D27800EE80DA /* Debug */ = {
  4331. isa = XCBuildConfiguration;
  4332. buildSettings = {
  4333. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4334. ALWAYS_SEARCH_USER_PATHS = NO;
  4335. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4336. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4337. CLANG_CXX_LIBRARY = "libc++";
  4338. CLANG_ENABLE_MODULES = YES;
  4339. CLANG_ENABLE_OBJC_ARC = YES;
  4340. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4341. CLANG_WARN_BOOL_CONVERSION = YES;
  4342. CLANG_WARN_COMMA = YES;
  4343. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4344. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4345. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4346. CLANG_WARN_EMPTY_BODY = YES;
  4347. CLANG_WARN_ENUM_CONVERSION = YES;
  4348. CLANG_WARN_INFINITE_RECURSION = YES;
  4349. CLANG_WARN_INT_CONVERSION = YES;
  4350. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4351. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4352. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4353. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4354. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4355. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4356. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4357. CLANG_WARN_UNREACHABLE_CODE = YES;
  4358. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4359. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4360. COPY_PHASE_STRIP = NO;
  4361. DEFINES_MODULE = YES;
  4362. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4363. ENABLE_TESTABILITY = YES;
  4364. GCC_C_LANGUAGE_STANDARD = gnu99;
  4365. GCC_DYNAMIC_NO_PIC = NO;
  4366. GCC_NO_COMMON_BLOCKS = YES;
  4367. GCC_OPTIMIZATION_LEVEL = 0;
  4368. GCC_PREPROCESSOR_DEFINITIONS = (
  4369. "$(inherited)",
  4370. DEBUG,
  4371. NC,
  4372. );
  4373. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4374. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4375. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4376. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4377. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4378. GCC_WARN_UNUSED_FUNCTION = YES;
  4379. GCC_WARN_UNUSED_VARIABLE = YES;
  4380. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4381. MTL_ENABLE_DEBUG_INFO = YES;
  4382. ONLY_ACTIVE_ARCH = YES;
  4383. OTHER_LDFLAGS = (
  4384. "-Obj-C",
  4385. "-all_load",
  4386. );
  4387. SDKROOT = iphoneos;
  4388. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC";
  4389. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4390. };
  4391. name = Debug;
  4392. };
  4393. F7F67BCA1A24D27800EE80DA /* Release */ = {
  4394. isa = XCBuildConfiguration;
  4395. buildSettings = {
  4396. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4397. ALWAYS_SEARCH_USER_PATHS = NO;
  4398. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4399. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4400. CLANG_CXX_LIBRARY = "libc++";
  4401. CLANG_ENABLE_MODULES = YES;
  4402. CLANG_ENABLE_OBJC_ARC = YES;
  4403. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4404. CLANG_WARN_BOOL_CONVERSION = YES;
  4405. CLANG_WARN_COMMA = YES;
  4406. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4407. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4408. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4409. CLANG_WARN_EMPTY_BODY = YES;
  4410. CLANG_WARN_ENUM_CONVERSION = YES;
  4411. CLANG_WARN_INFINITE_RECURSION = YES;
  4412. CLANG_WARN_INT_CONVERSION = YES;
  4413. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4414. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4415. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4416. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4417. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4418. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4419. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4420. CLANG_WARN_UNREACHABLE_CODE = YES;
  4421. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4422. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4423. COPY_PHASE_STRIP = NO;
  4424. DEFINES_MODULE = YES;
  4425. ENABLE_NS_ASSERTIONS = NO;
  4426. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4427. GCC_C_LANGUAGE_STANDARD = gnu99;
  4428. GCC_NO_COMMON_BLOCKS = YES;
  4429. GCC_PREPROCESSOR_DEFINITIONS = (
  4430. "$(inherited)",
  4431. NC,
  4432. );
  4433. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4434. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4435. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4436. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4437. GCC_WARN_UNUSED_FUNCTION = YES;
  4438. GCC_WARN_UNUSED_VARIABLE = YES;
  4439. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4440. MTL_ENABLE_DEBUG_INFO = NO;
  4441. OTHER_LDFLAGS = (
  4442. "-Obj-C",
  4443. "-all_load",
  4444. );
  4445. SDKROOT = iphoneos;
  4446. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG NC";
  4447. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  4448. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4449. VALIDATE_PRODUCT = YES;
  4450. };
  4451. name = Release;
  4452. };
  4453. /* End XCBuildConfiguration section */
  4454. /* Begin XCConfigurationList section */
  4455. 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = {
  4456. isa = XCConfigurationList;
  4457. buildConfigurations = (
  4458. 2C33C48723E2C475005F963B /* Debug */,
  4459. 2C33C48823E2C475005F963B /* Release */,
  4460. );
  4461. defaultConfigurationIsVisible = 0;
  4462. defaultConfigurationName = Release;
  4463. };
  4464. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  4465. isa = XCConfigurationList;
  4466. buildConfigurations = (
  4467. F7145A261D12E3B700CAFEEC /* Debug */,
  4468. F7145A271D12E3B700CAFEEC /* Release */,
  4469. );
  4470. defaultConfigurationIsVisible = 0;
  4471. defaultConfigurationName = Release;
  4472. };
  4473. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  4474. isa = XCConfigurationList;
  4475. buildConfigurations = (
  4476. F771E3F020E2392E00AFB62D /* Debug */,
  4477. F771E3F120E2392E00AFB62D /* Release */,
  4478. );
  4479. defaultConfigurationIsVisible = 0;
  4480. defaultConfigurationName = Release;
  4481. };
  4482. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  4483. isa = XCConfigurationList;
  4484. buildConfigurations = (
  4485. F77B0F9B1D118A16002130FE /* Debug */,
  4486. F77B0F9C1D118A16002130FE /* Release */,
  4487. );
  4488. defaultConfigurationIsVisible = 0;
  4489. defaultConfigurationName = Release;
  4490. };
  4491. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  4492. isa = XCConfigurationList;
  4493. buildConfigurations = (
  4494. F7F67BC91A24D27800EE80DA /* Debug */,
  4495. F7F67BCA1A24D27800EE80DA /* Release */,
  4496. );
  4497. defaultConfigurationIsVisible = 0;
  4498. defaultConfigurationName = Release;
  4499. };
  4500. /* End XCConfigurationList section */
  4501. };
  4502. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  4503. }