123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
- F700222C1EC479840080073F = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F ; };
- F700222D1EC479840080073F = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F ; };
- F70022A11EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F ; };
- F70022A21EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F ; };
- F70022A41EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F ; };
- F70022A51EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F ; };
- F70022A71EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F ; };
- F70022A81EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F ; };
- F70022AA1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F ; };
- F70022AB1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F ; };
- F70022AD1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F ; };
- F70022AE1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F ; };
- F70022B01EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F ; };
- F70022B11EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F ; };
- F70022B31EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F ; };
- F70022B41EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F ; };
- F70022B61EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F ; };
- F70022B71EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F ; };
- F70022B91EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F ; };
- F70022BA1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F ; };
- F70022BC1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F ; };
- F70022BD1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F ; };
- F70022BF1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F ; };
- F70022C01EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F ; };
- F70022C21EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F ; };
- F70022C31EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F ; };
- F70022C51EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F ; };
- F70022C61EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F ; };
- F70022C81EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F ; };
- F70022C91EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F ; };
- F70022CB1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F ; };
- F70022CC1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F ; };
- F70022CE1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F ; };
- F70022CF1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F ; };
- F70022D11EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F ; };
- F70022D21EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F ; };
- F70022D41EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F ; };
- F70022D51EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F ; };
- F70022D71EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F ; };
- F70022D81EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F ; };
- F70022DA1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F ; };
- F70022DB1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F ; };
- F70022DD1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F ; };
- F70022DE1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F ; };
- F70022E01EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F ; };
- F70022E11EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F ; };
- F70022E31EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F ; };
- F70022E41EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F ; };
- F70022E61EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F ; };
- F70022E71EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F ; };
- F70022E91EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F ; };
- F70022EA1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F ; };
- F70022EC1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F ; };
- F70022ED1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F ; };
- F70022FB1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F ; };
- F70022FC1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F ; };
- F70022FE1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F ; };
- F70022FF1EC4C9100080073F = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F ; };
- F70A630B1D5B3467004E2AA5 = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 ; };
- F70A630F1D5B3467004E2AA5 = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 ; };
- F70BFC7420E0FA7D00C67599 = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 ; };
- F70BFC7520E0FA7D00C67599 = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 ; };
- F70CAE3A1F8CF31A008125FD = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD ; };
- F710E8101EF95C9C00DC2427 = {isa = PBXBuildFile; fileRef = F710E80E1EF95C9C00DC2427 ; };
- F710E8111EF95C9C00DC2427 = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 ; };
- F71459B81D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 ; };
- F71459BA1D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 ; };
- F71459BC1D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 ; };
- F71459BD1D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 ; };
- F71459C21D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 ; };
- F71459C91D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B ; };
- F71459CD1D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 ; };
- F71459D21D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 ; };
- F71459D31D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B ; };
- F71459D51D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 ; };
- F71459E11D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 ; };
- F71459F11D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 ; };
- F71459F71D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 ; };
- F7145A041D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 ; };
- F7145A1A1D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA ; };
- F7145A1C1D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 ; };
- F7145A1D1D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F ; };
- F7145A211D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 ; };
- F7145A231D12E3B700CAFEEC = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A ; };
- F7169A1C1EE590930086BD69 = {isa = PBXBuildFile; fileRef = F7169A181EE590930086BD69 ; };
- F7169A1D1EE590930086BD69 = {isa = PBXBuildFile; fileRef = F7169A1A1EE590930086BD69 ; };
- F7169A1E1EE590930086BD69 = {isa = PBXBuildFile; fileRef = F7169A1B1EE590930086BD69 ; };
- F720E01F1E48C73E001A4B9E = {isa = PBXBuildFile; fileRef = F720E01E1E48C73E001A4B9E ; };
- F7226EDC1EE4089300EBECB1 = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 ; };
- F726EEEC1FED1C820030B9C8 = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 ; };
- F72AAECA1E5C60C700BB17E1 = {isa = PBXBuildFile; fileRef = F72AAEC31E5C60C700BB17E1 ; };
- F72AAECB1E5C60C700BB17E1 = {isa = PBXBuildFile; fileRef = F72AAEC51E5C60C700BB17E1 ; };
- F72D0FF9210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FEF210B6638009C96B7 ; };
- F72D0FFA210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FF0210B6638009C96B7 ; };
- F72D0FFB210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FF2210B6638009C96B7 ; };
- F72D0FFC210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FF3210B6638009C96B7 ; };
- F72D0FFD210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FF4210B6638009C96B7 ; };
- F72D0FFE210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FF5210B6638009C96B7 ; };
- F72D0FFF210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FF6210B6638009C96B7 ; };
- F72D1000210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FF7210B6638009C96B7 ; };
- F72D1001210B6638009C96B7 = {isa = PBXBuildFile; fileRef = F72D0FF8210B6638009C96B7 ; };
- F72D1003210B67CE009C96B7 = {isa = PBXBuildFile; fileRef = F72D1002210B67CE009C96B7 ; };
- F72D1007210B6882009C96B7 = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 ; };
- F72D100F210B6B17009C96B7 = {isa = PBXBuildFile; fileRef = F72D100E210B6B17009C96B7 ; };
- F72D1013210B6B17009C96B7 = {isa = PBXBuildFile; fileRef = F72D100C210B6B16009C96B7 ; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- F72D101A210B7473009C96B7 = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 ; };
- F72D101B210B74CA009C96B7 = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 ; };
- F72D101C210B75E4009C96B7 = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 ; };
- F72D101D210B75E7009C96B7 = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 ; };
- F72D103A210B769E009C96B7 = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 ; };
- F72D103B210B76A1009C96B7 = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 ; };
- F72D103C210B777F009C96B7 = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 ; };
- F72D103D210B7796009C96B7 = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F ; };
- F72D103E210B77A5009C96B7 = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F ; };
- F72D103F210B77B8009C96B7 = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 ; };
- F72D1040210B77EA009C96B7 = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 ; };
- F72D1041210B77ED009C96B7 = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 ; };
- F72D1042210B783D009C96B7 = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD ; };
- F732B3371E8045A1002B7D75 = {isa = PBXBuildFile; fileRef = F732B3351E8045A1002B7D75 ; };
- F732BA061D76CE1500E9878B = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B ; };
- F732BA0B1D76DBA500E9878B = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B ; };
- F734E5891F019D860060CB77 = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 ; };
- F738E8421F90FFD100F95C8E = {isa = PBXBuildFile; fileRef = F738E8411F90FFD100F95C8E ; };
- F73B4EEE1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EAD1F470D9100BBEE4B ; };
- F73B4EEF1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EAE1F470D9100BBEE4B ; };
- F73B4EF01F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EB01F470D9100BBEE4B ; };
- F73B4EF11F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EB11F470D9100BBEE4B ; };
- F73B4EF21F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EB21F470D9100BBEE4B ; };
- F73B4EF31F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EB31F470D9100BBEE4B ; };
- F73B4EF41F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EB41F470D9100BBEE4B ; };
- F73B4EF51F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EB51F470D9100BBEE4B ; };
- F73B4EF61F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EB81F470D9100BBEE4B ; };
- F73B4EF71F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EB91F470D9100BBEE4B ; };
- F73B4EF81F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EBA1F470D9100BBEE4B ; };
- F73B4EF91F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EBB1F470D9100BBEE4B ; };
- F73B4EFA1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EBC1F470D9100BBEE4B ; };
- F73B4EFB1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EBD1F470D9100BBEE4B ; };
- F73B4EFC1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EBE1F470D9100BBEE4B ; };
- F73B4EFD1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EBF1F470D9100BBEE4B ; };
- F73B4EFE1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EC01F470D9100BBEE4B ; };
- F73B4EFF1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EC11F470D9100BBEE4B ; };
- F73B4F001F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EC21F470D9100BBEE4B ; };
- F73B4F011F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EC31F470D9100BBEE4B ; };
- F73B4F021F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EC41F470D9100BBEE4B ; };
- F73B4F031F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EC51F470D9100BBEE4B ; };
- F73B4F041F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EC61F470D9100BBEE4B ; };
- F73B4F051F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EC81F470D9100BBEE4B ; };
- F73B4F061F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4ECC1F470D9100BBEE4B ; };
- F73B4F071F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4ECE1F470D9100BBEE4B ; };
- F73B4F081F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4ECF1F470D9100BBEE4B ; };
- F73B4F091F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4ED11F470D9100BBEE4B ; };
- F73B4F0A1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4ED31F470D9100BBEE4B ; };
- F73B4F0B1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4ED51F470D9100BBEE4B ; };
- F73B4F0C1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4ED71F470D9100BBEE4B ; };
- F73B4F0D1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4ED91F470D9100BBEE4B ; };
- F73B4F0E1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EDB1F470D9100BBEE4B ; };
- F73B4F0F1F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EDD1F470D9100BBEE4B ; };
- F73B4F101F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EDF1F470D9100BBEE4B ; };
- F73B4F111F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EE11F470D9100BBEE4B ; };
- F73B4F121F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EE31F470D9100BBEE4B ; };
- F73B4F131F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EE51F470D9100BBEE4B ; };
- F73B4F141F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EE71F470D9100BBEE4B ; };
- F73B4F151F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EEA1F470D9100BBEE4B ; };
- F73B4F171F470D9100BBEE4B = {isa = PBXBuildFile; fileRef = F73B4EEC1F470D9100BBEE4B ; };
- F73CC0691E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 ; };
- F73CC06A1E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 ; };
- F73CC06C1E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 ; };
- F73CC06D1E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 ; };
- F73CC06F1E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 ; };
- F73CC0701E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 ; };
- F73CC0721E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 ; };
- F73CC0731E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 ; };
- F73CC0751E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 ; };
- F73CC0761E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 ; };
- F73CC0781E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 ; };
- F73CC0791E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 ; };
- F73CC07B1E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 ; };
- F73CC07C1E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 ; };
- F73CC07E1E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 ; };
- F73CC07F1E813DFF006E3047 = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 ; };
- F73CCE261DC13788007E38D8 = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 ; };
- F73CCE301DC13798007E38D8 = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 ; };
- F73CCE321DC13798007E38D8 = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 ; };
- F73D71621F2673C200E233EB = {isa = PBXBuildFile; fileRef = F73D71611F2673C200E233EB ; };
- F73D71641F2674A400E233EB = {isa = PBXBuildFile; fileRef = F73D71631F2674A400E233EB ; };
- F73F537F1E929C8500F8678D = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D ; };
- F7434B3420E23FD700417916 = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 ; };
- F7434B3620E23FE000417916 = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 ; };
- F7434B3720E23FF200417916 = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 ; };
- F7434B3820E2400600417916 = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 ; };
- F7434B3A20E2403500417916 = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F ; };
- F7434B3B20E2403900417916 = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F ; };
- F7434B3C20E2403D00417916 = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F ; };
- F7434B3D20E2404300417916 = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F ; };
- F7434B3E20E2404700417916 = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F ; };
- F7434B3F20E2404B00417916 = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F ; };
- F7434B4020E2404E00417916 = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F ; };
- F7434B4120E2405200417916 = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F ; };
- F7434B4220E2405500417916 = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F ; };
- F7434B4320E2405900417916 = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F ; };
- F7434B4420E2405C00417916 = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F ; };
- F7434B4520E2406400417916 = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F ; };
- F7434B4620E2406900417916 = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F ; };
- F7434B4720E2406C00417916 = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F ; };
- F7434B4820E2407000417916 = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F ; };
- F7434B4920E2407300417916 = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F ; };
- F7434B4A20E2407600417916 = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F ; };
- F7434B4B20E2408000417916 = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F ; };
- F7434B4C20E2408300417916 = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F ; };
- F7434B4D20E2408600417916 = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F ; };
- F7434B4E20E2408A00417916 = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F ; };
- F7434B4F20E2408E00417916 = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F ; };
- F7434B5020E2409100417916 = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F ; };
- F7434B5120E2409500417916 = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F ; };
- F7434B5220E2409900417916 = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F ; };
- F7434B5320E2409E00417916 = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F ; };
- F7434B5420E240A300417916 = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F ; };
- F7434B5520E240A900417916 = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F ; };
- F7434B5620E2412900417916 = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 ; };
- F7434B5720E2416800417916 = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 ; };
- F7434B5820E241B100417916 = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B ; };
- F7434B5920E241B600417916 = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B ; };
- F7434B5A20E241BB00417916 = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C ; };
- F7434B5B20E241D100417916 = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F ; };
- F7434B5C20E241D500417916 = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD ; };
- F7434B5D20E241E800417916 = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 ; };
- F7434B5E20E241EC00417916 = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 ; };
- F7434B6020E2445200417916 = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF ; };
- F7434B6120E2445C00417916 = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC ; };
- F7434B6220E249F700417916 = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 ; };
- F7434B6320E249FB00417916 = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 ; };
- F749E4E91DC1FB38009BA2FD = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 ; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- F74E432620B5547700C2E54C = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C ; };
- F74E432720B5547700C2E54C = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C ; };
- F750374D1DBFA91A008FB480 = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 ; };
- F750374F1DBFA91A008FB480 = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 ; };
- F75037511DBFA91A008FB480 = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 ; };
- F755BD9B20594AC7008C5FBB = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB ; };
- F75797AE1E81356C00187A1B = {isa = PBXBuildFile; fileRef = F75797AC1E81356C00187A1B ; };
- F758B3E1212C4A6C00515F55 = {isa = PBXBuildFile; fileRef = F758B3D9212C4A6C00515F55 ; };
- F758B3E2212C4A6C00515F55 = {isa = PBXBuildFile; fileRef = F758B3DA212C4A6C00515F55 ; };
- F758B3E3212C4A6C00515F55 = {isa = PBXBuildFile; fileRef = F758B3DB212C4A6C00515F55 ; };
- F758B3E4212C4A6C00515F55 = {isa = PBXBuildFile; fileRef = F758B3DC212C4A6C00515F55 ; };
- F758B3E5212C4A6C00515F55 = {isa = PBXBuildFile; fileRef = F758B3DD212C4A6C00515F55 ; };
- F758B3E6212C4A6C00515F55 = {isa = PBXBuildFile; fileRef = F758B3DE212C4A6C00515F55 ; };
- F758B3E7212C4A6C00515F55 = {isa = PBXBuildFile; fileRef = F758B3DF212C4A6C00515F55 ; };
- F758B43E212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B420212C516300515F55 ; };
- F758B43F212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B422212C516300515F55 ; };
- F758B440212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B423212C516300515F55 ; };
- F758B441212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B424212C516300515F55 ; };
- F758B442212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B425212C516300515F55 ; };
- F758B443212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B426212C516300515F55 ; };
- F758B444212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B428212C516300515F55 ; };
- F758B445212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B429212C516300515F55 ; };
- F758B446212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B42A212C516300515F55 ; };
- F758B447212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B42B212C516300515F55 ; };
- F758B448212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B42C212C516300515F55 ; };
- F758B449212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B42D212C516300515F55 ; };
- F758B44A212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B42E212C516300515F55 ; };
- F758B44B212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B42F212C516300515F55 ; };
- F758B44C212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B431212C516300515F55 ; };
- F758B44D212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B432212C516300515F55 ; };
- F758B44E212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B435212C516300515F55 ; };
- F758B44F212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B436212C516300515F55 ; };
- F758B450212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B437212C516300515F55 ; };
- F758B451212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B438212C516300515F55 ; };
- F758B452212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B439212C516300515F55 ; };
- F758B453212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B43B212C516300515F55 ; };
- F758B454212C516300515F55 = {isa = PBXBuildFile; fileRef = F758B43D212C516300515F55 ; };
- F758B45A212C564000515F55 = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 ; };
- F758B45E212C569D00515F55 = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 ; };
- F758B460212C56A400515F55 = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 ; };
- F75AC2431F1F62450073EC19 = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 ; };
- F75ADF451DC75FFE008A7347 = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 ; };
- F75AE3C71E9D12900088BB09 = {isa = PBXBuildFile; fileRef = F75AE3C61E9D12900088BB09 ; };
- F75EDFBD1E8C112F00E6F369 = {isa = PBXBuildFile; fileRef = F75EDFBC1E8C112F00E6F369 ; };
- F75EDFBF1E8C116D00E6F369 = {isa = PBXBuildFile; fileRef = F75EDFBE1E8C116D00E6F369 ; };
- F762CAF71EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAA41EACB66200B38484 ; };
- F762CAF81EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAA61EACB66200B38484 ; };
- F762CAF91EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAA81EACB66200B38484 ; };
- F762CAFA1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAAA1EACB66200B38484 ; };
- F762CAFB1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAAC1EACB66200B38484 ; };
- F762CAFC1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAAF1EACB66200B38484 ; };
- F762CAFD1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAB21EACB66200B38484 ; };
- F762CAFE1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAB41EACB66200B38484 ; };
- F762CAFF1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAB61EACB66200B38484 ; };
- F762CB001EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAB81EACB66200B38484 ; };
- F762CB011EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CABA1EACB66200B38484 ; };
- F762CB021EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CABC1EACB66200B38484 ; };
- F762CB031EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CABE1EACB66200B38484 ; };
- F762CB041EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAC01EACB66200B38484 ; };
- F762CB051EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAC21EACB66200B38484 ; };
- F762CB061EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAC41EACB66200B38484 ; };
- F762CB071EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAC71EACB66200B38484 ; };
- F762CB081EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAC91EACB66200B38484 ; };
- F762CB091EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CACC1EACB66200B38484 ; };
- F762CB0A1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CACF1EACB66200B38484 ; };
- F762CB0B1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAD21EACB66200B38484 ; };
- F762CB0C1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAD41EACB66200B38484 ; };
- F762CB0D1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAD71EACB66200B38484 ; };
- F762CB0E1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAD91EACB66200B38484 ; };
- F762CB0F1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CADB1EACB66200B38484 ; };
- F762CB101EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CADD1EACB66200B38484 ; };
- F762CB111EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CADF1EACB66200B38484 ; };
- F762CB121EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAE11EACB66200B38484 ; };
- F762CB131EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAE41EACB66200B38484 ; };
- F762CB141EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAE61EACB66200B38484 ; };
- F762CB151EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAE81EACB66200B38484 ; };
- F762CB161EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAEA1EACB66200B38484 ; };
- F762CB171EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAED1EACB66200B38484 ; };
- F762CB181EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAEF1EACB66200B38484 ; };
- F762CB191EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAF11EACB66200B38484 ; };
- F762CB1A1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAF41EACB66200B38484 ; };
- F762CB1B1EACB66200B38484 = {isa = PBXBuildFile; fileRef = F762CAF51EACB66200B38484 ; };
- F762CB861EACB81000B38484 = {isa = PBXBuildFile; fileRef = F762CB7D1EACB81000B38484 ; };
- F762CB871EACB81000B38484 = {isa = PBXBuildFile; fileRef = F762CB7F1EACB81000B38484 ; };
- F762CB881EACB81000B38484 = {isa = PBXBuildFile; fileRef = F762CB811EACB81000B38484 ; };
- F762CB891EACB81000B38484 = {isa = PBXBuildFile; fileRef = F762CB831EACB81000B38484 ; };
- F762CB8A1EACB81000B38484 = {isa = PBXBuildFile; fileRef = F762CB851EACB81000B38484 ; };
- F762CB951EACB84400B38484 = {isa = PBXBuildFile; fileRef = F762CB8D1EACB84400B38484 ; };
- F762CB961EACB84400B38484 = {isa = PBXBuildFile; fileRef = F762CB8E1EACB84400B38484 ; };
- F762CB971EACB84400B38484 = {isa = PBXBuildFile; fileRef = F762CB8F1EACB84400B38484 ; };
- F762CB981EACB84400B38484 = {isa = PBXBuildFile; fileRef = F762CB901EACB84400B38484 ; };
- F762CB991EACB84400B38484 = {isa = PBXBuildFile; fileRef = F762CB911EACB84400B38484 ; };
- F762CB9A1EACB84400B38484 = {isa = PBXBuildFile; fileRef = F762CB921EACB84400B38484 ; };
- F762CB9B1EACB84400B38484 = {isa = PBXBuildFile; fileRef = F762CB941EACB84400B38484 ; };
- F7659A271DC0B726004860C4 = {isa = PBXBuildFile; fileRef = F7659A231DC0B726004860C4 ; };
- F7659A291DC0B726004860C4 = {isa = PBXBuildFile; fileRef = F7659A251DC0B726004860C4 ; };
- F7659A2E1DC0B72F004860C4 = {isa = PBXBuildFile; fileRef = F7659A2C1DC0B72F004860C4 ; };
- F7659A371DC0B737004860C4 = {isa = PBXBuildFile; fileRef = F7659A311DC0B737004860C4 ; };
- F7659A391DC0B737004860C4 = {isa = PBXBuildFile; fileRef = F7659A331DC0B737004860C4 ; };
- F76B3CCE1EAE01BD00921AC9 = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 ; };
- F76B3CCF1EAE01BD00921AC9 = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 ; };
- F76F23341ED4603700C40023 = {isa = PBXBuildFile; fileRef = F76F23331ED4603700C40023 ; };
- F771E3D320E2392D00AFB62D = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D ; };
- F771E3D520E2392D00AFB62D = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D ; };
- F771E3D720E2392D00AFB62D = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D ; };
- F771E3EB20E2392E00AFB62D = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D ; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- F771E3F320E239A600AFB62D = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D ; };
- F771E3F720E239B500AFB62D = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D ; };
- F771E3F820E239B500AFB62D = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D ; };
- F771E3F920E239B500AFB62D = {isa = PBXBuildFile; fileRef = F771E3F620E239B400AFB62D ; };
- F771E3FD20E23BA700AFB62D = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 ; };
- F771E3FE20E23BAB00AFB62D = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 ; };
- F771E3FF20E23C3A00AFB62D = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 ; };
- F771E40020E23C3D00AFB62D = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 ; };
- F774DF0F1FCC26BE002AF9FC = {isa = PBXBuildFile; fileRef = F774DF0C1FCC26BD002AF9FC ; };
- F774DF101FCC26BE002AF9FC = {isa = PBXBuildFile; fileRef = F774DF0D1FCC26BD002AF9FC ; };
- F774DF111FCC26BE002AF9FC = {isa = PBXBuildFile; fileRef = F774DF0E1FCC26BE002AF9FC ; };
- F77B0DF21D118A16002130FE = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 ; };
- F77B0DF41D118A16002130FE = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E ; };
- F77B0DF51D118A16002130FE = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 ; };
- F77B0DFF1D118A16002130FE = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B ; };
- F77B0E031D118A16002130FE = {isa = PBXBuildFile; fileRef = F743B2C41C95BBE8006F5B4A ; };
- F77B0E041D118A16002130FE = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 ; };
- F77B0E131D118A16002130FE = {isa = PBXBuildFile; fileRef = F7A582D61A24DAB500E903D7 ; };
- F77B0E141D118A16002130FE = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 ; };
- F77B0E161D118A16002130FE = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 ; };
- F77B0E1B1D118A16002130FE = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 ; };
- F77B0E201D118A16002130FE = {isa = PBXBuildFile; fileRef = F78316871C0CB3CA00C43975 ; };
- F77B0E221D118A16002130FE = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 ; };
- F77B0E231D118A16002130FE = {isa = PBXBuildFile; fileRef = F7CD0FFA1C8DDA7D006520C5 ; };
- F77B0E301D118A16002130FE = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 ; };
- F77B0E311D118A16002130FE = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF ; };
- F77B0E411D118A16002130FE = {isa = PBXBuildFile; fileRef = F792A77C1BC7C45400C9388E ; };
- F77B0E4C1D118A16002130FE = {isa = PBXBuildFile; fileRef = F7D0E65F1BC5042E008D989A ; };
- F77B0E4F1D118A16002130FE = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 ; };
- F77B0E541D118A16002130FE = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 ; };
- F77B0E5F1D118A16002130FE = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 ; };
- F77B0E631D118A16002130FE = {isa = PBXBuildFile; fileRef = F768EAFC1BFB7CD800B6E341 ; };
- F77B0E671D118A16002130FE = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 ; };
- F77B0E8F1D118A16002130FE = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 ; };
- F77B0E921D118A16002130FE = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E ; };
- F77B0E981D118A16002130FE = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 ; };
- F77B0E9B1D118A16002130FE = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B ; };
- F77B0EA61D118A16002130FE = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 ; };
- F77B0EB61D118A16002130FE = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 ; };
- F77B0EC61D118A16002130FE = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E ; };
- F77B0ED11D118A16002130FE = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 ; };
- F77B0ED51D118A16002130FE = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB ; };
- F77B0ED91D118A16002130FE = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA ; };
- F77B0EFE1D118A16002130FE = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 ; };
- F77B0F0E1D118A16002130FE = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F ; };
- F77B0F181D118A16002130FE = {isa = PBXBuildFile; fileRef = F744BE9F1BEBB69F004FFF66 ; };
- F77B0F2F1D118A16002130FE = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 ; };
- F77B0F481D118A16002130FE = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 ; };
- F77B0F4D1D118A16002130FE = {isa = PBXBuildFile; fileRef = F768EB021BFB7EA900B6E341 ; };
- F77B0F551D118A16002130FE = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 ; };
- F77B0F571D118A16002130FE = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 ; };
- F77B0F611D118A16002130FE = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 ; };
- F77B0F631D118A16002130FE = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A ; };
- F77B0F671D118A16002130FE = {isa = PBXBuildFile; fileRef = F7C6D5F61BE371D800AC83AD ; };
- F77B0F7D1D118A16002130FE = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA ; };
- F77B0F8A1D118A16002130FE = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E ; };
- F77B0F8C1D118A16002130FE = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E ; };
- F77D49A91DC238E500CDC568 = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 ; };
- F77EB6281EC08036003F814F = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF ; };
- F77EB62A1EC0B50A003F814F = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC ; };
- F78071091EDAB65800EAFFF6 = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 ; };
- F780710A1EDAB65800EAFFF6 = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 ; };
- F78295311F962EFA00A572F5 = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD ; };
- F784FA2E210F6FC000256C26 = {isa = PBXBuildFile; fileRef = F784FA26210F672E00256C26 ; };
- F784FA2F210F6FC000256C26 = {isa = PBXBuildFile; fileRef = F784FA26210F672E00256C26 ; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- F784FA30210F6FC500256C26 = {isa = PBXBuildFile; fileRef = F784FA27210F672E00256C26 ; };
- F784FA31210F6FC500256C26 = {isa = PBXBuildFile; fileRef = F784FA27210F672E00256C26 ; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- F78964AD1EBB576C00403E13 = {isa = PBXBuildFile; fileRef = F78964A81EBB576C00403E13 ; };
- F78964AE1EBB576C00403E13 = {isa = PBXBuildFile; fileRef = F78964AA1EBB576C00403E13 ; };
- F78964AF1EBB576C00403E13 = {isa = PBXBuildFile; fileRef = F78964AC1EBB576C00403E13 ; };
- F78BFEE11D31126B00E513CF = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF ; };
- F790110E21415BF600D7B136 = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 ; };
- F79630EE215527D40015EEA5 = {isa = PBXBuildFile; fileRef = F79630ED215527D40015EEA5 ; };
- F7A321551E9E2A070069AD1B = {isa = PBXBuildFile; fileRef = F7A3214F1E9E2A070069AD1B ; };
- F7A321651E9E37960069AD1B = {isa = PBXBuildFile; fileRef = F7A321641E9E37960069AD1B ; };
- F7A3218C1E9E42B30069AD1B = {isa = PBXBuildFile; fileRef = F7A3218B1E9E42B30069AD1B ; };
- F7A321AD1E9E6AD50069AD1B = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B ; };
- F7A377161EB2364A002856D3 = {isa = PBXBuildFile; fileRef = F7A377141EB2364A002856D3 ; };
- F7A3771A1EB2364A002856D3 = {isa = PBXBuildFile; fileRef = F7A377151EB2364A002856D3 ; };
- F7A5541E204EF8AF008468EC = {isa = PBXBuildFile; fileRef = F7A55418204EF8AF008468EC ; };
- F7A5541F204EF8AF008468EC = {isa = PBXBuildFile; fileRef = F7A5541B204EF8AF008468EC ; };
- F7A55420204EF8AF008468EC = {isa = PBXBuildFile; fileRef = F7A5541D204EF8AF008468EC ; };
- F7B0C0CD1EE7E7750033AC24 = {isa = PBXBuildFile; fileRef = F7B0C0CC1EE7E7750033AC24 ; };
- F7B0C1751EE839A30033AC24 = {isa = PBXBuildFile; fileRef = F7B0C1741EE839A30033AC24 ; };
- F7B1FBC41E72E3D1001781FE = {isa = PBXBuildFile; fileRef = F7B1FBB11E72E3D1001781FE ; };
- F7B1FBC61E72E3D1001781FE = {isa = PBXBuildFile; fileRef = F7B1FBBF1E72E3D1001781FE ; };
- F7B1FBC71E72E3D1001781FE = {isa = PBXBuildFile; fileRef = F7B1FBC01E72E3D1001781FE ; };
- F7B1FBC81E72E3D1001781FE = {isa = PBXBuildFile; fileRef = F7B1FBC11E72E3D1001781FE ; };
- F7B1FBC91E72E3D1001781FE = {isa = PBXBuildFile; fileRef = F7B1FBC21E72E3D1001781FE ; };
- F7B1FBCA1E72E3D1001781FE = {isa = PBXBuildFile; fileRef = F7B1FBC31E72E3D1001781FE ; };
- F7B2DEF01F976854007CF4D2 = {isa = PBXBuildFile; fileRef = F7B2DEEF1F976785007CF4D2 ; };
- F7B2DEF11F976859007CF4D2 = {isa = PBXBuildFile; fileRef = F7B2DEED1F976785007CF4D2 ; };
- F7B3A4EE1E97818A000DACE8 = {isa = PBXBuildFile; fileRef = F7B3A4ED1E97818A000DACE8 ; };
- F7B4F1CB1F44356F00B53B42 = {isa = PBXBuildFile; fileRef = F7B4F1C81F44356F00B53B42 ; };
- F7BAADC81ED5A87C00B7EAD4 = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 ; };
- F7BAADC91ED5A87C00B7EAD4 = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 ; };
- F7BAADCB1ED5A87C00B7EAD4 = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 ; };
- F7BAADCC1ED5A87C00B7EAD4 = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 ; };
- F7BB14961D5B62C000ECEE68 = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 ; };
- F7BB14971D5B62C000ECEE68 = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 ; };
- F7BE6E2F1D2D5C3B00106933 = {isa = PBXBuildFile; fileRef = F7BE6E2C1D2D5C3B00106933 ; };
- F7BF1B431D51E893000854F6 = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 ; };
- F7C525A01E3B48B700FFE02C = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C ; };
- F7C525A21E3B6DA800FFE02C = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C ; };
- F7CA1ED020E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1EBC20E7E3FE002CC65E ; };
- F7CA1ED120E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1EBE20E7E3FE002CC65E ; };
- F7CA1ED220E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1EC120E7E3FE002CC65E ; };
- F7CA1ED320E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1EC220E7E3FE002CC65E ; };
- F7CA1ED420E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1EC320E7E3FE002CC65E ; };
- F7CA1ED520E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1EC520E7E3FE002CC65E ; };
- F7CA1ED620E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1EC720E7E3FE002CC65E ; };
- F7CA1ED720E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1EC820E7E3FE002CC65E ; };
- F7CA1ED820E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1ECA20E7E3FE002CC65E ; };
- F7CA1ED920E7E3FE002CC65E = {isa = PBXBuildFile; fileRef = F7CA1ECE20E7E3FE002CC65E ; };
- F7D423331F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423161F0596AC009C9782 ; };
- F7D423341F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423171F0596AC009C9782 ; };
- F7D423351F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423181F0596AC009C9782 ; };
- F7D423361F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423191F0596AC009C9782 ; };
- F7D423371F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4231A1F0596AC009C9782 ; };
- F7D423381F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4231B1F0596AC009C9782 ; };
- F7D423391F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4231C1F0596AC009C9782 ; };
- F7D4233A1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4231D1F0596AC009C9782 ; };
- F7D4233B1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4231E1F0596AC009C9782 ; };
- F7D4233C1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4231F1F0596AC009C9782 ; };
- F7D4233D1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423201F0596AC009C9782 ; };
- F7D4233E1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423211F0596AC009C9782 ; };
- F7D4233F1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423221F0596AC009C9782 ; };
- F7D423401F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423231F0596AC009C9782 ; };
- F7D423411F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423241F0596AC009C9782 ; };
- F7D423421F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423251F0596AC009C9782 ; };
- F7D423431F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423261F0596AC009C9782 ; };
- F7D423441F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423271F0596AC009C9782 ; };
- F7D423451F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423281F0596AC009C9782 ; };
- F7D423461F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423291F0596AC009C9782 ; };
- F7D423471F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4232A1F0596AC009C9782 ; };
- F7D423481F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4232B1F0596AC009C9782 ; };
- F7D423491F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4232C1F0596AC009C9782 ; };
- F7D4234A1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4232D1F0596AC009C9782 ; };
- F7D4234B1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4232E1F0596AC009C9782 ; };
- F7D4234C1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D4232F1F0596AC009C9782 ; };
- F7D4234D1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423301F0596AC009C9782 ; };
- F7D4234E1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423311F0596AC009C9782 ; };
- F7D4234F1F0596AC009C9782 = {isa = PBXBuildFile; fileRef = F7D423321F0596AC009C9782 ; };
- F7D423791F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423521F0596C6009C9782 ; };
- F7D4237A1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423541F0596C6009C9782 ; };
- F7D4237B1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423561F0596C6009C9782 ; };
- F7D4237C1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423581F0596C6009C9782 ; };
- F7D4237D1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D4235A1F0596C6009C9782 ; };
- F7D4237E1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D4235C1F0596C6009C9782 ; };
- F7D4237F1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D4235E1F0596C6009C9782 ; };
- F7D423801F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423601F0596C6009C9782 ; };
- F7D423811F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423621F0596C6009C9782 ; };
- F7D423821F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423641F0596C6009C9782 ; };
- F7D423831F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423661F0596C6009C9782 ; };
- F7D423841F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423681F0596C6009C9782 ; };
- F7D423851F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D4236A1F0596C6009C9782 ; };
- F7D423861F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D4236C1F0596C6009C9782 ; };
- F7D423871F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D4236E1F0596C6009C9782 ; };
- F7D423881F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423701F0596C6009C9782 ; };
- F7D423891F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423721F0596C6009C9782 ; };
- F7D4238A1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423741F0596C6009C9782 ; };
- F7D4238B1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423761F0596C6009C9782 ; };
- F7D4238C1F0596C6009C9782 = {isa = PBXBuildFile; fileRef = F7D423781F0596C6009C9782 ; };
- F7D424531F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423A81F063B81009C9782 ; };
- F7D424541F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423AA1F063B81009C9782 ; };
- F7D424551F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423AC1F063B81009C9782 ; };
- F7D424561F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423AE1F063B81009C9782 ; };
- F7D424571F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423B01F063B81009C9782 ; };
- F7D424581F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423B21F063B81009C9782 ; };
- F7D424591F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423B41F063B81009C9782 ; };
- F7D4245A1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423B61F063B81009C9782 ; };
- F7D4245B1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423B81F063B81009C9782 ; };
- F7D4245C1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423BA1F063B81009C9782 ; };
- F7D4245D1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423BC1F063B81009C9782 ; };
- F7D4245E1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423BE1F063B81009C9782 ; };
- F7D4245F1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423C01F063B81009C9782 ; };
- F7D424601F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423C21F063B81009C9782 ; };
- F7D424611F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423C41F063B81009C9782 ; };
- F7D424621F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423C61F063B81009C9782 ; };
- F7D424631F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423C81F063B81009C9782 ; };
- F7D424641F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423CA1F063B81009C9782 ; };
- F7D424651F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423CC1F063B81009C9782 ; };
- F7D424661F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423CE1F063B81009C9782 ; };
- F7D424671F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423D01F063B81009C9782 ; };
- F7D424681F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423D21F063B81009C9782 ; };
- F7D424691F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423D41F063B81009C9782 ; };
- F7D4246A1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423D61F063B82009C9782 ; };
- F7D4246B1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423D81F063B82009C9782 ; };
- F7D4246C1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423DA1F063B82009C9782 ; };
- F7D4246D1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423DC1F063B82009C9782 ; };
- F7D4246E1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423DD1F063B82009C9782 ; };
- F7D4246F1F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423DF1F063B82009C9782 ; };
- F7D424701F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423E21F063B82009C9782 ; };
- F7D424711F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423E41F063B82009C9782 ; };
- F7D424721F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423E61F063B82009C9782 ; };
- F7D424731F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423E81F063B82009C9782 ; };
- F7D424741F063B82009C9782 = {isa = PBXBuildFile; fileRef = F7D423EA1F063B82009C9782 ; };
- F7D6650720FF341600BFBA9E = {isa = PBXBuildFile; fileRef = F7D6650620FF341600BFBA9E ; };
- F7DC5FEC1F011EB700A903C7 = {isa = PBXBuildFile; fileRef = F7DC5FE91F011EB700A903C7 ; };
- F7DC5FED1F011EB700A903C7 = {isa = PBXBuildFile; fileRef = F7DC5FEB1F011EB700A903C7 ; };
- F7DFE2521EBDC3A400CF5202 = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 ; };
- F7DFE2541EBDC3A400CF5202 = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 ; };
- F7DFE2551EBDC3A400CF5202 = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 ; };
- F7DFE2571EBDC52E00CF5202 = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 ; };
- F7DFE2581EBDC52E00CF5202 = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 ; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- F7DFE25A1EBDC53200CF5202 = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 ; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- F7E9C41B20F4CA870040CF18 = {isa = PBXBuildFile; fileRef = F7E9C41820F4CA870040CF18 ; };
- F7EC9CBC21185F2000F1C5CE = {isa = PBXBuildFile; fileRef = F7EC9CBB21185F2000F1C5CE ; };
- F7ECBA6D1E239DCD003E6328 = {isa = PBXBuildFile; fileRef = F7ECBA6C1E239DCD003E6328 ; };
- F7F54CE51E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CAF1E5B14C700E19C62 ; };
- F7F54CE61E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB01E5B14C700E19C62 ; };
- F7F54CE71E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB11E5B14C700E19C62 ; };
- F7F54CE81E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB21E5B14C700E19C62 ; };
- F7F54CE91E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB31E5B14C700E19C62 ; };
- F7F54CEA1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB41E5B14C700E19C62 ; };
- F7F54CEB1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB51E5B14C700E19C62 ; };
- F7F54CEC1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB61E5B14C700E19C62 ; };
- F7F54CED1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB71E5B14C700E19C62 ; };
- F7F54CEE1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB81E5B14C700E19C62 ; };
- F7F54CEF1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CB91E5B14C700E19C62 ; };
- F7F54CF01E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CBA1E5B14C700E19C62 ; };
- F7F54CF11E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CBB1E5B14C700E19C62 ; };
- F7F54CF21E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CBC1E5B14C700E19C62 ; };
- F7F54CF31E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CBD1E5B14C700E19C62 ; };
- F7F54CF41E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CBE1E5B14C700E19C62 ; };
- F7F54CF51E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CBF1E5B14C700E19C62 ; };
- F7F54CF61E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC01E5B14C700E19C62 ; };
- F7F54CF71E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC11E5B14C700E19C62 ; };
- F7F54CF81E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC21E5B14C700E19C62 ; };
- F7F54CF91E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC31E5B14C700E19C62 ; };
- F7F54CFA1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC41E5B14C700E19C62 ; };
- F7F54CFB1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC51E5B14C700E19C62 ; };
- F7F54CFC1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC61E5B14C700E19C62 ; };
- F7F54CFD1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC71E5B14C700E19C62 ; };
- F7F54CFE1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC81E5B14C700E19C62 ; };
- F7F54CFF1E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CC91E5B14C700E19C62 ; };
- F7F54D001E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CCA1E5B14C700E19C62 ; };
- F7F54D011E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CCB1E5B14C700E19C62 ; };
- F7F54D021E5B14C700E19C62 = {isa = PBXBuildFile; fileRef = F7F54CCC1E5B14C700E19C62 ; };
- F7F54D031E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CCD1E5B14C700E19C62 ; };
- F7F54D041E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CCE1E5B14C700E19C62 ; };
- F7F54D051E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CCF1E5B14C700E19C62 ; };
- F7F54D061E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CD11E5B14C700E19C62 ; };
- F7F54D091E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CD81E5B14C700E19C62 ; };
- F7F54D0A1E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CDA1E5B14C700E19C62 ; };
- F7F54D0B1E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CDE1E5B14C700E19C62 ; };
- F7F54D0C1E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CE01E5B14C700E19C62 ; };
- F7F54D0D1E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CE21E5B14C700E19C62 ; };
- F7F54D0E1E5B14C800E19C62 = {isa = PBXBuildFile; fileRef = F7F54CE41E5B14C700E19C62 ; };
- F7F801031D98205A007537BC = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC ; };
- F7F878AE1FB9E3B900599E4F = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F ; };
- F7F878AF1FB9E3B900599E4F = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F ; };
- F7F8D71C1ED6183000E711F3 = {isa = PBXBuildFile; fileRef = F7F8D71A1ED6183000E711F3 ; };
- F7F8D71D1ED6183000E711F3 = {isa = PBXBuildFile; fileRef = F7F8D71B1ED6183000E711F3 ; };
- F7FC7D561DC1F93800BB2C6A = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A ; };
- F7FCFFD81D70798C000E6E29 = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 ; };
- F7FCFFE01D707B83000E6E29 = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 ; };
- F7145A311D12E65F00CAFEEC = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA ;
- proxyType = 1;
- remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
- remoteInfo = "Share Ext Nextcloud";
- };
- F72D1011210B6B17009C96B7 = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA ;
- proxyType = 1;
- remoteGlobalIDString = F72D100B210B6B16009C96B7;
- remoteInfo = "Notification Service Extension";
- };
- F771E3E920E2392E00AFB62D = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA ;
- proxyType = 1;
- remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
- remoteInfo = "File Provider Extension";
- };
- F75A3FFF1EBCB55B00B213E8 = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- F7DFE25A1EBDC53200CF5202 ,
- F7DFE2581EBDC52E00CF5202 ,
- F784FA2F210F6FC000256C26 ,
- F784FA31210F6FC500256C26 ,
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
- F77B0F981D118A16002130FE = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 13;
- files = (
- F771E3EB20E2392E00AFB62D ,
- F749E4E91DC1FB38009BA2FD ,
- F72D1013210B6B17009C96B7 ,
- );
- name = "Embed App Extensions";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 08DC3BD41E64727E00F036D3 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
- 08EA97441E6554FC004C83FA = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
- 08EA97451E6554FC004C83FA = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
- 08EA97461E6554FC004C83FA = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
- 08EA97471E6554FC004C83FA = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
- F700222B1EC479840080073F = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
- F70022591EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
- F700225A1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
- F700225B1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
- F700225C1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
- F700225D1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
- F700225E1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
- F700225F1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
- F70022601EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
- F70022611EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
- F70022621EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
- F70022631EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
- F70022641EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
- F70022651EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
- F70022661EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCActivity.h; sourceTree = "<group>"; };
- F70022671EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCActivity.m; sourceTree = "<group>"; };
- F70022681EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCapabilities.h; sourceTree = "<group>"; };
- F70022691EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCapabilities.m; sourceTree = "<group>"; };
- F700226A1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCommunication.h; sourceTree = "<group>"; };
- F700226B1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCommunication.m; sourceTree = "<group>"; };
- F700226C1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCErrorMsg.h; sourceTree = "<group>"; };
- F700226D1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCExternalSites.h; sourceTree = "<group>"; };
- F700226E1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCExternalSites.m; sourceTree = "<group>"; };
- F700226F1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFileDto.h; sourceTree = "<group>"; };
- F70022701EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCFileDto.m; sourceTree = "<group>"; };
- F70022711EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFrameworkConstants.h; sourceTree = "<group>"; };
- F70022721EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotifications.h; sourceTree = "<group>"; };
- F70022731EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotifications.m; sourceTree = "<group>"; };
- F70022741EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotificationsAction.h; sourceTree = "<group>"; };
- F70022751EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotificationsAction.m; sourceTree = "<group>"; };
- F70022761EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCRichObjectStrings.h; sourceTree = "<group>"; };
- F70022771EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCRichObjectStrings.m; sourceTree = "<group>"; };
- F70022781EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCSharedDto.h; sourceTree = "<group>"; };
- F70022791EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCSharedDto.m; sourceTree = "<group>"; };
- F700227A1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCShareUser.h; sourceTree = "<group>"; };
- F700227B1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCShareUser.m; sourceTree = "<group>"; };
- F700227C1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCUserProfile.h; sourceTree = "<group>"; };
- F700227D1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCUserProfile.m; sourceTree = "<group>"; };
- F700227F1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+ISO8601.h"; sourceTree = "<group>"; };
- F70022801EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+ISO8601.m"; sourceTree = "<group>"; };
- F70022811EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+RFC1123.h"; sourceTree = "<group>"; };
- F70022821EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+RFC1123.m"; sourceTree = "<group>"; };
- F70022831EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCHTTPRequestOperation.h; sourceTree = "<group>"; };
- F70022841EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCHTTPRequestOperation.m; sourceTree = "<group>"; };
- F70022851EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCWebDAVClient.h; sourceTree = "<group>"; };
- F70022861EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCWebDAVClient.m; sourceTree = "<group>"; };
- F70022881EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLListParser.h; sourceTree = "<group>"; };
- F70022891EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLListParser.m; sourceTree = "<group>"; };
- F700228A1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLParser.h; sourceTree = "<group>"; };
- F700228B1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLParser.m; sourceTree = "<group>"; };
- F700228C1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLServerErrorsParser.h; sourceTree = "<group>"; };
- F700228D1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLServerErrorsParser.m; sourceTree = "<group>"; };
- F700228E1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLShareByLinkParser.h; sourceTree = "<group>"; };
- F700228F1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLShareByLinkParser.m; sourceTree = "<group>"; };
- F70022901EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLSharedParser.h; sourceTree = "<group>"; };
- F70022911EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLSharedParser.m; sourceTree = "<group>"; };
- F700229C1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Encode.h"; sourceTree = "<group>"; };
- F700229D1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Encode.m"; sourceTree = "<group>"; };
- F700229E1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCConstants.h; sourceTree = "<group>"; };
- F700229F1EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsFramework.h; sourceTree = "<group>"; };
- F70022A01EC4C9100080073F = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UtilsFramework.m; sourceTree = "<group>"; };
- F70211F51BAC56E9003FC03E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
- F70211F61BAC56E9003FC03E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
- F70211F71BAC56E9003FC03E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
- F70211F81BAC56E9003FC03E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
- F70211F91BAC56E9003FC03E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
- F70211FA1BAC56E9003FC03E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
- F70211FB1BAC56E9003FC03E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMain.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
- F7053E3C1C639DF500741EA5 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
- F7053E3D1C639DF500741EA5 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
- F70A07C5205285FA00DC1231 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F70A07C6205285FB00DC1231 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F70A07C7205285FB00DC1231 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F70A07C8205285FB00DC1231 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F70A07C9205285FB00DC1231 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F70A07CA205285FB00DC1231 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Intro.strings"; sourceTree = "<group>"; };
- F70A07CB205285FB00DC1231 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Error.strings"; sourceTree = "<group>"; };
- F70A63061D5B3467004E2AA5 = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
- F70A63071D5B3467004E2AA5 = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
- F70BFC7320E0FA7C00C67599 = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
- F70CAE381F8CF31A008125FD = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
- F70CAE391F8CF31A008125FD = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
- F70F02B31C889183008DAB36 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFViewShaker.h; sourceTree = "<group>"; };
- F70F02B41C889183008DAB36 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
- F70F04831C889183008DAB36 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
- F70F04841C889183008DAB36 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
- F70F05251C889184008DAB36 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
- F70F05261C889184008DAB36 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
- F70F05571C889184008DAB36 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
- F70F05581C889184008DAB36 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
- F710E80D1EF95C9C00DC2427 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCIntro.h; sourceTree = "<group>"; };
- F710E80E1EF95C9C00DC2427 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCIntro.m; sourceTree = "<group>"; };
- F710E80F1EF95C9C00DC2427 = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
- F7151A801D477A4B00E6AF45 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7151A811D477A4B00E6AF45 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7151A821D477A4B00E6AF45 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7151A831D477A4B00E6AF45 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intro.strings; sourceTree = "<group>"; };
- F7151A841D477A4B00E6AF45 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Error.strings; sourceTree = "<group>"; };
- F7169A171EE590930086BD69 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCShares.h; sourceTree = "<group>"; };
- F7169A181EE590930086BD69 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCShares.m; sourceTree = "<group>"; };
- F7169A191EE590930086BD69 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSharesCell.h; sourceTree = "<group>"; };
- F7169A1A1EE590930086BD69 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSharesCell.m; sourceTree = "<group>"; };
- F7169A1B1EE590930086BD69 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSharesCell.xib; sourceTree = "<group>"; };
- F7169A2D1EE59BB70086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F7169A2E1EE59BB70086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F7169A2F1EE59BB70086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7169A301EE59BB70086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7169A311EE59BB70086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7169A321EE59BB70086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intro.strings; sourceTree = "<group>"; };
- F7169A331EE59BB80086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Error.strings; sourceTree = "<group>"; };
- F7169A491EE59C630086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F7169A4A1EE59C640086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F7169A4B1EE59C640086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7169A4C1EE59C640086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7169A4D1EE59C640086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7169A4E1EE59C640086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Intro.strings; sourceTree = "<group>"; };
- F7169A4F1EE59C640086BD69 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Error.strings; sourceTree = "<group>"; };
- F720E01E1E48C73E001A4B9E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; lineEnding = 0; name = CCActions.swift; path = Actions/CCActions.swift; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
- F7226EDB1EE4089300EBECB1 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
- F7229B491DF71BB300E8C4E7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
- F726EEEB1FED1C820030B9C8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
- F7296A661C8880ED001A7809 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
- F72AAEC21E5C60C700BB17E1 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheet.h; sourceTree = "<group>"; };
- F72AAEC31E5C60C700BB17E1 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheet.m; sourceTree = "<group>"; };
- F72AAEC41E5C60C700BB17E1 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheetViewController.h; sourceTree = "<group>"; };
- F72AAEC51E5C60C700BB17E1 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheetViewController.m; sourceTree = "<group>"; };
- F72D0FEF210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Protobuf.framework; sourceTree = "<group>"; };
- F72D0FF0210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMessaging.framework; sourceTree = "<group>"; };
- F72D0FF2210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
- F72D0FF3210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
- F72D0FF4210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
- F72D0FF5210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = nanopb.framework; sourceTree = "<group>"; };
- F72D0FF6210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseNanoPB.framework; sourceTree = "<group>"; };
- F72D0FF7210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
- F72D0FF8210B6638009C96B7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
- F72D1002210B67CE009C96B7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = SOURCE_ROOT; };
- F72D1004210B6835009C96B7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Firebase.h; sourceTree = "<group>"; };
- F72D1005210B6882009C96B7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
- F72D1006210B6882009C96B7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
- F72D100C210B6B16009C96B7 = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
- F72D100E210B6B17009C96B7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
- F72D1019210B7394009C96B7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NotificationServiceExtension-Bridging-Header.h"; sourceTree = "<group>"; };
- F73049B81CB567F000C7C320 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
- F73049B91CB567F000C7C320 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
- F7320931201B812F008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F7320932201B812F008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F7320933201B812F008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7320934201B812F008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7320935201B8130008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7320936201B8130008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Intro.strings; sourceTree = "<group>"; };
- F7320937201B8130008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Error.strings; sourceTree = "<group>"; };
- F7320938201B81E4008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F7320939201B81E4008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F732093A201B81E4008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F732093B201B81E4008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F732093C201B81E4008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F732093D201B81E5008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Intro.strings"; sourceTree = "<group>"; };
- F732093E201B81E5008A0888 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Error.strings"; sourceTree = "<group>"; };
- F732B3361E8045A1002B7D75 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F732BA031D76CE1500E9878B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
- F732BA041D76CE1500E9878B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
- F738E8401F90FFD100F95C8E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCManageEndToEndEncryption.h; sourceTree = "<group>"; };
- F738E8411F90FFD100F95C8E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCManageEndToEndEncryption.m; sourceTree = "<group>"; };
- F73B4EAD1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Big5Freq.tab; sourceTree = "<group>"; };
- F73B4EAE1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CharDistribution.cpp; sourceTree = "<group>"; };
- F73B4EAF1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CharDistribution.h; sourceTree = "<group>"; };
- F73B4EB01F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
- F73B4EB11F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCKRFreq.tab; sourceTree = "<group>"; };
- F73B4EB21F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCTWFreq.tab; sourceTree = "<group>"; };
- F73B4EB31F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GB2312Freq.tab; sourceTree = "<group>"; };
- F73B4EB41F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = JISFreq.tab; sourceTree = "<group>"; };
- F73B4EB51F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JpCntx.cpp; sourceTree = "<group>"; };
- F73B4EB61F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JpCntx.h; sourceTree = "<group>"; };
- F73B4EB81F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangArabicModel.cpp; sourceTree = "<group>"; };
- F73B4EB91F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangBulgarianModel.cpp; sourceTree = "<group>"; };
- F73B4EBA1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangDanishModel.cpp; sourceTree = "<group>"; };
- F73B4EBB1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangEsperantoModel.cpp; sourceTree = "<group>"; };
- F73B4EBC1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangFrenchModel.cpp; sourceTree = "<group>"; };
- F73B4EBD1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGermanModel.cpp; sourceTree = "<group>"; };
- F73B4EBE1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGreekModel.cpp; sourceTree = "<group>"; };
- F73B4EBF1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHebrewModel.cpp; sourceTree = "<group>"; };
- F73B4EC01F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHungarianModel.cpp; sourceTree = "<group>"; };
- F73B4EC11F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangRussianModel.cpp; sourceTree = "<group>"; };
- F73B4EC21F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangSpanishModel.cpp; sourceTree = "<group>"; };
- F73B4EC31F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangThaiModel.cpp; sourceTree = "<group>"; };
- F73B4EC41F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangTurkishModel.cpp; sourceTree = "<group>"; };
- F73B4EC51F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangVietnameseModel.cpp; sourceTree = "<group>"; };
- F73B4EC61F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsBig5Prober.cpp; sourceTree = "<group>"; };
- F73B4EC71F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsBig5Prober.h; sourceTree = "<group>"; };
- F73B4EC81F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsCharSetProber.cpp; sourceTree = "<group>"; };
- F73B4EC91F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCharSetProber.h; sourceTree = "<group>"; };
- F73B4ECA1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCodingStateMachine.h; sourceTree = "<group>"; };
- F73B4ECB1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nscore.h; sourceTree = "<group>"; };
- F73B4ECC1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscCharsetProber.cpp; sourceTree = "<group>"; };
- F73B4ECD1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEscCharsetProber.h; sourceTree = "<group>"; };
- F73B4ECE1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscSM.cpp; sourceTree = "<group>"; };
- F73B4ECF1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCJPProber.cpp; sourceTree = "<group>"; };
- F73B4ED01F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCJPProber.h; sourceTree = "<group>"; };
- F73B4ED11F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCKRProber.cpp; sourceTree = "<group>"; };
- F73B4ED21F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCKRProber.h; sourceTree = "<group>"; };
- F73B4ED31F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCTWProber.cpp; sourceTree = "<group>"; };
- F73B4ED41F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCTWProber.h; sourceTree = "<group>"; };
- F73B4ED51F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsGB2312Prober.cpp; sourceTree = "<group>"; };
- F73B4ED61F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsGB2312Prober.h; sourceTree = "<group>"; };
- F73B4ED71F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsHebrewProber.cpp; sourceTree = "<group>"; };
- F73B4ED81F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsHebrewProber.h; sourceTree = "<group>"; };
- F73B4ED91F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsLatin1Prober.cpp; sourceTree = "<group>"; };
- F73B4EDA1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsLatin1Prober.h; sourceTree = "<group>"; };
- F73B4EDB1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSGroupProber.cpp; sourceTree = "<group>"; };
- F73B4EDC1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsMBCSGroupProber.h; sourceTree = "<group>"; };
- F73B4EDD1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSSM.cpp; sourceTree = "<group>"; };
- F73B4EDE1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsPkgInt.h; sourceTree = "<group>"; };
- F73B4EDF1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCharSetProber.cpp; sourceTree = "<group>"; };
- F73B4EE01F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCharSetProber.h; sourceTree = "<group>"; };
- F73B4EE11F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCSGroupProber.cpp; sourceTree = "<group>"; };
- F73B4EE21F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCSGroupProber.h; sourceTree = "<group>"; };
- F73B4EE31F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSJISProber.cpp; sourceTree = "<group>"; };
- F73B4EE41F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSJISProber.h; sourceTree = "<group>"; };
- F73B4EE51F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUniversalDetector.cpp; sourceTree = "<group>"; };
- F73B4EE61F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUniversalDetector.h; sourceTree = "<group>"; };
- F73B4EE71F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUTF8Prober.cpp; sourceTree = "<group>"; };
- F73B4EE81F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUTF8Prober.h; sourceTree = "<group>"; };
- F73B4EE91F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prmem.h; sourceTree = "<group>"; };
- F73B4EEA1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = symbols.cmake; sourceTree = "<group>"; };
- F73B4EEC1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uchardet.cpp; sourceTree = "<group>"; };
- F73B4EED1F470D9100BBEE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchardet.h; sourceTree = "<group>"; };
- F73CB5771ED46807005F2A5A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
- F73CC0581E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeDummyViewController.h; sourceTree = "<group>"; };
- F73CC0591E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeDummyViewController.m; sourceTree = "<group>"; };
- F73CC05A1E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeField.h; sourceTree = "<group>"; };
- F73CC05B1E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeField.m; sourceTree = "<group>"; };
- F73CC05C1E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeInputView.h; sourceTree = "<group>"; };
- F73CC05D1E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeInputView.m; sourceTree = "<group>"; };
- F73CC05E1E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeLockScreenManager.h; sourceTree = "<group>"; };
- F73CC05F1E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeLockScreenManager.m; sourceTree = "<group>"; };
- F73CC0601E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeUtils.h; sourceTree = "<group>"; };
- F73CC0611E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeViewController.h; sourceTree = "<group>"; };
- F73CC0621E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeViewController.m; sourceTree = "<group>"; };
- F73CC0631E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKShiftingView.h; sourceTree = "<group>"; };
- F73CC0641E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKShiftingView.m; sourceTree = "<group>"; };
- F73CC0651E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDManager.h; sourceTree = "<group>"; };
- F73CC0661E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDManager.m; sourceTree = "<group>"; };
- F73CC0671E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDSwitchView.h; sourceTree = "<group>"; };
- F73CC0681E813DFF006E3047 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDSwitchView.m; sourceTree = "<group>"; };
- F73CCE231DC13788007E38D8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+EmptyDataSet.h"; sourceTree = "<group>"; };
- F73CCE241DC13788007E38D8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+EmptyDataSet.m"; sourceTree = "<group>"; };
- F73CCE291DC13798007E38D8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICKeyChainStore.h; sourceTree = "<group>"; };
- F73CCE2A1DC13798007E38D8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICKeyChainStore.m; sourceTree = "<group>"; };
- F73D71611F2673C200E233EB = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCText.swift; sourceTree = "<group>"; };
- F73D71631F2674A400E233EB = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCText.storyboard; sourceTree = "<group>"; };
- F73F537E1E929C8500F8678D = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMore.swift; sourceTree = "<group>"; };
- F7434B5F20E2440600417916 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
- F743B2C31C95BBE8006F5B4A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareInfoCMOC.h; sourceTree = "<group>"; };
- F743B2C41C95BBE8006F5B4A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareInfoCMOC.m; sourceTree = "<group>"; };
- F7496B81208F5651004B299C = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
- F7496B83208F5652004B299C = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
- F74D3DBD1BAC1941000BAE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
- F74D3DBE1BAC1941000BAE4B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
- F74E432420B5547700C2E54C = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCNetworkingEndToEnd.h; sourceTree = "<group>"; };
- F74E432520B5547700C2E54C = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCNetworkingEndToEnd.m; sourceTree = "<group>"; };
- F75037431DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
- F75037441DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
- F75037451DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
- F75037461DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
- F75037471DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
- F75037481DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
- F75037491DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
- F750374A1DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
- F750374B1DBFA91A008FB480 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
- F7514EDA1C7B1336008F3338 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
- F7514EDB1C7B1336008F3338 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
- F7540EE21D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
- F7540EE31D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = "<group>"; };
- F7540EE41D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = "<group>"; };
- F7540EE51D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = "<group>"; };
- F7540EE61D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = "<group>"; };
- F7540EE71D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = "<group>"; };
- F7540EE81D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = "<group>"; };
- F7540EE91D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
- F7540EEA1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = "<group>"; };
- F7540EEB1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = "<group>"; };
- F7540EEC1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = "<group>"; };
- F7540EED1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = "<group>"; };
- F7540EEE1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = "<group>"; };
- F7540EEF1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
- F7540EF01D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = "<group>"; };
- F7540EF11D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = "<group>"; };
- F7540EF21D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
- F7540EF41D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = "<group>"; };
- F7540EF51D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = "<group>"; };
- F7540EF71D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = "<group>"; };
- F7540EF81D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = "<group>"; };
- F7540EF91D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = "<group>"; };
- F7540EFA1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = "<group>"; };
- F7540EFB1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = "<group>"; };
- F7540EFC1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = "<group>"; };
- F7540EFD1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = "<group>"; };
- F7540EFE1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = "<group>"; };
- F7540EFF1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = "<group>"; };
- F7540F001D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
- F7540F011D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = "<group>"; };
- F7540F041D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = "<group>"; };
- F7540F051D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = "<group>"; };
- F7540F061D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
- F7540F071D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = "<group>"; };
- F7540F081D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
- F7540F091D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = "<group>"; };
- F7540F0A1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = "<group>"; };
- F7540F0B1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = "<group>"; };
- F7540F0C1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = "<group>"; };
- F7540F0D1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = "<group>"; };
- F7540F0E1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = "<group>"; };
- F7540F0F1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = "<group>"; };
- F7540F101D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = "<group>"; };
- F7540F111D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = "<group>"; };
- F7540F121D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = "<group>"; };
- F7540F141D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
- F7540F151D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = "<group>"; };
- F7540F161D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = "<group>"; };
- F7540F171D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = "<group>"; };
- F7540F181D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = "<group>"; };
- F7540F191D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = "<group>"; };
- F7540F1A1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = "<group>"; };
- F7540F1B1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = "<group>"; };
- F7540F1C1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = "<group>"; };
- F7540F1D1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = "<group>"; };
- F7540F1E1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = "<group>"; };
- F7540F1F1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = "<group>"; };
- F7540F211D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = "<group>"; };
- F7540F221D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
- F7540F231D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = "<group>"; };
- F7540F241D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = "<group>"; };
- F7540F251D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = "<group>"; };
- F7540F261D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = "<group>"; };
- F7540F271D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = "<group>"; };
- F7540F291D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = "<group>"; };
- F7540F2A1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = "<group>"; };
- F7540F2B1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
- F7540F2C1D5B238600C3FFA8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
- F755BD9A20594AC7008C5FBB = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
- F75797AD1E81356C00187A1B = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F758B3D9212C4A6C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PDFPageRenderable.swift; sourceTree = "<group>"; };
- F758B3DA212C4A6C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DPIType.swift; sourceTree = "<group>"; };
- F758B3DB212C4A6C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PDFPassword.swift; sourceTree = "<group>"; };
- F758B3DC212C4A6C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PDFGenerator.swift; sourceTree = "<group>"; };
- F758B3DD212C4A6C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FilePathConvertible.swift; sourceTree = "<group>"; };
- F758B3DE212C4A6C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PDFPage.swift; sourceTree = "<group>"; };
- F758B3DF212C4A6C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PDFGenerateError.swift; sourceTree = "<group>"; };
- F758B3E0212C4A6C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDFGenerator.h; sourceTree = "<group>"; };
- F758B420212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageScannerController.swift; sourceTree = "<group>"; };
- F758B422212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RectangleFeaturesFunnel.swift; sourceTree = "<group>"; };
- F758B423212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CaptureSessionManager.swift; sourceTree = "<group>"; };
- F758B424212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShutterButton.swift; sourceTree = "<group>"; };
- F758B425212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CloseButton.swift; sourceTree = "<group>"; };
- F758B426212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScannerViewController.swift; sourceTree = "<group>"; };
- F758B428212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AVCaptureVideoOrientation+Utils.swift"; sourceTree = "<group>"; };
- F758B429212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CGPoint+Utils.swift"; sourceTree = "<group>"; };
- F758B42A212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CGAffineTransform+Utils.swift"; sourceTree = "<group>"; };
- F758B42B212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CGRect+Utils.swift"; sourceTree = "<group>"; };
- F758B42C212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Array+Utils.swift"; sourceTree = "<group>"; };
- F758B42D212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Orientation.swift"; sourceTree = "<group>"; };
- F758B42E212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Utils.swift"; sourceTree = "<group>"; };
- F758B42F212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CIRectangleFeature+Utils.swift"; sourceTree = "<group>"; };
- F758B431212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ZoomGestureController.swift; sourceTree = "<group>"; };
- F758B432212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditScanViewController.swift; sourceTree = "<group>"; };
- F758B433212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeScan.h; sourceTree = "<group>"; };
- F758B435212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditScanCornerView.swift; sourceTree = "<group>"; };
- F758B436212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Error.swift; sourceTree = "<group>"; };
- F758B437212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RectangleDetector.swift; sourceTree = "<group>"; };
- F758B438212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QuadrilateralView.swift; sourceTree = "<group>"; };
- F758B439212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Quadrilateral.swift; sourceTree = "<group>"; };
- F758B43B212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReviewViewController.swift; sourceTree = "<group>"; };
- F758B43D212C516300515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Transformable.swift; sourceTree = "<group>"; };
- F758B457212C564000515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Scan.storyboard; sourceTree = "<group>"; };
- F758B45D212C569C00515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCell.swift; sourceTree = "<group>"; };
- F758B45F212C56A400515F55 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCollectionView.swift; sourceTree = "<group>"; };
- F75AC2421F1F62450073EC19 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
- F75ADF441DC75FFE008A7347 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
- F75AE3C61E9D12900088BB09 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftyAvatar.swift; sourceTree = "<group>"; };
- F75B91DF1ECAE17800199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F75B91E01ECAE17800199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F75B91E11ECAE17800199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F75B91E21ECAE17800199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
- F75B91E31ECAE17800199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F75B91E41ECAE17800199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Intro.strings; sourceTree = "<group>"; };
- F75B91E51ECAE17800199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Error.strings; sourceTree = "<group>"; };
- F75B91F41ECAE26300199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F75B91F51ECAE26300199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F75B91F61ECAE26300199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F75B91F71ECAE26300199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F75B91F81ECAE26400199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F75B91F91ECAE26400199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Intro.strings"; sourceTree = "<group>"; };
- F75B91FA1ECAE26400199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Error.strings"; sourceTree = "<group>"; };
- F75B923A1ECAE55E00199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F75B923B1ECAE55E00199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F75B923C1ECAE55E00199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F75B923D1ECAE55E00199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
- F75B923E1ECAE55E00199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F75B923F1ECAE55F00199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intro.strings; sourceTree = "<group>"; };
- F75B92401ECAE55F00199C96 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Error.strings; sourceTree = "<group>"; };
- F75CDBF51DF063AD00116AD0 = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
- F75EDFBC1E8C112F00E6F369 = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
- F75EDFBE1E8C116D00E6F369 = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
- F762CAA31EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormBaseCell.h; sourceTree = "<group>"; };
- F762CAA41EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormBaseCell.m; sourceTree = "<group>"; };
- F762CAA51EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormButtonCell.h; sourceTree = "<group>"; };
- F762CAA61EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormButtonCell.m; sourceTree = "<group>"; };
- F762CAA71EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormCheckCell.h; sourceTree = "<group>"; };
- F762CAA81EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormCheckCell.m; sourceTree = "<group>"; };
- F762CAA91EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDateCell.h; sourceTree = "<group>"; };
- F762CAAA1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDateCell.m; sourceTree = "<group>"; };
- F762CAAB1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDatePickerCell.h; sourceTree = "<group>"; };
- F762CAAC1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDatePickerCell.m; sourceTree = "<group>"; };
- F762CAAD1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorCell.h; sourceTree = "<group>"; };
- F762CAAE1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormImageCell.h; sourceTree = "<group>"; };
- F762CAAF1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormImageCell.m; sourceTree = "<group>"; };
- F762CAB01EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineRowDescriptorCell.h; sourceTree = "<group>"; };
- F762CAB11EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineSelectorCell.h; sourceTree = "<group>"; };
- F762CAB21EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormInlineSelectorCell.m; sourceTree = "<group>"; };
- F762CAB31EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormLeftRightSelectorCell.h; sourceTree = "<group>"; };
- F762CAB41EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormLeftRightSelectorCell.m; sourceTree = "<group>"; };
- F762CAB51EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormPickerCell.h; sourceTree = "<group>"; };
- F762CAB61EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormPickerCell.m; sourceTree = "<group>"; };
- F762CAB71EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSegmentedCell.h; sourceTree = "<group>"; };
- F762CAB81EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSegmentedCell.m; sourceTree = "<group>"; };
- F762CAB91EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSelectorCell.h; sourceTree = "<group>"; };
- F762CABA1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSelectorCell.m; sourceTree = "<group>"; };
- F762CABB1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSliderCell.h; sourceTree = "<group>"; };
- F762CABC1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSliderCell.m; sourceTree = "<group>"; };
- F762CABD1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormStepCounterCell.h; sourceTree = "<group>"; };
- F762CABE1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormStepCounterCell.m; sourceTree = "<group>"; };
- F762CABF1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSwitchCell.h; sourceTree = "<group>"; };
- F762CAC01EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSwitchCell.m; sourceTree = "<group>"; };
- F762CAC11EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextFieldCell.h; sourceTree = "<group>"; };
- F762CAC21EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextFieldCell.m; sourceTree = "<group>"; };
- F762CAC31EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextViewCell.h; sourceTree = "<group>"; };
- F762CAC41EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextViewCell.m; sourceTree = "<group>"; };
- F762CAC61EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsObject.h; sourceTree = "<group>"; };
- F762CAC71EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsObject.m; sourceTree = "<group>"; };
- F762CAC81EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsViewController.h; sourceTree = "<group>"; };
- F762CAC91EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsViewController.m; sourceTree = "<group>"; };
- F762CACA1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptorViewController.h; sourceTree = "<group>"; };
- F762CACB1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormViewController.h; sourceTree = "<group>"; };
- F762CACC1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormViewController.m; sourceTree = "<group>"; };
- F762CACE1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptor.h; sourceTree = "<group>"; };
- F762CACF1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDescriptor.m; sourceTree = "<group>"; };
- F762CAD01EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorDelegate.h; sourceTree = "<group>"; };
- F762CAD11EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptor.h; sourceTree = "<group>"; };
- F762CAD21EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowDescriptor.m; sourceTree = "<group>"; };
- F762CAD31EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSectionDescriptor.h; sourceTree = "<group>"; };
- F762CAD41EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSectionDescriptor.m; sourceTree = "<group>"; };
- F762CAD61EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+XLFormAdditions.h"; sourceTree = "<group>"; };
- F762CAD71EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+XLFormAdditions.m"; sourceTree = "<group>"; };
- F762CAD81EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSExpression+XLFormAdditions.h"; sourceTree = "<group>"; };
- F762CAD91EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSExpression+XLFormAdditions.m"; sourceTree = "<group>"; };
- F762CADA1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XLFormAdditions.h"; sourceTree = "<group>"; };
- F762CADB1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XLFormAdditions.m"; sourceTree = "<group>"; };
- F762CADC1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPredicate+XLFormAdditions.h"; sourceTree = "<group>"; };
- F762CADD1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPredicate+XLFormAdditions.m"; sourceTree = "<group>"; };
- F762CADE1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XLFormAdditions.h"; sourceTree = "<group>"; };
- F762CADF1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XLFormAdditions.m"; sourceTree = "<group>"; };
- F762CAE01EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XLFormAdditions.h"; sourceTree = "<group>"; };
- F762CAE11EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XLFormAdditions.m"; sourceTree = "<group>"; };
- F762CAE31EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightDetailCell.h; sourceTree = "<group>"; };
- F762CAE41EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightDetailCell.m; sourceTree = "<group>"; };
- F762CAE51EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightImageButton.h; sourceTree = "<group>"; };
- F762CAE61EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightImageButton.m; sourceTree = "<group>"; };
- F762CAE71EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowNavigationAccessoryView.h; sourceTree = "<group>"; };
- F762CAE81EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowNavigationAccessoryView.m; sourceTree = "<group>"; };
- F762CAE91EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextView.h; sourceTree = "<group>"; };
- F762CAEA1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextView.m; sourceTree = "<group>"; };
- F762CAEC1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRegexValidator.h; sourceTree = "<group>"; };
- F762CAED1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRegexValidator.m; sourceTree = "<group>"; };
- F762CAEE1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidationStatus.h; sourceTree = "<group>"; };
- F762CAEF1EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidationStatus.m; sourceTree = "<group>"; };
- F762CAF01EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidator.h; sourceTree = "<group>"; };
- F762CAF11EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidator.m; sourceTree = "<group>"; };
- F762CAF21EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidatorProtocol.h; sourceTree = "<group>"; };
- F762CAF31EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLForm.h; sourceTree = "<group>"; };
- F762CAF41EACB66200B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLForm.m; sourceTree = "<group>"; };
- F762CAF51EACB66200B38484 = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XLForm.bundle; sourceTree = "<group>"; };
- F762CB7C1EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RECommonFunctions.h; sourceTree = "<group>"; };
- F762CB7D1EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RECommonFunctions.m; sourceTree = "<group>"; };
- F762CB7E1EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenu.h; sourceTree = "<group>"; };
- F762CB7F1EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenu.m; sourceTree = "<group>"; };
- F762CB801EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuContainerView.h; sourceTree = "<group>"; };
- F762CB811EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuContainerView.m; sourceTree = "<group>"; };
- F762CB821EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItem.h; sourceTree = "<group>"; };
- F762CB831EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItem.m; sourceTree = "<group>"; };
- F762CB841EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItemView.h; sourceTree = "<group>"; };
- F762CB851EACB81000B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItemView.m; sourceTree = "<group>"; };
- F762CB8D1EACB84400B38484 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error.png"; sourceTree = "<group>"; };
- F762CB8E1EACB84400B38484 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error@2x.png"; sourceTree = "<group>"; };
- F762CB8F1EACB84400B38484 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info.png"; sourceTree = "<group>"; };
- F762CB901EACB84400B38484 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info@2x.png"; sourceTree = "<group>"; };
- F762CB911EACB84400B38484 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success.png"; sourceTree = "<group>"; };
- F762CB921EACB84400B38484 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success@2x.png"; sourceTree = "<group>"; };
- F762CB931EACB84400B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TWMessageBarManager.h; sourceTree = "<group>"; };
- F762CB941EACB84400B38484 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TWMessageBarManager.m; sourceTree = "<group>"; };
- F76344751BF259A800188725 = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
- F76344761BF259A800188725 = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
- F7659A221DC0B726004860C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroPage.h; sourceTree = "<group>"; };
- F7659A231DC0B726004860C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroPage.m; sourceTree = "<group>"; };
- F7659A241DC0B726004860C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroView.h; sourceTree = "<group>"; };
- F7659A251DC0B726004860C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroView.m; sourceTree = "<group>"; };
- F7659A2B1DC0B72F004860C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EARestrictedScrollView.h; sourceTree = "<group>"; };
- F7659A2C1DC0B72F004860C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EARestrictedScrollView.m; sourceTree = "<group>"; };
- F7659A311DC0B737004860C4 = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = iRate.bundle; sourceTree = "<group>"; };
- F7659A321DC0B737004860C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iRate.h; sourceTree = "<group>"; };
- F7659A331DC0B737004860C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = iRate.m; sourceTree = "<group>"; };
- F768EAFB1BFB7CD800B6E341 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareOC.h; sourceTree = "<group>"; };
- F768EAFC1BFB7CD800B6E341 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareOC.m; sourceTree = "<group>"; };
- F768EB021BFB7EA900B6E341 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCShare.storyboard; sourceTree = "<group>"; };
- F76B3CCD1EAE01BD00921AC9 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
- F76C3B831C6388BC00DC4301 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
- F76C3B841C6388BC00DC4301 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
- F76C3B871C638A4C00DC4301 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
- F76C3B881C638A4C00DC4301 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
- F76F23321ED4600700C40023 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
- F76F23331ED4603700C40023 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LaunchScreen.xib; sourceTree = "<group>"; };
- F771E3D020E2392D00AFB62D = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
- F771E3D220E2392D00AFB62D = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
- F771E3D420E2392D00AFB62D = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
- F771E3D620E2392D00AFB62D = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
- F771E3F220E239A600AFB62D = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
- F771E3F420E239B400AFB62D = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
- F771E3F520E239B400AFB62D = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
- F771E3F620E239B400AFB62D = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Network.swift"; sourceTree = "<group>"; };
- F771E3FB20E23A8700AFB62D = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
- F771E3FC20E23A8800AFB62D = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
- F77438E81FCD694900662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77438E91FCD694900662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77438EA1FCD694900662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77438EB1FCD694900662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77438EC1FCD694900662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77438ED1FCD694900662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77438EE1FCD694900662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Error.strings"; sourceTree = "<group>"; };
- F77438EF1FCD69D200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F77438F01FCD69D200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F77438F11FCD69D200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F77438F21FCD69D300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
- F77438F31FCD69D300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F77438F41FCD69D300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Intro.strings; sourceTree = "<group>"; };
- F77438F51FCD69D300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Error.strings; sourceTree = "<group>"; };
- F77438F61FCD6A0D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77438F71FCD6A0D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77438F81FCD6A0D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77438F91FCD6A0D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77438FA1FCD6A0E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77438FB1FCD6A0E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77438FC1FCD6A0E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Error.strings"; sourceTree = "<group>"; };
- F77438FD1FCD6B7E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F77438FE1FCD6B7E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F77438FF1FCD6B7F00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F77439001FCD6B7F00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
- F77439011FCD6B7F00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F77439021FCD6B7F00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Intro.strings; sourceTree = "<group>"; };
- F77439031FCD6B7F00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Error.strings; sourceTree = "<group>"; };
- F77439041FCD6BEF00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439051FCD6BEF00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439061FCD6BEF00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77439071FCD6BF000662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439081FCD6BF000662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439091FCD6BF000662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Intro.strings"; sourceTree = "<group>"; };
- F774390A1FCD6BF000662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Error.strings"; sourceTree = "<group>"; };
- F774390B1FCD6C0C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F774390C1FCD6C0C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F774390D1FCD6C0C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F774390E1FCD6C0C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774390F1FCD6C0D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439101FCD6C0D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439111FCD6C0D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Error.strings"; sourceTree = "<group>"; };
- F77439121FCD6C4900662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439131FCD6C4A00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439141FCD6C4A00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77439151FCD6C4A00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439161FCD6C4A00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439171FCD6C4A00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439181FCD6C4A00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Error.strings"; sourceTree = "<group>"; };
- F77439191FCD6C6700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F774391A1FCD6C6700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F774391B1FCD6C6700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F774391C1FCD6C6700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774391D1FCD6C6700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F774391E1FCD6C6700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Intro.strings"; sourceTree = "<group>"; };
- F774391F1FCD6C6800662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Error.strings"; sourceTree = "<group>"; };
- F77439201FCD6C8600662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439211FCD6C8600662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439221FCD6C8600662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77439231FCD6C8700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439241FCD6C8700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439251FCD6C8700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439261FCD6C8700662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Error.strings"; sourceTree = "<group>"; };
- F77439271FCD6CAA00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439281FCD6CAA00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439291FCD6CAA00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F774392A1FCD6CAA00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774392B1FCD6CAA00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F774392C1FCD6CAA00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Intro.strings"; sourceTree = "<group>"; };
- F774392D1FCD6CAA00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Error.strings"; sourceTree = "<group>"; };
- F774392E1FCD6CC400662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F774392F1FCD6CC400662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439301FCD6CC400662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77439311FCD6CC400662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439321FCD6CC400662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439331FCD6CC500662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439341FCD6CC500662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Error.strings"; sourceTree = "<group>"; };
- F77439351FCD6CDD00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439361FCD6CDD00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439371FCD6CDE00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77439381FCD6CDE00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439391FCD6CDE00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F774393A1FCD6CDE00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Intro.strings"; sourceTree = "<group>"; };
- F774393B1FCD6CDE00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Error.strings"; sourceTree = "<group>"; };
- F774393C1FCD6D0A00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F774393D1FCD6D0A00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F774393E1FCD6D0B00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F774393F1FCD6D0B00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439401FCD6D0B00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439411FCD6D0B00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439421FCD6D0B00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Error.strings"; sourceTree = "<group>"; };
- F77439431FCD6D2200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439441FCD6D2200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439451FCD6D2300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77439461FCD6D2300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439471FCD6D2300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439481FCD6D2300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439491FCD6D2300662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Error.strings"; sourceTree = "<group>"; };
- F774394A1FCD6D3D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F774394B1FCD6D3D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F774394C1FCD6D3E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F774394D1FCD6D3E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774394E1FCD6D3E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F774394F1FCD6D3E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439501FCD6D3E00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Error.strings"; sourceTree = "<group>"; };
- F77439511FCD6D6100662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439521FCD6D6100662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439531FCD6D6100662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77439541FCD6D6100662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439551FCD6D6100662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439561FCD6D6200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439571FCD6D6200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Error.strings"; sourceTree = "<group>"; };
- F77439581FCD6D8100662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439591FCD6D8100662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F774395A1FCD6D8200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F774395B1FCD6D8200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774395C1FCD6D8200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F774395D1FCD6D8200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Intro.strings"; sourceTree = "<group>"; };
- F774395E1FCD6D8200662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Error.strings"; sourceTree = "<group>"; };
- F774395F1FCD6D9C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F77439601FCD6D9C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F77439611FCD6D9C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F77439621FCD6D9C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439631FCD6D9C00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F77439641FCD6D9D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Intro.strings"; sourceTree = "<group>"; };
- F77439651FCD6D9D00662C46 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Error.strings"; sourceTree = "<group>"; };
- F774DF0C1FCC26BD002AF9FC = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@1x.png"; sourceTree = "<group>"; };
- F774DF0D1FCC26BD002AF9FC = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@2x.png"; sourceTree = "<group>"; };
- F774DF0E1FCC26BE002AF9FC = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@3x.png"; sourceTree = "<group>"; };
- F777F0301C29717F00CE81CB = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
- F777F0311C29717F00CE81CB = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
- F77D49A71DC238E500CDC568 = {isa = PBXFileReference; lastKnownFileType = image.gif; path = loading.gif; sourceTree = "<group>"; };
- F78071071EDAB65800EAFFF6 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
- F78071081EDAB65800EAFFF6 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
- F78316861C0CB3CA00C43975 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareUserOC.h; sourceTree = "<group>"; };
- F78316871C0CB3CA00C43975 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareUserOC.m; sourceTree = "<group>"; };
- F784FA25210F672E00256C26 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KTVHTTPCache.h; sourceTree = "<group>"; };
- F784FA26210F672E00256C26 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
- F784FA27210F672E00256C26 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = KTVHTTPCache.framework; sourceTree = "<group>"; };
- F78964A71EBB576C00403E13 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarNotification.h; sourceTree = "<group>"; };
- F78964A81EBB576C00403E13 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarNotification.m; sourceTree = "<group>"; };
- F78964A91EBB576C00403E13 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarStyle.h; sourceTree = "<group>"; };
- F78964AA1EBB576C00403E13 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarStyle.m; sourceTree = "<group>"; };
- F78964AB1EBB576C00403E13 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarView.h; sourceTree = "<group>"; };
- F78964AC1EBB576C00403E13 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarView.m; sourceTree = "<group>"; };
- F78BFEDE1D31126B00E513CF = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
- F78D6F431F0B7CB9002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F78D6F441F0B7CB9002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F78D6F451F0B7CB9002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F78D6F461F0B7CB9002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F78D6F471F0B7CB9002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F78D6F481F0B7CB9002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Intro.strings"; sourceTree = "<group>"; };
- F78D6F491F0B7CB9002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Error.strings"; sourceTree = "<group>"; };
- F78D6F4A1F0B7CE4002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F78D6F4B1F0B7CE4002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F78D6F4C1F0B7CE4002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F78D6F4D1F0B7CE4002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F78D6F4E1F0B7CE4002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F78D6F4F1F0B7CE4002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Intro.strings"; sourceTree = "<group>"; };
- F78D6F501F0B7CE5002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Error.strings"; sourceTree = "<group>"; };
- F78D6F511F0B7D47002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F78D6F521F0B7D47002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F78D6F531F0B7D47002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F78D6F541F0B7D47002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
- F78D6F551F0B7D47002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F78D6F561F0B7D47002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Intro.strings; sourceTree = "<group>"; };
- F78D6F571F0B7D48002F9619 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Error.strings; sourceTree = "<group>"; };
- F78F6FAE1CC8CCB700F4EA25 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
- F78F6FAF1CC8CCB700F4EA25 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
- F790110D21415BF600D7B136 = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
- F792A77B1BC7C45400C9388E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSplit.h; sourceTree = "<group>"; };
- F792A77C1BC7C45400C9388E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSplit.m; sourceTree = "<group>"; };
- F7956FC91B4886E60085DEA3 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
- F7956FCA1B4886E60085DEA3 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
- F7956FCB1B4886E60085DEA3 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
- F79630ED215527D40015EEA5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerMedia.swift; sourceTree = "<group>"; };
- F7A3214E1E9E2A070069AD1B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavorites.h; sourceTree = "<group>"; };
- F7A3214F1E9E2A070069AD1B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCFavorites.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
- F7A321631E9E37960069AD1B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActivity.h; sourceTree = "<group>"; };
- F7A321641E9E37960069AD1B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCActivity.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
- F7A3218A1E9E42B30069AD1B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuAccount.h; sourceTree = "<group>"; };
- F7A3218B1E9E42B30069AD1B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuAccount.m; sourceTree = "<group>"; };
- F7A321AB1E9E6AD50069AD1B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
- F7A321AC1E9E6AD50069AD1B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
- F7A377141EB2364A002856D3 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
- F7A377151EB2364A002856D3 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Fabric.framework; sourceTree = "<group>"; };
- F7A54C341C6267B500E2C8BF = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
- F7A54C351C6267B500E2C8BF = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
- F7A55418204EF8AF008468EC = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TOScrollBarGestureRecognizer.m; sourceTree = "<group>"; };
- F7A55419204EF8AF008468EC = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TOScrollBar.h; sourceTree = "<group>"; };
- F7A5541A204EF8AF008468EC = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+TOScrollBar.h"; sourceTree = "<group>"; };
- F7A5541B204EF8AF008468EC = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TOScrollBar.m; sourceTree = "<group>"; };
- F7A5541C204EF8AF008468EC = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TOScrollBarGestureRecognizer.h; sourceTree = "<group>"; };
- F7A5541D204EF8AF008468EC = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+TOScrollBar.m"; sourceTree = "<group>"; };
- F7A582D61A24DAB500E903D7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = AppDelegate.m; sourceTree = "<group>"; };
- F7A582D71A24DAB500E903D7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
- F7ACE4291BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
- F7ACE42A1BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
- F7ACE42B1BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
- F7ACE42C1BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
- F7ACE42D1BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
- F7ACE42E1BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
- F7ACE42F1BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
- F7ACE4301BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
- F7ACE4311BAC0268006C0017 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
- F7B0C0CB1EE7E7750033AC24 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
- F7B0C0CC1EE7E7750033AC24 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
- F7B0C1731EE839A30033AC24 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAutoUpload.h; sourceTree = "<group>"; };
- F7B0C1741EE839A30033AC24 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAutoUpload.m; sourceTree = "<group>"; };
- F7B1A7731EBB3C8000BFB6D1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F7B1A7741EBB3C8000BFB6D1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F7B1A7751EBB3C8000BFB6D1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7B1A7761EBB3C8000BFB6D1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7B1A7771EBB3C8100BFB6D1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7B1A7781EBB3C8100BFB6D1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Intro.strings; sourceTree = "<group>"; };
- F7B1A7791EBB3C8100BFB6D1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Error.strings; sourceTree = "<group>"; };
- F7B1FBB11E72E3D1001781FE = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = "<group>"; };
- F7B1FBBF1E72E3D1001781FE = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftModalWebVC.swift; sourceTree = "<group>"; };
- F7B1FBC01E72E3D1001781FE = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVC.swift; sourceTree = "<group>"; };
- F7B1FBC11E72E3D1001781FE = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivity.swift; sourceTree = "<group>"; };
- F7B1FBC21E72E3D1001781FE = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivityChrome.swift; sourceTree = "<group>"; };
- F7B1FBC31E72E3D1001781FE = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivitySafari.swift; sourceTree = "<group>"; };
- F7B2DEED1F976785007CF4D2 = {isa = PBXFileReference; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
- F7B2DEEE1F976785007CF4D2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
- F7B2DEEF1F976785007CF4D2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
- F7B3A4ED1E97818A000DACE8 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCLoginWeb.swift; sourceTree = "<group>"; };
- F7B4F1C71F44356F00B53B42 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUchardet.h; sourceTree = "<group>"; };
- F7B4F1C81F44356F00B53B42 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUchardet.m; sourceTree = "<group>"; };
- F7B7ED3A21133A4300C89FFA = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Notification_Service_Extension.entitlements; sourceTree = "<group>"; };
- F7B7ED3B21133A6000C89FFA = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Notification_Service_Extension.plist; sourceTree = "<group>"; };
- F7BAADB41ED5A87C00B7EAD4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
- F7BAADB51ED5A87C00B7EAD4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
- F7BB04821FD58ACA00BBFD2A = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F7BB04831FD58ACA00BBFD2A = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F7BB04841FD58ACB00BBFD2A = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F7BB04851FD58ACB00BBFD2A = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7BB04861FD58ACB00BBFD2A = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7BB04871FD58ACB00BBFD2A = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Intro.strings"; sourceTree = "<group>"; };
- F7BB04881FD58ACB00BBFD2A = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Error.strings"; sourceTree = "<group>"; };
- F7BE6E2B1D2D5C3B00106933 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCQuickActions.h; sourceTree = "<group>"; };
- F7BE6E2C1D2D5C3B00106933 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCQuickActions.m; sourceTree = "<group>"; };
- F7BF1B3F1D51E893000854F6 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
- F7BF1B401D51E893000854F6 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
- F7BFCCC01B68C21900548E76 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
- F7BFCCC11B68C21900548E76 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
- F7C0F46E1C8880540059EC54 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
- F7C0F46F1C8880540059EC54 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
- F7C5259F1E3B48B700FFE02C = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
- F7C525A11E3B6DA800FFE02C = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
- F7C742C01E7BD01F00D9C973 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
- F7C742D01E7BD35B00D9C973 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
- F7C8C1901B482CEA0048180E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
- F7CA1EBC20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+PKDownloadButton.m"; sourceTree = "<group>"; };
- F7CA1EBD20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKBorderedButton.h; sourceTree = "<group>"; };
- F7CA1EBE20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleProgressView.m; sourceTree = "<group>"; };
- F7CA1EBF20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKDownloadButton.h; sourceTree = "<group>"; };
- F7CA1EC020E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+PKDownloadButtonAnimations.h"; sourceTree = "<group>"; };
- F7CA1EC120E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleView.m; sourceTree = "<group>"; };
- F7CA1EC220E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKStopDownloadButton.m; sourceTree = "<group>"; };
- F7CA1EC320E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKPendingView.m; sourceTree = "<group>"; };
- F7CA1EC420E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PKDownloadButton.h"; sourceTree = "<group>"; };
- F7CA1EC520E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .gitkeep; sourceTree = "<group>"; };
- F7CA1EC620E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKMacros.h; sourceTree = "<group>"; };
- F7CA1EC720E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+PKDownloadButtonAnimations.m"; sourceTree = "<group>"; };
- F7CA1EC820E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKDownloadButton.m; sourceTree = "<group>"; };
- F7CA1EC920E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleProgressView.h; sourceTree = "<group>"; };
- F7CA1ECA20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKBorderedButton.m; sourceTree = "<group>"; };
- F7CA1ECB20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+PKDownloadButton.h"; sourceTree = "<group>"; };
- F7CA1ECC20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKStopDownloadButton.h; sourceTree = "<group>"; };
- F7CA1ECD20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleView.h; sourceTree = "<group>"; };
- F7CA1ECE20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PKDownloadButton.m"; sourceTree = "<group>"; };
- F7CA1ECF20E7E3FE002CC65E = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKPendingView.h; sourceTree = "<group>"; };
- F7CC04E31F5AD50D00378CEF = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F7CC04E41F5AD50D00378CEF = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F7CC04E51F5AD50D00378CEF = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7CC04E61F5AD50D00378CEF = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7CC04E71F5AD50D00378CEF = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7CC04E81F5AD50D00378CEF = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Intro.strings; sourceTree = "<group>"; };
- F7CC04E91F5AD50E00378CEF = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Error.strings; sourceTree = "<group>"; };
- F7CD0FF91C8DDA7D006520C5 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSharePermissionOC.h; sourceTree = "<group>"; };
- F7CD0FFA1C8DDA7D006520C5 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSharePermissionOC.m; sourceTree = "<group>"; };
- F7CE8AFA1DC1F8D8009CAE48 = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
- F7CE8AFB1DC1F8D8009CAE48 = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
- F7D02A461C5F9E4400D6F972 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMove.h; sourceTree = "<group>"; };
- F7D02A471C5F9E4400D6F972 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMove.m; sourceTree = "<group>"; };
- F7D02A481C5F9E4400D6F972 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCMove.storyboard; sourceTree = "<group>"; };
- F7D0E65E1BC5042E008D989A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = CCDetail.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
- F7D0E65F1BC5042E008D989A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCDetail.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
- F7D154271E2392A300202FD9 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
- F7D423161F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-076.png"; sourceTree = "<group>"; };
- F7D423171F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-120.png"; sourceTree = "<group>"; };
- F7D423181F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-152.png"; sourceTree = "<group>"; };
- F7D423191F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-167.png"; sourceTree = "<group>"; };
- F7D4231A1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-180.png"; sourceTree = "<group>"; };
- F7D4231B1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H.png"; sourceTree = "<group>"; };
- F7D4231C1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@2x.png"; sourceTree = "<group>"; };
- F7D4231D1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@3x.png"; sourceTree = "<group>"; };
- F7D4231E1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N.png"; sourceTree = "<group>"; };
- F7D4231F1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@2x.png"; sourceTree = "<group>"; };
- F7D423201F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@3x.png"; sourceTree = "<group>"; };
- F7D423211F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email.png"; sourceTree = "<group>"; };
- F7D423221F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@2x.png"; sourceTree = "<group>"; };
- F7D423231F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@3x.png"; sourceTree = "<group>"; };
- F7D423241F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export.png"; sourceTree = "<group>"; };
- F7D423251F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@2x.png"; sourceTree = "<group>"; };
- F7D423261F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@3x.png"; sourceTree = "<group>"; };
- F7D423271F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N.png"; sourceTree = "<group>"; };
- F7D423281F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@2x.png"; sourceTree = "<group>"; };
- F7D423291F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@3x.png"; sourceTree = "<group>"; };
- F7D4232A1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y.png"; sourceTree = "<group>"; };
- F7D4232B1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@2x.png"; sourceTree = "<group>"; };
- F7D4232C1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@3x.png"; sourceTree = "<group>"; };
- F7D4232D1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print.png"; sourceTree = "<group>"; };
- F7D4232E1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@2x.png"; sourceTree = "<group>"; };
- F7D4232F1F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@3x.png"; sourceTree = "<group>"; };
- F7D423301F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs.png"; sourceTree = "<group>"; };
- F7D423311F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@2x.png"; sourceTree = "<group>"; };
- F7D423321F0596AC009C9782 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@3x.png"; sourceTree = "<group>"; };
- F7D423511F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CGPDFDocument.h; sourceTree = "<group>"; };
- F7D423521F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGPDFDocument.m; sourceTree = "<group>"; };
- F7D423531F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderConstants.h; sourceTree = "<group>"; };
- F7D423541F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderConstants.m; sourceTree = "<group>"; };
- F7D423551F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentPage.h; sourceTree = "<group>"; };
- F7D423561F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentPage.m; sourceTree = "<group>"; };
- F7D423571F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentTile.h; sourceTree = "<group>"; };
- F7D423581F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentTile.m; sourceTree = "<group>"; };
- F7D423591F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentView.h; sourceTree = "<group>"; };
- F7D4235A1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentView.m; sourceTree = "<group>"; };
- F7D4235B1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocument.h; sourceTree = "<group>"; };
- F7D4235C1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocument.m; sourceTree = "<group>"; };
- F7D4235D1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocumentOutline.h; sourceTree = "<group>"; };
- F7D4235E1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocumentOutline.m; sourceTree = "<group>"; };
- F7D4235F1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainPagebar.h; sourceTree = "<group>"; };
- F7D423601F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainPagebar.m; sourceTree = "<group>"; };
- F7D423611F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainToolbar.h; sourceTree = "<group>"; };
- F7D423621F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainToolbar.m; sourceTree = "<group>"; };
- F7D423631F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbCache.h; sourceTree = "<group>"; };
- F7D423641F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbCache.m; sourceTree = "<group>"; };
- F7D423651F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbFetch.h; sourceTree = "<group>"; };
- F7D423661F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbFetch.m; sourceTree = "<group>"; };
- F7D423671F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbQueue.h; sourceTree = "<group>"; };
- F7D423681F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbQueue.m; sourceTree = "<group>"; };
- F7D423691F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRender.h; sourceTree = "<group>"; };
- F7D4236A1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRender.m; sourceTree = "<group>"; };
- F7D4236B1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRequest.h; sourceTree = "<group>"; };
- F7D4236C1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRequest.m; sourceTree = "<group>"; };
- F7D4236D1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbsView.h; sourceTree = "<group>"; };
- F7D4236E1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbsView.m; sourceTree = "<group>"; };
- F7D4236F1F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbView.h; sourceTree = "<group>"; };
- F7D423701F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbView.m; sourceTree = "<group>"; };
- F7D423711F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderViewController.h; sourceTree = "<group>"; };
- F7D423721F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderViewController.m; sourceTree = "<group>"; };
- F7D423731F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsMainToolbar.h; sourceTree = "<group>"; };
- F7D423741F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsMainToolbar.m; sourceTree = "<group>"; };
- F7D423751F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsViewController.h; sourceTree = "<group>"; };
- F7D423761F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsViewController.m; sourceTree = "<group>"; };
- F7D423771F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIXToolbarView.h; sourceTree = "<group>"; };
- F7D423781F0596C6009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIXToolbarView.m; sourceTree = "<group>"; };
- F7D423A51F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPageViewController+Internal.h"; sourceTree = "<group>"; };
- F7D423A61F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPickerController+Internal.h"; sourceTree = "<group>"; };
- F7D423A71F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423A81F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423A91F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDateFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423AA1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDateFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423AB1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexSet+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423AC1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexSet+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423AD1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumberFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423AE1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumberFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423AF1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423B01F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423B11F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAssetCollection+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423B21F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAssetCollection+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423B31F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHImageManager+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423B41F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHImageManager+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423B51F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423B61F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423B71F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+CTAssetsPickerController.h"; sourceTree = "<group>"; };
- F7D423B81F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+CTAssetsPickerController.m"; sourceTree = "<group>"; };
- F7D423B91F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCheckmark.h; sourceTree = "<group>"; };
- F7D423BA1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCheckmark.m; sourceTree = "<group>"; };
- F7D423BB1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewCell.h; sourceTree = "<group>"; };
- F7D423BC1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewCell.m; sourceTree = "<group>"; };
- F7D423BD1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewController.h; sourceTree = "<group>"; };
- F7D423BE1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewController.m; sourceTree = "<group>"; };
- F7D423BF1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetItemViewController.h; sourceTree = "<group>"; };
- F7D423C01F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetItemViewController.m; sourceTree = "<group>"; };
- F7D423C11F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetPlayButton.h; sourceTree = "<group>"; };
- F7D423C21F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetPlayButton.m; sourceTree = "<group>"; };
- F7D423C31F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetScrollView.h; sourceTree = "<group>"; };
- F7D423C41F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetScrollView.m; sourceTree = "<group>"; };
- F7D423C51F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionButton.h; sourceTree = "<group>"; };
- F7D423C61F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionButton.m; sourceTree = "<group>"; };
- F7D423C71F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionLabel.h; sourceTree = "<group>"; };
- F7D423C81F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionLabel.m; sourceTree = "<group>"; };
- F7D423C91F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridSelectedView.h; sourceTree = "<group>"; };
- F7D423CA1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridSelectedView.m; sourceTree = "<group>"; };
- F7D423CB1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridView.h; sourceTree = "<group>"; };
- F7D423CC1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridView.m; sourceTree = "<group>"; };
- F7D423CD1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewCell.h; sourceTree = "<group>"; };
- F7D423CE1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewCell.m; sourceTree = "<group>"; };
- F7D423CF1F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewController.h; sourceTree = "<group>"; };
- F7D423D01F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewController.m; sourceTree = "<group>"; };
- F7D423D11F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewFooter.h; sourceTree = "<group>"; };
- F7D423D21F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewFooter.m; sourceTree = "<group>"; };
- F7D423D31F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewLayout.h; sourceTree = "<group>"; };
- F7D423D41F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewLayout.m; sourceTree = "<group>"; };
- F7D423D51F063B81009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsNavigationController.h; sourceTree = "<group>"; };
- F7D423D61F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsNavigationController.m; sourceTree = "<group>"; };
- F7D423D71F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageView.h; sourceTree = "<group>"; };
- F7D423D81F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageView.m; sourceTree = "<group>"; };
- F7D423D91F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageViewController.h; sourceTree = "<group>"; };
- F7D423DA1F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageViewController.m; sourceTree = "<group>"; };
- F7D423DB1F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerAccessDeniedView.h; sourceTree = "<group>"; };
- F7D423DC1F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerAccessDeniedView.m; sourceTree = "<group>"; };
- F7D423DD1F063B82009C9782 = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CTAssetsPickerController.bundle; sourceTree = "<group>"; };
- F7D423DE1F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerController.h; sourceTree = "<group>"; };
- F7D423DF1F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerController.m; sourceTree = "<group>"; };
- F7D423E01F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerDefines.h; sourceTree = "<group>"; };
- F7D423E11F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerNoAssetsView.h; sourceTree = "<group>"; };
- F7D423E21F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerNoAssetsView.m; sourceTree = "<group>"; };
- F7D423E31F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsViewControllerTransition.h; sourceTree = "<group>"; };
- F7D423E41F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsViewControllerTransition.m; sourceTree = "<group>"; };
- F7D423E51F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailOverlay.h; sourceTree = "<group>"; };
- F7D423E61F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailOverlay.m; sourceTree = "<group>"; };
- F7D423E71F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailStacks.h; sourceTree = "<group>"; };
- F7D423E81F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailStacks.m; sourceTree = "<group>"; };
- F7D423E91F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailView.h; sourceTree = "<group>"; };
- F7D423EA1F063B82009C9782 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailView.m; sourceTree = "<group>"; };
- F7D532431F5D4123006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F7D532441F5D4123006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F7D532451F5D4123006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7D532461F5D4123006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7D532471F5D4123006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7D532481F5D4123006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Intro.strings; sourceTree = "<group>"; };
- F7D532491F5D4124006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Error.strings; sourceTree = "<group>"; };
- F7D5324A1F5D4137006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F7D5324B1F5D4137006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F7D5324C1F5D4137006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7D5324D1F5D4137006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7D5324E1F5D4137006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7D5324F1F5D4137006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Intro.strings; sourceTree = "<group>"; };
- F7D532501F5D4137006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Error.strings; sourceTree = "<group>"; };
- F7D532511F5D4155006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F7D532521F5D4155006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F7D532531F5D4155006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F7D532541F5D4155006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7D532551F5D4155006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7D532561F5D4155006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Intro.strings"; sourceTree = "<group>"; };
- F7D532571F5D4156006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Error.strings"; sourceTree = "<group>"; };
- F7D5328C1F5D443B006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F7D5328D1F5D443B006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F7D5328E1F5D443B006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F7D5328F1F5D443B006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7D532901F5D443B006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7D532911F5D443B006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Intro.strings"; sourceTree = "<group>"; };
- F7D532921F5D443B006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Error.strings"; sourceTree = "<group>"; };
- F7D532A11F5D4461006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
- F7D532A21F5D4461006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
- F7D532A31F5D4461006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
- F7D532A41F5D4461006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7D532A51F5D4461006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7D532A61F5D4462006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Intro.strings"; sourceTree = "<group>"; };
- F7D532A71F5D4462006568B1 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Error.strings"; sourceTree = "<group>"; };
- F7D6650620FF341600BFBA9E = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainCommon.swift; sourceTree = "<group>"; };
- F7DC5FE81F011EB700A903C7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeButton.h; sourceTree = "<group>"; };
- F7DC5FE91F011EB700A903C7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeButton.m; sourceTree = "<group>"; };
- F7DC5FEA1F011EB700A903C7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeTableCell.h; sourceTree = "<group>"; };
- F7DC5FEB1F011EB700A903C7 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeTableCell.m; sourceTree = "<group>"; };
- F7DE9AAD1F482FA5008DFE10 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
- F7DE9AAE1F482FA5008DFE10 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
- F7DE9AAF1F482FA5008DFE10 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
- F7DE9AB01F482FA5008DFE10 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7DE9AB11F482FA5008DFE10 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7DE9AB21F482FA5008DFE10 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Intro.strings; sourceTree = "<group>"; };
- F7DE9AB31F482FA5008DFE10 = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Error.strings; sourceTree = "<group>"; };
- F7DFE24F1EBDC3A400CF5202 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Realm.framework; sourceTree = "<group>"; };
- F7DFE2501EBDC3A400CF5202 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RealmSwift.framework; sourceTree = "<group>"; };
- F7E9C41520F4CA870040CF18 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransfers.h; sourceTree = "<group>"; };
- F7E9C41820F4CA870040CF18 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransfers.m; sourceTree = "<group>"; };
- F7EC9CBA21185F2000F1C5CE = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMedia.h; sourceTree = "<group>"; };
- F7EC9CBB21185F2000F1C5CE = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMedia.m; sourceTree = "<group>"; };
- F7ECBA6C1E239DCD003E6328 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCCreateCloud.swift; sourceTree = "<group>"; };
- F7F0617A1BAACDD300846525 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
- F7F54CAF1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
- F7F54CB01E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
- F7F54CB11E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
- F7F54CB21E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
- F7F54CB31E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
- F7F54CB41E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
- F7F54CB51E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
- F7F54CB61E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
- F7F54CB71E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
- F7F54CB81E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
- F7F54CB91E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
- F7F54CBA1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
- F7F54CBB1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
- F7F54CBC1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
- F7F54CBD1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
- F7F54CBE1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
- F7F54CBF1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
- F7F54CC01E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
- F7F54CC11E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
- F7F54CC21E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
- F7F54CC31E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
- F7F54CC41E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
- F7F54CC51E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
- F7F54CC61E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
- F7F54CC71E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
- F7F54CC81E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
- F7F54CC91E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
- F7F54CCA1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
- F7F54CCB1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
- F7F54CCC1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
- F7F54CCD1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
- F7F54CCE1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
- F7F54CCF1E5B14C700E19C62 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
- F7F54CD01E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
- F7F54CD11E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
- F7F54CD21E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
- F7F54CD71E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
- F7F54CD81E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
- F7F54CD91E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
- F7F54CDA1E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
- F7F54CDB1E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
- F7F54CDC1E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
- F7F54CDD1E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
- F7F54CDE1E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
- F7F54CDF1E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
- F7F54CE01E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
- F7F54CE11E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
- F7F54CE21E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
- F7F54CE31E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
- F7F54CE41E5B14C700E19C62 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
- F7F67BAD1A24D27800EE80DA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- F7F67BB81A24D27800EE80DA = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
- F7F801001D98205A007537BC = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCertificate.h; sourceTree = "<group>"; };
- F7F801011D98205A007537BC = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCertificate.m; sourceTree = "<group>"; };
- F7F878AD1FB9E3B900599E4F = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
- F7F8D7191ED6183000E711F3 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
- F7F8D71A1ED6183000E711F3 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
- F7F8D71B1ED6183000E711F3 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
- F7FC7D551DC1F93800BB2C6A = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
- F7FCFFD61D70798C000E6E29 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
- F7FCFFDD1D707B83000E6E29 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
- F7FCFFDE1D707B83000E6E29 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
- F7FE125C1BAC03FB0041924B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBKPasscode.h; sourceTree = "<group>"; };
- F7FE125D1BAC03FB0041924B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBKPasscode.m; sourceTree = "<group>"; };
- F7FFEACE1F82BB23005E5C17 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
- F7145A141D12E3B700CAFEEC = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7DFE2551EBDC3A400CF5202 ,
- F70A630F1D5B3467004E2AA5 ,
- F70A630B1D5B3467004E2AA5 ,
- F7DFE2521EBDC3A400CF5202 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F72D1009210B6B16009C96B7 = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F72D101D210B75E7009C96B7 ,
- F72D101C210B75E4009C96B7 ,
- F72D1041210B77ED009C96B7 ,
- F72D1040210B77EA009C96B7 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F771E3CD20E2392D00AFB62D = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F771E3FD20E23BA700AFB62D ,
- F771E3FF20E23C3A00AFB62D ,
- F771E40020E23C3D00AFB62D ,
- F771E3FE20E23BAB00AFB62D ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F77B0EDC1D118A16002130FE = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7DFE2571EBDC52E00CF5202 ,
- F75EDFBF1E8C116D00E6F369 ,
- F75EDFBD1E8C112F00E6F369 ,
- F72D0FFF210B6638009C96B7 ,
- F7DFE2541EBDC3A400CF5202 ,
- F784FA2E210F6FC000256C26 ,
- F7A377161EB2364A002856D3 ,
- F7FC7D561DC1F93800BB2C6A ,
- F7A3771A1EB2364A002856D3 ,
- F72D0FFE210B6638009C96B7 ,
- F72D0FFD210B6638009C96B7 ,
- F72D0FF9210B6638009C96B7 ,
- F72D0FFB210B6638009C96B7 ,
- F72D1000210B6638009C96B7 ,
- F7BB14961D5B62C000ECEE68 ,
- F7BB14971D5B62C000ECEE68 ,
- F784FA30210F6FC500256C26 ,
- F72D1001210B6638009C96B7 ,
- F72D0FFA210B6638009C96B7 ,
- F72D0FFC210B6638009C96B7 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F70022561EC4C9100080073F = {
- isa = PBXGroup;
- children = (
- F70022571EC4C9100080073F ,
- F70022661EC4C9100080073F ,
- F70022671EC4C9100080073F ,
- F70022681EC4C9100080073F ,
- F70022691EC4C9100080073F ,
- F700226A1EC4C9100080073F ,
- F700226B1EC4C9100080073F ,
- F700226C1EC4C9100080073F ,
- F700226D1EC4C9100080073F ,
- F700226E1EC4C9100080073F ,
- F700226F1EC4C9100080073F ,
- F70022701EC4C9100080073F ,
- F70022711EC4C9100080073F ,
- F70022721EC4C9100080073F ,
- F70022731EC4C9100080073F ,
- F70022741EC4C9100080073F ,
- F70022751EC4C9100080073F ,
- F70022761EC4C9100080073F ,
- F70022771EC4C9100080073F ,
- F70022781EC4C9100080073F ,
- F70022791EC4C9100080073F ,
- F700227A1EC4C9100080073F ,
- F700227B1EC4C9100080073F ,
- F700227C1EC4C9100080073F ,
- F700227D1EC4C9100080073F ,
- F700227E1EC4C9100080073F ,
- F700229B1EC4C9100080073F ,
- );
- name = OCCommunicationLib;
- path = Library/OCCommunicationLib;
- sourceTree = "<group>";
- };
- F70022571EC4C9100080073F = {
- isa = PBXGroup;
- children = (
- F70022581EC4C9100080073F ,
- );
- path = ExternalLibs;
- sourceTree = "<group>";
- };
- F70022581EC4C9100080073F = {
- isa = PBXGroup;
- children = (
- F70022591EC4C9100080073F ,
- F700225A1EC4C9100080073F ,
- F700225B1EC4C9100080073F ,
- F700225C1EC4C9100080073F ,
- F700225D1EC4C9100080073F ,
- F700225E1EC4C9100080073F ,
- F700225F1EC4C9100080073F ,
- F70022601EC4C9100080073F ,
- F70022611EC4C9100080073F ,
- F70022621EC4C9100080073F ,
- F70022631EC4C9100080073F ,
- F70022641EC4C9100080073F ,
- F70022651EC4C9100080073F ,
- );
- path = AFNetworking;
- sourceTree = "<group>";
- };
- F700227E1EC4C9100080073F = {
- isa = PBXGroup;
- children = (
- F700227F1EC4C9100080073F ,
- F70022801EC4C9100080073F ,
- F70022811EC4C9100080073F ,
- F70022821EC4C9100080073F ,
- F70022831EC4C9100080073F ,
- F70022841EC4C9100080073F ,
- F70022851EC4C9100080073F ,
- F70022861EC4C9100080073F ,
- F70022871EC4C9100080073F ,
- );
- path = OCWebDavClient;
- sourceTree = "<group>";
- };
- F70022871EC4C9100080073F = {
- isa = PBXGroup;
- children = (
- F70022881EC4C9100080073F ,
- F70022891EC4C9100080073F ,
- F700228A1EC4C9100080073F ,
- F700228B1EC4C9100080073F ,
- F700228C1EC4C9100080073F ,
- F700228D1EC4C9100080073F ,
- F700228E1EC4C9100080073F ,
- F700228F1EC4C9100080073F ,
- F70022901EC4C9100080073F ,
- F70022911EC4C9100080073F ,
- );
- path = Parsers;
- sourceTree = "<group>";
- };
- F700229B1EC4C9100080073F = {
- isa = PBXGroup;
- children = (
- F700229C1EC4C9100080073F ,
- F700229D1EC4C9100080073F ,
- F700229E1EC4C9100080073F ,
- F700229F1EC4C9100080073F ,
- F70022A01EC4C9100080073F ,
- );
- path = Utils;
- sourceTree = "<group>";
- };
- F70211F31BAC56E9003FC03E = {
- isa = PBXGroup;
- children = (
- F7FFEACE1F82BB23005E5C17 ,
- F70211F51BAC56E9003FC03E ,
- F70211F61BAC56E9003FC03E ,
- F70211F71BAC56E9003FC03E ,
- F70211F81BAC56E9003FC03E ,
- F70211F91BAC56E9003FC03E ,
- F70211FA1BAC56E9003FC03E ,
- F70211FB1BAC56E9003FC03E ,
- F7226EDB1EE4089300EBECB1 ,
- F7D0E65E1BC5042E008D989A ,
- F7D0E65F1BC5042E008D989A ,
- F73F537E1E929C8500F8678D ,
- F78F6FAE1CC8CCB700F4EA25 ,
- F78F6FAF1CC8CCB700F4EA25 ,
- F792A77B1BC7C45400C9388E ,
- F792A77C1BC7C45400C9388E ,
- F7ECBA6C1E239DCD003E6328 ,
- F7D6650620FF341600BFBA9E ,
- );
- path = Main;
- sourceTree = "<group>";
- };
- F70784811A2C8A0D00AC9FFF = {
- isa = PBXGroup;
- children = (
- F7956FC91B4886E60085DEA3 ,
- F7956FCA1B4886E60085DEA3 ,
- F7956FCB1B4886E60085DEA3 ,
- );
- path = UploadFromOtherUpp;
- sourceTree = "<group>";
- };
- F70F02A81C889183008DAB36 = {
- isa = PBXGroup;
- children = (
- F70F02B21C889183008DAB36 ,
- F73CCE221DC13788007E38D8 ,
- F7659A211DC0B726004860C4 ,
- F7659A2A1DC0B72F004860C4 ,
- F72D0FED210B6638009C96B7 ,
- F78964A61EBB576C00403E13 ,
- F784FA24210F672E00256C26 ,
- F7659A2F1DC0B737004860C4 ,
- F70F04821C889183008DAB36 ,
- F7DC5FD31F00F98B00A903C7 ,
- F7B2DEEB1F976785007CF4D2 ,
- F7540EE11D5B238600C3FFA8 ,
- F758B3D8212C4A6C00515F55 ,
- F7CA1EBB20E7E3FE002CC65E ,
- F75037421DBFA91A008FB480 ,
- F70F05241C889184008DAB36 ,
- F7DFE24E1EBDC3A400CF5202 ,
- F7A55417204EF8AF008468EC ,
- F75AE3C51E9D12900088BB09 ,
- F73CCE271DC13798007E38D8 ,
- F70F05561C889184008DAB36 ,
- );
- path = "Libraries external";
- sourceTree = SOURCE_ROOT;
- };
- F70F02B21C889183008DAB36 = {
- isa = PBXGroup;
- children = (
- F70F02B31C889183008DAB36 ,
- F70F02B41C889183008DAB36 ,
- );
- path = AFViewShaker;
- sourceTree = "<group>";
- };
- F70F04821C889183008DAB36 = {
- isa = PBXGroup;
- children = (
- F70F04831C889183008DAB36 ,
- F70F04841C889183008DAB36 ,
- );
- path = MBProgressHUD;
- sourceTree = "<group>";
- };
- F70F05241C889184008DAB36 = {
- isa = PBXGroup;
- children = (
- F70F05251C889184008DAB36 ,
- F70F05261C889184008DAB36 ,
- );
- path = Reachability;
- sourceTree = "<group>";
- };
- F70F05561C889184008DAB36 = {
- isa = PBXGroup;
- children = (
- F70F05571C889184008DAB36 ,
- F70F05581C889184008DAB36 ,
- );
- path = "UIImage+animatedGIF";
- sourceTree = "<group>";
- };
- F710E80C1EF95C9C00DC2427 = {
- isa = PBXGroup;
- children = (
- F710E80D1EF95C9C00DC2427 ,
- F710E80E1EF95C9C00DC2427 ,
- F710E80F1EF95C9C00DC2427 ,
- );
- path = Intro;
- sourceTree = "<group>";
- };
- F7169A161EE590930086BD69 = {
- isa = PBXGroup;
- children = (
- F7169A171EE590930086BD69 ,
- F7169A181EE590930086BD69 ,
- F7169A191EE590930086BD69 ,
- F7169A1A1EE590930086BD69 ,
- F7169A1B1EE590930086BD69 ,
- );
- path = Shares;
- sourceTree = "<group>";
- };
- F720E02A1E48C74C001A4B9E = {
- isa = PBXGroup;
- children = (
- F720E01E1E48C73E001A4B9E ,
- );
- name = Actions;
- sourceTree = "<group>";
- };
- F728CE741BF6322C00E69702 = {
- isa = PBXGroup;
- children = (
- F768EB021BFB7EA900B6E341 ,
- F768EAFB1BFB7CD800B6E341 ,
- F768EAFC1BFB7CD800B6E341 ,
- F7CD0FF91C8DDA7D006520C5 ,
- F7CD0FFA1C8DDA7D006520C5 ,
- F78316861C0CB3CA00C43975 ,
- F78316871C0CB3CA00C43975 ,
- F743B2C31C95BBE8006F5B4A ,
- F743B2C41C95BBE8006F5B4A ,
- );
- path = Share;
- sourceTree = "<group>";
- };
- F72AAEC11E5C60C700BB17E1 = {
- isa = PBXGroup;
- children = (
- F72AAEC21E5C60C700BB17E1 ,
- F72AAEC31E5C60C700BB17E1 ,
- F72AAEC41E5C60C700BB17E1 ,
- F72AAEC51E5C60C700BB17E1 ,
- );
- path = AHKActionSheet;
- sourceTree = "<group>";
- };
- F72B60941A24F04E004EF66F = {
- isa = PBXGroup;
- children = (
- F7E70DE91A24DE4100E1B66A ,
- F75797AC1E81356C00187A1B ,
- F732B3351E8045A1002B7D75 ,
- F72B60911A24F00B004EF66F ,
- F7C6D5F61BE371D800AC83AD ,
- F744BE9F1BEBB69F004FFF66 ,
- F7B381BF1C074E3E004693F8 ,
- );
- name = Localizations;
- sourceTree = "<group>";
- };
- F72D0FED210B6638009C96B7 = {
- isa = PBXGroup;
- children = (
- F72D1004210B6835009C96B7 ,
- F72D0FEE210B6638009C96B7 ,
- F72D0FF1210B6638009C96B7 ,
- );
- path = Firebase;
- sourceTree = "<group>";
- };
- F72D0FEE210B6638009C96B7 = {
- isa = PBXGroup;
- children = (
- F72D0FEF210B6638009C96B7 ,
- F72D0FF0210B6638009C96B7 ,
- );
- path = Messaging;
- sourceTree = "<group>";
- };
- F72D0FF1210B6638009C96B7 = {
- isa = PBXGroup;
- children = (
- F72D0FF2210B6638009C96B7 ,
- F72D0FF3210B6638009C96B7 ,
- F72D0FF4210B6638009C96B7 ,
- F72D0FF5210B6638009C96B7 ,
- F72D0FF6210B6638009C96B7 ,
- F72D0FF7210B6638009C96B7 ,
- F72D0FF8210B6638009C96B7 ,
- );
- path = Analytics;
- sourceTree = "<group>";
- };
- F72D100D210B6B17009C96B7 = {
- isa = PBXGroup;
- children = (
- F72D100E210B6B17009C96B7 ,
- F72D1019210B7394009C96B7 ,
- );
- path = "Notification Service Extension";
- sourceTree = "<group>";
- };
- F73B4EAC1F470D9100BBEE4B = {
- isa = PBXGroup;
- children = (
- F73B4EAD1F470D9100BBEE4B ,
- F73B4EAE1F470D9100BBEE4B ,
- F73B4EAF1F470D9100BBEE4B ,
- F73B4EB01F470D9100BBEE4B ,
- F73B4EB11F470D9100BBEE4B ,
- F73B4EB21F470D9100BBEE4B ,
- F73B4EB31F470D9100BBEE4B ,
- F73B4EB41F470D9100BBEE4B ,
- F73B4EB51F470D9100BBEE4B ,
- F73B4EB61F470D9100BBEE4B ,
- F73B4EB71F470D9100BBEE4B ,
- F73B4EC61F470D9100BBEE4B ,
- F73B4EC71F470D9100BBEE4B ,
- F73B4EC81F470D9100BBEE4B ,
- F73B4EC91F470D9100BBEE4B ,
- F73B4ECA1F470D9100BBEE4B ,
- F73B4ECB1F470D9100BBEE4B ,
- F73B4ECC1F470D9100BBEE4B ,
- F73B4ECD1F470D9100BBEE4B ,
- F73B4ECE1F470D9100BBEE4B ,
- F73B4ECF1F470D9100BBEE4B ,
- F73B4ED01F470D9100BBEE4B ,
- F73B4ED11F470D9100BBEE4B ,
- F73B4ED21F470D9100BBEE4B ,
- F73B4ED31F470D9100BBEE4B ,
- F73B4ED41F470D9100BBEE4B ,
- F73B4ED51F470D9100BBEE4B ,
- F73B4ED61F470D9100BBEE4B ,
- F73B4ED71F470D9100BBEE4B ,
- F73B4ED81F470D9100BBEE4B ,
- F73B4ED91F470D9100BBEE4B ,
- F73B4EDA1F470D9100BBEE4B ,
- F73B4EDB1F470D9100BBEE4B ,
- F73B4EDC1F470D9100BBEE4B ,
- F73B4EDD1F470D9100BBEE4B ,
- F73B4EDE1F470D9100BBEE4B ,
- F73B4EDF1F470D9100BBEE4B ,
- F73B4EE01F470D9100BBEE4B ,
- F73B4EE11F470D9100BBEE4B ,
- F73B4EE21F470D9100BBEE4B ,
- F73B4EE31F470D9100BBEE4B ,
- F73B4EE41F470D9100BBEE4B ,
- F73B4EE51F470D9100BBEE4B ,
- F73B4EE61F470D9100BBEE4B ,
- F73B4EE71F470D9100BBEE4B ,
- F73B4EE81F470D9100BBEE4B ,
- F73B4EE91F470D9100BBEE4B ,
- F73B4EEA1F470D9100BBEE4B ,
- F73B4EEC1F470D9100BBEE4B ,
- F73B4EED1F470D9100BBEE4B ,
- );
- path = src;
- sourceTree = "<group>";
- };
- F73B4EB71F470D9100BBEE4B = {
- isa = PBXGroup;
- children = (
- F73B4EB81F470D9100BBEE4B ,
- F73B4EB91F470D9100BBEE4B ,
- F73B4EBA1F470D9100BBEE4B ,
- F73B4EBB1F470D9100BBEE4B ,
- F73B4EBC1F470D9100BBEE4B ,
- F73B4EBD1F470D9100BBEE4B ,
- F73B4EBE1F470D9100BBEE4B ,
- F73B4EBF1F470D9100BBEE4B ,
- F73B4EC01F470D9100BBEE4B ,
- F73B4EC11F470D9100BBEE4B ,
- F73B4EC21F470D9100BBEE4B ,
- F73B4EC31F470D9100BBEE4B ,
- F73B4EC41F470D9100BBEE4B ,
- F73B4EC51F470D9100BBEE4B ,
- );
- path = LangModels;
- sourceTree = "<group>";
- };
- F73CC0571E813DFF006E3047 = {
- isa = PBXGroup;
- children = (
- F73CC0581E813DFF006E3047 ,
- F73CC0591E813DFF006E3047 ,
- F73CC05A1E813DFF006E3047 ,
- F73CC05B1E813DFF006E3047 ,
- F73CC05C1E813DFF006E3047 ,
- F73CC05D1E813DFF006E3047 ,
- F73CC05E1E813DFF006E3047 ,
- F73CC05F1E813DFF006E3047 ,
- F73CC0601E813DFF006E3047 ,
- F73CC0611E813DFF006E3047 ,
- F73CC0621E813DFF006E3047 ,
- F73CC0631E813DFF006E3047 ,
- F73CC0641E813DFF006E3047 ,
- F73CC0651E813DFF006E3047 ,
- F73CC0661E813DFF006E3047 ,
- F73CC0671E813DFF006E3047 ,
- F73CC0681E813DFF006E3047 ,
- );
- path = BKPasscodeView;
- sourceTree = "<group>";
- };
- F73CCE221DC13788007E38D8 = {
- isa = PBXGroup;
- children = (
- F73CCE231DC13788007E38D8 ,
- F73CCE241DC13788007E38D8 ,
- );
- path = DZNEmptyDataSet;
- sourceTree = "<group>";
- };
- F73CCE271DC13798007E38D8 = {
- isa = PBXGroup;
- children = (
- F73CCE291DC13798007E38D8 ,
- F73CCE2A1DC13798007E38D8 ,
- );
- path = UICKeyChainStore;
- sourceTree = "<group>";
- };
- F73D71561F26739100E233EB = {
- isa = PBXGroup;
- children = (
- F73D71611F2673C200E233EB ,
- F73D71631F2674A400E233EB ,
- );
- path = Text;
- sourceTree = "<group>";
- };
- F74D3DB81BAC1941000BAE4B = {
- isa = PBXGroup;
- children = (
- F755BD9A20594AC7008C5FBB ,
- F732BA031D76CE1500E9878B ,
- F732BA041D76CE1500E9878B ,
- F74D3DBD1BAC1941000BAE4B ,
- F74D3DBE1BAC1941000BAE4B ,
- F74E432420B5547700C2E54C ,
- F74E432520B5547700C2E54C ,
- );
- path = Networking;
- sourceTree = "<group>";
- };
- F75037421DBFA91A008FB480 = {
- isa = PBXGroup;
- children = (
- F75037431DBFA91A008FB480 ,
- F75037441DBFA91A008FB480 ,
- F75037451DBFA91A008FB480 ,
- F75037461DBFA91A008FB480 ,
- F75037471DBFA91A008FB480 ,
- F75037481DBFA91A008FB480 ,
- F75037491DBFA91A008FB480 ,
- F750374A1DBFA91A008FB480 ,
- F750374B1DBFA91A008FB480 ,
- );
- path = PureLayout;
- sourceTree = "<group>";
- };
- F7540EE11D5B238600C3FFA8 = {
- isa = PBXGroup;
- children = (
- F70A63061D5B3467004E2AA5 ,
- F70A63071D5B3467004E2AA5 ,
- F7540EE21D5B238600C3FFA8 ,
- F7540EE31D5B238600C3FFA8 ,
- F7540EE41D5B238600C3FFA8 ,
- F7540EE51D5B238600C3FFA8 ,
- F7540EE61D5B238600C3FFA8 ,
- F7540EE71D5B238600C3FFA8 ,
- F7540EE81D5B238600C3FFA8 ,
- F7540EE91D5B238600C3FFA8 ,
- F7540EEA1D5B238600C3FFA8 ,
- F7540EEB1D5B238600C3FFA8 ,
- F7540EEC1D5B238600C3FFA8 ,
- F7540EED1D5B238600C3FFA8 ,
- F7540EEE1D5B238600C3FFA8 ,
- F7540EEF1D5B238600C3FFA8 ,
- F7540EF01D5B238600C3FFA8 ,
- F7540EF11D5B238600C3FFA8 ,
- F7540EF21D5B238600C3FFA8 ,
- F7540EF41D5B238600C3FFA8 ,
- F7540EF51D5B238600C3FFA8 ,
- F7540EF71D5B238600C3FFA8 ,
- F7540EF81D5B238600C3FFA8 ,
- F7540EF91D5B238600C3FFA8 ,
- F7540EFA1D5B238600C3FFA8 ,
- F7540EFB1D5B238600C3FFA8 ,
- F7540EFC1D5B238600C3FFA8 ,
- F7540EFD1D5B238600C3FFA8 ,
- F7540EFE1D5B238600C3FFA8 ,
- F7540EFF1D5B238600C3FFA8 ,
- F7540F001D5B238600C3FFA8 ,
- F7540F011D5B238600C3FFA8 ,
- F7540F041D5B238600C3FFA8 ,
- F7540F051D5B238600C3FFA8 ,
- F7540F061D5B238600C3FFA8 ,
- F7540F071D5B238600C3FFA8 ,
- F7540F081D5B238600C3FFA8 ,
- F7540F091D5B238600C3FFA8 ,
- F7540F0A1D5B238600C3FFA8 ,
- F7540F0B1D5B238600C3FFA8 ,
- F7540F0C1D5B238600C3FFA8 ,
- F7540F0D1D5B238600C3FFA8 ,
- F7540F0E1D5B238600C3FFA8 ,
- F7540F0F1D5B238600C3FFA8 ,
- F7540F101D5B238600C3FFA8 ,
- F7540F111D5B238600C3FFA8 ,
- F7540F121D5B238600C3FFA8 ,
- F7540F141D5B238600C3FFA8 ,
- F7540F151D5B238600C3FFA8 ,
- F7540F161D5B238600C3FFA8 ,
- F7540F171D5B238600C3FFA8 ,
- F7540F181D5B238600C3FFA8 ,
- F7540F191D5B238600C3FFA8 ,
- F7540F1A1D5B238600C3FFA8 ,
- F7540F1B1D5B238600C3FFA8 ,
- F7540F1C1D5B238600C3FFA8 ,
- F7540F1D1D5B238600C3FFA8 ,
- F7540F1E1D5B238600C3FFA8 ,
- F7540F1F1D5B238600C3FFA8 ,
- F7540F211D5B238600C3FFA8 ,
- F7540F221D5B238600C3FFA8 ,
- F7540F231D5B238600C3FFA8 ,
- F7540F241D5B238600C3FFA8 ,
- F7540F251D5B238600C3FFA8 ,
- F7540F261D5B238600C3FFA8 ,
- F7540F271D5B238600C3FFA8 ,
- F7540F291D5B238600C3FFA8 ,
- F7540F2A1D5B238600C3FFA8 ,
- F7540F2B1D5B238600C3FFA8 ,
- F7540F2C1D5B238600C3FFA8 ,
- );
- path = openssl;
- sourceTree = "<group>";
- };
- F758B3D8212C4A6C00515F55 = {
- isa = PBXGroup;
- children = (
- F758B3D9212C4A6C00515F55 ,
- F758B3DA212C4A6C00515F55 ,
- F758B3DB212C4A6C00515F55 ,
- F758B3DC212C4A6C00515F55 ,
- F758B3DD212C4A6C00515F55 ,
- F758B3DE212C4A6C00515F55 ,
- F758B3DF212C4A6C00515F55 ,
- F758B3E0212C4A6C00515F55 ,
- );
- path = PDFGenerator;
- sourceTree = "<group>";
- };
- F758B41E212C516300515F55 = {
- isa = PBXGroup;
- children = (
- F758B45F212C56A400515F55 ,
- F758B45D212C569C00515F55 ,
- F758B457212C564000515F55 ,
- F758B41F212C516300515F55 ,
- );
- path = Scan;
- sourceTree = "<group>";
- };
- F758B41F212C516300515F55 = {
- isa = PBXGroup;
- children = (
- F758B420212C516300515F55 ,
- F758B421212C516300515F55 ,
- F758B427212C516300515F55 ,
- F758B430212C516300515F55 ,
- F758B433212C516300515F55 ,
- F758B434212C516300515F55 ,
- F758B43A212C516300515F55 ,
- F758B43C212C516300515F55 ,
- );
- path = WeScan;
- sourceTree = "<group>";
- };
- F758B421212C516300515F55 = {
- isa = PBXGroup;
- children = (
- F758B422212C516300515F55 ,
- F758B423212C516300515F55 ,
- F758B424212C516300515F55 ,
- F758B425212C516300515F55 ,
- F758B426212C516300515F55 ,
- );
- path = Scan;
- sourceTree = "<group>";
- };
- F758B427212C516300515F55 = {
- isa = PBXGroup;
- children = (
- F758B428212C516300515F55 ,
- F758B429212C516300515F55 ,
- F758B42A212C516300515F55 ,
- F758B42B212C516300515F55 ,
- F758B42C212C516300515F55 ,
- F758B42D212C516300515F55 ,
- F758B42E212C516300515F55 ,
- F758B42F212C516300515F55 ,
- );
- path = Extensions;
- sourceTree = "<group>";
- };
- F758B430212C516300515F55 = {
- isa = PBXGroup;
- children = (
- F758B431212C516300515F55 ,
- F758B432212C516300515F55 ,
- );
- path = Edit;
- sourceTree = "<group>";
- };
- F758B434212C516300515F55 = {
- isa = PBXGroup;
- children = (
- F758B435212C516300515F55 ,
- F758B436212C516300515F55 ,
- F758B437212C516300515F55 ,
- F758B438212C516300515F55 ,
- F758B439212C516300515F55 ,
- );
- path = Common;
- sourceTree = "<group>";
- };
- F758B43A212C516300515F55 = {
- isa = PBXGroup;
- children = (
- F758B43B212C516300515F55 ,
- );
- path = Review;
- sourceTree = "<group>";
- };
- F758B43C212C516300515F55 = {
- isa = PBXGroup;
- children = (
- F758B43D212C516300515F55 ,
- );
- path = Protocols;
- sourceTree = "<group>";
- };
- F75AE3C51E9D12900088BB09 = {
- isa = PBXGroup;
- children = (
- F75AE3C61E9D12900088BB09 ,
- );
- path = SwiftyAvatar;
- sourceTree = "<group>";
- };
- F762CA9F1EACB66200B38484 = {
- isa = PBXGroup;
- children = (
- F762CAA11EACB66200B38484 ,
- F762CAF51EACB66200B38484 ,
- );
- path = XLForm;
- sourceTree = "<group>";
- };
- F762CAA11EACB66200B38484 = {
- isa = PBXGroup;
- children = (
- F762CAA21EACB66200B38484 ,
- F762CAC51EACB66200B38484 ,
- F762CACD1EACB66200B38484 ,
- F762CAD51EACB66200B38484 ,
- F762CAEB1EACB66200B38484 ,
- F762CAF31EACB66200B38484 ,
- F762CAF41EACB66200B38484 ,
- );
- path = XL;
- sourceTree = "<group>";
- };
- F762CAA21EACB66200B38484 = {
- isa = PBXGroup;
- children = (
- F762CAA31EACB66200B38484 ,
- F762CAA41EACB66200B38484 ,
- F762CAA51EACB66200B38484 ,
- F762CAA61EACB66200B38484 ,
- F762CAA71EACB66200B38484 ,
- F762CAA81EACB66200B38484 ,
- F762CAA91EACB66200B38484 ,
- F762CAAA1EACB66200B38484 ,
- F762CAAB1EACB66200B38484 ,
- F762CAAC1EACB66200B38484 ,
- F762CAAD1EACB66200B38484 ,
- F762CAAE1EACB66200B38484 ,
- F762CAAF1EACB66200B38484 ,
- F762CAB01EACB66200B38484 ,
- F762CAB11EACB66200B38484 ,
- F762CAB21EACB66200B38484 ,
- F762CAB31EACB66200B38484 ,
- F762CAB41EACB66200B38484 ,
- F762CAB51EACB66200B38484 ,
- F762CAB61EACB66200B38484 ,
- F762CAB71EACB66200B38484 ,
- F762CAB81EACB66200B38484 ,
- F762CAB91EACB66200B38484 ,
- F762CABA1EACB66200B38484 ,
- F762CABB1EACB66200B38484 ,
- F762CABC1EACB66200B38484 ,
- F762CABD1EACB66200B38484 ,
- F762CABE1EACB66200B38484 ,
- F762CABF1EACB66200B38484 ,
- F762CAC01EACB66200B38484 ,
- F762CAC11EACB66200B38484 ,
- F762CAC21EACB66200B38484 ,
- F762CAC31EACB66200B38484 ,
- F762CAC41EACB66200B38484 ,
- );
- path = Cell;
- sourceTree = "<group>";
- };
- F762CAC51EACB66200B38484 = {
- isa = PBXGroup;
- children = (
- F762CAC61EACB66200B38484 ,
- F762CAC71EACB66200B38484 ,
- F762CAC81EACB66200B38484 ,
- F762CAC91EACB66200B38484 ,
- F762CACA1EACB66200B38484 ,
- F762CACB1EACB66200B38484 ,
- F762CACC1EACB66200B38484 ,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- F762CACD1EACB66200B38484 = {
- isa = PBXGroup;
- children = (
- F762CACE1EACB66200B38484 ,
- F762CACF1EACB66200B38484 ,
- F762CAD01EACB66200B38484 ,
- F762CAD11EACB66200B38484 ,
- F762CAD21EACB66200B38484 ,
- F762CAD31EACB66200B38484 ,
- F762CAD41EACB66200B38484 ,
- );
- path = Descriptors;
- sourceTree = "<group>";
- };
- F762CAD51EACB66200B38484 = {
- isa = PBXGroup;
- children = (
- F762CAD61EACB66200B38484 ,
- F762CAD71EACB66200B38484 ,
- F762CAD81EACB66200B38484 ,
- F762CAD91EACB66200B38484 ,
- F762CADA1EACB66200B38484 ,
- F762CADB1EACB66200B38484 ,
- F762CADC1EACB66200B38484 ,
- F762CADD1EACB66200B38484 ,
- F762CADE1EACB66200B38484 ,
- F762CADF1EACB66200B38484 ,
- F762CAE01EACB66200B38484 ,
- F762CAE11EACB66200B38484 ,
- F762CAE21EACB66200B38484 ,
- );
- path = Helpers;
- sourceTree = "<group>";
- };
- F762CAE21EACB66200B38484 = {
- isa = PBXGroup;
- children = (
- F762CAE31EACB66200B38484 ,
- F762CAE41EACB66200B38484 ,
- F762CAE51EACB66200B38484 ,
- F762CAE61EACB66200B38484 ,
- F762CAE71EACB66200B38484 ,
- F762CAE81EACB66200B38484 ,
- F762CAE91EACB66200B38484 ,
- F762CAEA1EACB66200B38484 ,
- );
- path = Views;
- sourceTree = "<group>";
- };
- F762CAEB1EACB66200B38484 = {
- isa = PBXGroup;
- children = (
- F762CAEC1EACB66200B38484 ,
- F762CAED1EACB66200B38484 ,
- F762CAEE1EACB66200B38484 ,
- F762CAEF1EACB66200B38484 ,
- F762CAF01EACB66200B38484 ,
- F762CAF11EACB66200B38484 ,
- F762CAF21EACB66200B38484 ,
- );
- path = Validation;
- sourceTree = "<group>";
- };
- F762CB1C1EACB7D400B38484 = {
- isa = PBXGroup;
- children = (
- F7D423501F0596C6009C9782 ,
- F7D423151F0596AC009C9782 ,
- );
- path = "VFR Pdf Reader";
- sourceTree = "<group>";
- };
- F762CB7B1EACB81000B38484 = {
- isa = PBXGroup;
- children = (
- F762CB7C1EACB81000B38484 ,
- F762CB7D1EACB81000B38484 ,
- F762CB7E1EACB81000B38484 ,
- F762CB7F1EACB81000B38484 ,
- F762CB801EACB81000B38484 ,
- F762CB811EACB81000B38484 ,
- F762CB821EACB81000B38484 ,
- F762CB831EACB81000B38484 ,
- F762CB841EACB81000B38484 ,
- F762CB851EACB81000B38484 ,
- );
- path = REMenu;
- sourceTree = "<group>";
- };
- F762CB8B1EACB84400B38484 = {
- isa = PBXGroup;
- children = (
- F762CB8C1EACB84400B38484 ,
- F762CB931EACB84400B38484 ,
- F762CB941EACB84400B38484 ,
- );
- path = TWMessageBarManager;
- sourceTree = "<group>";
- };
- F762CB8C1EACB84400B38484 = {
- isa = PBXGroup;
- children = (
- F762CB8D1EACB84400B38484 ,
- F762CB8E1EACB84400B38484 ,
- F762CB8F1EACB84400B38484 ,
- F762CB901EACB84400B38484 ,
- F762CB911EACB84400B38484 ,
- F762CB921EACB84400B38484 ,
- );
- path = Icons;
- sourceTree = "<group>";
- };
- F7659A211DC0B726004860C4 = {
- isa = PBXGroup;
- children = (
- F7659A221DC0B726004860C4 ,
- F7659A231DC0B726004860C4 ,
- F7659A241DC0B726004860C4 ,
- F7659A251DC0B726004860C4 ,
- );
- path = EAIntroView;
- sourceTree = "<group>";
- };
- F7659A2A1DC0B72F004860C4 = {
- isa = PBXGroup;
- children = (
- F7659A2B1DC0B72F004860C4 ,
- F7659A2C1DC0B72F004860C4 ,
- );
- path = EARestrictedScrollView;
- sourceTree = "<group>";
- };
- F7659A2F1DC0B737004860C4 = {
- isa = PBXGroup;
- children = (
- F7659A311DC0B737004860C4 ,
- F7659A321DC0B737004860C4 ,
- F7659A331DC0B737004860C4 ,
- );
- path = iRate;
- sourceTree = "<group>";
- };
- F771E3D120E2392D00AFB62D = {
- isa = PBXGroup;
- children = (
- F771E3F220E239A600AFB62D ,
- F771E3D620E2392D00AFB62D ,
- F771E3D220E2392D00AFB62D ,
- F771E3F420E239B400AFB62D ,
- F771E3F620E239B400AFB62D ,
- F771E3F520E239B400AFB62D ,
- F771E3D420E2392D00AFB62D ,
- F7434B5F20E2440600417916 ,
- );
- path = "File Provider Extension";
- sourceTree = "<group>";
- };
- F784FA24210F672E00256C26 = {
- isa = PBXGroup;
- children = (
- F784FA25210F672E00256C26 ,
- F784FA26210F672E00256C26 ,
- F784FA27210F672E00256C26 ,
- );
- path = KTVHTTPCache;
- sourceTree = "<group>";
- };
- F78964A61EBB576C00403E13 = {
- isa = PBXGroup;
- children = (
- F78964A71EBB576C00403E13 ,
- F78964A81EBB576C00403E13 ,
- F78964A91EBB576C00403E13 ,
- F78964AA1EBB576C00403E13 ,
- F78964AB1EBB576C00403E13 ,
- F78964AC1EBB576C00403E13 ,
- );
- path = JDStatusBarNotification;
- sourceTree = "<group>";
- };
- F79630EC215526B60015EEA5 = {
- isa = PBXGroup;
- children = (
- F790110D21415BF600D7B136 ,
- F79630ED215527D40015EEA5 ,
- );
- path = Viewer;
- sourceTree = "<group>";
- };
- F7A3214D1E9E2A070069AD1B = {
- isa = PBXGroup;
- children = (
- F7A3214E1E9E2A070069AD1B ,
- F7A3214F1E9E2A070069AD1B ,
- );
- path = Favorites;
- sourceTree = "<group>";
- };
- F7A321621E9E37960069AD1B = {
- isa = PBXGroup;
- children = (
- F7A321631E9E37960069AD1B ,
- F7A321641E9E37960069AD1B ,
- );
- path = Activity;
- sourceTree = "<group>";
- };
- F7A321891E9E42B20069AD1B = {
- isa = PBXGroup;
- children = (
- F7A3218A1E9E42B30069AD1B ,
- F7A3218B1E9E42B30069AD1B ,
- );
- path = MenuAccount;
- sourceTree = "<group>";
- };
- F7A377131EB2364A002856D3 = {
- isa = PBXGroup;
- children = (
- F7A377141EB2364A002856D3 ,
- F7A377151EB2364A002856D3 ,
- );
- name = Fabric;
- path = "Libraries external/Fabric";
- sourceTree = SOURCE_ROOT;
- };
- F7A55417204EF8AF008468EC = {
- isa = PBXGroup;
- children = (
- F7A55419204EF8AF008468EC ,
- F7A5541B204EF8AF008468EC ,
- F7A5541C204EF8AF008468EC ,
- F7A55418204EF8AF008468EC ,
- F7A5541A204EF8AF008468EC ,
- F7A5541D204EF8AF008468EC ,
- );
- path = TOScrollBar;
- sourceTree = "<group>";
- };
- F7ACE4281BAC0268006C0017 = {
- isa = PBXGroup;
- children = (
- F7ACE4291BAC0268006C0017 ,
- F7ACE42B1BAC0268006C0017 ,
- F7ACE42A1BAC0268006C0017 ,
- F7A321AB1E9E6AD50069AD1B ,
- F7A321AC1E9E6AD50069AD1B ,
- F7ACE42C1BAC0268006C0017 ,
- F7ACE42D1BAC0268006C0017 ,
- F75AC2421F1F62450073EC19 ,
- F7ACE42E1BAC0268006C0017 ,
- F7ACE42F1BAC0268006C0017 ,
- F7ACE4301BAC0268006C0017 ,
- F7ACE4311BAC0268006C0017 ,
- F726EEEB1FED1C820030B9C8 ,
- F738E8401F90FFD100F95C8E ,
- F738E8411F90FFD100F95C8E ,
- );
- path = Settings;
- sourceTree = "<group>";
- };
- F7B0C0CA1EE7E7750033AC24 = {
- isa = PBXGroup;
- children = (
- F7B0C0CB1EE7E7750033AC24 ,
- F7B0C0CC1EE7E7750033AC24 ,
- );
- path = Synchronize;
- sourceTree = "<group>";
- };
- F7B0C1701EE8397E0033AC24 = {
- isa = PBXGroup;
- children = (
- F7B0C1731EE839A30033AC24 ,
- F7B0C1741EE839A30033AC24 ,
- );
- path = AutoUpload;
- sourceTree = "<group>";
- };
- F7B1FBAF1E72E3D1001781FE = {
- isa = PBXGroup;
- children = (
- F7B1FBB01E72E3D1001781FE ,
- F7B1FBBF1E72E3D1001781FE ,
- F7B1FBC01E72E3D1001781FE ,
- F7B1FBC11E72E3D1001781FE ,
- F7B1FBC21E72E3D1001781FE ,
- F7B1FBC31E72E3D1001781FE ,
- );
- path = SwiftWebVC;
- sourceTree = "<group>";
- };
- F7B1FBB01E72E3D1001781FE = {
- isa = PBXGroup;
- children = (
- F7B1FBB11E72E3D1001781FE ,
- );
- path = Resources;
- sourceTree = "<group>";
- };
- F7B2DEEB1F976785007CF4D2 = {
- isa = PBXGroup;
- children = (
- F7B2DEEC1F976785007CF4D2 ,
- F7B2DEEE1F976785007CF4D2 ,
- F7B2DEEF1F976785007CF4D2 ,
- );
- path = NYMnemonic;
- sourceTree = "<group>";
- };
- F7B2DEEC1F976785007CF4D2 = {
- isa = PBXGroup;
- children = (
- F7B2DEED1F976785007CF4D2 ,
- );
- path = languages;
- sourceTree = "<group>";
- };
- F7B4F1C51F44356F00B53B42 = {
- isa = PBXGroup;
- children = (
- F73B4EAC1F470D9100BBEE4B ,
- F7B4F1C71F44356F00B53B42 ,
- F7B4F1C81F44356F00B53B42 ,
- );
- path = NCUchardet;
- sourceTree = "<group>";
- };
- F7BAAD951ED5A63D00B7EAD4 = {
- isa = PBXGroup;
- children = (
- F7BAADB41ED5A87C00B7EAD4 ,
- F7BAADB51ED5A87C00B7EAD4 ,
- );
- path = Database;
- sourceTree = "<group>";
- };
- F7BE6E2A1D2D5C3B00106933 = {
- isa = PBXGroup;
- children = (
- F7BE6E2B1D2D5C3B00106933 ,
- F7BE6E2C1D2D5C3B00106933 ,
- );
- path = QuickActions;
- sourceTree = "<group>";
- };
- F7BFCCBD1B68C21900548E76 = {
- isa = PBXGroup;
- children = (
- F7BFCCC01B68C21900548E76 ,
- F7BFCCC11B68C21900548E76 ,
- F777F0301C29717F00CE81CB ,
- F777F0311C29717F00CE81CB ,
- );
- path = "ManageLocation+ManageAsset";
- sourceTree = "<group>";
- };
- F7BFFA621A24D7300044ED85 = {
- isa = PBXGroup;
- children = (
- F75ADF441DC75FFE008A7347 ,
- F7BF1B3F1D51E893000854F6 ,
- F7BF1B401D51E893000854F6 ,
- F7B3A4ED1E97818A000DACE8 ,
- );
- path = Login;
- sourceTree = "<group>";
- };
- F7BFFA991A24D7BB0044ED85 = {
- isa = PBXGroup;
- children = (
- F76C3B871C638A4C00DC4301 ,
- F70BFC7320E0FA7C00C67599 ,
- F76C3B881C638A4C00DC4301 ,
- F7A54C341C6267B500E2C8BF ,
- F7A54C351C6267B500E2C8BF ,
- F76C3B831C6388BC00DC4301 ,
- F76C3B841C6388BC00DC4301 ,
- F7514EDA1C7B1336008F3338 ,
- F7514EDB1C7B1336008F3338 ,
- F7053E3C1C639DF500741EA5 ,
- F7053E3D1C639DF500741EA5 ,
- F78071071EDAB65800EAFFF6 ,
- F78071081EDAB65800EAFFF6 ,
- F73049B81CB567F000C7C320 ,
- F73049B91CB567F000C7C320 ,
- );
- path = Utility;
- sourceTree = "<group>";
- };
- F7C0F46D1C8880540059EC54 = {
- isa = PBXGroup;
- children = (
- F7F8D7191ED6183000E711F3 ,
- F7F8D71A1ED6183000E711F3 ,
- F7F8D71B1ED6183000E711F3 ,
- F78BFEDE1D31126B00E513CF ,
- F7C0F46E1C8880540059EC54 ,
- F7C0F46F1C8880540059EC54 ,
- F7296A661C8880ED001A7809 ,
- F76F23321ED4600700C40023 ,
- );
- path = Share;
- sourceTree = "<group>";
- };
- F7C1CDD91E6DFC6F005D92BE = {
- isa = PBXGroup;
- children = (
- F7C742D31E7BD36600D9C973 ,
- F710E80C1EF95C9C00DC2427 ,
- F700222B1EC479840080073F ,
- F72D1002210B67CE009C96B7 ,
- F73CB5771ED46807005F2A5A ,
- F76B3CCD1EAE01BD00921AC9 ,
- F76F23331ED4603700C40023 ,
- );
- path = Brand;
- sourceTree = "<group>";
- };
- F7C5259A1E3B441D00FFE02C = {
- isa = PBXGroup;
- children = (
- F7C5259F1E3B48B700FFE02C ,
- F7C525A11E3B6DA800FFE02C ,
- );
- name = Notification;
- sourceTree = "<group>";
- };
- F7C742D31E7BD36600D9C973 = {
- isa = PBXGroup;
- children = (
- F7C742C01E7BD01F00D9C973 ,
- F7C742D01E7BD35B00D9C973 ,
- F771E3FB20E23A8700AFB62D ,
- F7B7ED3A21133A4300C89FFA ,
- F771E3FC20E23A8800AFB62D ,
- F7B7ED3B21133A6000C89FFA ,
- F7496B81208F5651004B299C ,
- F7496B83208F5652004B299C ,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- F7CA1EBB20E7E3FE002CC65E = {
- isa = PBXGroup;
- children = (
- F7CA1EBC20E7E3FE002CC65E ,
- F7CA1EBD20E7E3FE002CC65E ,
- F7CA1EBE20E7E3FE002CC65E ,
- F7CA1EBF20E7E3FE002CC65E ,
- F7CA1EC020E7E3FE002CC65E ,
- F7CA1EC120E7E3FE002CC65E ,
- F7CA1EC220E7E3FE002CC65E ,
- F7CA1EC320E7E3FE002CC65E ,
- F7CA1EC420E7E3FE002CC65E ,
- F7CA1EC520E7E3FE002CC65E ,
- F7CA1EC620E7E3FE002CC65E ,
- F7CA1EC720E7E3FE002CC65E ,
- F7CA1EC820E7E3FE002CC65E ,
- F7CA1EC920E7E3FE002CC65E ,
- F7CA1ECA20E7E3FE002CC65E ,
- F7CA1ECB20E7E3FE002CC65E ,
- F7CA1ECC20E7E3FE002CC65E ,
- F7CA1ECD20E7E3FE002CC65E ,
- F7CA1ECE20E7E3FE002CC65E ,
- F7CA1ECF20E7E3FE002CC65E ,
- );
- path = PKDownloadButton;
- sourceTree = "<group>";
- };
- F7D423151F0596AC009C9782 = {
- isa = PBXGroup;
- children = (
- F7D423161F0596AC009C9782 ,
- F7D423171F0596AC009C9782 ,
- F7D423181F0596AC009C9782 ,
- F7D423191F0596AC009C9782 ,
- F7D4231A1F0596AC009C9782 ,
- F7D4231B1F0596AC009C9782 ,
- F7D4231C1F0596AC009C9782 ,
- F7D4231D1F0596AC009C9782 ,
- F7D4231E1F0596AC009C9782 ,
- F7D4231F1F0596AC009C9782 ,
- F7D423201F0596AC009C9782 ,
- F7D423211F0596AC009C9782 ,
- F7D423221F0596AC009C9782 ,
- F7D423231F0596AC009C9782 ,
- F7D423241F0596AC009C9782 ,
- F7D423251F0596AC009C9782 ,
- F7D423261F0596AC009C9782 ,
- F7D423271F0596AC009C9782 ,
- F7D423281F0596AC009C9782 ,
- F7D423291F0596AC009C9782 ,
- F7D4232A1F0596AC009C9782 ,
- F7D4232B1F0596AC009C9782 ,
- F7D4232C1F0596AC009C9782 ,
- F7D4232D1F0596AC009C9782 ,
- F7D4232E1F0596AC009C9782 ,
- F7D4232F1F0596AC009C9782 ,
- F7D423301F0596AC009C9782 ,
- F7D423311F0596AC009C9782 ,
- F7D423321F0596AC009C9782 ,
- );
- path = Graphics;
- sourceTree = "<group>";
- };
- F7D423501F0596C6009C9782 = {
- isa = PBXGroup;
- children = (
- F7D423511F0596C6009C9782 ,
- F7D423521F0596C6009C9782 ,
- F7D423531F0596C6009C9782 ,
- F7D423541F0596C6009C9782 ,
- F7D423551F0596C6009C9782 ,
- F7D423561F0596C6009C9782 ,
- F7D423571F0596C6009C9782 ,
- F7D423581F0596C6009C9782 ,
- F7D423591F0596C6009C9782 ,
- F7D4235A1F0596C6009C9782 ,
- F7D4235B1F0596C6009C9782 ,
- F7D4235C1F0596C6009C9782 ,
- F7D4235D1F0596C6009C9782 ,
- F7D4235E1F0596C6009C9782 ,
- F7D4235F1F0596C6009C9782 ,
- F7D423601F0596C6009C9782 ,
- F7D423611F0596C6009C9782 ,
- F7D423621F0596C6009C9782 ,
- F7D423631F0596C6009C9782 ,
- F7D423641F0596C6009C9782 ,
- F7D423651F0596C6009C9782 ,
- F7D423661F0596C6009C9782 ,
- F7D423671F0596C6009C9782 ,
- F7D423681F0596C6009C9782 ,
- F7D423691F0596C6009C9782 ,
- F7D4236A1F0596C6009C9782 ,
- F7D4236B1F0596C6009C9782 ,
- F7D4236C1F0596C6009C9782 ,
- F7D4236D1F0596C6009C9782 ,
- F7D4236E1F0596C6009C9782 ,
- F7D4236F1F0596C6009C9782 ,
- F7D423701F0596C6009C9782 ,
- F7D423711F0596C6009C9782 ,
- F7D423721F0596C6009C9782 ,
- F7D423731F0596C6009C9782 ,
- F7D423741F0596C6009C9782 ,
- F7D423751F0596C6009C9782 ,
- F7D423761F0596C6009C9782 ,
- F7D423771F0596C6009C9782 ,
- F7D423781F0596C6009C9782 ,
- );
- path = Sources;
- sourceTree = "<group>";
- };
- F7D423A31F063B81009C9782 = {
- isa = PBXGroup;
- children = (
- F7D423A41F063B81009C9782 ,
- F7D423B91F063B81009C9782 ,
- F7D423BA1F063B81009C9782 ,
- F7D423BB1F063B81009C9782 ,
- F7D423BC1F063B81009C9782 ,
- F7D423BD1F063B81009C9782 ,
- F7D423BE1F063B81009C9782 ,
- F7D423BF1F063B81009C9782 ,
- F7D423C01F063B81009C9782 ,
- F7D423C11F063B81009C9782 ,
- F7D423C21F063B81009C9782 ,
- F7D423C31F063B81009C9782 ,
- F7D423C41F063B81009C9782 ,
- F7D423C51F063B81009C9782 ,
- F7D423C61F063B81009C9782 ,
- F7D423C71F063B81009C9782 ,
- F7D423C81F063B81009C9782 ,
- F7D423C91F063B81009C9782 ,
- F7D423CA1F063B81009C9782 ,
- F7D423CB1F063B81009C9782 ,
- F7D423CC1F063B81009C9782 ,
- F7D423CD1F063B81009C9782 ,
- F7D423CE1F063B81009C9782 ,
- F7D423CF1F063B81009C9782 ,
- F7D423D01F063B81009C9782 ,
- F7D423D11F063B81009C9782 ,
- F7D423D21F063B81009C9782 ,
- F7D423D31F063B81009C9782 ,
- F7D423D41F063B81009C9782 ,
- F7D423D51F063B81009C9782 ,
- F7D423D61F063B82009C9782 ,
- F7D423D71F063B82009C9782 ,
- F7D423D81F063B82009C9782 ,
- F7D423D91F063B82009C9782 ,
- F7D423DA1F063B82009C9782 ,
- F7D423DB1F063B82009C9782 ,
- F7D423DC1F063B82009C9782 ,
- F7D423DD1F063B82009C9782 ,
- F7D423DE1F063B82009C9782 ,
- F7D423DF1F063B82009C9782 ,
- F7D423E01F063B82009C9782 ,
- F7D423E11F063B82009C9782 ,
- F7D423E21F063B82009C9782 ,
- F7D423E31F063B82009C9782 ,
- F7D423E41F063B82009C9782 ,
- F7D423E51F063B82009C9782 ,
- F7D423E61F063B82009C9782 ,
- F7D423E71F063B82009C9782 ,
- F7D423E81F063B82009C9782 ,
- F7D423E91F063B82009C9782 ,
- F7D423EA1F063B82009C9782 ,
- );
- path = CTAssetsPickerController;
- sourceTree = "<group>";
- };
- F7D423A41F063B81009C9782 = {
- isa = PBXGroup;
- children = (
- F7D423A51F063B81009C9782 ,
- F7D423A61F063B81009C9782 ,
- F7D423A71F063B81009C9782 ,
- F7D423A81F063B81009C9782 ,
- F7D423A91F063B81009C9782 ,
- F7D423AA1F063B81009C9782 ,
- F7D423AB1F063B81009C9782 ,
- F7D423AC1F063B81009C9782 ,
- F7D423AD1F063B81009C9782 ,
- F7D423AE1F063B81009C9782 ,
- F7D423AF1F063B81009C9782 ,
- F7D423B01F063B81009C9782 ,
- F7D423B11F063B81009C9782 ,
- F7D423B21F063B81009C9782 ,
- F7D423B31F063B81009C9782 ,
- F7D423B41F063B81009C9782 ,
- F7D423B51F063B81009C9782 ,
- F7D423B61F063B81009C9782 ,
- F7D423B71F063B81009C9782 ,
- F7D423B81F063B81009C9782 ,
- );
- path = Categories;
- sourceTree = "<group>";
- };
- F7DC5FD31F00F98B00A903C7 = {
- isa = PBXGroup;
- children = (
- F7DC5FE81F011EB700A903C7 ,
- F7DC5FE91F011EB700A903C7 ,
- F7DC5FEA1F011EB700A903C7 ,
- F7DC5FEB1F011EB700A903C7 ,
- );
- path = MGSwipeTableCell;
- sourceTree = "<group>";
- };
- F7DFE24E1EBDC3A400CF5202 = {
- isa = PBXGroup;
- children = (
- F7DFE24F1EBDC3A400CF5202 ,
- F7DFE2501EBDC3A400CF5202 ,
- );
- path = Realm;
- sourceTree = "<group>";
- };
- F7E9C41320F4CA870040CF18 = {
- isa = PBXGroup;
- children = (
- F7E9C41520F4CA870040CF18 ,
- F7E9C41820F4CA870040CF18 ,
- );
- path = Transfers;
- sourceTree = "<group>";
- };
- F7EC9CB921185F2000F1C5CE = {
- isa = PBXGroup;
- children = (
- F7EC9CBA21185F2000F1C5CE ,
- F7EC9CBB21185F2000F1C5CE ,
- );
- path = Media;
- sourceTree = "<group>";
- };
- F7F54CAC1E5B143100E19C62 = {
- isa = PBXGroup;
- children = (
- F72AAEC11E5C60C700BB17E1 ,
- F73CC0571E813DFF006E3047 ,
- F7D423A31F063B81009C9782 ,
- F7F54CAD1E5B14C700E19C62 ,
- F7B4F1C51F44356F00B53B42 ,
- F762CB7B1EACB81000B38484 ,
- F7B1FBAF1E72E3D1001781FE ,
- F762CB8B1EACB84400B38484 ,
- F762CB1C1EACB7D400B38484 ,
- F762CA9F1EACB66200B38484 ,
- );
- path = Library;
- sourceTree = "<group>";
- };
- F7F54CAD1E5B14C700E19C62 = {
- isa = PBXGroup;
- children = (
- F7F54CAE1E5B14C700E19C62 ,
- F7F54CD01E5B14C700E19C62 ,
- F7F54CD11E5B14C700E19C62 ,
- F7F54CD21E5B14C700E19C62 ,
- F7F54CD71E5B14C700E19C62 ,
- F7F54CD81E5B14C700E19C62 ,
- F7F54CD91E5B14C700E19C62 ,
- F7F54CDA1E5B14C700E19C62 ,
- F7F54CDB1E5B14C700E19C62 ,
- F7F54CDC1E5B14C700E19C62 ,
- F7F54CDD1E5B14C700E19C62 ,
- F7F54CDE1E5B14C700E19C62 ,
- F7F54CDF1E5B14C700E19C62 ,
- F7F54CE01E5B14C700E19C62 ,
- F7F54CE11E5B14C700E19C62 ,
- F7F54CE21E5B14C700E19C62 ,
- F7F54CE31E5B14C700E19C62 ,
- F7F54CE41E5B14C700E19C62 ,
- );
- path = MWPhotoBrowser;
- sourceTree = "<group>";
- };
- F7F54CAE1E5B14C700E19C62 = {
- isa = PBXGroup;
- children = (
- F7F54CAF1E5B14C700E19C62 ,
- F7F54CB01E5B14C700E19C62 ,
- F7F54CB11E5B14C700E19C62 ,
- F7F54CB21E5B14C700E19C62 ,
- F7F54CB31E5B14C700E19C62 ,
- F7F54CB41E5B14C700E19C62 ,
- F7F54CB51E5B14C700E19C62 ,
- F7F54CB61E5B14C700E19C62 ,
- F7F54CB71E5B14C700E19C62 ,
- F7F54CB81E5B14C700E19C62 ,
- F7F54CB91E5B14C700E19C62 ,
- F7F54CBA1E5B14C700E19C62 ,
- F7F54CBB1E5B14C700E19C62 ,
- F7F54CBC1E5B14C700E19C62 ,
- F7F54CBD1E5B14C700E19C62 ,
- F7F54CBE1E5B14C700E19C62 ,
- F7F54CBF1E5B14C700E19C62 ,
- F7F54CC01E5B14C700E19C62 ,
- F7F54CC11E5B14C700E19C62 ,
- F7F54CC21E5B14C700E19C62 ,
- F7F54CC31E5B14C700E19C62 ,
- F7F54CC41E5B14C700E19C62 ,
- F7F54CC51E5B14C700E19C62 ,
- F7F54CC61E5B14C700E19C62 ,
- F7F54CC71E5B14C700E19C62 ,
- F7F54CC81E5B14C700E19C62 ,
- F7F54CC91E5B14C700E19C62 ,
- F7F54CCA1E5B14C700E19C62 ,
- F7F54CCB1E5B14C700E19C62 ,
- F7F54CCC1E5B14C700E19C62 ,
- F7F54CCD1E5B14C700E19C62 ,
- F7F54CCE1E5B14C700E19C62 ,
- F7F54CCF1E5B14C700E19C62 ,
- );
- path = Assets;
- sourceTree = "<group>";
- };
- F7F67B9F1A24D27800EE80DA = {
- isa = PBXGroup;
- children = (
- F7F67BAA1A24D27800EE80DA ,
- F7F67BAB1A24D27800EE80DA ,
- F7C0F46D1C8880540059EC54 ,
- F771E3D120E2392D00AFB62D ,
- F72D100D210B6B17009C96B7 ,
- F7FC7D651DC1F98700BB2C6A ,
- F7FC7D541DC1F93700BB2C6A ,
- F771E3D020E2392D00AFB62D ,
- F72D100C210B6B16009C96B7 ,
- );
- sourceTree = "<group>";
- };
- F7F67BAA1A24D27800EE80DA = {
- isa = PBXGroup;
- children = (
- F70F02A81C889183008DAB36 ,
- F7A377131EB2364A002856D3 ,
- F70022561EC4C9100080073F ,
- F7A582D71A24DAB500E903D7 ,
- F7A582D61A24DAB500E903D7 ,
- F7C8C1901B482CEA0048180E ,
- F7F67BB81A24D27800EE80DA ,
- F70211F31BAC56E9003FC03E ,
- F7C1CDD91E6DFC6F005D92BE ,
- F79630EC215526B60015EEA5 ,
- F7B0C1701EE8397E0033AC24 ,
- F720E02A1E48C74C001A4B9E ,
- F7A321621E9E37960069AD1B ,
- F7BAAD951ED5A63D00B7EAD4 ,
- F7A3214D1E9E2A070069AD1B ,
- F7F54CAC1E5B143100E19C62 ,
- F7BFFA621A24D7300044ED85 ,
- F7BFCCBD1B68C21900548E76 ,
- F7EC9CB921185F2000F1C5CE ,
- F7A321891E9E42B20069AD1B ,
- F7F9E3451BC26B19004B9223 ,
- F74D3DB81BAC1941000BAE4B ,
- F7C5259A1E3B441D00FFE02C ,
- F7FCFFD51D70798C000E6E29 ,
- F7BE6E2A1D2D5C3B00106933 ,
- F7FE125B1BAC03FB0041924B ,
- F7ACE4281BAC0268006C0017 ,
- F728CE741BF6322C00E69702 ,
- F758B41E212C516300515F55 ,
- F7169A161EE590930086BD69 ,
- F7B0C0CA1EE7E7750033AC24 ,
- F73D71561F26739100E233EB ,
- F7E9C41320F4CA870040CF18 ,
- F70784811A2C8A0D00AC9FFF ,
- F7BFFA991A24D7BB0044ED85 ,
- );
- path = iOSClient;
- sourceTree = "<group>";
- };
- F7F67BAB1A24D27800EE80DA = {
- isa = PBXGroup;
- children = (
- F72B60941A24F04E004EF66F ,
- F75CDBF51DF063AD00116AD0 ,
- F774DF0C1FCC26BD002AF9FC ,
- F774DF0D1FCC26BD002AF9FC ,
- F774DF0E1FCC26BE002AF9FC ,
- F7229B491DF71BB300E8C4E7 ,
- F7F0617A1BAACDD300846525 ,
- F77D49A71DC238E500CDC568 ,
- F7F67BAD1A24D27800EE80DA ,
- F7D154271E2392A300202FD9 ,
- F76344751BF259A800188725 ,
- F76344761BF259A800188725 ,
- );
- name = "Supporting Files";
- path = iOSClient;
- sourceTree = "<group>";
- };
- F7F9E3451BC26B19004B9223 = {
- isa = PBXGroup;
- children = (
- F7D02A461C5F9E4400D6F972 ,
- F7D02A471C5F9E4400D6F972 ,
- F7D02A481C5F9E4400D6F972 ,
- );
- path = Move;
- sourceTree = "<group>";
- };
- F7FC7D541DC1F93700BB2C6A = {
- isa = PBXGroup;
- children = (
- F75EDFBE1E8C116D00E6F369 ,
- F75EDFBC1E8C112F00E6F369 ,
- 08EA97441E6554FC004C83FA ,
- 08EA97451E6554FC004C83FA ,
- 08EA97461E6554FC004C83FA ,
- 08EA97471E6554FC004C83FA ,
- 08DC3BD41E64727E00F036D3 ,
- F7FC7D551DC1F93800BB2C6A ,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- F7FC7D651DC1F98700BB2C6A = {
- isa = PBXGroup;
- children = (
- F7CE8AFA1DC1F8D8009CAE48 ,
- F7CE8AFB1DC1F8D8009CAE48 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- F7FCFFD51D70798C000E6E29 = {
- isa = PBXGroup;
- children = (
- F7FCFFD61D70798C000E6E29 ,
- F7FCFFDD1D707B83000E6E29 ,
- F7FCFFDE1D707B83000E6E29 ,
- );
- path = PeekPop;
- sourceTree = "<group>";
- };
- F7FE125B1BAC03FB0041924B = {
- isa = PBXGroup;
- children = (
- F7FE125C1BAC03FB0041924B ,
- F7FE125D1BAC03FB0041924B ,
- F7F801001D98205A007537BC ,
- F7F801011D98205A007537BC ,
- F7F878AD1FB9E3B900599E4F ,
- F72D1006210B6882009C96B7 ,
- F72D1005210B6882009C96B7 ,
- F70CAE381F8CF31A008125FD ,
- F70CAE391F8CF31A008125FD ,
- );
- path = Security;
- sourceTree = "<group>";
- };
- F71459B41D12E3B700CAFEEC = {
- isa = PBXNativeTarget;
- buildConfigurationList = F7145A251D12E3B700CAFEEC ;
- buildPhases = (
- F71459B51D12E3B700CAFEEC ,
- F7145A141D12E3B700CAFEEC ,
- F7145A181D12E3B700CAFEEC ,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Share;
- productName = "Share Ext";
- productReference = F7CE8AFB1DC1F8D8009CAE48 ;
- productType = "com.apple.product-type.app-extension";
- };
- F72D100B210B6B16009C96B7 = {
- isa = PBXNativeTarget;
- buildConfigurationList = F72D1014210B6B17009C96B7 ;
- buildPhases = (
- F72D1008210B6B16009C96B7 ,
- F72D1009210B6B16009C96B7 ,
- F72D100A210B6B16009C96B7 ,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "Notification Service Extension";
- productName = "Notification Service Extension";
- productReference = F72D100C210B6B16009C96B7 ;
- productType = "com.apple.product-type.app-extension";
- };
- F771E3CF20E2392D00AFB62D = {
- isa = PBXNativeTarget;
- buildConfigurationList = F771E3EF20E2392E00AFB62D ;
- buildPhases = (
- F771E3CC20E2392D00AFB62D ,
- F771E3CD20E2392D00AFB62D ,
- F771E3CE20E2392D00AFB62D ,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "File Provider Extension";
- productName = "File Provider Extension";
- productReference = F771E3D020E2392D00AFB62D ;
- productType = "com.apple.product-type.app-extension";
- };
- F77B0DEB1D118A16002130FE = {
- isa = PBXNativeTarget;
- buildConfigurationList = F77B0F9A1D118A16002130FE ;
- buildPhases = (
- F77B0DEF1D118A16002130FE ,
- F77B0EDC1D118A16002130FE ,
- F77B0EE91D118A16002130FE ,
- F77B0F981D118A16002130FE ,
- F73B02C01DC0F1C900EC2C33 ,
- F7A377371EB24469002856D3 ,
- F75A3FFF1EBCB55B00B213E8 ,
- F75A40001EBCB82B00B213E8 ,
- );
- buildRules = (
- );
- dependencies = (
- F7145A321D12E65F00CAFEEC ,
- F771E3EA20E2392E00AFB62D ,
- F72D1012210B6B17009C96B7 ,
- );
- name = Nextcloud;
- productName = "Crypto Cloud";
- productReference = F7CE8AFA1DC1F8D8009CAE48 ;
- productType = "com.apple.product-type.application";
- };
- F7F67BA01A24D27800EE80DA = {
- isa = PBXProject;
- attributes = {
- LastSwiftUpdateCheck = 0940;
- LastUpgradeCheck = 1000;
- ORGANIZATIONNAME = TWS;
- TargetAttributes = {
- F71459B41D12E3B700CAFEEC = {
- DevelopmentTeam = 6JLRKY9ZV7;
- LastSwiftMigration = 1000;
- SystemCapabilities = {
- com.apple.ApplicationGroups.iOS = {
- enabled = 1;
- };
- com.apple.iCloud = {
- enabled = 0;
- };
- };
- };
- F72D100B210B6B16009C96B7 = {
- CreatedOnToolsVersion = 9.4.1;
- DevelopmentTeam = 6JLRKY9ZV7;
- LastSwiftMigration = 1000;
- ProvisioningStyle = Automatic;
- SystemCapabilities = {
- com.apple.ApplicationGroups.iOS = {
- enabled = 1;
- };
- com.apple.Keychain = {
- enabled = 1;
- };
- };
- };
- F771E3CF20E2392D00AFB62D = {
- CreatedOnToolsVersion = 9.4.1;
- DevelopmentTeam = 6JLRKY9ZV7;
- LastSwiftMigration = 1000;
- ProvisioningStyle = Automatic;
- };
- F77B0DEB1D118A16002130FE = {
- DevelopmentTeam = 6JLRKY9ZV7;
- LastSwiftMigration = 1000;
- ProvisioningStyle = Automatic;
- SystemCapabilities = {
- com.apple.Push = {
- enabled = 1;
- };
- com.apple.iCloud = {
- enabled = 1;
- };
- };
- };
- };
- };
- buildConfigurationList = F7F67BA31A24D27800EE80DA ;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- de,
- fr,
- "pt-BR",
- ru,
- it,
- tr,
- "es-MX",
- "nb-NO",
- pl,
- sv,
- es,
- is,
- nl,
- "sk-SK",
- "en-GB",
- "zh-Hans",
- "ka-GE",
- hu,
- "zh-Hant-TW",
- sr,
- "es-CL",
- "es-CO",
- "es-CR",
- "es-DO",
- "es-EC",
- "es-GT",
- "es-HN",
- "es-NI",
- "es-PA",
- "es-PE",
- "es-PR",
- "es-PY",
- "es-SV",
- "es-UY",
- "cs-CZ",
- ko,
- "es-419",
- "pt-PT",
- );
- mainGroup = F7F67B9F1A24D27800EE80DA;
- productRefGroup = F7F67B9F1A24D27800EE80DA;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- F77B0DEB1D118A16002130FE ,
- F71459B41D12E3B700CAFEEC ,
- F771E3CF20E2392D00AFB62D ,
- F72D100B210B6B16009C96B7 ,
- );
- };
- F7145A181D12E3B700CAFEEC = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F78BFEE11D31126B00E513CF ,
- F7145A1A1D12E3B700CAFEEC ,
- F7145A1C1D12E3B700CAFEEC ,
- F7145A1D1D12E3B700CAFEEC ,
- F7145A211D12E3B700CAFEEC ,
- F7F8D71D1ED6183000E711F3 ,
- F7145A231D12E3B700CAFEEC ,
- F700222D1EC479840080073F ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F72D100A210B6B16009C96B7 = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F771E3CE20E2392D00AFB62D = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F77B0EE91D118A16002130FE = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F75ADF451DC75FFE008A7347 ,
- F7F54CED1E5B14C700E19C62 ,
- F7D4234D1F0596AC009C9782 ,
- F7F54CF41E5B14C700E19C62 ,
- F7F54D041E5B14C800E19C62 ,
- F7F54CF51E5B14C700E19C62 ,
- F77D49A91DC238E500CDC568 ,
- F7F54CF91E5B14C700E19C62 ,
- F7D4233D1F0596AC009C9782 ,
- F73B4EF21F470D9100BBEE4B ,
- F700222C1EC479840080073F ,
- F758B45A212C564000515F55 ,
- F77B0EFE1D118A16002130FE ,
- F7D4246E1F063B82009C9782 ,
- F762CB991EACB84400B38484 ,
- F7F54CF81E5B14C700E19C62 ,
- F77B0F0E1D118A16002130FE ,
- F73B4EEE1F470D9100BBEE4B ,
- F7D4233B1F0596AC009C9782 ,
- F7F54CF31E5B14C700E19C62 ,
- F7D423441F0596AC009C9782 ,
- F77B0F181D118A16002130FE ,
- F7F54CFA1E5B14C700E19C62 ,
- F7FCFFD81D70798C000E6E29 ,
- F7F54CF61E5B14C700E19C62 ,
- F7D423371F0596AC009C9782 ,
- F7D423401F0596AC009C9782 ,
- F7D423391F0596AC009C9782 ,
- F7D423351F0596AC009C9782 ,
- F7B1FBC41E72E3D1001781FE ,
- F7D4234E1F0596AC009C9782 ,
- F77B0F2F1D118A16002130FE ,
- F7F54D001E5B14C700E19C62 ,
- F7F54CFE1E5B14C700E19C62 ,
- F7659A371DC0B737004860C4 ,
- F7F54D031E5B14C800E19C62 ,
- F7F54CE81E5B14C700E19C62 ,
- F7D4234B1F0596AC009C9782 ,
- F762CB971EACB84400B38484 ,
- F7169A1E1EE590930086BD69 ,
- F73D71641F2674A400E233EB ,
- F7226EDC1EE4089300EBECB1 ,
- F7D423471F0596AC009C9782 ,
- F7D423431F0596AC009C9782 ,
- F7D4233C1F0596AC009C9782 ,
- F7D423411F0596AC009C9782 ,
- F77B0F481D118A16002130FE ,
- F7D4233E1F0596AC009C9782 ,
- F762CB981EACB84400B38484 ,
- F7D423361F0596AC009C9782 ,
- F7F54CF71E5B14C700E19C62 ,
- F710E8111EF95C9C00DC2427 ,
- F77B0F4D1D118A16002130FE ,
- F7F54D021E5B14C700E19C62 ,
- F7F54CEA1E5B14C700E19C62 ,
- F732B3371E8045A1002B7D75 ,
- F7F54CF11E5B14C700E19C62 ,
- F762CB1B1EACB66200B38484 ,
- F7CA1ED520E7E3FE002CC65E ,
- F762CB9A1EACB84400B38484 ,
- F77B0F551D118A16002130FE ,
- F77B0F571D118A16002130FE ,
- F7F54CEE1E5B14C700E19C62 ,
- F73B4EF31F470D9100BBEE4B ,
- F7B2DEF11F976859007CF4D2 ,
- F7F54D051E5B14C800E19C62 ,
- F7F54D011E5B14C700E19C62 ,
- F7F54CE71E5B14C700E19C62 ,
- F7D423461F0596AC009C9782 ,
- F7F54CE61E5B14C700E19C62 ,
- F7F54CEF1E5B14C700E19C62 ,
- F7F54CFF1E5B14C700E19C62 ,
- F774DF0F1FCC26BE002AF9FC ,
- F77B0F611D118A16002130FE ,
- F77B0F631D118A16002130FE ,
- F7D4234C1F0596AC009C9782 ,
- F7F54CFB1E5B14C700E19C62 ,
- F76F23341ED4603700C40023 ,
- F77B0F671D118A16002130FE ,
- F7C525A21E3B6DA800FFE02C ,
- F7F54CEB1E5B14C700E19C62 ,
- F72D1003210B67CE009C96B7 ,
- F762CB951EACB84400B38484 ,
- F7F54CF01E5B14C700E19C62 ,
- F73B4EF01F470D9100BBEE4B ,
- F7F54CEC1E5B14C700E19C62 ,
- F73B4F151F470D9100BBEE4B ,
- F7F54CF21E5B14C700E19C62 ,
- F7D4233A1F0596AC009C9782 ,
- F7D423341F0596AC009C9782 ,
- F7D4234F1F0596AC009C9782 ,
- F7F54CE51E5B14C700E19C62 ,
- F7D423381F0596AC009C9782 ,
- F7F54CFC1E5B14C700E19C62 ,
- F77B0F7D1D118A16002130FE ,
- F7D423491F0596AC009C9782 ,
- F7D423421F0596AC009C9782 ,
- F7F54CE91E5B14C700E19C62 ,
- F77B0F8A1D118A16002130FE ,
- F77B0F8C1D118A16002130FE ,
- F73B4EF41F470D9100BBEE4B ,
- F7D423451F0596AC009C9782 ,
- F774DF101FCC26BE002AF9FC ,
- F7D423481F0596AC009C9782 ,
- F7D4233F1F0596AC009C9782 ,
- F73B4EF11F470D9100BBEE4B ,
- F75797AE1E81356C00187A1B ,
- F774DF111FCC26BE002AF9FC ,
- F762CB961EACB84400B38484 ,
- F7D4234A1F0596AC009C9782 ,
- F7D423331F0596AC009C9782 ,
- F7F54CFD1E5B14C700E19C62 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F73B02C01DC0F1C900EC2C33 = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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\"";
- };
- F75A40001EBCB82B00B213E8 = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "bash \"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework/strip-frameworks.sh\"";
- };
- F7A377371EB24469002856D3 = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PROJECT_DIR}/Libraries external/Fabric/Fabric.framework/run\" 52fe877f4a4ff58868da789df0b0eb915fd94ae1 3d6e5abfdc40776a4a8468ddf5910958596ccbccc341e19f7aaf0fbeb4ff6cf5\n";
- };
- F71459B51D12E3B700CAFEEC = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F71459B81D12E3B700CAFEEC ,
- F73CC0701E813DFF006E3047 ,
- F71459BA1D12E3B700CAFEEC ,
- F71459BC1D12E3B700CAFEEC ,
- F71459BD1D12E3B700CAFEEC ,
- F73CC06D1E813DFF006E3047 ,
- F70022C01EC4C9100080073F ,
- F71459C21D12E3B700CAFEEC ,
- F77EB6281EC08036003F814F ,
- F70022A21EC4C9100080073F ,
- F70022A51EC4C9100080073F ,
- F73CC0731E813DFF006E3047 ,
- F73CC06A1E813DFF006E3047 ,
- F73CC07C1E813DFF006E3047 ,
- F70022B71EC4C9100080073F ,
- F734E5891F019D860060CB77 ,
- F70BFC7520E0FA7D00C67599 ,
- F70022FF1EC4C9100080073F ,
- F78295311F962EFA00A572F5 ,
- F70022BA1EC4C9100080073F ,
- F70022ED1EC4C9100080073F ,
- F70022D51EC4C9100080073F ,
- F70022FC1EC4C9100080073F ,
- F7F878AF1FB9E3B900599E4F ,
- F70022E41EC4C9100080073F ,
- F71459C91D12E3B700CAFEEC ,
- F71459CD1D12E3B700CAFEEC ,
- F70022E11EC4C9100080073F ,
- F74E432720B5547700C2E54C ,
- F73CC0791E813DFF006E3047 ,
- F71459D21D12E3B700CAFEEC ,
- F71459D31D12E3B700CAFEEC ,
- F7F8D71C1ED6183000E711F3 ,
- F71459D51D12E3B700CAFEEC ,
- F732BA0B1D76DBA500E9878B ,
- F70022CF1EC4C9100080073F ,
- F71459E11D12E3B700CAFEEC ,
- F70022B11EC4C9100080073F ,
- F73CCE321DC13798007E38D8 ,
- F70022AE1EC4C9100080073F ,
- F70022EA1EC4C9100080073F ,
- F77EB62A1EC0B50A003F814F ,
- F70022D81EC4C9100080073F ,
- F70022E71EC4C9100080073F ,
- F70022C91EC4C9100080073F ,
- F71459F11D12E3B700CAFEEC ,
- F70022C31EC4C9100080073F ,
- F71459F71D12E3B700CAFEEC ,
- F7BAADC91ED5A87C00B7EAD4 ,
- F70022BD1EC4C9100080073F ,
- F780710A1EDAB65800EAFFF6 ,
- F70022A81EC4C9100080073F ,
- F70022AB1EC4C9100080073F ,
- F70022B41EC4C9100080073F ,
- F70022CC1EC4C9100080073F ,
- F70022DB1EC4C9100080073F ,
- F7145A041D12E3B700CAFEEC ,
- F73CC07F1E813DFF006E3047 ,
- F76B3CCF1EAE01BD00921AC9 ,
- F73CC0761E813DFF006E3047 ,
- F70022D21EC4C9100080073F ,
- F70022C61EC4C9100080073F ,
- F7BAADCC1ED5A87C00B7EAD4 ,
- F70022DE1EC4C9100080073F ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F72D1008210B6B16009C96B7 = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F72D103C210B777F009C96B7 ,
- F72D101A210B7473009C96B7 ,
- F72D100F210B6B17009C96B7 ,
- F72D103A210B769E009C96B7 ,
- F72D103D210B7796009C96B7 ,
- F72D101B210B74CA009C96B7 ,
- F72D103F210B77B8009C96B7 ,
- F72D103E210B77A5009C96B7 ,
- F72D1042210B783D009C96B7 ,
- F72D103B210B76A1009C96B7 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F771E3CC20E2392D00AFB62D = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7434B4820E2407000417916 ,
- F7434B3C20E2403D00417916 ,
- F771E3F720E239B500AFB62D ,
- F7434B3720E23FF200417916 ,
- F7434B5120E2409500417916 ,
- F7434B5720E2416800417916 ,
- F7434B3A20E2403500417916 ,
- F7434B6220E249F700417916 ,
- F7434B4A20E2407600417916 ,
- F7434B3B20E2403900417916 ,
- F7434B4B20E2408000417916 ,
- F7434B4C20E2408300417916 ,
- F7434B5920E241B600417916 ,
- F7434B5520E240A900417916 ,
- F7434B4120E2405200417916 ,
- F7434B3420E23FD700417916 ,
- F7434B4020E2404E00417916 ,
- F7434B5320E2409E00417916 ,
- F7434B4320E2405900417916 ,
- F771E3F920E239B500AFB62D ,
- F7434B4F20E2408E00417916 ,
- F7434B6120E2445C00417916 ,
- F7434B5A20E241BB00417916 ,
- F7434B3820E2400600417916 ,
- F7434B4620E2406900417916 ,
- F7434B6320E249FB00417916 ,
- F7434B5620E2412900417916 ,
- F7434B5C20E241D500417916 ,
- F7434B3E20E2404700417916 ,
- F7434B3D20E2404300417916 ,
- F7434B4420E2405C00417916 ,
- F7434B4520E2406400417916 ,
- F7434B5E20E241EC00417916 ,
- F771E3D320E2392D00AFB62D ,
- F7434B5B20E241D100417916 ,
- F7434B5D20E241E800417916 ,
- F7434B5020E2409100417916 ,
- F7434B5220E2409900417916 ,
- F771E3D520E2392D00AFB62D ,
- F7434B3620E23FE000417916 ,
- F771E3F320E239A600AFB62D ,
- F771E3D720E2392D00AFB62D ,
- F7434B4720E2406C00417916 ,
- F7434B4220E2405500417916 ,
- F7434B3F20E2404B00417916 ,
- F7434B6020E2445200417916 ,
- F7434B4920E2407300417916 ,
- F7434B5420E240A300417916 ,
- F7434B4E20E2408A00417916 ,
- F771E3F820E239B500AFB62D ,
- F7434B4D20E2408600417916 ,
- F7434B5820E241B100417916 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F77B0DEF1D118A16002130FE = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F70022D71EC4C9100080073F ,
- F7D424671F063B82009C9782 ,
- F70022A41EC4C9100080073F ,
- F762CAFD1EACB66200B38484 ,
- F77B0DF21D118A16002130FE ,
- F758B450212C516300515F55 ,
- F77B0DF41D118A16002130FE ,
- F7E9C41B20F4CA870040CF18 ,
- F73B4F0D1F470D9100BBEE4B ,
- F77B0DF51D118A16002130FE ,
- F762CB071EACB66200B38484 ,
- F7C525A01E3B48B700FFE02C ,
- F7F54D0E1E5B14C800E19C62 ,
- F7F54D091E5B14C800E19C62 ,
- F73B4F041F470D9100BBEE4B ,
- F73B4EEF1F470D9100BBEE4B ,
- F7B0C0CD1EE7E7750033AC24 ,
- F77B0DFF1D118A16002130FE ,
- F758B440212C516300515F55 ,
- F73B4F081F470D9100BBEE4B ,
- F758B43F212C516300515F55 ,
- F70022DA1EC4C9100080073F ,
- F790110E21415BF600D7B136 ,
- F7D4245C1F063B82009C9782 ,
- F70022A11EC4C9100080073F ,
- F762CB041EACB66200B38484 ,
- F73B4F0F1F470D9100BBEE4B ,
- F77B0E031D118A16002130FE ,
- F77B0E041D118A16002130FE ,
- F7D423881F0596C6009C9782 ,
- F73CCE301DC13798007E38D8 ,
- F758B44B212C516300515F55 ,
- F73B4EFE1F470D9100BBEE4B ,
- F758B442212C516300515F55 ,
- F7D4238A1F0596C6009C9782 ,
- F70022EC1EC4C9100080073F ,
- F7F54D061E5B14C800E19C62 ,
- F7A55420204EF8AF008468EC ,
- F762CB001EACB66200B38484 ,
- F732BA061D76CE1500E9878B ,
- F70022B01EC4C9100080073F ,
- F7B1FBC71E72E3D1001781FE ,
- F7DC5FEC1F011EB700A903C7 ,
- F7D423801F0596C6009C9782 ,
- F762CB061EACB66200B38484 ,
- F758B3E7212C4A6C00515F55 ,
- F762CB881EACB81000B38484 ,
- F7D4237F1F0596C6009C9782 ,
- F73F537F1E929C8500F8678D ,
- F7D424621F063B82009C9782 ,
- F73B4EF71F470D9100BBEE4B ,
- F7F54D0C1E5B14C800E19C62 ,
- F7D424631F063B82009C9782 ,
- F758B444212C516300515F55 ,
- F758B3E4212C4A6C00515F55 ,
- F7B1FBC61E72E3D1001781FE ,
- F7A5541F204EF8AF008468EC ,
- F7A321651E9E37960069AD1B ,
- F762CB0C1EACB66200B38484 ,
- F77B0E131D118A16002130FE ,
- F762CB861EACB81000B38484 ,
- F758B443212C516300515F55 ,
- F750374F1DBFA91A008FB480 ,
- F77B0E141D118A16002130FE ,
- F73B4F131F470D9100BBEE4B ,
- F7B0C1751EE839A30033AC24 ,
- F77B0E161D118A16002130FE ,
- F73B4F111F470D9100BBEE4B ,
- F7D424641F063B82009C9782 ,
- F738E8421F90FFD100F95C8E ,
- F73B4F091F470D9100BBEE4B ,
- F7D424711F063B82009C9782 ,
- F758B460212C56A400515F55 ,
- F762CB021EACB66200B38484 ,
- F77B0E1B1D118A16002130FE ,
- F70022CB1EC4C9100080073F ,
- F7CA1ED320E7E3FE002CC65E ,
- F762CB111EACB66200B38484 ,
- F762CB9B1EACB84400B38484 ,
- F7D423871F0596C6009C9782 ,
- F758B451212C516300515F55 ,
- F758B44D212C516300515F55 ,
- F758B3E2212C4A6C00515F55 ,
- F77B0E201D118A16002130FE ,
- F7B1FBCA1E72E3D1001781FE ,
- F7F54D0A1E5B14C800E19C62 ,
- F720E01F1E48C73E001A4B9E ,
- F762CB081EACB66200B38484 ,
- F73CC0721E813DFF006E3047 ,
- F73B4F101F470D9100BBEE4B ,
- F762CB0E1EACB66200B38484 ,
- F73B4F071F470D9100BBEE4B ,
- F77B0E221D118A16002130FE ,
- F70022C51EC4C9100080073F ,
- F7D6650720FF341600BFBA9E ,
- F77B0E231D118A16002130FE ,
- F762CAF81EACB66200B38484 ,
- F7CA1ED120E7E3FE002CC65E ,
- F75AE3C71E9D12900088BB09 ,
- F762CAFC1EACB66200B38484 ,
- F72D1007210B6882009C96B7 ,
- F70022D11EC4C9100080073F ,
- F73B4EF61F470D9100BBEE4B ,
- F7CA1ED420E7E3FE002CC65E ,
- F73B4F0B1F470D9100BBEE4B ,
- F762CAFE1EACB66200B38484 ,
- F77B0E301D118A16002130FE ,
- F7D423891F0596C6009C9782 ,
- F70022E91EC4C9100080073F ,
- F7D4246C1F063B82009C9782 ,
- F7D424601F063B82009C9782 ,
- F70022E31EC4C9100080073F ,
- F77B0E311D118A16002130FE ,
- F758B449212C516300515F55 ,
- F7D4246B1F063B82009C9782 ,
- F73B4F0E1F470D9100BBEE4B ,
- F78964AE1EBB576C00403E13 ,
- F7EC9CBC21185F2000F1C5CE ,
- F7D423831F0596C6009C9782 ,
- F73B4F171F470D9100BBEE4B ,
- F7D424721F063B82009C9782 ,
- F7D4237A1F0596C6009C9782 ,
- F73B4F121F470D9100BBEE4B ,
- F762CAFF1EACB66200B38484 ,
- F7A321AD1E9E6AD50069AD1B ,
- F710E8101EF95C9C00DC2427 ,
- F77B0E411D118A16002130FE ,
- F7D4245F1F063B82009C9782 ,
- F73CC0781E813DFF006E3047 ,
- F7A3218C1E9E42B30069AD1B ,
- F77B0E4C1D118A16002130FE ,
- F762CB191EACB66200B38484 ,
- F762CB0D1EACB66200B38484 ,
- F7F801031D98205A007537BC ,
- F77B0E4F1D118A16002130FE ,
- F7FCFFE01D707B83000E6E29 ,
- F7BAADC81ED5A87C00B7EAD4 ,
- F77B0E541D118A16002130FE ,
- F7A5541E204EF8AF008468EC ,
- F758B452212C516300515F55 ,
- F70022E61EC4C9100080073F ,
- F758B3E1212C4A6C00515F55 ,
- F762CB171EACB66200B38484 ,
- F758B44F212C516300515F55 ,
- F73CC0691E813DFF006E3047 ,
- F762CB1A1EACB66200B38484 ,
- F73B4EFC1F470D9100BBEE4B ,
- F762CB051EACB66200B38484 ,
- F7B4F1CB1F44356F00B53B42 ,
- F73B4EFB1F470D9100BBEE4B ,
- F73B4F061F470D9100BBEE4B ,
- F7D4237D1F0596C6009C9782 ,
- F758B44E212C516300515F55 ,
- F758B445212C516300515F55 ,
- F73B4EFA1F470D9100BBEE4B ,
- F7D4245D1F063B82009C9782 ,
- F7D4245E1F063B82009C9782 ,
- F762CAF91EACB66200B38484 ,
- F7BE6E2F1D2D5C3B00106933 ,
- F762CB101EACB66200B38484 ,
- F7D424691F063B82009C9782 ,
- F7D4237E1F0596C6009C9782 ,
- F7D424661F063B82009C9782 ,
- F7659A291DC0B726004860C4 ,
- F7D4237C1F0596C6009C9782 ,
- F7D424581F063B82009C9782 ,
- F73CC07E1E813DFF006E3047 ,
- F77B0E5F1D118A16002130FE ,
- F7F878AE1FB9E3B900599E4F ,
- F7D424611F063B82009C9782 ,
- F762CB141EACB66200B38484 ,
- F7B3A4EE1E97818A000DACE8 ,
- F73D71621F2673C200E233EB ,
- F77B0E631D118A16002130FE ,
- F73B4EF81F470D9100BBEE4B ,
- F73CCE261DC13788007E38D8 ,
- F7D4246F1F063B82009C9782 ,
- F73B4F051F470D9100BBEE4B ,
- F77B0E671D118A16002130FE ,
- F762CB121EACB66200B38484 ,
- F70BFC7420E0FA7D00C67599 ,
- F73CC06F1E813DFF006E3047 ,
- F7D424571F063B82009C9782 ,
- F73CC0751E813DFF006E3047 ,
- F750374D1DBFA91A008FB480 ,
- F7659A2E1DC0B72F004860C4 ,
- F7D423861F0596C6009C9782 ,
- F73B4EF51F470D9100BBEE4B ,
- F7D4246A1F063B82009C9782 ,
- F78071091EDAB65800EAFFF6 ,
- F76B3CCE1EAE01BD00921AC9 ,
- F7B1FBC91E72E3D1001781FE ,
- F762CB8A1EACB81000B38484 ,
- F7BF1B431D51E893000854F6 ,
- F70022FB1EC4C9100080073F ,
- F75037511DBFA91A008FB480 ,
- F762CAFA1EACB66200B38484 ,
- F70022B91EC4C9100080073F ,
- F762CB181EACB66200B38484 ,
- F73B4EF91F470D9100BBEE4B ,
- F77B0E8F1D118A16002130FE ,
- F7CA1ED720E7E3FE002CC65E ,
- F72AAECB1E5C60C700BB17E1 ,
- F77B0E921D118A16002130FE ,
- F758B44A212C516300515F55 ,
- F7659A391DC0B737004860C4 ,
- F7B1FBC81E72E3D1001781FE ,
- F7D424741F063B82009C9782 ,
- F77B0E981D118A16002130FE ,
- F762CB011EACB66200B38484 ,
- F755BD9B20594AC7008C5FBB ,
- F70022AD1EC4C9100080073F ,
- F7D424531F063B82009C9782 ,
- F77B0E9B1D118A16002130FE ,
- F7659A271DC0B726004860C4 ,
- F7169A1D1EE590930086BD69 ,
- F77B0EA61D118A16002130FE ,
- F7D424651F063B82009C9782 ,
- F70022C21EC4C9100080073F ,
- F70022BF1EC4C9100080073F ,
- F7CA1ED020E7E3FE002CC65E ,
- F73B4F011F470D9100BBEE4B ,
- F758B446212C516300515F55 ,
- F70022DD1EC4C9100080073F ,
- F73B4F001F470D9100BBEE4B ,
- F70022BC1EC4C9100080073F ,
- F73CC07B1E813DFF006E3047 ,
- F762CB031EACB66200B38484 ,
- F762CAF71EACB66200B38484 ,
- F70022E01EC4C9100080073F ,
- F758B43E212C516300515F55 ,
- F70022B31EC4C9100080073F ,
- F70022D41EC4C9100080073F ,
- F7D424731F063B82009C9782 ,
- F78964AD1EBB576C00403E13 ,
- F758B3E3212C4A6C00515F55 ,
- F758B44C212C516300515F55 ,
- F762CB151EACB66200B38484 ,
- F77B0EB61D118A16002130FE ,
- F758B447212C516300515F55 ,
- F7D4246D1F063B82009C9782 ,
- F762CB0A1EACB66200B38484 ,
- F7D4238C1F0596C6009C9782 ,
- F726EEEC1FED1C820030B9C8 ,
- F70CAE3A1F8CF31A008125FD ,
- F73B4F0C1F470D9100BBEE4B ,
- F762CAFB1EACB66200B38484 ,
- F762CB0F1EACB66200B38484 ,
- F7B2DEF01F976854007CF4D2 ,
- F762CB891EACB81000B38484 ,
- F7D423791F0596C6009C9782 ,
- F73B4EFF1F470D9100BBEE4B ,
- F7BAADCB1ED5A87C00B7EAD4 ,
- F7D424551F063B82009C9782 ,
- F7A321551E9E2A070069AD1B ,
- F73B4F031F470D9100BBEE4B ,
- F73B4F021F470D9100BBEE4B ,
- F7F54D0B1E5B14C800E19C62 ,
- F758B3E5212C4A6C00515F55 ,
- F7D423821F0596C6009C9782 ,
- F70022A71EC4C9100080073F ,
- F78964AF1EBB576C00403E13 ,
- F7CA1ED220E7E3FE002CC65E ,
- F7F54D0D1E5B14C800E19C62 ,
- F762CB0B1EACB66200B38484 ,
- F7169A1C1EE590930086BD69 ,
- F77B0EC61D118A16002130FE ,
- F758B3E6212C4A6C00515F55 ,
- F7DC5FED1F011EB700A903C7 ,
- F7D424541F063B82009C9782 ,
- F7D4238B1F0596C6009C9782 ,
- F70022B61EC4C9100080073F ,
- F7D423811F0596C6009C9782 ,
- F762CB131EACB66200B38484 ,
- F7CA1ED820E7E3FE002CC65E ,
- F758B441212C516300515F55 ,
- F7D4237B1F0596C6009C9782 ,
- F73B4F0A1F470D9100BBEE4B ,
- F762CB871EACB81000B38484 ,
- F762CB091EACB66200B38484 ,
- F762CB161EACB66200B38484 ,
- F7D424681F063B82009C9782 ,
- F75AC2431F1F62450073EC19 ,
- F758B448212C516300515F55 ,
- F758B453212C516300515F55 ,
- F7D424701F063B82009C9782 ,
- F7D424591F063B82009C9782 ,
- F79630EE215527D40015EEA5 ,
- F7CA1ED620E7E3FE002CC65E ,
- F758B454212C516300515F55 ,
- F7ECBA6D1E239DCD003E6328 ,
- F758B45E212C569D00515F55 ,
- F70022FE1EC4C9100080073F ,
- F7D424561F063B82009C9782 ,
- F70022AA1EC4C9100080073F ,
- F7D423851F0596C6009C9782 ,
- F72AAECA1E5C60C700BB17E1 ,
- F7CA1ED920E7E3FE002CC65E ,
- F74E432620B5547700C2E54C ,
- F73B4F141F470D9100BBEE4B ,
- F70022C81EC4C9100080073F ,
- F7D423841F0596C6009C9782 ,
- F77B0ED11D118A16002130FE ,
- F7D4245A1F063B82009C9782 ,
- F7D4245B1F063B82009C9782 ,
- F73CC06C1E813DFF006E3047 ,
- F77B0ED51D118A16002130FE ,
- F73B4EFD1F470D9100BBEE4B ,
- F70022CE1EC4C9100080073F ,
- F77B0ED91D118A16002130FE ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7145A321D12E65F00CAFEEC = {
- isa = PBXTargetDependency;
- target = F71459B41D12E3B700CAFEEC ;
- targetProxy = F7145A311D12E65F00CAFEEC ;
- };
- F72D1012210B6B17009C96B7 = {
- isa = PBXTargetDependency;
- target = F72D100B210B6B16009C96B7 ;
- targetProxy = F72D1011210B6B17009C96B7 ;
- };
- F771E3EA20E2392E00AFB62D = {
- isa = PBXTargetDependency;
- target = F771E3CF20E2392D00AFB62D ;
- targetProxy = F771E3E920E2392E00AFB62D ;
- };
- F72B60911A24F00B004EF66F = {
- isa = PBXVariantGroup;
- children = (
- F7151A801D477A4B00E6AF45 ,
- F7B1A7751EBB3C8000BFB6D1 ,
- F75B91E11ECAE17800199C96 ,
- F75B91F61ECAE26300199C96 ,
- F75B923C1ECAE55E00199C96 ,
- F7169A2F1EE59BB70086BD69 ,
- F7169A4B1EE59C640086BD69 ,
- F78D6F451F0B7CB9002F9619 ,
- F78D6F4C1F0B7CE4002F9619 ,
- F78D6F531F0B7D47002F9619 ,
- F7DE9AAF1F482FA5008DFE10 ,
- F7CC04E51F5AD50D00378CEF ,
- F7D532451F5D4123006568B1 ,
- F7D5324C1F5D4137006568B1 ,
- F7D532531F5D4155006568B1 ,
- F7D5328E1F5D443B006568B1 ,
- F7D532A31F5D4461006568B1 ,
- F77438EA1FCD694900662C46 ,
- F77438F11FCD69D200662C46 ,
- F77438F81FCD6A0D00662C46 ,
- F77438FF1FCD6B7F00662C46 ,
- F77439061FCD6BEF00662C46 ,
- F774390D1FCD6C0C00662C46 ,
- F77439141FCD6C4A00662C46 ,
- F774391B1FCD6C6700662C46 ,
- F77439221FCD6C8600662C46 ,
- F77439291FCD6CAA00662C46 ,
- F77439301FCD6CC400662C46 ,
- F77439371FCD6CDE00662C46 ,
- F774393E1FCD6D0B00662C46 ,
- F77439451FCD6D2300662C46 ,
- F774394C1FCD6D3E00662C46 ,
- F77439531FCD6D6100662C46 ,
- F774395A1FCD6D8200662C46 ,
- F77439611FCD6D9C00662C46 ,
- F7BB04841FD58ACB00BBFD2A ,
- F7320933201B812F008A0888 ,
- F732093A201B81E4008A0888 ,
- F70A07C7205285FB00DC1231 ,
- );
- name = BKPasscodeView.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- F732B3351E8045A1002B7D75 = {
- isa = PBXVariantGroup;
- children = (
- F732B3361E8045A1002B7D75 ,
- F7B1A7741EBB3C8000BFB6D1 ,
- F75B91E01ECAE17800199C96 ,
- F75B91F51ECAE26300199C96 ,
- F75B923B1ECAE55E00199C96 ,
- F7169A2E1EE59BB70086BD69 ,
- F7169A4A1EE59C640086BD69 ,
- F78D6F441F0B7CB9002F9619 ,
- F78D6F4B1F0B7CE4002F9619 ,
- F78D6F521F0B7D47002F9619 ,
- F7DE9AAE1F482FA5008DFE10 ,
- F7CC04E41F5AD50D00378CEF ,
- F7D532441F5D4123006568B1 ,
- F7D5324B1F5D4137006568B1 ,
- F7D532521F5D4155006568B1 ,
- F7D5328D1F5D443B006568B1 ,
- F7D532A21F5D4461006568B1 ,
- F77438E91FCD694900662C46 ,
- F77438F01FCD69D200662C46 ,
- F77438F71FCD6A0D00662C46 ,
- F77438FE1FCD6B7E00662C46 ,
- F77439051FCD6BEF00662C46 ,
- F774390C1FCD6C0C00662C46 ,
- F77439131FCD6C4A00662C46 ,
- F774391A1FCD6C6700662C46 ,
- F77439211FCD6C8600662C46 ,
- F77439281FCD6CAA00662C46 ,
- F774392F1FCD6CC400662C46 ,
- F77439361FCD6CDD00662C46 ,
- F774393D1FCD6D0A00662C46 ,
- F77439441FCD6D2200662C46 ,
- F774394B1FCD6D3D00662C46 ,
- F77439521FCD6D6100662C46 ,
- F77439591FCD6D8100662C46 ,
- F77439601FCD6D9C00662C46 ,
- F7BB04831FD58ACA00BBFD2A ,
- F7320932201B812F008A0888 ,
- F7320939201B81E4008A0888 ,
- F70A07C6205285FB00DC1231 ,
- );
- name = SwiftWebVC.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- F744BE9F1BEBB69F004FFF66 = {
- isa = PBXVariantGroup;
- children = (
- F7151A831D477A4B00E6AF45 ,
- F7B1A7781EBB3C8100BFB6D1 ,
- F75B91E41ECAE17800199C96 ,
- F75B91F91ECAE26400199C96 ,
- F75B923F1ECAE55F00199C96 ,
- F7169A321EE59BB70086BD69 ,
- F7169A4E1EE59C640086BD69 ,
- F78D6F481F0B7CB9002F9619 ,
- F78D6F4F1F0B7CE4002F9619 ,
- F78D6F561F0B7D47002F9619 ,
- F7DE9AB21F482FA5008DFE10 ,
- F7CC04E81F5AD50D00378CEF ,
- F7D532481F5D4123006568B1 ,
- F7D5324F1F5D4137006568B1 ,
- F7D532561F5D4155006568B1 ,
- F7D532911F5D443B006568B1 ,
- F7D532A61F5D4462006568B1 ,
- F77438ED1FCD694900662C46 ,
- F77438F41FCD69D300662C46 ,
- F77438FB1FCD6A0E00662C46 ,
- F77439021FCD6B7F00662C46 ,
- F77439091FCD6BF000662C46 ,
- F77439101FCD6C0D00662C46 ,
- F77439171FCD6C4A00662C46 ,
- F774391E1FCD6C6700662C46 ,
- F77439251FCD6C8700662C46 ,
- F774392C1FCD6CAA00662C46 ,
- F77439331FCD6CC500662C46 ,
- F774393A1FCD6CDE00662C46 ,
- F77439411FCD6D0B00662C46 ,
- F77439481FCD6D2300662C46 ,
- F774394F1FCD6D3E00662C46 ,
- F77439561FCD6D6200662C46 ,
- F774395D1FCD6D8200662C46 ,
- F77439641FCD6D9D00662C46 ,
- F7BB04871FD58ACB00BBFD2A ,
- F7320936201B8130008A0888 ,
- F732093D201B81E5008A0888 ,
- F70A07CA205285FB00DC1231 ,
- );
- name = Intro.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- F75797AC1E81356C00187A1B = {
- isa = PBXVariantGroup;
- children = (
- F75797AD1E81356C00187A1B ,
- F7B1A7731EBB3C8000BFB6D1 ,
- F75B91DF1ECAE17800199C96 ,
- F75B91F41ECAE26300199C96 ,
- F75B923A1ECAE55E00199C96 ,
- F7169A2D1EE59BB70086BD69 ,
- F7169A491EE59C630086BD69 ,
- F78D6F431F0B7CB9002F9619 ,
- F78D6F4A1F0B7CE4002F9619 ,
- F78D6F511F0B7D47002F9619 ,
- F7DE9AAD1F482FA5008DFE10 ,
- F7CC04E31F5AD50D00378CEF ,
- F7D532431F5D4123006568B1 ,
- F7D5324A1F5D4137006568B1 ,
- F7D532511F5D4155006568B1 ,
- F7D5328C1F5D443B006568B1 ,
- F7D532A11F5D4461006568B1 ,
- F77438E81FCD694900662C46 ,
- F77438EF1FCD69D200662C46 ,
- F77438F61FCD6A0D00662C46 ,
- F77438FD1FCD6B7E00662C46 ,
- F77439041FCD6BEF00662C46 ,
- F774390B1FCD6C0C00662C46 ,
- F77439121FCD6C4900662C46 ,
- F77439191FCD6C6700662C46 ,
- F77439201FCD6C8600662C46 ,
- F77439271FCD6CAA00662C46 ,
- F774392E1FCD6CC400662C46 ,
- F77439351FCD6CDD00662C46 ,
- F774393C1FCD6D0A00662C46 ,
- F77439431FCD6D2200662C46 ,
- F774394A1FCD6D3D00662C46 ,
- F77439511FCD6D6100662C46 ,
- F77439581FCD6D8100662C46 ,
- F774395F1FCD6D9C00662C46 ,
- F7BB04821FD58ACA00BBFD2A ,
- F7320931201B812F008A0888 ,
- F7320938201B81E4008A0888 ,
- F70A07C5205285FA00DC1231 ,
- );
- name = CTAssetsPicker.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- F7B381BF1C074E3E004693F8 = {
- isa = PBXVariantGroup;
- children = (
- F7151A841D477A4B00E6AF45 ,
- F7B1A7791EBB3C8100BFB6D1 ,
- F75B91E51ECAE17800199C96 ,
- F75B91FA1ECAE26400199C96 ,
- F75B92401ECAE55F00199C96 ,
- F7169A331EE59BB80086BD69 ,
- F7169A4F1EE59C640086BD69 ,
- F78D6F491F0B7CB9002F9619 ,
- F78D6F501F0B7CE5002F9619 ,
- F78D6F571F0B7D48002F9619 ,
- F7DE9AB31F482FA5008DFE10 ,
- F7CC04E91F5AD50E00378CEF ,
- F7D532491F5D4124006568B1 ,
- F7D532501F5D4137006568B1 ,
- F7D532571F5D4156006568B1 ,
- F7D532921F5D443B006568B1 ,
- F7D532A71F5D4462006568B1 ,
- F77438EE1FCD694900662C46 ,
- F77438F51FCD69D300662C46 ,
- F77438FC1FCD6A0E00662C46 ,
- F77439031FCD6B7F00662C46 ,
- F774390A1FCD6BF000662C46 ,
- F77439111FCD6C0D00662C46 ,
- F77439181FCD6C4A00662C46 ,
- F774391F1FCD6C6800662C46 ,
- F77439261FCD6C8700662C46 ,
- F774392D1FCD6CAA00662C46 ,
- F77439341FCD6CC500662C46 ,
- F774393B1FCD6CDE00662C46 ,
- F77439421FCD6D0B00662C46 ,
- F77439491FCD6D2300662C46 ,
- F77439501FCD6D3E00662C46 ,
- F77439571FCD6D6200662C46 ,
- F774395E1FCD6D8200662C46 ,
- F77439651FCD6D9D00662C46 ,
- F7BB04881FD58ACB00BBFD2A ,
- F7320937201B8130008A0888 ,
- F732093E201B81E5008A0888 ,
- F70A07CB205285FB00DC1231 ,
- );
- name = Error.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- F7C6D5F61BE371D800AC83AD = {
- isa = PBXVariantGroup;
- children = (
- F7151A821D477A4B00E6AF45 ,
- F7B1A7771EBB3C8100BFB6D1 ,
- F75B91E31ECAE17800199C96 ,
- F75B91F81ECAE26400199C96 ,
- F75B923E1ECAE55E00199C96 ,
- F7169A311EE59BB70086BD69 ,
- F7169A4D1EE59C640086BD69 ,
- F78D6F471F0B7CB9002F9619 ,
- F78D6F4E1F0B7CE4002F9619 ,
- F78D6F551F0B7D47002F9619 ,
- F7DE9AB11F482FA5008DFE10 ,
- F7CC04E71F5AD50D00378CEF ,
- F7D532471F5D4123006568B1 ,
- F7D5324E1F5D4137006568B1 ,
- F7D532551F5D4155006568B1 ,
- F7D532901F5D443B006568B1 ,
- F7D532A51F5D4461006568B1 ,
- F77438EC1FCD694900662C46 ,
- F77438F31FCD69D300662C46 ,
- F77438FA1FCD6A0E00662C46 ,
- F77439011FCD6B7F00662C46 ,
- F77439081FCD6BF000662C46 ,
- F774390F1FCD6C0D00662C46 ,
- F77439161FCD6C4A00662C46 ,
- F774391D1FCD6C6700662C46 ,
- F77439241FCD6C8700662C46 ,
- F774392B1FCD6CAA00662C46 ,
- F77439321FCD6CC400662C46 ,
- F77439391FCD6CDE00662C46 ,
- F77439401FCD6D0B00662C46 ,
- F77439471FCD6D2300662C46 ,
- F774394E1FCD6D3E00662C46 ,
- F77439551FCD6D6100662C46 ,
- F774395C1FCD6D8200662C46 ,
- F77439631FCD6D9C00662C46 ,
- F7BB04861FD58ACB00BBFD2A ,
- F7320935201B8130008A0888 ,
- F732093C201B81E4008A0888 ,
- F70A07C9205285FB00DC1231 ,
- );
- name = InfoPlist.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- F7E70DE91A24DE4100E1B66A = {
- isa = PBXVariantGroup;
- children = (
- F7151A811D477A4B00E6AF45 ,
- F7B1A7761EBB3C8000BFB6D1 ,
- F75B91E21ECAE17800199C96 ,
- F75B91F71ECAE26300199C96 ,
- F75B923D1ECAE55E00199C96 ,
- F7169A301EE59BB70086BD69 ,
- F7169A4C1EE59C640086BD69 ,
- F78D6F461F0B7CB9002F9619 ,
- F78D6F4D1F0B7CE4002F9619 ,
- F78D6F541F0B7D47002F9619 ,
- F7DE9AB01F482FA5008DFE10 ,
- F7CC04E61F5AD50D00378CEF ,
- F7D532461F5D4123006568B1 ,
- F7D5324D1F5D4137006568B1 ,
- F7D532541F5D4155006568B1 ,
- F7D5328F1F5D443B006568B1 ,
- F7D532A41F5D4461006568B1 ,
- F77438EB1FCD694900662C46 ,
- F77438F21FCD69D300662C46 ,
- F77438F91FCD6A0D00662C46 ,
- F77439001FCD6B7F00662C46 ,
- F77439071FCD6BF000662C46 ,
- F774390E1FCD6C0C00662C46 ,
- F77439151FCD6C4A00662C46 ,
- F774391C1FCD6C6700662C46 ,
- F77439231FCD6C8700662C46 ,
- F774392A1FCD6CAA00662C46 ,
- F77439311FCD6CC400662C46 ,
- F77439381FCD6CDE00662C46 ,
- F774393F1FCD6D0B00662C46 ,
- F77439461FCD6D2300662C46 ,
- F774394D1FCD6D3E00662C46 ,
- F77439541FCD6D6100662C46 ,
- F774395B1FCD6D8200662C46 ,
- F77439621FCD6D9C00662C46 ,
- F7BB04851FD58ACB00BBFD2A ,
- F7320934201B812F008A0888 ,
- F732093B201B81E4008A0888 ,
- F70A07C8205285FB00DC1231 ,
- );
- name = Localizable.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- F7145A261D12E3B700CAFEEC = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- APPLICATION_EXTENSION_API_ONLY = NO;
- CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
- CLANG_ENABLE_MODULES = YES;
- CLANG_WARN_STRICT_PROTOTYPES = NO;
- CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = 6JLRKY9ZV7;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)\"/Libraries external/Realm\"",
- );
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_SHARE,
- NC,
- );
- HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 4.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- USE_HEADERMAP = YES;
- };
- name = Debug;
- };
- F7145A271D12E3B700CAFEEC = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- APPLICATION_EXTENSION_API_ONLY = NO;
- CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
- CLANG_ENABLE_MODULES = YES;
- CLANG_WARN_STRICT_PROTOTYPES = NO;
- CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = 6JLRKY9ZV7;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)\"/Libraries external/Realm\"",
- );
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_SHARE,
- NC,
- );
- HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
- SWIFT_VERSION = 4.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- USE_HEADERMAP = YES;
- };
- name = Release;
- };
- F72D1015210B6B17009C96B7 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_STRICT_PROTOTYPES = NO;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = 6JLRKY9ZV7;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)\"/Libraries external/Realm\"",
- );
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_NOTIFICATION_SERVICE,
- NC,
- );
- HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"Libraries external\"/**",
- );
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/NotificationServiceExtension-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 4.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- F72D1016210B6B17009C96B7 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_STRICT_PROTOTYPES = NO;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = 6JLRKY9ZV7;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)\"/Libraries external/Realm\"",
- );
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
- GCC_PREPROCESSOR_DEFINITIONS = (
- EXTENSION,
- EXTENSION_NOTIFICATION_SERVICE,
- NC,
- );
- HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"Libraries external\"/**",
- );
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/NotificationServiceExtension-Bridging-Header.h";
- SWIFT_VERSION = 4.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- F771E3F020E2392E00AFB62D = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
- CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
- CLANG_WARN_STRICT_PROTOTYPES = NO;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = 6JLRKY9ZV7;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)\"/Libraries external/Realm\"",
- );
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_FILE_PROVIDER_EXTENSION,
- NC,
- );
- HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 4.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- F771E3F120E2392E00AFB62D = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
- CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
- CLANG_WARN_STRICT_PROTOTYPES = NO;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = 6JLRKY9ZV7;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)\"/Libraries external/Realm\"",
- );
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
- GCC_PREPROCESSOR_DEFINITIONS = (
- EXTENSION,
- EXTENSION_FILE_PROVIDER_EXTENSION,
- NC,
- );
- HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
- SWIFT_VERSION = 4.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- F77B0F9B1D118A16002130FE = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
- CLANG_ENABLE_MODULES = YES;
- CLANG_WARN_STRICT_PROTOTYPES = NO;
- CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CURRENT_PROJECT_VERSION = "";
- DEVELOPMENT_TEAM = 6JLRKY9ZV7;
- ENABLE_BITCODE = YES;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)\"/Libraries external/Firebase\"/**",
- "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
- "$(PROJECT_DIR)\"/Libraries external/Realm\"",
- "$(PROJECT_DIR)\"/Libraries external/KTVHTTPCache\"",
- );
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- NC,
- );
- HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- LIBRARY_SEARCH_PATHS = "\"Libraries external/openssl\"";
- OTHER_LDFLAGS = "-ObjC";
- OTHER_SWIFT_FLAGS = "-DDEBUG";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE = "";
- PROVISIONING_PROFILE_SPECIFIER = "";
- SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 4.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- USE_HEADERMAP = YES;
- VERSIONING_SYSTEM = "";
- };
- name = Debug;
- };
- F77B0F9C1D118A16002130FE = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
- CLANG_ENABLE_MODULES = YES;
- CLANG_WARN_STRICT_PROTOTYPES = NO;
- CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = "";
- DEVELOPMENT_TEAM = 6JLRKY9ZV7;
- ENABLE_BITCODE = YES;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)\"/Libraries external/Firebase\"/**",
- "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
- "$(PROJECT_DIR)\"/Libraries external/Realm\"",
- "$(PROJECT_DIR)\"/Libraries external/KTVHTTPCache\"",
- );
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- NC,
- );
- HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- LIBRARY_SEARCH_PATHS = "\"Libraries external/openssl\"";
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE = "";
- PROVISIONING_PROFILE_SPECIFIER = "";
- SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
- SWIFT_VERSION = 4.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- USE_HEADERMAP = YES;
- VERSIONING_SYSTEM = "";
- };
- name = Release;
- };
- F7F67BC91A24D27800EE80DA = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEFINES_MODULE = YES;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- OTHER_LDFLAGS = (
- "-Obj-C",
- "-all_load",
- );
- SDKROOT = iphoneos;
- SWIFT_SWIFT3_OBJC_INFERENCE = Off;
- };
- name = Debug;
- };
- F7F67BCA1A24D27800EE80DA = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEFINES_MODULE = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- OTHER_LDFLAGS = (
- "-Obj-C",
- "-all_load",
- );
- SDKROOT = iphoneos;
- SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
- SWIFT_SWIFT3_OBJC_INFERENCE = Off;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- F7145A251D12E3B700CAFEEC = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F7145A261D12E3B700CAFEEC ,
- F7145A271D12E3B700CAFEEC ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F72D1014210B6B17009C96B7 = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F72D1015210B6B17009C96B7 ,
- F72D1016210B6B17009C96B7 ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F771E3EF20E2392E00AFB62D = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F771E3F020E2392E00AFB62D ,
- F771E3F120E2392E00AFB62D ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F77B0F9A1D118A16002130FE = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F77B0F9B1D118A16002130FE ,
- F77B0F9C1D118A16002130FE ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F7F67BA31A24D27800EE80DA = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F7F67BC91A24D27800EE80DA ,
- F7F67BCA1A24D27800EE80DA ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- };
- rootObject = F7F67BA01A24D27800EE80DA ;
- }
|