project.pbxproj 359 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 00733A541BC4880000A5A117 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5340674F167780C40042B59E /* SDWebImageCompat.m */; };
  10. 00733A551BC4880000A5A117 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8C148C56230056699D /* SDWebImageDownloader.m */; };
  11. 00733A561BC4880000A5A117 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 530E49E416460AE2002868E7 /* SDWebImageDownloaderOperation.m */; };
  12. 00733A571BC4880000A5A117 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D86148C56230056699D /* SDImageCache.m */; };
  13. 00733A581BC4880000A5A117 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8F148C56230056699D /* SDWebImageManager.m */; };
  14. 00733A5A1BC4880000A5A117 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D92148C56230056699D /* SDWebImagePrefetcher.m */; };
  15. 00733A5B1BC4880000A5A117 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B9141188EE8DD006D06BD /* NSData+ImageContentType.m */; };
  16. 00733A5C1BC4880000A5A117 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D94148C56230056699D /* UIButton+WebCache.m */; };
  17. 00733A5D1BC4880000A5A117 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = A18A6CC6172DC28500419892 /* UIImage+GIF.m */; };
  18. 00733A5E1BC4880000A5A117 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */; };
  19. 00733A5F1BC4880000A5A117 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB921762547C00698166 /* UIImage+WebP.m */; };
  20. 00733A601BC4880000A5A117 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBE71A618C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m */; };
  21. 00733A611BC4880000A5A117 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D96148C56230056699D /* UIImageView+WebCache.m */; };
  22. 00733A621BC4880000A5A117 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AB615302192DA24600A2D8E9 /* UIView+WebCacheOperation.m */; };
  23. 00733A631BC4880E00A5A117 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D88148C56230056699D /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  24. 00733A641BC4880E00A5A117 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E71646388E002868E7 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  25. 00733A651BC4880E00A5A117 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8B148C56230056699D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
  26. 00733A661BC4880E00A5A117 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E316460AE2002868E7 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  27. 00733A671BC4880E00A5A117 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D85148C56230056699D /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  28. 00733A681BC4880E00A5A117 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8E148C56230056699D /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  29. 00733A6A1BC4880E00A5A117 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D91148C56230056699D /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
  30. 00733A6B1BC4880E00A5A117 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5B9140188EE8DD006D06BD /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
  31. 00733A6C1BC4880E00A5A117 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D93148C56230056699D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  32. 00733A6D1BC4880E00A5A117 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A18A6CC5172DC28500419892 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
  33. 00733A6E1BC4880E00A5A117 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  34. 00733A6F1BC4880E00A5A117 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB911762547C00698166 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; };
  35. 00733A701BC4880E00A5A117 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBE71A518C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  36. 00733A711BC4880E00A5A117 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D95148C56230056699D /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  37. 00733A721BC4880E00A5A117 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB615301192DA24600A2D8E9 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  38. 00733A731BC4880E00A5A117 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2CAE031AB4BB5400B6BC39 /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
  39. 0E9EFA0A21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9EFA0821983283005D7892 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; };
  40. 0E9EFA0B21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9EFA0821983283005D7892 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; };
  41. 0E9EFA0C21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9EFA0821983283005D7892 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; };
  42. 0E9EFA0D21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9EFA0821983283005D7892 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; };
  43. 0E9EFA0E21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9EFA0821983283005D7892 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; };
  44. 0E9EFA0F21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9EFA0821983283005D7892 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; };
  45. 0E9EFA1021983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EFA0921983283005D7892 /* UIImage+MemoryCacheCost.m */; };
  46. 0E9EFA1121983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EFA0921983283005D7892 /* UIImage+MemoryCacheCost.m */; };
  47. 0E9EFA1221983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EFA0921983283005D7892 /* UIImage+MemoryCacheCost.m */; };
  48. 0E9EFA1321983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EFA0921983283005D7892 /* UIImage+MemoryCacheCost.m */; };
  49. 0E9EFA1421983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EFA0921983283005D7892 /* UIImage+MemoryCacheCost.m */; };
  50. 0E9EFA1521983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EFA0921983283005D7892 /* UIImage+MemoryCacheCost.m */; };
  51. 320224BB203979BA00E9F285 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 320224B9203979BA00E9F285 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; };
  52. 320224BC203979BA00E9F285 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 320224BA203979BA00E9F285 /* SDAnimatedImageRep.m */; };
  53. 321DB3612011D4D70015D2CB /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 321DB35F2011D4D60015D2CB /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  54. 321DB3622011D4D70015D2CB /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 321DB3602011D4D60015D2CB /* NSButton+WebCache.m */; };
  55. 321E60861F38E8C800405457 /* SDWebImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60841F38E8C800405457 /* SDWebImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  56. 321E60871F38E8C800405457 /* SDWebImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60841F38E8C800405457 /* SDWebImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  57. 321E60881F38E8C800405457 /* SDWebImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60841F38E8C800405457 /* SDWebImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  58. 321E60891F38E8C800405457 /* SDWebImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60841F38E8C800405457 /* SDWebImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  59. 321E608A1F38E8C800405457 /* SDWebImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60841F38E8C800405457 /* SDWebImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  60. 321E608B1F38E8C800405457 /* SDWebImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60841F38E8C800405457 /* SDWebImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  61. 321E608C1F38E8C800405457 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60851F38E8C800405457 /* SDWebImageCoder.m */; };
  62. 321E608D1F38E8C800405457 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60851F38E8C800405457 /* SDWebImageCoder.m */; };
  63. 321E608E1F38E8C800405457 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60851F38E8C800405457 /* SDWebImageCoder.m */; };
  64. 321E608F1F38E8C800405457 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60851F38E8C800405457 /* SDWebImageCoder.m */; };
  65. 321E60901F38E8C800405457 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60851F38E8C800405457 /* SDWebImageCoder.m */; };
  66. 321E60911F38E8C800405457 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60851F38E8C800405457 /* SDWebImageCoder.m */; };
  67. 321E60941F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60921F38E8ED00405457 /* SDWebImageImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  68. 321E60951F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60921F38E8ED00405457 /* SDWebImageImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  69. 321E60961F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60921F38E8ED00405457 /* SDWebImageImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  70. 321E60971F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60921F38E8ED00405457 /* SDWebImageImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  71. 321E60981F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60921F38E8ED00405457 /* SDWebImageImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  72. 321E60991F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60921F38E8ED00405457 /* SDWebImageImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  73. 321E609A1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60931F38E8ED00405457 /* SDWebImageImageIOCoder.m */; };
  74. 321E609B1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60931F38E8ED00405457 /* SDWebImageImageIOCoder.m */; };
  75. 321E609C1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60931F38E8ED00405457 /* SDWebImageImageIOCoder.m */; };
  76. 321E609D1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60931F38E8ED00405457 /* SDWebImageImageIOCoder.m */; };
  77. 321E609E1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60931F38E8ED00405457 /* SDWebImageImageIOCoder.m */; };
  78. 321E609F1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60931F38E8ED00405457 /* SDWebImageImageIOCoder.m */; };
  79. 321E60A21F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60A01F38E8F600405457 /* SDWebImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  80. 321E60A31F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60A01F38E8F600405457 /* SDWebImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  81. 321E60A41F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60A01F38E8F600405457 /* SDWebImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  82. 321E60A51F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60A01F38E8F600405457 /* SDWebImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  83. 321E60A61F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60A01F38E8F600405457 /* SDWebImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  84. 321E60A71F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60A01F38E8F600405457 /* SDWebImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  85. 321E60A81F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60A11F38E8F600405457 /* SDWebImageGIFCoder.m */; };
  86. 321E60A91F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60A11F38E8F600405457 /* SDWebImageGIFCoder.m */; };
  87. 321E60AA1F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60A11F38E8F600405457 /* SDWebImageGIFCoder.m */; };
  88. 321E60AB1F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60A11F38E8F600405457 /* SDWebImageGIFCoder.m */; };
  89. 321E60AC1F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60A11F38E8F600405457 /* SDWebImageGIFCoder.m */; };
  90. 321E60AD1F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60A11F38E8F600405457 /* SDWebImageGIFCoder.m */; };
  91. 321E60B01F38E90100405457 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60AE1F38E90100405457 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  92. 321E60B11F38E90100405457 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60AE1F38E90100405457 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  93. 321E60B21F38E90100405457 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60AE1F38E90100405457 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  94. 321E60B31F38E90100405457 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60AE1F38E90100405457 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  95. 321E60B41F38E90100405457 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60AE1F38E90100405457 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  96. 321E60B51F38E90100405457 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60AE1F38E90100405457 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
  97. 321E60B61F38E90100405457 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60AF1F38E90100405457 /* SDWebImageWebPCoder.m */; };
  98. 321E60B71F38E90100405457 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60AF1F38E90100405457 /* SDWebImageWebPCoder.m */; };
  99. 321E60B81F38E90100405457 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60AF1F38E90100405457 /* SDWebImageWebPCoder.m */; };
  100. 321E60B91F38E90100405457 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60AF1F38E90100405457 /* SDWebImageWebPCoder.m */; };
  101. 321E60BA1F38E90100405457 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60AF1F38E90100405457 /* SDWebImageWebPCoder.m */; };
  102. 321E60BB1F38E90100405457 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60AF1F38E90100405457 /* SDWebImageWebPCoder.m */; };
  103. 321E60BE1F38E91700405457 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60BC1F38E91700405457 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; };
  104. 321E60BF1F38E91700405457 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60BC1F38E91700405457 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; };
  105. 321E60C01F38E91700405457 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60BC1F38E91700405457 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; };
  106. 321E60C11F38E91700405457 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60BC1F38E91700405457 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; };
  107. 321E60C21F38E91700405457 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60BC1F38E91700405457 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; };
  108. 321E60C31F38E91700405457 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 321E60BC1F38E91700405457 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; };
  109. 321E60C41F38E91700405457 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60BD1F38E91700405457 /* UIImage+ForceDecode.m */; };
  110. 321E60C51F38E91700405457 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60BD1F38E91700405457 /* UIImage+ForceDecode.m */; };
  111. 321E60C61F38E91700405457 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60BD1F38E91700405457 /* UIImage+ForceDecode.m */; };
  112. 321E60C71F38E91700405457 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60BD1F38E91700405457 /* UIImage+ForceDecode.m */; };
  113. 321E60C81F38E91700405457 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60BD1F38E91700405457 /* UIImage+ForceDecode.m */; };
  114. 321E60C91F38E91700405457 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 321E60BD1F38E91700405457 /* UIImage+ForceDecode.m */; };
  115. 323F8B3E1F38EF770092B609 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B131F38EF770092B609 /* alpha_enc.c */; };
  116. 323F8B3F1F38EF770092B609 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B131F38EF770092B609 /* alpha_enc.c */; };
  117. 323F8B401F38EF770092B609 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B131F38EF770092B609 /* alpha_enc.c */; };
  118. 323F8B411F38EF770092B609 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B131F38EF770092B609 /* alpha_enc.c */; };
  119. 323F8B421F38EF770092B609 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B131F38EF770092B609 /* alpha_enc.c */; };
  120. 323F8B431F38EF770092B609 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B131F38EF770092B609 /* alpha_enc.c */; };
  121. 323F8B441F38EF770092B609 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B141F38EF770092B609 /* analysis_enc.c */; };
  122. 323F8B451F38EF770092B609 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B141F38EF770092B609 /* analysis_enc.c */; };
  123. 323F8B461F38EF770092B609 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B141F38EF770092B609 /* analysis_enc.c */; };
  124. 323F8B471F38EF770092B609 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B141F38EF770092B609 /* analysis_enc.c */; };
  125. 323F8B481F38EF770092B609 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B141F38EF770092B609 /* analysis_enc.c */; };
  126. 323F8B491F38EF770092B609 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B141F38EF770092B609 /* analysis_enc.c */; };
  127. 323F8B4A1F38EF770092B609 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B151F38EF770092B609 /* backward_references_enc.c */; };
  128. 323F8B4B1F38EF770092B609 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B151F38EF770092B609 /* backward_references_enc.c */; };
  129. 323F8B4C1F38EF770092B609 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B151F38EF770092B609 /* backward_references_enc.c */; };
  130. 323F8B4D1F38EF770092B609 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B151F38EF770092B609 /* backward_references_enc.c */; };
  131. 323F8B4E1F38EF770092B609 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B151F38EF770092B609 /* backward_references_enc.c */; };
  132. 323F8B4F1F38EF770092B609 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B151F38EF770092B609 /* backward_references_enc.c */; };
  133. 323F8B501F38EF770092B609 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B161F38EF770092B609 /* backward_references_enc.h */; };
  134. 323F8B511F38EF770092B609 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B161F38EF770092B609 /* backward_references_enc.h */; };
  135. 323F8B521F38EF770092B609 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B161F38EF770092B609 /* backward_references_enc.h */; };
  136. 323F8B531F38EF770092B609 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B161F38EF770092B609 /* backward_references_enc.h */; };
  137. 323F8B541F38EF770092B609 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B161F38EF770092B609 /* backward_references_enc.h */; };
  138. 323F8B551F38EF770092B609 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B161F38EF770092B609 /* backward_references_enc.h */; };
  139. 323F8B561F38EF770092B609 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B171F38EF770092B609 /* config_enc.c */; };
  140. 323F8B571F38EF770092B609 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B171F38EF770092B609 /* config_enc.c */; };
  141. 323F8B581F38EF770092B609 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B171F38EF770092B609 /* config_enc.c */; };
  142. 323F8B591F38EF770092B609 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B171F38EF770092B609 /* config_enc.c */; };
  143. 323F8B5A1F38EF770092B609 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B171F38EF770092B609 /* config_enc.c */; };
  144. 323F8B5B1F38EF770092B609 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B171F38EF770092B609 /* config_enc.c */; };
  145. 323F8B5C1F38EF770092B609 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B181F38EF770092B609 /* cost_enc.c */; };
  146. 323F8B5D1F38EF770092B609 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B181F38EF770092B609 /* cost_enc.c */; };
  147. 323F8B5E1F38EF770092B609 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B181F38EF770092B609 /* cost_enc.c */; };
  148. 323F8B5F1F38EF770092B609 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B181F38EF770092B609 /* cost_enc.c */; };
  149. 323F8B601F38EF770092B609 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B181F38EF770092B609 /* cost_enc.c */; };
  150. 323F8B611F38EF770092B609 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B181F38EF770092B609 /* cost_enc.c */; };
  151. 323F8B621F38EF770092B609 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B191F38EF770092B609 /* cost_enc.h */; };
  152. 323F8B631F38EF770092B609 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B191F38EF770092B609 /* cost_enc.h */; };
  153. 323F8B641F38EF770092B609 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B191F38EF770092B609 /* cost_enc.h */; };
  154. 323F8B651F38EF770092B609 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B191F38EF770092B609 /* cost_enc.h */; };
  155. 323F8B661F38EF770092B609 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B191F38EF770092B609 /* cost_enc.h */; };
  156. 323F8B671F38EF770092B609 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B191F38EF770092B609 /* cost_enc.h */; };
  157. 323F8B681F38EF770092B609 /* delta_palettization_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1A1F38EF770092B609 /* delta_palettization_enc.c */; };
  158. 323F8B691F38EF770092B609 /* delta_palettization_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1A1F38EF770092B609 /* delta_palettization_enc.c */; };
  159. 323F8B6A1F38EF770092B609 /* delta_palettization_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1A1F38EF770092B609 /* delta_palettization_enc.c */; };
  160. 323F8B6B1F38EF770092B609 /* delta_palettization_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1A1F38EF770092B609 /* delta_palettization_enc.c */; };
  161. 323F8B6C1F38EF770092B609 /* delta_palettization_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1A1F38EF770092B609 /* delta_palettization_enc.c */; };
  162. 323F8B6D1F38EF770092B609 /* delta_palettization_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1A1F38EF770092B609 /* delta_palettization_enc.c */; };
  163. 323F8B6E1F38EF770092B609 /* delta_palettization_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1B1F38EF770092B609 /* delta_palettization_enc.h */; };
  164. 323F8B6F1F38EF770092B609 /* delta_palettization_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1B1F38EF770092B609 /* delta_palettization_enc.h */; };
  165. 323F8B701F38EF770092B609 /* delta_palettization_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1B1F38EF770092B609 /* delta_palettization_enc.h */; };
  166. 323F8B711F38EF770092B609 /* delta_palettization_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1B1F38EF770092B609 /* delta_palettization_enc.h */; };
  167. 323F8B721F38EF770092B609 /* delta_palettization_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1B1F38EF770092B609 /* delta_palettization_enc.h */; };
  168. 323F8B731F38EF770092B609 /* delta_palettization_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1B1F38EF770092B609 /* delta_palettization_enc.h */; };
  169. 323F8B741F38EF770092B609 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1C1F38EF770092B609 /* filter_enc.c */; };
  170. 323F8B751F38EF770092B609 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1C1F38EF770092B609 /* filter_enc.c */; };
  171. 323F8B761F38EF770092B609 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1C1F38EF770092B609 /* filter_enc.c */; };
  172. 323F8B771F38EF770092B609 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1C1F38EF770092B609 /* filter_enc.c */; };
  173. 323F8B781F38EF770092B609 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1C1F38EF770092B609 /* filter_enc.c */; };
  174. 323F8B791F38EF770092B609 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1C1F38EF770092B609 /* filter_enc.c */; };
  175. 323F8B7A1F38EF770092B609 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1D1F38EF770092B609 /* frame_enc.c */; };
  176. 323F8B7B1F38EF770092B609 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1D1F38EF770092B609 /* frame_enc.c */; };
  177. 323F8B7C1F38EF770092B609 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1D1F38EF770092B609 /* frame_enc.c */; };
  178. 323F8B7D1F38EF770092B609 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1D1F38EF770092B609 /* frame_enc.c */; };
  179. 323F8B7E1F38EF770092B609 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1D1F38EF770092B609 /* frame_enc.c */; };
  180. 323F8B7F1F38EF770092B609 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1D1F38EF770092B609 /* frame_enc.c */; };
  181. 323F8B801F38EF770092B609 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1E1F38EF770092B609 /* histogram_enc.c */; };
  182. 323F8B811F38EF770092B609 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1E1F38EF770092B609 /* histogram_enc.c */; };
  183. 323F8B821F38EF770092B609 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1E1F38EF770092B609 /* histogram_enc.c */; };
  184. 323F8B831F38EF770092B609 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1E1F38EF770092B609 /* histogram_enc.c */; };
  185. 323F8B841F38EF770092B609 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1E1F38EF770092B609 /* histogram_enc.c */; };
  186. 323F8B851F38EF770092B609 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B1E1F38EF770092B609 /* histogram_enc.c */; };
  187. 323F8B861F38EF770092B609 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1F1F38EF770092B609 /* histogram_enc.h */; };
  188. 323F8B871F38EF770092B609 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1F1F38EF770092B609 /* histogram_enc.h */; };
  189. 323F8B881F38EF770092B609 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1F1F38EF770092B609 /* histogram_enc.h */; };
  190. 323F8B891F38EF770092B609 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1F1F38EF770092B609 /* histogram_enc.h */; };
  191. 323F8B8A1F38EF770092B609 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1F1F38EF770092B609 /* histogram_enc.h */; };
  192. 323F8B8B1F38EF770092B609 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B1F1F38EF770092B609 /* histogram_enc.h */; };
  193. 323F8B8C1F38EF770092B609 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B201F38EF770092B609 /* iterator_enc.c */; };
  194. 323F8B8D1F38EF770092B609 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B201F38EF770092B609 /* iterator_enc.c */; };
  195. 323F8B8E1F38EF770092B609 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B201F38EF770092B609 /* iterator_enc.c */; };
  196. 323F8B8F1F38EF770092B609 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B201F38EF770092B609 /* iterator_enc.c */; };
  197. 323F8B901F38EF770092B609 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B201F38EF770092B609 /* iterator_enc.c */; };
  198. 323F8B911F38EF770092B609 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B201F38EF770092B609 /* iterator_enc.c */; };
  199. 323F8B961F38EF770092B609 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B221F38EF770092B609 /* near_lossless_enc.c */; };
  200. 323F8B971F38EF770092B609 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B221F38EF770092B609 /* near_lossless_enc.c */; };
  201. 323F8B981F38EF770092B609 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B221F38EF770092B609 /* near_lossless_enc.c */; };
  202. 323F8B991F38EF770092B609 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B221F38EF770092B609 /* near_lossless_enc.c */; };
  203. 323F8B9A1F38EF770092B609 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B221F38EF770092B609 /* near_lossless_enc.c */; };
  204. 323F8B9B1F38EF770092B609 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B221F38EF770092B609 /* near_lossless_enc.c */; };
  205. 323F8B9C1F38EF770092B609 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B231F38EF770092B609 /* picture_csp_enc.c */; };
  206. 323F8B9D1F38EF770092B609 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B231F38EF770092B609 /* picture_csp_enc.c */; };
  207. 323F8B9E1F38EF770092B609 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B231F38EF770092B609 /* picture_csp_enc.c */; };
  208. 323F8B9F1F38EF770092B609 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B231F38EF770092B609 /* picture_csp_enc.c */; };
  209. 323F8BA01F38EF770092B609 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B231F38EF770092B609 /* picture_csp_enc.c */; };
  210. 323F8BA11F38EF770092B609 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B231F38EF770092B609 /* picture_csp_enc.c */; };
  211. 323F8BA21F38EF770092B609 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B241F38EF770092B609 /* picture_enc.c */; };
  212. 323F8BA31F38EF770092B609 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B241F38EF770092B609 /* picture_enc.c */; };
  213. 323F8BA41F38EF770092B609 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B241F38EF770092B609 /* picture_enc.c */; };
  214. 323F8BA51F38EF770092B609 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B241F38EF770092B609 /* picture_enc.c */; };
  215. 323F8BA61F38EF770092B609 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B241F38EF770092B609 /* picture_enc.c */; };
  216. 323F8BA71F38EF770092B609 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B241F38EF770092B609 /* picture_enc.c */; };
  217. 323F8BA81F38EF770092B609 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B251F38EF770092B609 /* picture_psnr_enc.c */; };
  218. 323F8BA91F38EF770092B609 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B251F38EF770092B609 /* picture_psnr_enc.c */; };
  219. 323F8BAA1F38EF770092B609 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B251F38EF770092B609 /* picture_psnr_enc.c */; };
  220. 323F8BAB1F38EF770092B609 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B251F38EF770092B609 /* picture_psnr_enc.c */; };
  221. 323F8BAC1F38EF770092B609 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B251F38EF770092B609 /* picture_psnr_enc.c */; };
  222. 323F8BAD1F38EF770092B609 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B251F38EF770092B609 /* picture_psnr_enc.c */; };
  223. 323F8BAE1F38EF770092B609 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B261F38EF770092B609 /* picture_rescale_enc.c */; };
  224. 323F8BAF1F38EF770092B609 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B261F38EF770092B609 /* picture_rescale_enc.c */; };
  225. 323F8BB01F38EF770092B609 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B261F38EF770092B609 /* picture_rescale_enc.c */; };
  226. 323F8BB11F38EF770092B609 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B261F38EF770092B609 /* picture_rescale_enc.c */; };
  227. 323F8BB21F38EF770092B609 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B261F38EF770092B609 /* picture_rescale_enc.c */; };
  228. 323F8BB31F38EF770092B609 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B261F38EF770092B609 /* picture_rescale_enc.c */; };
  229. 323F8BB41F38EF770092B609 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B271F38EF770092B609 /* picture_tools_enc.c */; };
  230. 323F8BB51F38EF770092B609 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B271F38EF770092B609 /* picture_tools_enc.c */; };
  231. 323F8BB61F38EF770092B609 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B271F38EF770092B609 /* picture_tools_enc.c */; };
  232. 323F8BB71F38EF770092B609 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B271F38EF770092B609 /* picture_tools_enc.c */; };
  233. 323F8BB81F38EF770092B609 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B271F38EF770092B609 /* picture_tools_enc.c */; };
  234. 323F8BB91F38EF770092B609 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B271F38EF770092B609 /* picture_tools_enc.c */; };
  235. 323F8BBA1F38EF770092B609 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B281F38EF770092B609 /* predictor_enc.c */; };
  236. 323F8BBB1F38EF770092B609 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B281F38EF770092B609 /* predictor_enc.c */; };
  237. 323F8BBC1F38EF770092B609 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B281F38EF770092B609 /* predictor_enc.c */; };
  238. 323F8BBD1F38EF770092B609 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B281F38EF770092B609 /* predictor_enc.c */; };
  239. 323F8BBE1F38EF770092B609 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B281F38EF770092B609 /* predictor_enc.c */; };
  240. 323F8BBF1F38EF770092B609 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B281F38EF770092B609 /* predictor_enc.c */; };
  241. 323F8BC01F38EF770092B609 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B291F38EF770092B609 /* quant_enc.c */; };
  242. 323F8BC11F38EF770092B609 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B291F38EF770092B609 /* quant_enc.c */; };
  243. 323F8BC21F38EF770092B609 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B291F38EF770092B609 /* quant_enc.c */; };
  244. 323F8BC31F38EF770092B609 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B291F38EF770092B609 /* quant_enc.c */; };
  245. 323F8BC41F38EF770092B609 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B291F38EF770092B609 /* quant_enc.c */; };
  246. 323F8BC51F38EF770092B609 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B291F38EF770092B609 /* quant_enc.c */; };
  247. 323F8BC61F38EF770092B609 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2A1F38EF770092B609 /* syntax_enc.c */; };
  248. 323F8BC71F38EF770092B609 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2A1F38EF770092B609 /* syntax_enc.c */; };
  249. 323F8BC81F38EF770092B609 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2A1F38EF770092B609 /* syntax_enc.c */; };
  250. 323F8BC91F38EF770092B609 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2A1F38EF770092B609 /* syntax_enc.c */; };
  251. 323F8BCA1F38EF770092B609 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2A1F38EF770092B609 /* syntax_enc.c */; };
  252. 323F8BCB1F38EF770092B609 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2A1F38EF770092B609 /* syntax_enc.c */; };
  253. 323F8BCC1F38EF770092B609 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2B1F38EF770092B609 /* token_enc.c */; };
  254. 323F8BCD1F38EF770092B609 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2B1F38EF770092B609 /* token_enc.c */; };
  255. 323F8BCE1F38EF770092B609 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2B1F38EF770092B609 /* token_enc.c */; };
  256. 323F8BCF1F38EF770092B609 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2B1F38EF770092B609 /* token_enc.c */; };
  257. 323F8BD01F38EF770092B609 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2B1F38EF770092B609 /* token_enc.c */; };
  258. 323F8BD11F38EF770092B609 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2B1F38EF770092B609 /* token_enc.c */; };
  259. 323F8BD21F38EF770092B609 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2C1F38EF770092B609 /* tree_enc.c */; };
  260. 323F8BD31F38EF770092B609 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2C1F38EF770092B609 /* tree_enc.c */; };
  261. 323F8BD41F38EF770092B609 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2C1F38EF770092B609 /* tree_enc.c */; };
  262. 323F8BD51F38EF770092B609 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2C1F38EF770092B609 /* tree_enc.c */; };
  263. 323F8BD61F38EF770092B609 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2C1F38EF770092B609 /* tree_enc.c */; };
  264. 323F8BD71F38EF770092B609 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2C1F38EF770092B609 /* tree_enc.c */; };
  265. 323F8BD81F38EF770092B609 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2D1F38EF770092B609 /* vp8i_enc.h */; };
  266. 323F8BD91F38EF770092B609 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2D1F38EF770092B609 /* vp8i_enc.h */; };
  267. 323F8BDA1F38EF770092B609 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2D1F38EF770092B609 /* vp8i_enc.h */; };
  268. 323F8BDB1F38EF770092B609 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2D1F38EF770092B609 /* vp8i_enc.h */; };
  269. 323F8BDC1F38EF770092B609 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2D1F38EF770092B609 /* vp8i_enc.h */; };
  270. 323F8BDD1F38EF770092B609 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2D1F38EF770092B609 /* vp8i_enc.h */; };
  271. 323F8BDE1F38EF770092B609 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2E1F38EF770092B609 /* vp8l_enc.c */; };
  272. 323F8BDF1F38EF770092B609 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2E1F38EF770092B609 /* vp8l_enc.c */; };
  273. 323F8BE01F38EF770092B609 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2E1F38EF770092B609 /* vp8l_enc.c */; };
  274. 323F8BE11F38EF770092B609 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2E1F38EF770092B609 /* vp8l_enc.c */; };
  275. 323F8BE21F38EF770092B609 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2E1F38EF770092B609 /* vp8l_enc.c */; };
  276. 323F8BE31F38EF770092B609 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B2E1F38EF770092B609 /* vp8l_enc.c */; };
  277. 323F8BE41F38EF770092B609 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2F1F38EF770092B609 /* vp8li_enc.h */; };
  278. 323F8BE51F38EF770092B609 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2F1F38EF770092B609 /* vp8li_enc.h */; };
  279. 323F8BE61F38EF770092B609 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2F1F38EF770092B609 /* vp8li_enc.h */; };
  280. 323F8BE71F38EF770092B609 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2F1F38EF770092B609 /* vp8li_enc.h */; };
  281. 323F8BE81F38EF770092B609 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2F1F38EF770092B609 /* vp8li_enc.h */; };
  282. 323F8BE91F38EF770092B609 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B2F1F38EF770092B609 /* vp8li_enc.h */; };
  283. 323F8BEA1F38EF770092B609 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B301F38EF770092B609 /* webp_enc.c */; };
  284. 323F8BEB1F38EF770092B609 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B301F38EF770092B609 /* webp_enc.c */; };
  285. 323F8BEC1F38EF770092B609 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B301F38EF770092B609 /* webp_enc.c */; };
  286. 323F8BED1F38EF770092B609 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B301F38EF770092B609 /* webp_enc.c */; };
  287. 323F8BEE1F38EF770092B609 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B301F38EF770092B609 /* webp_enc.c */; };
  288. 323F8BEF1F38EF770092B609 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B301F38EF770092B609 /* webp_enc.c */; };
  289. 323F8BF01F38EF770092B609 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B321F38EF770092B609 /* anim_encode.c */; };
  290. 323F8BF11F38EF770092B609 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B321F38EF770092B609 /* anim_encode.c */; };
  291. 323F8BF21F38EF770092B609 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B321F38EF770092B609 /* anim_encode.c */; };
  292. 323F8BF31F38EF770092B609 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B321F38EF770092B609 /* anim_encode.c */; };
  293. 323F8BF41F38EF770092B609 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B321F38EF770092B609 /* anim_encode.c */; };
  294. 323F8BF51F38EF770092B609 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B321F38EF770092B609 /* anim_encode.c */; };
  295. 323F8BF61F38EF770092B609 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B331F38EF770092B609 /* animi.h */; };
  296. 323F8BF71F38EF770092B609 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B331F38EF770092B609 /* animi.h */; };
  297. 323F8BF81F38EF770092B609 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B331F38EF770092B609 /* animi.h */; };
  298. 323F8BF91F38EF770092B609 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B331F38EF770092B609 /* animi.h */; };
  299. 323F8BFA1F38EF770092B609 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B331F38EF770092B609 /* animi.h */; };
  300. 323F8BFB1F38EF770092B609 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B331F38EF770092B609 /* animi.h */; };
  301. 323F8C081F38EF770092B609 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3A1F38EF770092B609 /* muxedit.c */; };
  302. 323F8C091F38EF770092B609 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3A1F38EF770092B609 /* muxedit.c */; };
  303. 323F8C0A1F38EF770092B609 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3A1F38EF770092B609 /* muxedit.c */; };
  304. 323F8C0B1F38EF770092B609 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3A1F38EF770092B609 /* muxedit.c */; };
  305. 323F8C0C1F38EF770092B609 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3A1F38EF770092B609 /* muxedit.c */; };
  306. 323F8C0D1F38EF770092B609 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3A1F38EF770092B609 /* muxedit.c */; };
  307. 323F8C0E1F38EF770092B609 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B3B1F38EF770092B609 /* muxi.h */; };
  308. 323F8C0F1F38EF770092B609 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B3B1F38EF770092B609 /* muxi.h */; };
  309. 323F8C101F38EF770092B609 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B3B1F38EF770092B609 /* muxi.h */; };
  310. 323F8C111F38EF770092B609 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B3B1F38EF770092B609 /* muxi.h */; };
  311. 323F8C121F38EF770092B609 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B3B1F38EF770092B609 /* muxi.h */; };
  312. 323F8C131F38EF770092B609 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 323F8B3B1F38EF770092B609 /* muxi.h */; };
  313. 323F8C141F38EF770092B609 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3C1F38EF770092B609 /* muxinternal.c */; };
  314. 323F8C151F38EF770092B609 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3C1F38EF770092B609 /* muxinternal.c */; };
  315. 323F8C161F38EF770092B609 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3C1F38EF770092B609 /* muxinternal.c */; };
  316. 323F8C171F38EF770092B609 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3C1F38EF770092B609 /* muxinternal.c */; };
  317. 323F8C181F38EF770092B609 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3C1F38EF770092B609 /* muxinternal.c */; };
  318. 323F8C191F38EF770092B609 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3C1F38EF770092B609 /* muxinternal.c */; };
  319. 323F8C1A1F38EF770092B609 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3D1F38EF770092B609 /* muxread.c */; };
  320. 323F8C1B1F38EF770092B609 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3D1F38EF770092B609 /* muxread.c */; };
  321. 323F8C1C1F38EF770092B609 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3D1F38EF770092B609 /* muxread.c */; };
  322. 323F8C1D1F38EF770092B609 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3D1F38EF770092B609 /* muxread.c */; };
  323. 323F8C1E1F38EF770092B609 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3D1F38EF770092B609 /* muxread.c */; };
  324. 323F8C1F1F38EF770092B609 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 323F8B3D1F38EF770092B609 /* muxread.c */; };
  325. 325312C8200F09910046BF1E /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 325312C6200F09910046BF1E /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
  326. 325312C9200F09910046BF1E /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 325312C6200F09910046BF1E /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
  327. 325312CA200F09910046BF1E /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 325312C6200F09910046BF1E /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
  328. 325312CB200F09910046BF1E /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 325312C6200F09910046BF1E /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
  329. 325312CC200F09910046BF1E /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 325312C6200F09910046BF1E /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
  330. 325312CD200F09910046BF1E /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 325312C6200F09910046BF1E /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
  331. 325312CE200F09910046BF1E /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 325312C7200F09910046BF1E /* SDWebImageTransition.m */; };
  332. 325312CF200F09910046BF1E /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 325312C7200F09910046BF1E /* SDWebImageTransition.m */; };
  333. 325312D0200F09910046BF1E /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 325312C7200F09910046BF1E /* SDWebImageTransition.m */; };
  334. 325312D1200F09910046BF1E /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 325312C7200F09910046BF1E /* SDWebImageTransition.m */; };
  335. 325312D2200F09910046BF1E /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 325312C7200F09910046BF1E /* SDWebImageTransition.m */; };
  336. 325312D3200F09910046BF1E /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 325312C7200F09910046BF1E /* SDWebImageTransition.m */; };
  337. 3290FA041FA478AF0047D20C /* SDWebImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 3290FA021FA478AF0047D20C /* SDWebImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
  338. 3290FA051FA478AF0047D20C /* SDWebImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 3290FA021FA478AF0047D20C /* SDWebImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
  339. 3290FA061FA478AF0047D20C /* SDWebImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 3290FA021FA478AF0047D20C /* SDWebImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
  340. 3290FA071FA478AF0047D20C /* SDWebImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 3290FA021FA478AF0047D20C /* SDWebImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
  341. 3290FA081FA478AF0047D20C /* SDWebImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 3290FA021FA478AF0047D20C /* SDWebImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
  342. 3290FA091FA478AF0047D20C /* SDWebImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 3290FA021FA478AF0047D20C /* SDWebImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
  343. 3290FA0A1FA478AF0047D20C /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 3290FA031FA478AF0047D20C /* SDWebImageFrame.m */; };
  344. 3290FA0B1FA478AF0047D20C /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 3290FA031FA478AF0047D20C /* SDWebImageFrame.m */; };
  345. 3290FA0C1FA478AF0047D20C /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 3290FA031FA478AF0047D20C /* SDWebImageFrame.m */; };
  346. 3290FA0D1FA478AF0047D20C /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 3290FA031FA478AF0047D20C /* SDWebImageFrame.m */; };
  347. 3290FA0E1FA478AF0047D20C /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 3290FA031FA478AF0047D20C /* SDWebImageFrame.m */; };
  348. 3290FA0F1FA478AF0047D20C /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 3290FA031FA478AF0047D20C /* SDWebImageFrame.m */; };
  349. 32CF1C071FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CF1C051FA496B000004BD1 /* SDWebImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  350. 32CF1C081FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CF1C051FA496B000004BD1 /* SDWebImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  351. 32CF1C091FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CF1C051FA496B000004BD1 /* SDWebImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  352. 32CF1C0A1FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CF1C051FA496B000004BD1 /* SDWebImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  353. 32CF1C0B1FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CF1C051FA496B000004BD1 /* SDWebImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  354. 32CF1C0C1FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CF1C051FA496B000004BD1 /* SDWebImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  355. 32CF1C0D1FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CF1C061FA496B000004BD1 /* SDWebImageCoderHelper.m */; };
  356. 32CF1C0E1FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CF1C061FA496B000004BD1 /* SDWebImageCoderHelper.m */; };
  357. 32CF1C0F1FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CF1C061FA496B000004BD1 /* SDWebImageCoderHelper.m */; };
  358. 32CF1C101FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CF1C061FA496B000004BD1 /* SDWebImageCoderHelper.m */; };
  359. 32CF1C111FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CF1C061FA496B000004BD1 /* SDWebImageCoderHelper.m */; };
  360. 32CF1C121FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CF1C061FA496B000004BD1 /* SDWebImageCoderHelper.m */; };
  361. 4314D1231D0E0E3B004B36C9 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D86148C56230056699D /* SDImageCache.m */; };
  362. 4314D1311D0E0E3B004B36C9 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8C148C56230056699D /* SDWebImageDownloader.m */; };
  363. 4314D1341D0E0E3B004B36C9 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB921762547C00698166 /* UIImage+WebP.m */; };
  364. 4314D1361D0E0E3B004B36C9 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8F148C56230056699D /* SDWebImageManager.m */; };
  365. 4314D1371D0E0E3B004B36C9 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D92148C56230056699D /* SDWebImagePrefetcher.m */; };
  366. 4314D13B1D0E0E3B004B36C9 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D94148C56230056699D /* UIButton+WebCache.m */; };
  367. 4314D1401D0E0E3B004B36C9 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D96148C56230056699D /* UIImageView+WebCache.m */; };
  368. 4314D1411D0E0E3B004B36C9 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 530E49E416460AE2002868E7 /* SDWebImageDownloaderOperation.m */; };
  369. 4314D14B1D0E0E3B004B36C9 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5340674F167780C40042B59E /* SDWebImageCompat.m */; };
  370. 4314D14D1D0E0E3B004B36C9 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = A18A6CC6172DC28500419892 /* UIImage+GIF.m */; };
  371. 4314D1501D0E0E3B004B36C9 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AB615302192DA24600A2D8E9 /* UIView+WebCacheOperation.m */; };
  372. 4314D1521D0E0E3B004B36C9 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B9141188EE8DD006D06BD /* NSData+ImageContentType.m */; };
  373. 4314D1531D0E0E3B004B36C9 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */; };
  374. 4314D1551D0E0E3B004B36C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBE71A618C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m */; };
  375. 4314D15E1D0E0E3B004B36C9 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53FB894814D35E9E0020B787 /* UIKit.framework */; };
  376. 4314D15F1D0E0E3B004B36C9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53922D72148C55820056699D /* Foundation.framework */; };
  377. 4314D1601D0E0E3B004B36C9 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53FB893F14D35D1A0020B787 /* CoreGraphics.framework */; };
  378. 4314D1621D0E0E3B004B36C9 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC91998E60B007367ED /* mux_types.h */; };
  379. 4314D1631D0E0E3B004B36C9 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC51998E60B007367ED /* demux.h */; };
  380. 4314D16B1D0E0E3B004B36C9 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC61998E60B007367ED /* encode.h */; };
  381. 4314D16D1D0E0E3B004B36C9 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D85148C56230056699D /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  382. 4314D16F1D0E0E3B004B36C9 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5B9140188EE8DD006D06BD /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
  383. 4314D1701D0E0E3B004B36C9 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC81998E60B007367ED /* mux.h */; };
  384. 4314D1721D0E0E3B004B36C9 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D88148C56230056699D /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  385. 4314D1741D0E0E3B004B36C9 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CCA1998E60B007367ED /* types.h */; };
  386. 4314D1761D0E0E3B004B36C9 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC41998E60B007367ED /* decode.h */; };
  387. 4314D1781D0E0E3B004B36C9 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8B148C56230056699D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
  388. 4314D1791D0E0E3B004B36C9 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8E148C56230056699D /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  389. 4314D17C1D0E0E3B004B36C9 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB911762547C00698166 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; };
  390. 4314D17D1D0E0E3B004B36C9 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D91148C56230056699D /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
  391. 4314D17F1D0E0E3B004B36C9 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D93148C56230056699D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  392. 4314D1811D0E0E3B004B36C9 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D95148C56230056699D /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  393. 4314D1841D0E0E3B004B36C9 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E71646388E002868E7 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  394. 4314D1851D0E0E3B004B36C9 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E316460AE2002868E7 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  395. 4314D1861D0E0E3B004B36C9 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBE71A518C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  396. 4314D1881D0E0E3B004B36C9 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC71998E60B007367ED /* format_constants.h */; };
  397. 4314D18F1D0E0E3B004B36C9 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB615301192DA24600A2D8E9 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  398. 4314D1901D0E0E3B004B36C9 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A18A6CC5172DC28500419892 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
  399. 4314D1921D0E0E3B004B36C9 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  400. 431738BD1CDFC2660008FEB9 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC41998E60B007367ED /* decode.h */; };
  401. 431738BE1CDFC2660008FEB9 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC51998E60B007367ED /* demux.h */; };
  402. 431738BF1CDFC2660008FEB9 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC61998E60B007367ED /* encode.h */; };
  403. 431738C01CDFC2660008FEB9 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC71998E60B007367ED /* format_constants.h */; };
  404. 431738C11CDFC2660008FEB9 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC81998E60B007367ED /* mux.h */; };
  405. 431738C21CDFC2660008FEB9 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC91998E60B007367ED /* mux_types.h */; };
  406. 431738C31CDFC2660008FEB9 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CCA1998E60B007367ED /* types.h */; };
  407. 4317394E1CDFC8B70008FEB9 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC41998E60B007367ED /* decode.h */; };
  408. 4317394F1CDFC8B70008FEB9 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC51998E60B007367ED /* demux.h */; };
  409. 431739501CDFC8B70008FEB9 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC61998E60B007367ED /* encode.h */; };
  410. 431739511CDFC8B70008FEB9 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC71998E60B007367ED /* format_constants.h */; };
  411. 431739521CDFC8B70008FEB9 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC81998E60B007367ED /* mux.h */; };
  412. 431739531CDFC8B70008FEB9 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC91998E60B007367ED /* mux_types.h */; };
  413. 431739541CDFC8B70008FEB9 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CCA1998E60B007367ED /* types.h */; };
  414. 431739551CDFC8B70008FEB9 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC41998E60B007367ED /* decode.h */; };
  415. 431739561CDFC8B70008FEB9 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC51998E60B007367ED /* demux.h */; };
  416. 431739571CDFC8B70008FEB9 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC61998E60B007367ED /* encode.h */; };
  417. 431739581CDFC8B70008FEB9 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC71998E60B007367ED /* format_constants.h */; };
  418. 431739591CDFC8B70008FEB9 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC81998E60B007367ED /* mux.h */; };
  419. 4317395A1CDFC8B70008FEB9 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC91998E60B007367ED /* mux_types.h */; };
  420. 4317395B1CDFC8B70008FEB9 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CCA1998E60B007367ED /* types.h */; };
  421. 431BB68C1D06D2C1006A3455 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 530E49E416460AE2002868E7 /* SDWebImageDownloaderOperation.m */; };
  422. 431BB68E1D06D2C1006A3455 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D92148C56230056699D /* SDWebImagePrefetcher.m */; };
  423. 431BB6921D06D2C1006A3455 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B9141188EE8DD006D06BD /* NSData+ImageContentType.m */; };
  424. 431BB69A1D06D2C1006A3455 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8C148C56230056699D /* SDWebImageDownloader.m */; };
  425. 431BB6A31D06D2C1006A3455 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D96148C56230056699D /* UIImageView+WebCache.m */; };
  426. 431BB6AA1D06D2C1006A3455 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8F148C56230056699D /* SDWebImageManager.m */; };
  427. 431BB6AC1D06D2C1006A3455 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5340674F167780C40042B59E /* SDWebImageCompat.m */; };
  428. 431BB6B11D06D2C1006A3455 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AB615302192DA24600A2D8E9 /* UIView+WebCacheOperation.m */; };
  429. 431BB6B61D06D2C1006A3455 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB921762547C00698166 /* UIImage+WebP.m */; };
  430. 431BB6B91D06D2C1006A3455 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D94148C56230056699D /* UIButton+WebCache.m */; };
  431. 431BB6BD1D06D2C1006A3455 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = A18A6CC6172DC28500419892 /* UIImage+GIF.m */; };
  432. 431BB6C01D06D2C1006A3455 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D86148C56230056699D /* SDImageCache.m */; };
  433. 431BB6C41D06D2C1006A3455 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */; };
  434. 431BB6C71D06D2C1006A3455 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBE71A618C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m */; };
  435. 431BB6D71D06D2C1006A3455 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB911762547C00698166 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; };
  436. 431BB6D91D06D2C1006A3455 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8E148C56230056699D /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  437. 431BB6DC1D06D2C1006A3455 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D93148C56230056699D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  438. 431BB6E11D06D2C1006A3455 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2CAE031AB4BB5400B6BC39 /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
  439. 431BB6E21D06D2C1006A3455 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBE71A518C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  440. 431BB6E31D06D2C1006A3455 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D85148C56230056699D /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  441. 431BB6E61D06D2C1006A3455 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D95148C56230056699D /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  442. 431BB6E71D06D2C1006A3455 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D88148C56230056699D /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  443. 431BB6E91D06D2C1006A3455 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E316460AE2002868E7 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  444. 431BB6EB1D06D2C1006A3455 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB615301192DA24600A2D8E9 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  445. 431BB6EE1D06D2C1006A3455 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5B9140188EE8DD006D06BD /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
  446. 431BB6EF1D06D2C1006A3455 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D91148C56230056699D /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
  447. 431BB6F01D06D2C1006A3455 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E71646388E002868E7 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  448. 431BB6F61D06D2C1006A3455 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  449. 431BB6F91D06D2C1006A3455 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A18A6CC5172DC28500419892 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
  450. 431BB6FA1D06D2C1006A3455 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8B148C56230056699D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
  451. 4369C2771D9807EC007E863A /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4369C2751D9807EC007E863A /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  452. 4369C2781D9807EC007E863A /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4369C2751D9807EC007E863A /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  453. 4369C2791D9807EC007E863A /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4369C2751D9807EC007E863A /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  454. 4369C27A1D9807EC007E863A /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4369C2751D9807EC007E863A /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  455. 4369C27B1D9807EC007E863A /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4369C2751D9807EC007E863A /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  456. 4369C27C1D9807EC007E863A /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4369C2751D9807EC007E863A /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  457. 4369C27E1D9807EC007E863A /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4369C2761D9807EC007E863A /* UIView+WebCache.m */; };
  458. 4369C27F1D9807EC007E863A /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4369C2761D9807EC007E863A /* UIView+WebCache.m */; };
  459. 4369C2801D9807EC007E863A /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4369C2761D9807EC007E863A /* UIView+WebCache.m */; };
  460. 4369C2811D9807EC007E863A /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4369C2761D9807EC007E863A /* UIView+WebCache.m */; };
  461. 4369C2821D9807EC007E863A /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4369C2761D9807EC007E863A /* UIView+WebCache.m */; };
  462. 4369C2831D9807EC007E863A /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4369C2761D9807EC007E863A /* UIView+WebCache.m */; };
  463. 438096721CDFC08200DC626B /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 535699B415113E7300A4C397 /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  464. 438096731CDFC08F00DC626B /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 535699B515113E7300A4C397 /* MKAnnotationView+WebCache.m */; };
  465. 438096741CDFC09C00DC626B /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB911762547C00698166 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; };
  466. 438096751CDFC0A100DC626B /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB921762547C00698166 /* UIImage+WebP.m */; };
  467. 4397D27E1D0DDD8C00BB2784 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = A18A6CC6172DC28500419892 /* UIImage+GIF.m */; };
  468. 4397D27F1D0DDD8C00BB2784 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB921762547C00698166 /* UIImage+WebP.m */; };
  469. 4397D28C1D0DDD8C00BB2784 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D96148C56230056699D /* UIImageView+WebCache.m */; };
  470. 4397D28F1D0DDD8C00BB2784 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 530E49E416460AE2002868E7 /* SDWebImageDownloaderOperation.m */; };
  471. 4397D2911D0DDD8C00BB2784 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 535699B515113E7300A4C397 /* MKAnnotationView+WebCache.m */; };
  472. 4397D2921D0DDD8C00BB2784 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D92148C56230056699D /* SDWebImagePrefetcher.m */; };
  473. 4397D2961D0DDD8C00BB2784 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */; };
  474. 4397D29B1D0DDD8C00BB2784 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8C148C56230056699D /* SDWebImageDownloader.m */; };
  475. 4397D29C1D0DDD8C00BB2784 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B9141188EE8DD006D06BD /* NSData+ImageContentType.m */; };
  476. 4397D2A11D0DDD8C00BB2784 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8F148C56230056699D /* SDWebImageManager.m */; };
  477. 4397D2A61D0DDD8C00BB2784 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5340674F167780C40042B59E /* SDWebImageCompat.m */; };
  478. 4397D2A81D0DDD8C00BB2784 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D94148C56230056699D /* UIButton+WebCache.m */; };
  479. 4397D2AB1D0DDD8C00BB2784 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AB615302192DA24600A2D8E9 /* UIView+WebCacheOperation.m */; };
  480. 4397D2AE1D0DDD8C00BB2784 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBE71A618C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m */; };
  481. 4397D2B01D0DDD8C00BB2784 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D86148C56230056699D /* SDImageCache.m */; };
  482. 4397D2BA1D0DDD8C00BB2784 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC51998E60B007367ED /* demux.h */; };
  483. 4397D2BD1D0DDD8C00BB2784 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CCA1998E60B007367ED /* types.h */; };
  484. 4397D2C01D0DDD8C00BB2784 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2CAE031AB4BB5400B6BC39 /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
  485. 4397D2C11D0DDD8C00BB2784 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC71998E60B007367ED /* format_constants.h */; };
  486. 4397D2C31D0DDD8C00BB2784 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8E148C56230056699D /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  487. 4397D2C41D0DDD8C00BB2784 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D85148C56230056699D /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  488. 4397D2C51D0DDD8C00BB2784 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D95148C56230056699D /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  489. 4397D2C81D0DDD8C00BB2784 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D88148C56230056699D /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  490. 4397D2CB1D0DDD8C00BB2784 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBE71A518C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  491. 4397D2CC1D0DDD8C00BB2784 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC81998E60B007367ED /* mux.h */; };
  492. 4397D2D01D0DDD8C00BB2784 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E316460AE2002868E7 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  493. 4397D2D11D0DDD8C00BB2784 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC41998E60B007367ED /* decode.h */; };
  494. 4397D2D81D0DDD8C00BB2784 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D93148C56230056699D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  495. 4397D2D91D0DDD8C00BB2784 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D91148C56230056699D /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
  496. 4397D2DA1D0DDD8C00BB2784 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB615301192DA24600A2D8E9 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  497. 4397D2DB1D0DDD8C00BB2784 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  498. 4397D2DC1D0DDD8C00BB2784 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E71646388E002868E7 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  499. 4397D2E11D0DDD8C00BB2784 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8B148C56230056699D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
  500. 4397D2E31D0DDD8C00BB2784 /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 535699B415113E7300A4C397 /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  501. 4397D2E61D0DDD8C00BB2784 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC61998E60B007367ED /* encode.h */; };
  502. 4397D2E91D0DDD8C00BB2784 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB911762547C00698166 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; };
  503. 4397D2EA1D0DDD8C00BB2784 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A18A6CC5172DC28500419892 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
  504. 4397D2EB1D0DDD8C00BB2784 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5B9140188EE8DD006D06BD /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
  505. 4397D2ED1D0DDD8C00BB2784 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC91998E60B007367ED /* mux_types.h */; };
  506. 4397D2F61D0DE2DF00BB2784 /* NSImage+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4397D2F41D0DE2DF00BB2784 /* NSImage+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  507. 4397D2F71D0DE2DF00BB2784 /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4397D2F51D0DE2DF00BB2784 /* NSImage+WebCache.m */; };
  508. 4397D2F81D0DF44200BB2784 /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 535699B415113E7300A4C397 /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  509. 4397D2F91D0DF44A00BB2784 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 535699B515113E7300A4C397 /* MKAnnotationView+WebCache.m */; };
  510. 43A62A1B1D0E0A800089D7DD /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC41998E60B007367ED /* decode.h */; };
  511. 43A62A1C1D0E0A800089D7DD /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC51998E60B007367ED /* demux.h */; };
  512. 43A62A1D1D0E0A800089D7DD /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC61998E60B007367ED /* encode.h */; };
  513. 43A62A1E1D0E0A800089D7DD /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC71998E60B007367ED /* format_constants.h */; };
  514. 43A62A1F1D0E0A800089D7DD /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC81998E60B007367ED /* mux.h */; };
  515. 43A62A201D0E0A800089D7DD /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CC91998E60B007367ED /* mux_types.h */; };
  516. 43A62A211D0E0A800089D7DD /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = DA577CCA1998E60B007367ED /* types.h */; };
  517. 43A918641D8308FE00B3925F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A918621D8308FE00B3925F /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
  518. 43A918651D8308FE00B3925F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A918621D8308FE00B3925F /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
  519. 43A918661D8308FE00B3925F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A918621D8308FE00B3925F /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
  520. 43A918671D8308FE00B3925F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A918621D8308FE00B3925F /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
  521. 43A918681D8308FE00B3925F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A918621D8308FE00B3925F /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
  522. 43A918691D8308FE00B3925F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A918621D8308FE00B3925F /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
  523. 43A9186B1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 43A918631D8308FE00B3925F /* SDImageCacheConfig.m */; };
  524. 43A9186C1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 43A918631D8308FE00B3925F /* SDImageCacheConfig.m */; };
  525. 43A9186D1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 43A918631D8308FE00B3925F /* SDImageCacheConfig.m */; };
  526. 43A9186E1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 43A918631D8308FE00B3925F /* SDImageCacheConfig.m */; };
  527. 43A9186F1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 43A918631D8308FE00B3925F /* SDImageCacheConfig.m */; };
  528. 43A918701D8308FE00B3925F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 43A918631D8308FE00B3925F /* SDImageCacheConfig.m */; };
  529. 43C8929A1D9D6DD70022038D /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892981D9D6DD70022038D /* anim_decode.c */; };
  530. 43C8929B1D9D6DD70022038D /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892991D9D6DD70022038D /* demux.c */; };
  531. 43C8929C1D9D6DD90022038D /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892981D9D6DD70022038D /* anim_decode.c */; };
  532. 43C8929D1D9D6DD90022038D /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892981D9D6DD70022038D /* anim_decode.c */; };
  533. 43C8929E1D9D6DDA0022038D /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892981D9D6DD70022038D /* anim_decode.c */; };
  534. 43C8929F1D9D6DDA0022038D /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892981D9D6DD70022038D /* anim_decode.c */; };
  535. 43C892A01D9D6DDA0022038D /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892981D9D6DD70022038D /* anim_decode.c */; };
  536. 43C892A11D9D6DDC0022038D /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892991D9D6DD70022038D /* demux.c */; };
  537. 43C892A21D9D6DDD0022038D /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892991D9D6DD70022038D /* demux.c */; };
  538. 43C892A31D9D6DDD0022038D /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892991D9D6DD70022038D /* demux.c */; };
  539. 43C892A41D9D6DDD0022038D /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892991D9D6DD70022038D /* demux.c */; };
  540. 43C892A51D9D6DDE0022038D /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C892991D9D6DD70022038D /* demux.c */; };
  541. 43CE75761CFE9427006C64D0 /* FLAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE75491CFE9427006C64D0 /* FLAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
  542. 43CE75771CFE9427006C64D0 /* FLAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE75491CFE9427006C64D0 /* FLAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
  543. 43CE75781CFE9427006C64D0 /* FLAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE75491CFE9427006C64D0 /* FLAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
  544. 43CE75791CFE9427006C64D0 /* FLAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE754A1CFE9427006C64D0 /* FLAnimatedImage.m */; };
  545. 43CE757A1CFE9427006C64D0 /* FLAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE754A1CFE9427006C64D0 /* FLAnimatedImage.m */; };
  546. 43CE757B1CFE9427006C64D0 /* FLAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE754A1CFE9427006C64D0 /* FLAnimatedImage.m */; };
  547. 43CE757C1CFE9427006C64D0 /* FLAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE754B1CFE9427006C64D0 /* FLAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  548. 43CE757D1CFE9427006C64D0 /* FLAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE754B1CFE9427006C64D0 /* FLAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  549. 43CE757E1CFE9427006C64D0 /* FLAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE754B1CFE9427006C64D0 /* FLAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  550. 43CE757F1CFE9427006C64D0 /* FLAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE754C1CFE9427006C64D0 /* FLAnimatedImageView.m */; };
  551. 43CE75801CFE9427006C64D0 /* FLAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE754C1CFE9427006C64D0 /* FLAnimatedImageView.m */; };
  552. 43CE75811CFE9427006C64D0 /* FLAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE754C1CFE9427006C64D0 /* FLAnimatedImageView.m */; };
  553. 43CE75D01CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE75CE1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  554. 43CE75D11CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE75CE1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  555. 43CE75D21CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE75CE1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  556. 43CE75D31CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE75CF1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m */; };
  557. 43CE75D41CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE75CF1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m */; };
  558. 43CE75D51CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CE75CF1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m */; };
  559. 4A2CAE041AB4BB5400B6BC39 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2CAE031AB4BB5400B6BC39 /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
  560. 4A2CAE181AB4BB6400B6BC39 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D88148C56230056699D /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  561. 4A2CAE191AB4BB6400B6BC39 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5340674F167780C40042B59E /* SDWebImageCompat.m */; };
  562. 4A2CAE1A1AB4BB6400B6BC39 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E71646388E002868E7 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  563. 4A2CAE1B1AB4BB6800B6BC39 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8B148C56230056699D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
  564. 4A2CAE1C1AB4BB6800B6BC39 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8C148C56230056699D /* SDWebImageDownloader.m */; };
  565. 4A2CAE1D1AB4BB6800B6BC39 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E316460AE2002868E7 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  566. 4A2CAE1E1AB4BB6800B6BC39 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 530E49E416460AE2002868E7 /* SDWebImageDownloaderOperation.m */; };
  567. 4A2CAE1F1AB4BB6C00B6BC39 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D85148C56230056699D /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  568. 4A2CAE201AB4BB6C00B6BC39 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D86148C56230056699D /* SDImageCache.m */; };
  569. 4A2CAE211AB4BB7000B6BC39 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8E148C56230056699D /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  570. 4A2CAE221AB4BB7000B6BC39 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8F148C56230056699D /* SDWebImageManager.m */; };
  571. 4A2CAE251AB4BB7000B6BC39 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D91148C56230056699D /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
  572. 4A2CAE261AB4BB7000B6BC39 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D92148C56230056699D /* SDWebImagePrefetcher.m */; };
  573. 4A2CAE271AB4BB7500B6BC39 /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 535699B415113E7300A4C397 /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  574. 4A2CAE281AB4BB7500B6BC39 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 535699B515113E7300A4C397 /* MKAnnotationView+WebCache.m */; };
  575. 4A2CAE291AB4BB7500B6BC39 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5B9140188EE8DD006D06BD /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
  576. 4A2CAE2A1AB4BB7500B6BC39 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B9141188EE8DD006D06BD /* NSData+ImageContentType.m */; };
  577. 4A2CAE2B1AB4BB7500B6BC39 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D93148C56230056699D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  578. 4A2CAE2C1AB4BB7500B6BC39 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D94148C56230056699D /* UIButton+WebCache.m */; };
  579. 4A2CAE2D1AB4BB7500B6BC39 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A18A6CC5172DC28500419892 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
  580. 4A2CAE2E1AB4BB7500B6BC39 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = A18A6CC6172DC28500419892 /* UIImage+GIF.m */; };
  581. 4A2CAE2F1AB4BB7500B6BC39 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  582. 4A2CAE301AB4BB7500B6BC39 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */; };
  583. 4A2CAE311AB4BB7500B6BC39 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB911762547C00698166 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; };
  584. 4A2CAE321AB4BB7500B6BC39 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB921762547C00698166 /* UIImage+WebP.m */; };
  585. 4A2CAE331AB4BB7500B6BC39 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBE71A518C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  586. 4A2CAE341AB4BB7500B6BC39 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBE71A618C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m */; };
  587. 4A2CAE351AB4BB7500B6BC39 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D95148C56230056699D /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  588. 4A2CAE361AB4BB7500B6BC39 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D96148C56230056699D /* UIImageView+WebCache.m */; };
  589. 4A2CAE371AB4BB7500B6BC39 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB615301192DA24600A2D8E9 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  590. 4A2CAE381AB4BB7500B6BC39 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AB615302192DA24600A2D8E9 /* UIView+WebCacheOperation.m */; };
  591. 530E49E816464C25002868E7 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E71646388E002868E7 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  592. 530E49EA16464C7C002868E7 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530E49E316460AE2002868E7 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  593. 530E49EC16464C84002868E7 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 530E49E416460AE2002868E7 /* SDWebImageDownloaderOperation.m */; };
  594. 53406750167780C40042B59E /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5340674F167780C40042B59E /* SDWebImageCompat.m */; };
  595. 53761309155AD0D5005750A4 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D86148C56230056699D /* SDImageCache.m */; };
  596. 5376130B155AD0D5005750A4 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8C148C56230056699D /* SDWebImageDownloader.m */; };
  597. 5376130C155AD0D5005750A4 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D8F148C56230056699D /* SDWebImageManager.m */; };
  598. 5376130D155AD0D5005750A4 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D92148C56230056699D /* SDWebImagePrefetcher.m */; };
  599. 5376130E155AD0D5005750A4 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D94148C56230056699D /* UIButton+WebCache.m */; };
  600. 5376130F155AD0D5005750A4 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53922D96148C56230056699D /* UIImageView+WebCache.m */; };
  601. 53761312155AD0D5005750A4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53FB894814D35E9E0020B787 /* UIKit.framework */; };
  602. 53761313155AD0D5005750A4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53922D72148C55820056699D /* Foundation.framework */; };
  603. 53761314155AD0D5005750A4 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53FB893F14D35D1A0020B787 /* CoreGraphics.framework */; };
  604. 53761316155AD0D5005750A4 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D85148C56230056699D /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  605. 53761318155AD0D5005750A4 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D88148C56230056699D /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  606. 5376131A155AD0D5005750A4 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8B148C56230056699D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
  607. 5376131C155AD0D5005750A4 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D8E148C56230056699D /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  608. 5376131E155AD0D5005750A4 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D91148C56230056699D /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
  609. 5376131F155AD0D5005750A4 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D93148C56230056699D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  610. 53761320155AD0D5005750A4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D95148C56230056699D /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  611. 53EDFB8A17623F7C00698166 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
  612. 53EDFB8C17623F7C00698166 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */; };
  613. 5D5B9142188EE8DD006D06BD /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5B9140188EE8DD006D06BD /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
  614. 5D5B9145188EE8DD006D06BD /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B9141188EE8DD006D06BD /* NSData+ImageContentType.m */; };
  615. 80377BF81F2F665300F89830 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BDE1F2F665300F89830 /* bit_reader_inl_utils.h */; };
  616. 80377BF91F2F665300F89830 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BDF1F2F665300F89830 /* bit_reader_utils.c */; };
  617. 80377BFA1F2F665300F89830 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE01F2F665300F89830 /* bit_reader_utils.h */; };
  618. 80377BFB1F2F665300F89830 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE11F2F665300F89830 /* bit_writer_utils.c */; };
  619. 80377BFC1F2F665300F89830 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE21F2F665300F89830 /* bit_writer_utils.h */; };
  620. 80377BFD1F2F665300F89830 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE31F2F665300F89830 /* color_cache_utils.c */; };
  621. 80377BFE1F2F665300F89830 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE41F2F665300F89830 /* color_cache_utils.h */; };
  622. 80377BFF1F2F665300F89830 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE51F2F665300F89830 /* endian_inl_utils.h */; };
  623. 80377C001F2F665300F89830 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE61F2F665300F89830 /* filters_utils.c */; };
  624. 80377C011F2F665300F89830 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE71F2F665300F89830 /* filters_utils.h */; };
  625. 80377C021F2F665300F89830 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE81F2F665300F89830 /* huffman_encode_utils.c */; };
  626. 80377C031F2F665300F89830 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE91F2F665300F89830 /* huffman_encode_utils.h */; };
  627. 80377C041F2F665300F89830 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEA1F2F665300F89830 /* huffman_utils.c */; };
  628. 80377C051F2F665300F89830 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEB1F2F665300F89830 /* huffman_utils.h */; };
  629. 80377C061F2F665300F89830 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEC1F2F665300F89830 /* quant_levels_dec_utils.c */; };
  630. 80377C071F2F665300F89830 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BED1F2F665300F89830 /* quant_levels_dec_utils.h */; };
  631. 80377C081F2F665300F89830 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEE1F2F665300F89830 /* quant_levels_utils.c */; };
  632. 80377C091F2F665300F89830 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEF1F2F665300F89830 /* quant_levels_utils.h */; };
  633. 80377C0A1F2F665300F89830 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF01F2F665300F89830 /* random_utils.c */; };
  634. 80377C0B1F2F665300F89830 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF11F2F665300F89830 /* random_utils.h */; };
  635. 80377C0C1F2F665300F89830 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF21F2F665300F89830 /* rescaler_utils.c */; };
  636. 80377C0D1F2F665300F89830 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF31F2F665300F89830 /* rescaler_utils.h */; };
  637. 80377C0E1F2F665300F89830 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF41F2F665300F89830 /* thread_utils.c */; };
  638. 80377C0F1F2F665300F89830 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF51F2F665300F89830 /* thread_utils.h */; };
  639. 80377C101F2F665300F89830 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF61F2F665300F89830 /* utils.c */; };
  640. 80377C111F2F665300F89830 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF71F2F665300F89830 /* utils.h */; };
  641. 80377C121F2F666300F89830 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BDE1F2F665300F89830 /* bit_reader_inl_utils.h */; };
  642. 80377C131F2F666300F89830 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BDF1F2F665300F89830 /* bit_reader_utils.c */; };
  643. 80377C141F2F666300F89830 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE01F2F665300F89830 /* bit_reader_utils.h */; };
  644. 80377C151F2F666300F89830 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE11F2F665300F89830 /* bit_writer_utils.c */; };
  645. 80377C161F2F666300F89830 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE21F2F665300F89830 /* bit_writer_utils.h */; };
  646. 80377C171F2F666300F89830 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE31F2F665300F89830 /* color_cache_utils.c */; };
  647. 80377C181F2F666300F89830 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE41F2F665300F89830 /* color_cache_utils.h */; };
  648. 80377C191F2F666300F89830 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE51F2F665300F89830 /* endian_inl_utils.h */; };
  649. 80377C1A1F2F666300F89830 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE61F2F665300F89830 /* filters_utils.c */; };
  650. 80377C1B1F2F666300F89830 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE71F2F665300F89830 /* filters_utils.h */; };
  651. 80377C1C1F2F666300F89830 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE81F2F665300F89830 /* huffman_encode_utils.c */; };
  652. 80377C1D1F2F666300F89830 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE91F2F665300F89830 /* huffman_encode_utils.h */; };
  653. 80377C1E1F2F666300F89830 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEA1F2F665300F89830 /* huffman_utils.c */; };
  654. 80377C1F1F2F666300F89830 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEB1F2F665300F89830 /* huffman_utils.h */; };
  655. 80377C201F2F666300F89830 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEC1F2F665300F89830 /* quant_levels_dec_utils.c */; };
  656. 80377C211F2F666300F89830 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BED1F2F665300F89830 /* quant_levels_dec_utils.h */; };
  657. 80377C221F2F666300F89830 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEE1F2F665300F89830 /* quant_levels_utils.c */; };
  658. 80377C231F2F666300F89830 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEF1F2F665300F89830 /* quant_levels_utils.h */; };
  659. 80377C241F2F666300F89830 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF01F2F665300F89830 /* random_utils.c */; };
  660. 80377C251F2F666300F89830 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF11F2F665300F89830 /* random_utils.h */; };
  661. 80377C261F2F666300F89830 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF21F2F665300F89830 /* rescaler_utils.c */; };
  662. 80377C271F2F666300F89830 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF31F2F665300F89830 /* rescaler_utils.h */; };
  663. 80377C281F2F666300F89830 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF41F2F665300F89830 /* thread_utils.c */; };
  664. 80377C291F2F666300F89830 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF51F2F665300F89830 /* thread_utils.h */; };
  665. 80377C2A1F2F666300F89830 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF61F2F665300F89830 /* utils.c */; };
  666. 80377C2B1F2F666300F89830 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF71F2F665300F89830 /* utils.h */; };
  667. 80377C2C1F2F666300F89830 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BDE1F2F665300F89830 /* bit_reader_inl_utils.h */; };
  668. 80377C2D1F2F666300F89830 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BDF1F2F665300F89830 /* bit_reader_utils.c */; };
  669. 80377C2E1F2F666300F89830 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE01F2F665300F89830 /* bit_reader_utils.h */; };
  670. 80377C2F1F2F666300F89830 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE11F2F665300F89830 /* bit_writer_utils.c */; };
  671. 80377C301F2F666300F89830 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE21F2F665300F89830 /* bit_writer_utils.h */; };
  672. 80377C311F2F666300F89830 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE31F2F665300F89830 /* color_cache_utils.c */; };
  673. 80377C321F2F666300F89830 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE41F2F665300F89830 /* color_cache_utils.h */; };
  674. 80377C331F2F666300F89830 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE51F2F665300F89830 /* endian_inl_utils.h */; };
  675. 80377C341F2F666300F89830 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE61F2F665300F89830 /* filters_utils.c */; };
  676. 80377C351F2F666300F89830 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE71F2F665300F89830 /* filters_utils.h */; };
  677. 80377C361F2F666300F89830 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE81F2F665300F89830 /* huffman_encode_utils.c */; };
  678. 80377C371F2F666300F89830 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE91F2F665300F89830 /* huffman_encode_utils.h */; };
  679. 80377C381F2F666300F89830 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEA1F2F665300F89830 /* huffman_utils.c */; };
  680. 80377C391F2F666300F89830 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEB1F2F665300F89830 /* huffman_utils.h */; };
  681. 80377C3A1F2F666300F89830 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEC1F2F665300F89830 /* quant_levels_dec_utils.c */; };
  682. 80377C3B1F2F666300F89830 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BED1F2F665300F89830 /* quant_levels_dec_utils.h */; };
  683. 80377C3C1F2F666300F89830 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEE1F2F665300F89830 /* quant_levels_utils.c */; };
  684. 80377C3D1F2F666300F89830 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEF1F2F665300F89830 /* quant_levels_utils.h */; };
  685. 80377C3E1F2F666300F89830 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF01F2F665300F89830 /* random_utils.c */; };
  686. 80377C3F1F2F666300F89830 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF11F2F665300F89830 /* random_utils.h */; };
  687. 80377C401F2F666300F89830 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF21F2F665300F89830 /* rescaler_utils.c */; };
  688. 80377C411F2F666300F89830 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF31F2F665300F89830 /* rescaler_utils.h */; };
  689. 80377C421F2F666300F89830 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF41F2F665300F89830 /* thread_utils.c */; };
  690. 80377C431F2F666300F89830 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF51F2F665300F89830 /* thread_utils.h */; };
  691. 80377C441F2F666300F89830 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF61F2F665300F89830 /* utils.c */; };
  692. 80377C451F2F666300F89830 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF71F2F665300F89830 /* utils.h */; };
  693. 80377C461F2F666300F89830 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BDE1F2F665300F89830 /* bit_reader_inl_utils.h */; };
  694. 80377C471F2F666300F89830 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BDF1F2F665300F89830 /* bit_reader_utils.c */; };
  695. 80377C481F2F666300F89830 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE01F2F665300F89830 /* bit_reader_utils.h */; };
  696. 80377C491F2F666300F89830 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE11F2F665300F89830 /* bit_writer_utils.c */; };
  697. 80377C4A1F2F666300F89830 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE21F2F665300F89830 /* bit_writer_utils.h */; };
  698. 80377C4B1F2F666300F89830 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE31F2F665300F89830 /* color_cache_utils.c */; };
  699. 80377C4C1F2F666300F89830 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE41F2F665300F89830 /* color_cache_utils.h */; };
  700. 80377C4D1F2F666300F89830 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE51F2F665300F89830 /* endian_inl_utils.h */; };
  701. 80377C4E1F2F666300F89830 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE61F2F665300F89830 /* filters_utils.c */; };
  702. 80377C4F1F2F666300F89830 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE71F2F665300F89830 /* filters_utils.h */; };
  703. 80377C501F2F666300F89830 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE81F2F665300F89830 /* huffman_encode_utils.c */; };
  704. 80377C511F2F666300F89830 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE91F2F665300F89830 /* huffman_encode_utils.h */; };
  705. 80377C521F2F666300F89830 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEA1F2F665300F89830 /* huffman_utils.c */; };
  706. 80377C531F2F666300F89830 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEB1F2F665300F89830 /* huffman_utils.h */; };
  707. 80377C541F2F666300F89830 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEC1F2F665300F89830 /* quant_levels_dec_utils.c */; };
  708. 80377C551F2F666300F89830 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BED1F2F665300F89830 /* quant_levels_dec_utils.h */; };
  709. 80377C561F2F666300F89830 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEE1F2F665300F89830 /* quant_levels_utils.c */; };
  710. 80377C571F2F666300F89830 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEF1F2F665300F89830 /* quant_levels_utils.h */; };
  711. 80377C581F2F666300F89830 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF01F2F665300F89830 /* random_utils.c */; };
  712. 80377C591F2F666300F89830 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF11F2F665300F89830 /* random_utils.h */; };
  713. 80377C5A1F2F666300F89830 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF21F2F665300F89830 /* rescaler_utils.c */; };
  714. 80377C5B1F2F666300F89830 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF31F2F665300F89830 /* rescaler_utils.h */; };
  715. 80377C5C1F2F666300F89830 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF41F2F665300F89830 /* thread_utils.c */; };
  716. 80377C5D1F2F666300F89830 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF51F2F665300F89830 /* thread_utils.h */; };
  717. 80377C5E1F2F666300F89830 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF61F2F665300F89830 /* utils.c */; };
  718. 80377C5F1F2F666300F89830 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF71F2F665300F89830 /* utils.h */; };
  719. 80377C601F2F666400F89830 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BDE1F2F665300F89830 /* bit_reader_inl_utils.h */; };
  720. 80377C611F2F666400F89830 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BDF1F2F665300F89830 /* bit_reader_utils.c */; };
  721. 80377C621F2F666400F89830 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE01F2F665300F89830 /* bit_reader_utils.h */; };
  722. 80377C631F2F666400F89830 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE11F2F665300F89830 /* bit_writer_utils.c */; };
  723. 80377C641F2F666400F89830 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE21F2F665300F89830 /* bit_writer_utils.h */; };
  724. 80377C651F2F666400F89830 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE31F2F665300F89830 /* color_cache_utils.c */; };
  725. 80377C661F2F666400F89830 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE41F2F665300F89830 /* color_cache_utils.h */; };
  726. 80377C671F2F666400F89830 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE51F2F665300F89830 /* endian_inl_utils.h */; };
  727. 80377C681F2F666400F89830 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE61F2F665300F89830 /* filters_utils.c */; };
  728. 80377C691F2F666400F89830 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE71F2F665300F89830 /* filters_utils.h */; };
  729. 80377C6A1F2F666400F89830 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE81F2F665300F89830 /* huffman_encode_utils.c */; };
  730. 80377C6B1F2F666400F89830 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE91F2F665300F89830 /* huffman_encode_utils.h */; };
  731. 80377C6C1F2F666400F89830 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEA1F2F665300F89830 /* huffman_utils.c */; };
  732. 80377C6D1F2F666400F89830 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEB1F2F665300F89830 /* huffman_utils.h */; };
  733. 80377C6E1F2F666400F89830 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEC1F2F665300F89830 /* quant_levels_dec_utils.c */; };
  734. 80377C6F1F2F666400F89830 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BED1F2F665300F89830 /* quant_levels_dec_utils.h */; };
  735. 80377C701F2F666400F89830 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEE1F2F665300F89830 /* quant_levels_utils.c */; };
  736. 80377C711F2F666400F89830 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEF1F2F665300F89830 /* quant_levels_utils.h */; };
  737. 80377C721F2F666400F89830 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF01F2F665300F89830 /* random_utils.c */; };
  738. 80377C731F2F666400F89830 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF11F2F665300F89830 /* random_utils.h */; };
  739. 80377C741F2F666400F89830 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF21F2F665300F89830 /* rescaler_utils.c */; };
  740. 80377C751F2F666400F89830 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF31F2F665300F89830 /* rescaler_utils.h */; };
  741. 80377C761F2F666400F89830 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF41F2F665300F89830 /* thread_utils.c */; };
  742. 80377C771F2F666400F89830 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF51F2F665300F89830 /* thread_utils.h */; };
  743. 80377C781F2F666400F89830 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF61F2F665300F89830 /* utils.c */; };
  744. 80377C791F2F666400F89830 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF71F2F665300F89830 /* utils.h */; };
  745. 80377C7A1F2F666400F89830 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BDE1F2F665300F89830 /* bit_reader_inl_utils.h */; };
  746. 80377C7B1F2F666400F89830 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BDF1F2F665300F89830 /* bit_reader_utils.c */; };
  747. 80377C7C1F2F666400F89830 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE01F2F665300F89830 /* bit_reader_utils.h */; };
  748. 80377C7D1F2F666400F89830 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE11F2F665300F89830 /* bit_writer_utils.c */; };
  749. 80377C7E1F2F666400F89830 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE21F2F665300F89830 /* bit_writer_utils.h */; };
  750. 80377C7F1F2F666400F89830 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE31F2F665300F89830 /* color_cache_utils.c */; };
  751. 80377C801F2F666400F89830 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE41F2F665300F89830 /* color_cache_utils.h */; };
  752. 80377C811F2F666400F89830 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE51F2F665300F89830 /* endian_inl_utils.h */; };
  753. 80377C821F2F666400F89830 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE61F2F665300F89830 /* filters_utils.c */; };
  754. 80377C831F2F666400F89830 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE71F2F665300F89830 /* filters_utils.h */; };
  755. 80377C841F2F666400F89830 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BE81F2F665300F89830 /* huffman_encode_utils.c */; };
  756. 80377C851F2F666400F89830 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BE91F2F665300F89830 /* huffman_encode_utils.h */; };
  757. 80377C861F2F666400F89830 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEA1F2F665300F89830 /* huffman_utils.c */; };
  758. 80377C871F2F666400F89830 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEB1F2F665300F89830 /* huffman_utils.h */; };
  759. 80377C881F2F666400F89830 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEC1F2F665300F89830 /* quant_levels_dec_utils.c */; };
  760. 80377C891F2F666400F89830 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BED1F2F665300F89830 /* quant_levels_dec_utils.h */; };
  761. 80377C8A1F2F666400F89830 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BEE1F2F665300F89830 /* quant_levels_utils.c */; };
  762. 80377C8B1F2F666400F89830 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BEF1F2F665300F89830 /* quant_levels_utils.h */; };
  763. 80377C8C1F2F666400F89830 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF01F2F665300F89830 /* random_utils.c */; };
  764. 80377C8D1F2F666400F89830 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF11F2F665300F89830 /* random_utils.h */; };
  765. 80377C8E1F2F666400F89830 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF21F2F665300F89830 /* rescaler_utils.c */; };
  766. 80377C8F1F2F666400F89830 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF31F2F665300F89830 /* rescaler_utils.h */; };
  767. 80377C901F2F666400F89830 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF41F2F665300F89830 /* thread_utils.c */; };
  768. 80377C911F2F666400F89830 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF51F2F665300F89830 /* thread_utils.h */; };
  769. 80377C921F2F666400F89830 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377BF61F2F665300F89830 /* utils.c */; };
  770. 80377C931F2F666400F89830 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377BF71F2F665300F89830 /* utils.h */; };
  771. 80377CD91F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C941F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c */; };
  772. 80377CDA1F2F66A100F89830 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C951F2F66A100F89830 /* alpha_processing_neon.c */; };
  773. 80377CDB1F2F66A100F89830 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C961F2F66A100F89830 /* alpha_processing_sse2.c */; };
  774. 80377CDC1F2F66A100F89830 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C971F2F66A100F89830 /* alpha_processing_sse41.c */; };
  775. 80377CDD1F2F66A100F89830 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C981F2F66A100F89830 /* alpha_processing.c */; };
  776. 80377CDE1F2F66A100F89830 /* argb_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C991F2F66A100F89830 /* argb_mips_dsp_r2.c */; };
  777. 80377CDF1F2F66A100F89830 /* argb_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9A1F2F66A100F89830 /* argb_sse2.c */; };
  778. 80377CE01F2F66A100F89830 /* argb.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9B1F2F66A100F89830 /* argb.c */; };
  779. 80377CE11F2F66A100F89830 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377C9C1F2F66A100F89830 /* common_sse2.h */; };
  780. 80377CE21F2F66A100F89830 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9D1F2F66A100F89830 /* cost_mips_dsp_r2.c */; };
  781. 80377CE31F2F66A100F89830 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9E1F2F66A100F89830 /* cost_mips32.c */; };
  782. 80377CE41F2F66A100F89830 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9F1F2F66A100F89830 /* cost_sse2.c */; };
  783. 80377CE51F2F66A100F89830 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA01F2F66A100F89830 /* cost.c */; };
  784. 80377CE61F2F66A100F89830 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA11F2F66A100F89830 /* cpu.c */; };
  785. 80377CE71F2F66A100F89830 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA21F2F66A100F89830 /* dec_clip_tables.c */; };
  786. 80377CE81F2F66A100F89830 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA31F2F66A100F89830 /* dec_mips_dsp_r2.c */; };
  787. 80377CE91F2F66A100F89830 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA41F2F66A100F89830 /* dec_mips32.c */; };
  788. 80377CEA1F2F66A100F89830 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA51F2F66A100F89830 /* dec_msa.c */; };
  789. 80377CEB1F2F66A100F89830 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA61F2F66A100F89830 /* dec_neon.c */; };
  790. 80377CEC1F2F66A100F89830 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA71F2F66A100F89830 /* dec_sse2.c */; };
  791. 80377CED1F2F66A100F89830 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA81F2F66A100F89830 /* dec_sse41.c */; };
  792. 80377CEE1F2F66A100F89830 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA91F2F66A100F89830 /* dec.c */; };
  793. 80377CEF1F2F66A100F89830 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CAA1F2F66A100F89830 /* dsp.h */; };
  794. 80377CF01F2F66A100F89830 /* enc_avx2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAB1F2F66A100F89830 /* enc_avx2.c */; };
  795. 80377CF11F2F66A100F89830 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAC1F2F66A100F89830 /* enc_mips_dsp_r2.c */; };
  796. 80377CF21F2F66A100F89830 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAD1F2F66A100F89830 /* enc_mips32.c */; };
  797. 80377CF31F2F66A100F89830 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAE1F2F66A100F89830 /* enc_msa.c */; };
  798. 80377CF41F2F66A100F89830 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAF1F2F66A100F89830 /* enc_neon.c */; };
  799. 80377CF51F2F66A100F89830 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB01F2F66A100F89830 /* enc_sse2.c */; };
  800. 80377CF61F2F66A100F89830 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB11F2F66A100F89830 /* enc_sse41.c */; };
  801. 80377CF71F2F66A100F89830 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB21F2F66A100F89830 /* enc.c */; };
  802. 80377CF81F2F66A100F89830 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB31F2F66A100F89830 /* filters_mips_dsp_r2.c */; };
  803. 80377CF91F2F66A100F89830 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB41F2F66A100F89830 /* filters_msa.c */; };
  804. 80377CFA1F2F66A100F89830 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB51F2F66A100F89830 /* filters_neon.c */; };
  805. 80377CFB1F2F66A100F89830 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB61F2F66A100F89830 /* filters_sse2.c */; };
  806. 80377CFC1F2F66A100F89830 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB71F2F66A100F89830 /* filters.c */; };
  807. 80377CFD1F2F66A100F89830 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CB81F2F66A100F89830 /* lossless_common.h */; };
  808. 80377CFE1F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB91F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c */; };
  809. 80377CFF1F2F66A100F89830 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBA1F2F66A100F89830 /* lossless_enc_mips32.c */; };
  810. 80377D001F2F66A100F89830 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBB1F2F66A100F89830 /* lossless_enc_msa.c */; };
  811. 80377D011F2F66A100F89830 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBC1F2F66A100F89830 /* lossless_enc_neon.c */; };
  812. 80377D021F2F66A100F89830 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBD1F2F66A100F89830 /* lossless_enc_sse2.c */; };
  813. 80377D031F2F66A100F89830 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBE1F2F66A100F89830 /* lossless_enc_sse41.c */; };
  814. 80377D041F2F66A100F89830 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBF1F2F66A100F89830 /* lossless_enc.c */; };
  815. 80377D051F2F66A100F89830 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC01F2F66A100F89830 /* lossless_mips_dsp_r2.c */; };
  816. 80377D061F2F66A100F89830 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC11F2F66A100F89830 /* lossless_msa.c */; };
  817. 80377D071F2F66A100F89830 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC21F2F66A100F89830 /* lossless_neon.c */; };
  818. 80377D081F2F66A100F89830 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC31F2F66A100F89830 /* lossless_sse2.c */; };
  819. 80377D091F2F66A100F89830 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC41F2F66A100F89830 /* lossless.c */; };
  820. 80377D0A1F2F66A100F89830 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC51F2F66A100F89830 /* lossless.h */; };
  821. 80377D0B1F2F66A100F89830 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC61F2F66A100F89830 /* mips_macro.h */; };
  822. 80377D0C1F2F66A100F89830 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC71F2F66A100F89830 /* msa_macro.h */; };
  823. 80377D0D1F2F66A100F89830 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC81F2F66A100F89830 /* neon.h */; };
  824. 80377D0E1F2F66A100F89830 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC91F2F66A100F89830 /* rescaler_mips_dsp_r2.c */; };
  825. 80377D0F1F2F66A100F89830 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCA1F2F66A100F89830 /* rescaler_mips32.c */; };
  826. 80377D101F2F66A100F89830 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCB1F2F66A100F89830 /* rescaler_msa.c */; };
  827. 80377D111F2F66A100F89830 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCC1F2F66A100F89830 /* rescaler_neon.c */; };
  828. 80377D121F2F66A100F89830 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCD1F2F66A100F89830 /* rescaler_sse2.c */; };
  829. 80377D131F2F66A100F89830 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCE1F2F66A100F89830 /* rescaler.c */; };
  830. 80377D141F2F66A100F89830 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCF1F2F66A100F89830 /* upsampling_mips_dsp_r2.c */; };
  831. 80377D151F2F66A100F89830 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD01F2F66A100F89830 /* upsampling_msa.c */; };
  832. 80377D161F2F66A100F89830 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD11F2F66A100F89830 /* upsampling_neon.c */; };
  833. 80377D171F2F66A100F89830 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD21F2F66A100F89830 /* upsampling_sse2.c */; };
  834. 80377D181F2F66A100F89830 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD31F2F66A100F89830 /* upsampling.c */; };
  835. 80377D191F2F66A100F89830 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD41F2F66A100F89830 /* yuv_mips_dsp_r2.c */; };
  836. 80377D1A1F2F66A100F89830 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD51F2F66A100F89830 /* yuv_mips32.c */; };
  837. 80377D1B1F2F66A100F89830 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD61F2F66A100F89830 /* yuv_sse2.c */; };
  838. 80377D1C1F2F66A100F89830 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD71F2F66A100F89830 /* yuv.c */; };
  839. 80377D1D1F2F66A100F89830 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CD81F2F66A100F89830 /* yuv.h */; };
  840. 80377D1E1F2F66A700F89830 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C941F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c */; };
  841. 80377D1F1F2F66A700F89830 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C951F2F66A100F89830 /* alpha_processing_neon.c */; };
  842. 80377D201F2F66A700F89830 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C961F2F66A100F89830 /* alpha_processing_sse2.c */; };
  843. 80377D211F2F66A700F89830 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C971F2F66A100F89830 /* alpha_processing_sse41.c */; };
  844. 80377D221F2F66A700F89830 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C981F2F66A100F89830 /* alpha_processing.c */; };
  845. 80377D231F2F66A700F89830 /* argb_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C991F2F66A100F89830 /* argb_mips_dsp_r2.c */; };
  846. 80377D241F2F66A700F89830 /* argb_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9A1F2F66A100F89830 /* argb_sse2.c */; };
  847. 80377D251F2F66A700F89830 /* argb.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9B1F2F66A100F89830 /* argb.c */; };
  848. 80377D261F2F66A700F89830 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377C9C1F2F66A100F89830 /* common_sse2.h */; };
  849. 80377D271F2F66A700F89830 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9D1F2F66A100F89830 /* cost_mips_dsp_r2.c */; };
  850. 80377D281F2F66A700F89830 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9E1F2F66A100F89830 /* cost_mips32.c */; };
  851. 80377D291F2F66A700F89830 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9F1F2F66A100F89830 /* cost_sse2.c */; };
  852. 80377D2A1F2F66A700F89830 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA01F2F66A100F89830 /* cost.c */; };
  853. 80377D2B1F2F66A700F89830 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA11F2F66A100F89830 /* cpu.c */; };
  854. 80377D2C1F2F66A700F89830 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA21F2F66A100F89830 /* dec_clip_tables.c */; };
  855. 80377D2D1F2F66A700F89830 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA31F2F66A100F89830 /* dec_mips_dsp_r2.c */; };
  856. 80377D2E1F2F66A700F89830 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA41F2F66A100F89830 /* dec_mips32.c */; };
  857. 80377D2F1F2F66A700F89830 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA51F2F66A100F89830 /* dec_msa.c */; };
  858. 80377D301F2F66A700F89830 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA61F2F66A100F89830 /* dec_neon.c */; };
  859. 80377D311F2F66A700F89830 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA71F2F66A100F89830 /* dec_sse2.c */; };
  860. 80377D321F2F66A700F89830 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA81F2F66A100F89830 /* dec_sse41.c */; };
  861. 80377D331F2F66A700F89830 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA91F2F66A100F89830 /* dec.c */; };
  862. 80377D341F2F66A700F89830 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CAA1F2F66A100F89830 /* dsp.h */; };
  863. 80377D351F2F66A700F89830 /* enc_avx2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAB1F2F66A100F89830 /* enc_avx2.c */; };
  864. 80377D361F2F66A700F89830 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAC1F2F66A100F89830 /* enc_mips_dsp_r2.c */; };
  865. 80377D371F2F66A700F89830 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAD1F2F66A100F89830 /* enc_mips32.c */; };
  866. 80377D381F2F66A700F89830 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAE1F2F66A100F89830 /* enc_msa.c */; };
  867. 80377D391F2F66A700F89830 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAF1F2F66A100F89830 /* enc_neon.c */; };
  868. 80377D3A1F2F66A700F89830 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB01F2F66A100F89830 /* enc_sse2.c */; };
  869. 80377D3B1F2F66A700F89830 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB11F2F66A100F89830 /* enc_sse41.c */; };
  870. 80377D3C1F2F66A700F89830 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB21F2F66A100F89830 /* enc.c */; };
  871. 80377D3D1F2F66A700F89830 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB31F2F66A100F89830 /* filters_mips_dsp_r2.c */; };
  872. 80377D3E1F2F66A700F89830 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB41F2F66A100F89830 /* filters_msa.c */; };
  873. 80377D3F1F2F66A700F89830 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB51F2F66A100F89830 /* filters_neon.c */; };
  874. 80377D401F2F66A700F89830 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB61F2F66A100F89830 /* filters_sse2.c */; };
  875. 80377D411F2F66A700F89830 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB71F2F66A100F89830 /* filters.c */; };
  876. 80377D421F2F66A700F89830 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CB81F2F66A100F89830 /* lossless_common.h */; };
  877. 80377D431F2F66A700F89830 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB91F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c */; };
  878. 80377D441F2F66A700F89830 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBA1F2F66A100F89830 /* lossless_enc_mips32.c */; };
  879. 80377D451F2F66A700F89830 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBB1F2F66A100F89830 /* lossless_enc_msa.c */; };
  880. 80377D461F2F66A700F89830 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBC1F2F66A100F89830 /* lossless_enc_neon.c */; };
  881. 80377D471F2F66A700F89830 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBD1F2F66A100F89830 /* lossless_enc_sse2.c */; };
  882. 80377D481F2F66A700F89830 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBE1F2F66A100F89830 /* lossless_enc_sse41.c */; };
  883. 80377D491F2F66A700F89830 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBF1F2F66A100F89830 /* lossless_enc.c */; };
  884. 80377D4A1F2F66A700F89830 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC01F2F66A100F89830 /* lossless_mips_dsp_r2.c */; };
  885. 80377D4B1F2F66A700F89830 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC11F2F66A100F89830 /* lossless_msa.c */; };
  886. 80377D4C1F2F66A700F89830 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC21F2F66A100F89830 /* lossless_neon.c */; };
  887. 80377D4D1F2F66A700F89830 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC31F2F66A100F89830 /* lossless_sse2.c */; };
  888. 80377D4E1F2F66A700F89830 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC41F2F66A100F89830 /* lossless.c */; };
  889. 80377D4F1F2F66A700F89830 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC51F2F66A100F89830 /* lossless.h */; };
  890. 80377D501F2F66A700F89830 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC61F2F66A100F89830 /* mips_macro.h */; };
  891. 80377D511F2F66A700F89830 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC71F2F66A100F89830 /* msa_macro.h */; };
  892. 80377D521F2F66A700F89830 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC81F2F66A100F89830 /* neon.h */; };
  893. 80377D531F2F66A700F89830 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC91F2F66A100F89830 /* rescaler_mips_dsp_r2.c */; };
  894. 80377D541F2F66A700F89830 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCA1F2F66A100F89830 /* rescaler_mips32.c */; };
  895. 80377D551F2F66A700F89830 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCB1F2F66A100F89830 /* rescaler_msa.c */; };
  896. 80377D561F2F66A700F89830 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCC1F2F66A100F89830 /* rescaler_neon.c */; };
  897. 80377D571F2F66A700F89830 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCD1F2F66A100F89830 /* rescaler_sse2.c */; };
  898. 80377D581F2F66A700F89830 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCE1F2F66A100F89830 /* rescaler.c */; };
  899. 80377D591F2F66A700F89830 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCF1F2F66A100F89830 /* upsampling_mips_dsp_r2.c */; };
  900. 80377D5A1F2F66A700F89830 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD01F2F66A100F89830 /* upsampling_msa.c */; };
  901. 80377D5B1F2F66A700F89830 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD11F2F66A100F89830 /* upsampling_neon.c */; };
  902. 80377D5C1F2F66A700F89830 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD21F2F66A100F89830 /* upsampling_sse2.c */; };
  903. 80377D5D1F2F66A700F89830 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD31F2F66A100F89830 /* upsampling.c */; };
  904. 80377D5E1F2F66A700F89830 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD41F2F66A100F89830 /* yuv_mips_dsp_r2.c */; };
  905. 80377D5F1F2F66A700F89830 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD51F2F66A100F89830 /* yuv_mips32.c */; };
  906. 80377D601F2F66A700F89830 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD61F2F66A100F89830 /* yuv_sse2.c */; };
  907. 80377D611F2F66A700F89830 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD71F2F66A100F89830 /* yuv.c */; };
  908. 80377D621F2F66A700F89830 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CD81F2F66A100F89830 /* yuv.h */; };
  909. 80377D631F2F66A700F89830 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C941F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c */; };
  910. 80377D641F2F66A700F89830 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C951F2F66A100F89830 /* alpha_processing_neon.c */; };
  911. 80377D651F2F66A700F89830 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C961F2F66A100F89830 /* alpha_processing_sse2.c */; };
  912. 80377D661F2F66A700F89830 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C971F2F66A100F89830 /* alpha_processing_sse41.c */; };
  913. 80377D671F2F66A700F89830 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C981F2F66A100F89830 /* alpha_processing.c */; };
  914. 80377D681F2F66A700F89830 /* argb_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C991F2F66A100F89830 /* argb_mips_dsp_r2.c */; };
  915. 80377D691F2F66A700F89830 /* argb_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9A1F2F66A100F89830 /* argb_sse2.c */; };
  916. 80377D6A1F2F66A700F89830 /* argb.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9B1F2F66A100F89830 /* argb.c */; };
  917. 80377D6B1F2F66A700F89830 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377C9C1F2F66A100F89830 /* common_sse2.h */; };
  918. 80377D6C1F2F66A700F89830 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9D1F2F66A100F89830 /* cost_mips_dsp_r2.c */; };
  919. 80377D6D1F2F66A700F89830 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9E1F2F66A100F89830 /* cost_mips32.c */; };
  920. 80377D6E1F2F66A700F89830 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9F1F2F66A100F89830 /* cost_sse2.c */; };
  921. 80377D6F1F2F66A700F89830 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA01F2F66A100F89830 /* cost.c */; };
  922. 80377D701F2F66A700F89830 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA11F2F66A100F89830 /* cpu.c */; };
  923. 80377D711F2F66A700F89830 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA21F2F66A100F89830 /* dec_clip_tables.c */; };
  924. 80377D721F2F66A700F89830 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA31F2F66A100F89830 /* dec_mips_dsp_r2.c */; };
  925. 80377D731F2F66A700F89830 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA41F2F66A100F89830 /* dec_mips32.c */; };
  926. 80377D741F2F66A700F89830 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA51F2F66A100F89830 /* dec_msa.c */; };
  927. 80377D751F2F66A700F89830 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA61F2F66A100F89830 /* dec_neon.c */; };
  928. 80377D761F2F66A700F89830 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA71F2F66A100F89830 /* dec_sse2.c */; };
  929. 80377D771F2F66A700F89830 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA81F2F66A100F89830 /* dec_sse41.c */; };
  930. 80377D781F2F66A700F89830 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA91F2F66A100F89830 /* dec.c */; };
  931. 80377D791F2F66A700F89830 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CAA1F2F66A100F89830 /* dsp.h */; };
  932. 80377D7A1F2F66A700F89830 /* enc_avx2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAB1F2F66A100F89830 /* enc_avx2.c */; };
  933. 80377D7B1F2F66A700F89830 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAC1F2F66A100F89830 /* enc_mips_dsp_r2.c */; };
  934. 80377D7C1F2F66A700F89830 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAD1F2F66A100F89830 /* enc_mips32.c */; };
  935. 80377D7D1F2F66A700F89830 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAE1F2F66A100F89830 /* enc_msa.c */; };
  936. 80377D7E1F2F66A700F89830 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAF1F2F66A100F89830 /* enc_neon.c */; };
  937. 80377D7F1F2F66A700F89830 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB01F2F66A100F89830 /* enc_sse2.c */; };
  938. 80377D801F2F66A700F89830 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB11F2F66A100F89830 /* enc_sse41.c */; };
  939. 80377D811F2F66A700F89830 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB21F2F66A100F89830 /* enc.c */; };
  940. 80377D821F2F66A700F89830 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB31F2F66A100F89830 /* filters_mips_dsp_r2.c */; };
  941. 80377D831F2F66A700F89830 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB41F2F66A100F89830 /* filters_msa.c */; };
  942. 80377D841F2F66A700F89830 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB51F2F66A100F89830 /* filters_neon.c */; };
  943. 80377D851F2F66A700F89830 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB61F2F66A100F89830 /* filters_sse2.c */; };
  944. 80377D861F2F66A700F89830 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB71F2F66A100F89830 /* filters.c */; };
  945. 80377D871F2F66A700F89830 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CB81F2F66A100F89830 /* lossless_common.h */; };
  946. 80377D881F2F66A700F89830 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB91F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c */; };
  947. 80377D891F2F66A700F89830 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBA1F2F66A100F89830 /* lossless_enc_mips32.c */; };
  948. 80377D8A1F2F66A700F89830 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBB1F2F66A100F89830 /* lossless_enc_msa.c */; };
  949. 80377D8B1F2F66A700F89830 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBC1F2F66A100F89830 /* lossless_enc_neon.c */; };
  950. 80377D8C1F2F66A700F89830 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBD1F2F66A100F89830 /* lossless_enc_sse2.c */; };
  951. 80377D8D1F2F66A700F89830 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBE1F2F66A100F89830 /* lossless_enc_sse41.c */; };
  952. 80377D8E1F2F66A700F89830 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBF1F2F66A100F89830 /* lossless_enc.c */; };
  953. 80377D8F1F2F66A700F89830 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC01F2F66A100F89830 /* lossless_mips_dsp_r2.c */; };
  954. 80377D901F2F66A700F89830 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC11F2F66A100F89830 /* lossless_msa.c */; };
  955. 80377D911F2F66A700F89830 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC21F2F66A100F89830 /* lossless_neon.c */; };
  956. 80377D921F2F66A700F89830 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC31F2F66A100F89830 /* lossless_sse2.c */; };
  957. 80377D931F2F66A700F89830 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC41F2F66A100F89830 /* lossless.c */; };
  958. 80377D941F2F66A700F89830 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC51F2F66A100F89830 /* lossless.h */; };
  959. 80377D951F2F66A700F89830 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC61F2F66A100F89830 /* mips_macro.h */; };
  960. 80377D961F2F66A700F89830 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC71F2F66A100F89830 /* msa_macro.h */; };
  961. 80377D971F2F66A700F89830 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC81F2F66A100F89830 /* neon.h */; };
  962. 80377D981F2F66A700F89830 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC91F2F66A100F89830 /* rescaler_mips_dsp_r2.c */; };
  963. 80377D991F2F66A700F89830 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCA1F2F66A100F89830 /* rescaler_mips32.c */; };
  964. 80377D9A1F2F66A700F89830 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCB1F2F66A100F89830 /* rescaler_msa.c */; };
  965. 80377D9B1F2F66A700F89830 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCC1F2F66A100F89830 /* rescaler_neon.c */; };
  966. 80377D9C1F2F66A700F89830 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCD1F2F66A100F89830 /* rescaler_sse2.c */; };
  967. 80377D9D1F2F66A700F89830 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCE1F2F66A100F89830 /* rescaler.c */; };
  968. 80377D9E1F2F66A700F89830 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCF1F2F66A100F89830 /* upsampling_mips_dsp_r2.c */; };
  969. 80377D9F1F2F66A700F89830 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD01F2F66A100F89830 /* upsampling_msa.c */; };
  970. 80377DA01F2F66A700F89830 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD11F2F66A100F89830 /* upsampling_neon.c */; };
  971. 80377DA11F2F66A700F89830 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD21F2F66A100F89830 /* upsampling_sse2.c */; };
  972. 80377DA21F2F66A700F89830 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD31F2F66A100F89830 /* upsampling.c */; };
  973. 80377DA31F2F66A700F89830 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD41F2F66A100F89830 /* yuv_mips_dsp_r2.c */; };
  974. 80377DA41F2F66A700F89830 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD51F2F66A100F89830 /* yuv_mips32.c */; };
  975. 80377DA51F2F66A700F89830 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD61F2F66A100F89830 /* yuv_sse2.c */; };
  976. 80377DA61F2F66A700F89830 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD71F2F66A100F89830 /* yuv.c */; };
  977. 80377DA71F2F66A700F89830 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CD81F2F66A100F89830 /* yuv.h */; };
  978. 80377DA81F2F66A700F89830 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C941F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c */; };
  979. 80377DA91F2F66A700F89830 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C951F2F66A100F89830 /* alpha_processing_neon.c */; };
  980. 80377DAA1F2F66A700F89830 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C961F2F66A100F89830 /* alpha_processing_sse2.c */; };
  981. 80377DAB1F2F66A700F89830 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C971F2F66A100F89830 /* alpha_processing_sse41.c */; };
  982. 80377DAC1F2F66A700F89830 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C981F2F66A100F89830 /* alpha_processing.c */; };
  983. 80377DAD1F2F66A700F89830 /* argb_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C991F2F66A100F89830 /* argb_mips_dsp_r2.c */; };
  984. 80377DAE1F2F66A700F89830 /* argb_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9A1F2F66A100F89830 /* argb_sse2.c */; };
  985. 80377DAF1F2F66A700F89830 /* argb.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9B1F2F66A100F89830 /* argb.c */; };
  986. 80377DB01F2F66A700F89830 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377C9C1F2F66A100F89830 /* common_sse2.h */; };
  987. 80377DB11F2F66A700F89830 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9D1F2F66A100F89830 /* cost_mips_dsp_r2.c */; };
  988. 80377DB21F2F66A700F89830 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9E1F2F66A100F89830 /* cost_mips32.c */; };
  989. 80377DB31F2F66A700F89830 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9F1F2F66A100F89830 /* cost_sse2.c */; };
  990. 80377DB41F2F66A700F89830 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA01F2F66A100F89830 /* cost.c */; };
  991. 80377DB51F2F66A700F89830 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA11F2F66A100F89830 /* cpu.c */; };
  992. 80377DB61F2F66A700F89830 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA21F2F66A100F89830 /* dec_clip_tables.c */; };
  993. 80377DB71F2F66A700F89830 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA31F2F66A100F89830 /* dec_mips_dsp_r2.c */; };
  994. 80377DB81F2F66A700F89830 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA41F2F66A100F89830 /* dec_mips32.c */; };
  995. 80377DB91F2F66A700F89830 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA51F2F66A100F89830 /* dec_msa.c */; };
  996. 80377DBA1F2F66A700F89830 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA61F2F66A100F89830 /* dec_neon.c */; };
  997. 80377DBB1F2F66A700F89830 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA71F2F66A100F89830 /* dec_sse2.c */; };
  998. 80377DBC1F2F66A700F89830 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA81F2F66A100F89830 /* dec_sse41.c */; };
  999. 80377DBD1F2F66A700F89830 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA91F2F66A100F89830 /* dec.c */; };
  1000. 80377DBE1F2F66A700F89830 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CAA1F2F66A100F89830 /* dsp.h */; };
  1001. 80377DBF1F2F66A700F89830 /* enc_avx2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAB1F2F66A100F89830 /* enc_avx2.c */; };
  1002. 80377DC01F2F66A700F89830 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAC1F2F66A100F89830 /* enc_mips_dsp_r2.c */; };
  1003. 80377DC11F2F66A700F89830 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAD1F2F66A100F89830 /* enc_mips32.c */; };
  1004. 80377DC21F2F66A700F89830 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAE1F2F66A100F89830 /* enc_msa.c */; };
  1005. 80377DC31F2F66A700F89830 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAF1F2F66A100F89830 /* enc_neon.c */; };
  1006. 80377DC41F2F66A700F89830 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB01F2F66A100F89830 /* enc_sse2.c */; };
  1007. 80377DC51F2F66A700F89830 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB11F2F66A100F89830 /* enc_sse41.c */; };
  1008. 80377DC61F2F66A700F89830 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB21F2F66A100F89830 /* enc.c */; };
  1009. 80377DC71F2F66A700F89830 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB31F2F66A100F89830 /* filters_mips_dsp_r2.c */; };
  1010. 80377DC81F2F66A700F89830 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB41F2F66A100F89830 /* filters_msa.c */; };
  1011. 80377DC91F2F66A700F89830 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB51F2F66A100F89830 /* filters_neon.c */; };
  1012. 80377DCA1F2F66A700F89830 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB61F2F66A100F89830 /* filters_sse2.c */; };
  1013. 80377DCB1F2F66A700F89830 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB71F2F66A100F89830 /* filters.c */; };
  1014. 80377DCC1F2F66A700F89830 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CB81F2F66A100F89830 /* lossless_common.h */; };
  1015. 80377DCD1F2F66A700F89830 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB91F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c */; };
  1016. 80377DCE1F2F66A700F89830 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBA1F2F66A100F89830 /* lossless_enc_mips32.c */; };
  1017. 80377DCF1F2F66A700F89830 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBB1F2F66A100F89830 /* lossless_enc_msa.c */; };
  1018. 80377DD01F2F66A700F89830 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBC1F2F66A100F89830 /* lossless_enc_neon.c */; };
  1019. 80377DD11F2F66A700F89830 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBD1F2F66A100F89830 /* lossless_enc_sse2.c */; };
  1020. 80377DD21F2F66A700F89830 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBE1F2F66A100F89830 /* lossless_enc_sse41.c */; };
  1021. 80377DD31F2F66A700F89830 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBF1F2F66A100F89830 /* lossless_enc.c */; };
  1022. 80377DD41F2F66A700F89830 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC01F2F66A100F89830 /* lossless_mips_dsp_r2.c */; };
  1023. 80377DD51F2F66A700F89830 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC11F2F66A100F89830 /* lossless_msa.c */; };
  1024. 80377DD61F2F66A700F89830 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC21F2F66A100F89830 /* lossless_neon.c */; };
  1025. 80377DD71F2F66A700F89830 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC31F2F66A100F89830 /* lossless_sse2.c */; };
  1026. 80377DD81F2F66A700F89830 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC41F2F66A100F89830 /* lossless.c */; };
  1027. 80377DD91F2F66A700F89830 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC51F2F66A100F89830 /* lossless.h */; };
  1028. 80377DDA1F2F66A700F89830 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC61F2F66A100F89830 /* mips_macro.h */; };
  1029. 80377DDB1F2F66A700F89830 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC71F2F66A100F89830 /* msa_macro.h */; };
  1030. 80377DDC1F2F66A700F89830 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC81F2F66A100F89830 /* neon.h */; };
  1031. 80377DDD1F2F66A700F89830 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC91F2F66A100F89830 /* rescaler_mips_dsp_r2.c */; };
  1032. 80377DDE1F2F66A700F89830 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCA1F2F66A100F89830 /* rescaler_mips32.c */; };
  1033. 80377DDF1F2F66A700F89830 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCB1F2F66A100F89830 /* rescaler_msa.c */; };
  1034. 80377DE01F2F66A700F89830 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCC1F2F66A100F89830 /* rescaler_neon.c */; };
  1035. 80377DE11F2F66A700F89830 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCD1F2F66A100F89830 /* rescaler_sse2.c */; };
  1036. 80377DE21F2F66A700F89830 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCE1F2F66A100F89830 /* rescaler.c */; };
  1037. 80377DE31F2F66A700F89830 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCF1F2F66A100F89830 /* upsampling_mips_dsp_r2.c */; };
  1038. 80377DE41F2F66A700F89830 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD01F2F66A100F89830 /* upsampling_msa.c */; };
  1039. 80377DE51F2F66A700F89830 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD11F2F66A100F89830 /* upsampling_neon.c */; };
  1040. 80377DE61F2F66A700F89830 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD21F2F66A100F89830 /* upsampling_sse2.c */; };
  1041. 80377DE71F2F66A700F89830 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD31F2F66A100F89830 /* upsampling.c */; };
  1042. 80377DE81F2F66A700F89830 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD41F2F66A100F89830 /* yuv_mips_dsp_r2.c */; };
  1043. 80377DE91F2F66A700F89830 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD51F2F66A100F89830 /* yuv_mips32.c */; };
  1044. 80377DEA1F2F66A700F89830 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD61F2F66A100F89830 /* yuv_sse2.c */; };
  1045. 80377DEB1F2F66A700F89830 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD71F2F66A100F89830 /* yuv.c */; };
  1046. 80377DEC1F2F66A700F89830 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CD81F2F66A100F89830 /* yuv.h */; };
  1047. 80377DED1F2F66A800F89830 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C941F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c */; };
  1048. 80377DEE1F2F66A800F89830 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C951F2F66A100F89830 /* alpha_processing_neon.c */; };
  1049. 80377DEF1F2F66A800F89830 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C961F2F66A100F89830 /* alpha_processing_sse2.c */; };
  1050. 80377DF01F2F66A800F89830 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C971F2F66A100F89830 /* alpha_processing_sse41.c */; };
  1051. 80377DF11F2F66A800F89830 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C981F2F66A100F89830 /* alpha_processing.c */; };
  1052. 80377DF21F2F66A800F89830 /* argb_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C991F2F66A100F89830 /* argb_mips_dsp_r2.c */; };
  1053. 80377DF31F2F66A800F89830 /* argb_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9A1F2F66A100F89830 /* argb_sse2.c */; };
  1054. 80377DF41F2F66A800F89830 /* argb.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9B1F2F66A100F89830 /* argb.c */; };
  1055. 80377DF51F2F66A800F89830 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377C9C1F2F66A100F89830 /* common_sse2.h */; };
  1056. 80377DF61F2F66A800F89830 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9D1F2F66A100F89830 /* cost_mips_dsp_r2.c */; };
  1057. 80377DF71F2F66A800F89830 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9E1F2F66A100F89830 /* cost_mips32.c */; };
  1058. 80377DF81F2F66A800F89830 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9F1F2F66A100F89830 /* cost_sse2.c */; };
  1059. 80377DF91F2F66A800F89830 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA01F2F66A100F89830 /* cost.c */; };
  1060. 80377DFA1F2F66A800F89830 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA11F2F66A100F89830 /* cpu.c */; };
  1061. 80377DFB1F2F66A800F89830 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA21F2F66A100F89830 /* dec_clip_tables.c */; };
  1062. 80377DFC1F2F66A800F89830 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA31F2F66A100F89830 /* dec_mips_dsp_r2.c */; };
  1063. 80377DFD1F2F66A800F89830 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA41F2F66A100F89830 /* dec_mips32.c */; };
  1064. 80377DFE1F2F66A800F89830 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA51F2F66A100F89830 /* dec_msa.c */; };
  1065. 80377DFF1F2F66A800F89830 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA61F2F66A100F89830 /* dec_neon.c */; };
  1066. 80377E001F2F66A800F89830 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA71F2F66A100F89830 /* dec_sse2.c */; };
  1067. 80377E011F2F66A800F89830 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA81F2F66A100F89830 /* dec_sse41.c */; };
  1068. 80377E021F2F66A800F89830 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA91F2F66A100F89830 /* dec.c */; };
  1069. 80377E031F2F66A800F89830 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CAA1F2F66A100F89830 /* dsp.h */; };
  1070. 80377E041F2F66A800F89830 /* enc_avx2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAB1F2F66A100F89830 /* enc_avx2.c */; };
  1071. 80377E051F2F66A800F89830 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAC1F2F66A100F89830 /* enc_mips_dsp_r2.c */; };
  1072. 80377E061F2F66A800F89830 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAD1F2F66A100F89830 /* enc_mips32.c */; };
  1073. 80377E071F2F66A800F89830 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAE1F2F66A100F89830 /* enc_msa.c */; };
  1074. 80377E081F2F66A800F89830 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAF1F2F66A100F89830 /* enc_neon.c */; };
  1075. 80377E091F2F66A800F89830 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB01F2F66A100F89830 /* enc_sse2.c */; };
  1076. 80377E0A1F2F66A800F89830 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB11F2F66A100F89830 /* enc_sse41.c */; };
  1077. 80377E0B1F2F66A800F89830 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB21F2F66A100F89830 /* enc.c */; };
  1078. 80377E0C1F2F66A800F89830 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB31F2F66A100F89830 /* filters_mips_dsp_r2.c */; };
  1079. 80377E0D1F2F66A800F89830 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB41F2F66A100F89830 /* filters_msa.c */; };
  1080. 80377E0E1F2F66A800F89830 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB51F2F66A100F89830 /* filters_neon.c */; };
  1081. 80377E0F1F2F66A800F89830 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB61F2F66A100F89830 /* filters_sse2.c */; };
  1082. 80377E101F2F66A800F89830 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB71F2F66A100F89830 /* filters.c */; };
  1083. 80377E111F2F66A800F89830 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CB81F2F66A100F89830 /* lossless_common.h */; };
  1084. 80377E121F2F66A800F89830 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB91F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c */; };
  1085. 80377E131F2F66A800F89830 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBA1F2F66A100F89830 /* lossless_enc_mips32.c */; };
  1086. 80377E141F2F66A800F89830 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBB1F2F66A100F89830 /* lossless_enc_msa.c */; };
  1087. 80377E151F2F66A800F89830 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBC1F2F66A100F89830 /* lossless_enc_neon.c */; };
  1088. 80377E161F2F66A800F89830 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBD1F2F66A100F89830 /* lossless_enc_sse2.c */; };
  1089. 80377E171F2F66A800F89830 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBE1F2F66A100F89830 /* lossless_enc_sse41.c */; };
  1090. 80377E181F2F66A800F89830 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBF1F2F66A100F89830 /* lossless_enc.c */; };
  1091. 80377E191F2F66A800F89830 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC01F2F66A100F89830 /* lossless_mips_dsp_r2.c */; };
  1092. 80377E1A1F2F66A800F89830 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC11F2F66A100F89830 /* lossless_msa.c */; };
  1093. 80377E1B1F2F66A800F89830 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC21F2F66A100F89830 /* lossless_neon.c */; };
  1094. 80377E1C1F2F66A800F89830 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC31F2F66A100F89830 /* lossless_sse2.c */; };
  1095. 80377E1D1F2F66A800F89830 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC41F2F66A100F89830 /* lossless.c */; };
  1096. 80377E1E1F2F66A800F89830 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC51F2F66A100F89830 /* lossless.h */; };
  1097. 80377E1F1F2F66A800F89830 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC61F2F66A100F89830 /* mips_macro.h */; };
  1098. 80377E201F2F66A800F89830 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC71F2F66A100F89830 /* msa_macro.h */; };
  1099. 80377E211F2F66A800F89830 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC81F2F66A100F89830 /* neon.h */; };
  1100. 80377E221F2F66A800F89830 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC91F2F66A100F89830 /* rescaler_mips_dsp_r2.c */; };
  1101. 80377E231F2F66A800F89830 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCA1F2F66A100F89830 /* rescaler_mips32.c */; };
  1102. 80377E241F2F66A800F89830 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCB1F2F66A100F89830 /* rescaler_msa.c */; };
  1103. 80377E251F2F66A800F89830 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCC1F2F66A100F89830 /* rescaler_neon.c */; };
  1104. 80377E261F2F66A800F89830 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCD1F2F66A100F89830 /* rescaler_sse2.c */; };
  1105. 80377E271F2F66A800F89830 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCE1F2F66A100F89830 /* rescaler.c */; };
  1106. 80377E281F2F66A800F89830 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCF1F2F66A100F89830 /* upsampling_mips_dsp_r2.c */; };
  1107. 80377E291F2F66A800F89830 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD01F2F66A100F89830 /* upsampling_msa.c */; };
  1108. 80377E2A1F2F66A800F89830 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD11F2F66A100F89830 /* upsampling_neon.c */; };
  1109. 80377E2B1F2F66A800F89830 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD21F2F66A100F89830 /* upsampling_sse2.c */; };
  1110. 80377E2C1F2F66A800F89830 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD31F2F66A100F89830 /* upsampling.c */; };
  1111. 80377E2D1F2F66A800F89830 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD41F2F66A100F89830 /* yuv_mips_dsp_r2.c */; };
  1112. 80377E2E1F2F66A800F89830 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD51F2F66A100F89830 /* yuv_mips32.c */; };
  1113. 80377E2F1F2F66A800F89830 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD61F2F66A100F89830 /* yuv_sse2.c */; };
  1114. 80377E301F2F66A800F89830 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD71F2F66A100F89830 /* yuv.c */; };
  1115. 80377E311F2F66A800F89830 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CD81F2F66A100F89830 /* yuv.h */; };
  1116. 80377E321F2F66A800F89830 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C941F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c */; };
  1117. 80377E331F2F66A800F89830 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C951F2F66A100F89830 /* alpha_processing_neon.c */; };
  1118. 80377E341F2F66A800F89830 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C961F2F66A100F89830 /* alpha_processing_sse2.c */; };
  1119. 80377E351F2F66A800F89830 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C971F2F66A100F89830 /* alpha_processing_sse41.c */; };
  1120. 80377E361F2F66A800F89830 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C981F2F66A100F89830 /* alpha_processing.c */; };
  1121. 80377E371F2F66A800F89830 /* argb_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C991F2F66A100F89830 /* argb_mips_dsp_r2.c */; };
  1122. 80377E381F2F66A800F89830 /* argb_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9A1F2F66A100F89830 /* argb_sse2.c */; };
  1123. 80377E391F2F66A800F89830 /* argb.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9B1F2F66A100F89830 /* argb.c */; };
  1124. 80377E3A1F2F66A800F89830 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377C9C1F2F66A100F89830 /* common_sse2.h */; };
  1125. 80377E3B1F2F66A800F89830 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9D1F2F66A100F89830 /* cost_mips_dsp_r2.c */; };
  1126. 80377E3C1F2F66A800F89830 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9E1F2F66A100F89830 /* cost_mips32.c */; };
  1127. 80377E3D1F2F66A800F89830 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377C9F1F2F66A100F89830 /* cost_sse2.c */; };
  1128. 80377E3E1F2F66A800F89830 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA01F2F66A100F89830 /* cost.c */; };
  1129. 80377E3F1F2F66A800F89830 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA11F2F66A100F89830 /* cpu.c */; };
  1130. 80377E401F2F66A800F89830 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA21F2F66A100F89830 /* dec_clip_tables.c */; };
  1131. 80377E411F2F66A800F89830 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA31F2F66A100F89830 /* dec_mips_dsp_r2.c */; };
  1132. 80377E421F2F66A800F89830 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA41F2F66A100F89830 /* dec_mips32.c */; };
  1133. 80377E431F2F66A800F89830 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA51F2F66A100F89830 /* dec_msa.c */; };
  1134. 80377E441F2F66A800F89830 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA61F2F66A100F89830 /* dec_neon.c */; };
  1135. 80377E451F2F66A800F89830 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA71F2F66A100F89830 /* dec_sse2.c */; };
  1136. 80377E461F2F66A800F89830 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA81F2F66A100F89830 /* dec_sse41.c */; };
  1137. 80377E471F2F66A800F89830 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CA91F2F66A100F89830 /* dec.c */; };
  1138. 80377E481F2F66A800F89830 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CAA1F2F66A100F89830 /* dsp.h */; };
  1139. 80377E491F2F66A800F89830 /* enc_avx2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAB1F2F66A100F89830 /* enc_avx2.c */; };
  1140. 80377E4A1F2F66A800F89830 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAC1F2F66A100F89830 /* enc_mips_dsp_r2.c */; };
  1141. 80377E4B1F2F66A800F89830 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAD1F2F66A100F89830 /* enc_mips32.c */; };
  1142. 80377E4C1F2F66A800F89830 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAE1F2F66A100F89830 /* enc_msa.c */; };
  1143. 80377E4D1F2F66A800F89830 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CAF1F2F66A100F89830 /* enc_neon.c */; };
  1144. 80377E4E1F2F66A800F89830 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB01F2F66A100F89830 /* enc_sse2.c */; };
  1145. 80377E4F1F2F66A800F89830 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB11F2F66A100F89830 /* enc_sse41.c */; };
  1146. 80377E501F2F66A800F89830 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB21F2F66A100F89830 /* enc.c */; };
  1147. 80377E511F2F66A800F89830 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB31F2F66A100F89830 /* filters_mips_dsp_r2.c */; };
  1148. 80377E521F2F66A800F89830 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB41F2F66A100F89830 /* filters_msa.c */; };
  1149. 80377E531F2F66A800F89830 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB51F2F66A100F89830 /* filters_neon.c */; };
  1150. 80377E541F2F66A800F89830 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB61F2F66A100F89830 /* filters_sse2.c */; };
  1151. 80377E551F2F66A800F89830 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB71F2F66A100F89830 /* filters.c */; };
  1152. 80377E561F2F66A800F89830 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CB81F2F66A100F89830 /* lossless_common.h */; };
  1153. 80377E571F2F66A800F89830 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CB91F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c */; };
  1154. 80377E581F2F66A800F89830 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBA1F2F66A100F89830 /* lossless_enc_mips32.c */; };
  1155. 80377E591F2F66A800F89830 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBB1F2F66A100F89830 /* lossless_enc_msa.c */; };
  1156. 80377E5A1F2F66A800F89830 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBC1F2F66A100F89830 /* lossless_enc_neon.c */; };
  1157. 80377E5B1F2F66A800F89830 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBD1F2F66A100F89830 /* lossless_enc_sse2.c */; };
  1158. 80377E5C1F2F66A800F89830 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBE1F2F66A100F89830 /* lossless_enc_sse41.c */; };
  1159. 80377E5D1F2F66A800F89830 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CBF1F2F66A100F89830 /* lossless_enc.c */; };
  1160. 80377E5E1F2F66A800F89830 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC01F2F66A100F89830 /* lossless_mips_dsp_r2.c */; };
  1161. 80377E5F1F2F66A800F89830 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC11F2F66A100F89830 /* lossless_msa.c */; };
  1162. 80377E601F2F66A800F89830 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC21F2F66A100F89830 /* lossless_neon.c */; };
  1163. 80377E611F2F66A800F89830 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC31F2F66A100F89830 /* lossless_sse2.c */; };
  1164. 80377E621F2F66A800F89830 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC41F2F66A100F89830 /* lossless.c */; };
  1165. 80377E631F2F66A800F89830 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC51F2F66A100F89830 /* lossless.h */; };
  1166. 80377E641F2F66A800F89830 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC61F2F66A100F89830 /* mips_macro.h */; };
  1167. 80377E651F2F66A800F89830 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC71F2F66A100F89830 /* msa_macro.h */; };
  1168. 80377E661F2F66A800F89830 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CC81F2F66A100F89830 /* neon.h */; };
  1169. 80377E671F2F66A800F89830 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CC91F2F66A100F89830 /* rescaler_mips_dsp_r2.c */; };
  1170. 80377E681F2F66A800F89830 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCA1F2F66A100F89830 /* rescaler_mips32.c */; };
  1171. 80377E691F2F66A800F89830 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCB1F2F66A100F89830 /* rescaler_msa.c */; };
  1172. 80377E6A1F2F66A800F89830 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCC1F2F66A100F89830 /* rescaler_neon.c */; };
  1173. 80377E6B1F2F66A800F89830 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCD1F2F66A100F89830 /* rescaler_sse2.c */; };
  1174. 80377E6C1F2F66A800F89830 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCE1F2F66A100F89830 /* rescaler.c */; };
  1175. 80377E6D1F2F66A800F89830 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CCF1F2F66A100F89830 /* upsampling_mips_dsp_r2.c */; };
  1176. 80377E6E1F2F66A800F89830 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD01F2F66A100F89830 /* upsampling_msa.c */; };
  1177. 80377E6F1F2F66A800F89830 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD11F2F66A100F89830 /* upsampling_neon.c */; };
  1178. 80377E701F2F66A800F89830 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD21F2F66A100F89830 /* upsampling_sse2.c */; };
  1179. 80377E711F2F66A800F89830 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD31F2F66A100F89830 /* upsampling.c */; };
  1180. 80377E721F2F66A800F89830 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD41F2F66A100F89830 /* yuv_mips_dsp_r2.c */; };
  1181. 80377E731F2F66A800F89830 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD51F2F66A100F89830 /* yuv_mips32.c */; };
  1182. 80377E741F2F66A800F89830 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD61F2F66A100F89830 /* yuv_sse2.c */; };
  1183. 80377E751F2F66A800F89830 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377CD71F2F66A100F89830 /* yuv.c */; };
  1184. 80377E761F2F66A800F89830 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377CD81F2F66A100F89830 /* yuv.h */; };
  1185. 80377E871F2F66D000F89830 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E771F2F66D000F89830 /* alpha_dec.c */; };
  1186. 80377E881F2F66D000F89830 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E781F2F66D000F89830 /* alphai_dec.h */; };
  1187. 80377E891F2F66D000F89830 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E791F2F66D000F89830 /* buffer_dec.c */; };
  1188. 80377E8A1F2F66D000F89830 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E7A1F2F66D000F89830 /* common_dec.h */; };
  1189. 80377E8B1F2F66D000F89830 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7B1F2F66D000F89830 /* frame_dec.c */; };
  1190. 80377E8C1F2F66D000F89830 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7C1F2F66D000F89830 /* idec_dec.c */; };
  1191. 80377E8D1F2F66D000F89830 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7D1F2F66D000F89830 /* io_dec.c */; };
  1192. 80377E8E1F2F66D000F89830 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7E1F2F66D000F89830 /* quant_dec.c */; };
  1193. 80377E8F1F2F66D000F89830 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7F1F2F66D000F89830 /* tree_dec.c */; };
  1194. 80377E901F2F66D000F89830 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E801F2F66D000F89830 /* vp8_dec.c */; };
  1195. 80377E911F2F66D000F89830 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E811F2F66D000F89830 /* vp8_dec.h */; };
  1196. 80377E921F2F66D000F89830 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E821F2F66D000F89830 /* vp8i_dec.h */; };
  1197. 80377E931F2F66D000F89830 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E831F2F66D000F89830 /* vp8l_dec.c */; };
  1198. 80377E941F2F66D000F89830 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E841F2F66D000F89830 /* vp8li_dec.h */; };
  1199. 80377E951F2F66D000F89830 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E851F2F66D000F89830 /* webp_dec.c */; };
  1200. 80377E961F2F66D000F89830 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E861F2F66D000F89830 /* webpi_dec.h */; };
  1201. 80377E971F2F66D400F89830 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E771F2F66D000F89830 /* alpha_dec.c */; };
  1202. 80377E981F2F66D400F89830 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E781F2F66D000F89830 /* alphai_dec.h */; };
  1203. 80377E991F2F66D400F89830 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E791F2F66D000F89830 /* buffer_dec.c */; };
  1204. 80377E9A1F2F66D400F89830 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E7A1F2F66D000F89830 /* common_dec.h */; };
  1205. 80377E9B1F2F66D400F89830 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7B1F2F66D000F89830 /* frame_dec.c */; };
  1206. 80377E9C1F2F66D400F89830 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7C1F2F66D000F89830 /* idec_dec.c */; };
  1207. 80377E9D1F2F66D400F89830 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7D1F2F66D000F89830 /* io_dec.c */; };
  1208. 80377E9E1F2F66D400F89830 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7E1F2F66D000F89830 /* quant_dec.c */; };
  1209. 80377E9F1F2F66D400F89830 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7F1F2F66D000F89830 /* tree_dec.c */; };
  1210. 80377EA01F2F66D400F89830 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E801F2F66D000F89830 /* vp8_dec.c */; };
  1211. 80377EA11F2F66D400F89830 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E811F2F66D000F89830 /* vp8_dec.h */; };
  1212. 80377EA21F2F66D400F89830 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E821F2F66D000F89830 /* vp8i_dec.h */; };
  1213. 80377EA31F2F66D400F89830 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E831F2F66D000F89830 /* vp8l_dec.c */; };
  1214. 80377EA41F2F66D400F89830 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E841F2F66D000F89830 /* vp8li_dec.h */; };
  1215. 80377EA51F2F66D400F89830 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E851F2F66D000F89830 /* webp_dec.c */; };
  1216. 80377EA61F2F66D400F89830 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E861F2F66D000F89830 /* webpi_dec.h */; };
  1217. 80377EA71F2F66D400F89830 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E771F2F66D000F89830 /* alpha_dec.c */; };
  1218. 80377EA81F2F66D400F89830 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E781F2F66D000F89830 /* alphai_dec.h */; };
  1219. 80377EA91F2F66D400F89830 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E791F2F66D000F89830 /* buffer_dec.c */; };
  1220. 80377EAA1F2F66D400F89830 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E7A1F2F66D000F89830 /* common_dec.h */; };
  1221. 80377EAB1F2F66D400F89830 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7B1F2F66D000F89830 /* frame_dec.c */; };
  1222. 80377EAC1F2F66D400F89830 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7C1F2F66D000F89830 /* idec_dec.c */; };
  1223. 80377EAD1F2F66D400F89830 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7D1F2F66D000F89830 /* io_dec.c */; };
  1224. 80377EAE1F2F66D400F89830 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7E1F2F66D000F89830 /* quant_dec.c */; };
  1225. 80377EAF1F2F66D400F89830 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7F1F2F66D000F89830 /* tree_dec.c */; };
  1226. 80377EB01F2F66D400F89830 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E801F2F66D000F89830 /* vp8_dec.c */; };
  1227. 80377EB11F2F66D400F89830 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E811F2F66D000F89830 /* vp8_dec.h */; };
  1228. 80377EB21F2F66D400F89830 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E821F2F66D000F89830 /* vp8i_dec.h */; };
  1229. 80377EB31F2F66D400F89830 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E831F2F66D000F89830 /* vp8l_dec.c */; };
  1230. 80377EB41F2F66D400F89830 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E841F2F66D000F89830 /* vp8li_dec.h */; };
  1231. 80377EB51F2F66D400F89830 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E851F2F66D000F89830 /* webp_dec.c */; };
  1232. 80377EB61F2F66D400F89830 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E861F2F66D000F89830 /* webpi_dec.h */; };
  1233. 80377EB71F2F66D400F89830 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E771F2F66D000F89830 /* alpha_dec.c */; };
  1234. 80377EB81F2F66D400F89830 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E781F2F66D000F89830 /* alphai_dec.h */; };
  1235. 80377EB91F2F66D400F89830 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E791F2F66D000F89830 /* buffer_dec.c */; };
  1236. 80377EBA1F2F66D500F89830 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E7A1F2F66D000F89830 /* common_dec.h */; };
  1237. 80377EBB1F2F66D500F89830 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7B1F2F66D000F89830 /* frame_dec.c */; };
  1238. 80377EBC1F2F66D500F89830 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7C1F2F66D000F89830 /* idec_dec.c */; };
  1239. 80377EBD1F2F66D500F89830 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7D1F2F66D000F89830 /* io_dec.c */; };
  1240. 80377EBE1F2F66D500F89830 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7E1F2F66D000F89830 /* quant_dec.c */; };
  1241. 80377EBF1F2F66D500F89830 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7F1F2F66D000F89830 /* tree_dec.c */; };
  1242. 80377EC01F2F66D500F89830 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E801F2F66D000F89830 /* vp8_dec.c */; };
  1243. 80377EC11F2F66D500F89830 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E811F2F66D000F89830 /* vp8_dec.h */; };
  1244. 80377EC21F2F66D500F89830 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E821F2F66D000F89830 /* vp8i_dec.h */; };
  1245. 80377EC31F2F66D500F89830 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E831F2F66D000F89830 /* vp8l_dec.c */; };
  1246. 80377EC41F2F66D500F89830 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E841F2F66D000F89830 /* vp8li_dec.h */; };
  1247. 80377EC51F2F66D500F89830 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E851F2F66D000F89830 /* webp_dec.c */; };
  1248. 80377EC61F2F66D500F89830 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E861F2F66D000F89830 /* webpi_dec.h */; };
  1249. 80377EC71F2F66D500F89830 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E771F2F66D000F89830 /* alpha_dec.c */; };
  1250. 80377EC81F2F66D500F89830 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E781F2F66D000F89830 /* alphai_dec.h */; };
  1251. 80377EC91F2F66D500F89830 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E791F2F66D000F89830 /* buffer_dec.c */; };
  1252. 80377ECA1F2F66D500F89830 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E7A1F2F66D000F89830 /* common_dec.h */; };
  1253. 80377ECB1F2F66D500F89830 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7B1F2F66D000F89830 /* frame_dec.c */; };
  1254. 80377ECC1F2F66D500F89830 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7C1F2F66D000F89830 /* idec_dec.c */; };
  1255. 80377ECD1F2F66D500F89830 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7D1F2F66D000F89830 /* io_dec.c */; };
  1256. 80377ECE1F2F66D500F89830 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7E1F2F66D000F89830 /* quant_dec.c */; };
  1257. 80377ECF1F2F66D500F89830 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7F1F2F66D000F89830 /* tree_dec.c */; };
  1258. 80377ED01F2F66D500F89830 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E801F2F66D000F89830 /* vp8_dec.c */; };
  1259. 80377ED11F2F66D500F89830 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E811F2F66D000F89830 /* vp8_dec.h */; };
  1260. 80377ED21F2F66D500F89830 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E821F2F66D000F89830 /* vp8i_dec.h */; };
  1261. 80377ED31F2F66D500F89830 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E831F2F66D000F89830 /* vp8l_dec.c */; };
  1262. 80377ED41F2F66D500F89830 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E841F2F66D000F89830 /* vp8li_dec.h */; };
  1263. 80377ED51F2F66D500F89830 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E851F2F66D000F89830 /* webp_dec.c */; };
  1264. 80377ED61F2F66D500F89830 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E861F2F66D000F89830 /* webpi_dec.h */; };
  1265. 80377ED71F2F66D500F89830 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E771F2F66D000F89830 /* alpha_dec.c */; };
  1266. 80377ED81F2F66D500F89830 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E781F2F66D000F89830 /* alphai_dec.h */; };
  1267. 80377ED91F2F66D500F89830 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E791F2F66D000F89830 /* buffer_dec.c */; };
  1268. 80377EDA1F2F66D500F89830 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E7A1F2F66D000F89830 /* common_dec.h */; };
  1269. 80377EDB1F2F66D500F89830 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7B1F2F66D000F89830 /* frame_dec.c */; };
  1270. 80377EDC1F2F66D500F89830 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7C1F2F66D000F89830 /* idec_dec.c */; };
  1271. 80377EDD1F2F66D500F89830 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7D1F2F66D000F89830 /* io_dec.c */; };
  1272. 80377EDE1F2F66D500F89830 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7E1F2F66D000F89830 /* quant_dec.c */; };
  1273. 80377EDF1F2F66D500F89830 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E7F1F2F66D000F89830 /* tree_dec.c */; };
  1274. 80377EE01F2F66D500F89830 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E801F2F66D000F89830 /* vp8_dec.c */; };
  1275. 80377EE11F2F66D500F89830 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E811F2F66D000F89830 /* vp8_dec.h */; };
  1276. 80377EE21F2F66D500F89830 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E821F2F66D000F89830 /* vp8i_dec.h */; };
  1277. 80377EE31F2F66D500F89830 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E831F2F66D000F89830 /* vp8l_dec.c */; };
  1278. 80377EE41F2F66D500F89830 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E841F2F66D000F89830 /* vp8li_dec.h */; };
  1279. 80377EE51F2F66D500F89830 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 80377E851F2F66D000F89830 /* webp_dec.c */; };
  1280. 80377EE61F2F66D500F89830 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80377E861F2F66D000F89830 /* webpi_dec.h */; };
  1281. 807A12281F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 807A12261F89636300EC2A9B /* SDWebImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1282. 807A12291F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 807A12261F89636300EC2A9B /* SDWebImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1283. 807A122A1F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 807A12261F89636300EC2A9B /* SDWebImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1284. 807A122B1F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 807A12261F89636300EC2A9B /* SDWebImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1285. 807A122C1F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 807A12261F89636300EC2A9B /* SDWebImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1286. 807A122D1F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 807A12261F89636300EC2A9B /* SDWebImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1287. 807A122E1F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 807A12271F89636300EC2A9B /* SDWebImageCodersManager.m */; };
  1288. 807A122F1F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 807A12271F89636300EC2A9B /* SDWebImageCodersManager.m */; };
  1289. 807A12301F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 807A12271F89636300EC2A9B /* SDWebImageCodersManager.m */; };
  1290. 807A12311F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 807A12271F89636300EC2A9B /* SDWebImageCodersManager.m */; };
  1291. 807A12321F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 807A12271F89636300EC2A9B /* SDWebImageCodersManager.m */; };
  1292. 807A12331F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 807A12271F89636300EC2A9B /* SDWebImageCodersManager.m */; };
  1293. A18A6CC7172DC28500419892 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A18A6CC5172DC28500419892 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1294. A18A6CC9172DC28500419892 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = A18A6CC6172DC28500419892 /* UIImage+GIF.m */; };
  1295. AB615303192DA24600A2D8E9 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB615301192DA24600A2D8E9 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1296. AB615306192DA24600A2D8E9 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AB615302192DA24600A2D8E9 /* UIView+WebCacheOperation.m */; };
  1297. ABBE71A718C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBE71A518C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  1298. ABBE71A818C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBE71A618C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m */; };
  1299. /* End PBXBuildFile section */
  1300. /* Begin PBXFileReference section */
  1301. 00733A4C1BC487C000A5A117 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1302. 0E9EFA0821983283005D7892 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIImage+MemoryCacheCost.h"; sourceTree = "<group>"; };
  1303. 0E9EFA0921983283005D7892 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MemoryCacheCost.m"; sourceTree = "<group>"; };
  1304. 320224B9203979BA00E9F285 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDAnimatedImageRep.h; sourceTree = "<group>"; };
  1305. 320224BA203979BA00E9F285 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SDAnimatedImageRep.m; sourceTree = "<group>"; };
  1306. 321DB35F2011D4D60015D2CB /* NSButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/NSButton+WebCache.h"; sourceTree = "<group>"; };
  1307. 321DB3602011D4D60015D2CB /* NSButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/NSButton+WebCache.m"; sourceTree = "<group>"; };
  1308. 321E60841F38E8C800405457 /* SDWebImageCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCoder.h; sourceTree = "<group>"; };
  1309. 321E60851F38E8C800405457 /* SDWebImageCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCoder.m; sourceTree = "<group>"; };
  1310. 321E60921F38E8ED00405457 /* SDWebImageImageIOCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageImageIOCoder.h; sourceTree = "<group>"; };
  1311. 321E60931F38E8ED00405457 /* SDWebImageImageIOCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageImageIOCoder.m; sourceTree = "<group>"; };
  1312. 321E60A01F38E8F600405457 /* SDWebImageGIFCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageGIFCoder.h; sourceTree = "<group>"; };
  1313. 321E60A11F38E8F600405457 /* SDWebImageGIFCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageGIFCoder.m; sourceTree = "<group>"; };
  1314. 321E60AE1F38E90100405457 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageWebPCoder.h; sourceTree = "<group>"; };
  1315. 321E60AF1F38E90100405457 /* SDWebImageWebPCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageWebPCoder.m; sourceTree = "<group>"; };
  1316. 321E60BC1F38E91700405457 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ForceDecode.h"; sourceTree = "<group>"; };
  1317. 321E60BD1F38E91700405457 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ForceDecode.m"; sourceTree = "<group>"; };
  1318. 323F8B131F38EF770092B609 /* alpha_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = alpha_enc.c; sourceTree = "<group>"; };
  1319. 323F8B141F38EF770092B609 /* analysis_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = analysis_enc.c; sourceTree = "<group>"; };
  1320. 323F8B151F38EF770092B609 /* backward_references_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = backward_references_enc.c; sourceTree = "<group>"; };
  1321. 323F8B161F38EF770092B609 /* backward_references_enc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = backward_references_enc.h; sourceTree = "<group>"; };
  1322. 323F8B171F38EF770092B609 /* config_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = config_enc.c; sourceTree = "<group>"; };
  1323. 323F8B181F38EF770092B609 /* cost_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cost_enc.c; sourceTree = "<group>"; };
  1324. 323F8B191F38EF770092B609 /* cost_enc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cost_enc.h; sourceTree = "<group>"; };
  1325. 323F8B1A1F38EF770092B609 /* delta_palettization_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = delta_palettization_enc.c; sourceTree = "<group>"; };
  1326. 323F8B1B1F38EF770092B609 /* delta_palettization_enc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = delta_palettization_enc.h; sourceTree = "<group>"; };
  1327. 323F8B1C1F38EF770092B609 /* filter_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filter_enc.c; sourceTree = "<group>"; };
  1328. 323F8B1D1F38EF770092B609 /* frame_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = frame_enc.c; sourceTree = "<group>"; };
  1329. 323F8B1E1F38EF770092B609 /* histogram_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = histogram_enc.c; sourceTree = "<group>"; };
  1330. 323F8B1F1F38EF770092B609 /* histogram_enc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = histogram_enc.h; sourceTree = "<group>"; };
  1331. 323F8B201F38EF770092B609 /* iterator_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = iterator_enc.c; sourceTree = "<group>"; };
  1332. 323F8B221F38EF770092B609 /* near_lossless_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = near_lossless_enc.c; sourceTree = "<group>"; };
  1333. 323F8B231F38EF770092B609 /* picture_csp_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picture_csp_enc.c; sourceTree = "<group>"; };
  1334. 323F8B241F38EF770092B609 /* picture_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picture_enc.c; sourceTree = "<group>"; };
  1335. 323F8B251F38EF770092B609 /* picture_psnr_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picture_psnr_enc.c; sourceTree = "<group>"; };
  1336. 323F8B261F38EF770092B609 /* picture_rescale_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picture_rescale_enc.c; sourceTree = "<group>"; };
  1337. 323F8B271F38EF770092B609 /* picture_tools_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picture_tools_enc.c; sourceTree = "<group>"; };
  1338. 323F8B281F38EF770092B609 /* predictor_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = predictor_enc.c; sourceTree = "<group>"; };
  1339. 323F8B291F38EF770092B609 /* quant_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = quant_enc.c; sourceTree = "<group>"; };
  1340. 323F8B2A1F38EF770092B609 /* syntax_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = syntax_enc.c; sourceTree = "<group>"; };
  1341. 323F8B2B1F38EF770092B609 /* token_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = token_enc.c; sourceTree = "<group>"; };
  1342. 323F8B2C1F38EF770092B609 /* tree_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tree_enc.c; sourceTree = "<group>"; };
  1343. 323F8B2D1F38EF770092B609 /* vp8i_enc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vp8i_enc.h; sourceTree = "<group>"; };
  1344. 323F8B2E1F38EF770092B609 /* vp8l_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vp8l_enc.c; sourceTree = "<group>"; };
  1345. 323F8B2F1F38EF770092B609 /* vp8li_enc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vp8li_enc.h; sourceTree = "<group>"; };
  1346. 323F8B301F38EF770092B609 /* webp_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = webp_enc.c; sourceTree = "<group>"; };
  1347. 323F8B321F38EF770092B609 /* anim_encode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = anim_encode.c; sourceTree = "<group>"; };
  1348. 323F8B331F38EF770092B609 /* animi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = animi.h; sourceTree = "<group>"; };
  1349. 323F8B3A1F38EF770092B609 /* muxedit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = muxedit.c; sourceTree = "<group>"; };
  1350. 323F8B3B1F38EF770092B609 /* muxi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = muxi.h; sourceTree = "<group>"; };
  1351. 323F8B3C1F38EF770092B609 /* muxinternal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = muxinternal.c; sourceTree = "<group>"; };
  1352. 323F8B3D1F38EF770092B609 /* muxread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = muxread.c; sourceTree = "<group>"; };
  1353. 325312C6200F09910046BF1E /* SDWebImageTransition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDWebImageTransition.h; sourceTree = "<group>"; };
  1354. 325312C7200F09910046BF1E /* SDWebImageTransition.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SDWebImageTransition.m; sourceTree = "<group>"; };
  1355. 3290FA021FA478AF0047D20C /* SDWebImageFrame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDWebImageFrame.h; sourceTree = "<group>"; };
  1356. 3290FA031FA478AF0047D20C /* SDWebImageFrame.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SDWebImageFrame.m; sourceTree = "<group>"; };
  1357. 32CF1C051FA496B000004BD1 /* SDWebImageCoderHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDWebImageCoderHelper.h; sourceTree = "<group>"; };
  1358. 32CF1C061FA496B000004BD1 /* SDWebImageCoderHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCoderHelper.m; sourceTree = "<group>"; };
  1359. 4314D1991D0E0E3B004B36C9 /* libSDWebImage watchOS static.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libSDWebImage watchOS static.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1360. 431BB7031D06D2C1006A3455 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1361. 4369C2751D9807EC007E863A /* UIView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/UIView+WebCache.h"; sourceTree = "<group>"; };
  1362. 4369C2761D9807EC007E863A /* UIView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/UIView+WebCache.m"; sourceTree = "<group>"; };
  1363. 4397D2F21D0DDD8C00BB2784 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1364. 4397D2F41D0DE2DF00BB2784 /* NSImage+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSImage+WebCache.h"; path = "SDWebImage/NSImage+WebCache.h"; sourceTree = "<group>"; };
  1365. 4397D2F51D0DE2DF00BB2784 /* NSImage+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSImage+WebCache.m"; path = "SDWebImage/NSImage+WebCache.m"; sourceTree = "<group>"; };
  1366. 43A918621D8308FE00B3925F /* SDImageCacheConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCacheConfig.h; sourceTree = "<group>"; };
  1367. 43A918631D8308FE00B3925F /* SDImageCacheConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCacheConfig.m; sourceTree = "<group>"; };
  1368. 43C892981D9D6DD70022038D /* anim_decode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = anim_decode.c; sourceTree = "<group>"; };
  1369. 43C892991D9D6DD70022038D /* demux.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = demux.c; sourceTree = "<group>"; };
  1370. 43CE75491CFE9427006C64D0 /* FLAnimatedImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FLAnimatedImage.h; sourceTree = "<group>"; };
  1371. 43CE754A1CFE9427006C64D0 /* FLAnimatedImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FLAnimatedImage.m; sourceTree = "<group>"; };
  1372. 43CE754B1CFE9427006C64D0 /* FLAnimatedImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FLAnimatedImageView.h; sourceTree = "<group>"; };
  1373. 43CE754C1CFE9427006C64D0 /* FLAnimatedImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FLAnimatedImageView.m; sourceTree = "<group>"; };
  1374. 43CE75CE1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FLAnimatedImageView+WebCache.h"; sourceTree = "<group>"; };
  1375. 43CE75CF1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FLAnimatedImageView+WebCache.m"; sourceTree = "<group>"; };
  1376. 4A2CADFF1AB4BB5300B6BC39 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1377. 4A2CAE021AB4BB5400B6BC39 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1378. 4A2CAE031AB4BB5400B6BC39 /* SDWebImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDWebImage.h; sourceTree = "<group>"; };
  1379. 530E49E316460AE2002868E7 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
  1380. 530E49E416460AE2002868E7 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloaderOperation.m; sourceTree = "<group>"; };
  1381. 530E49E71646388E002868E7 /* SDWebImageOperation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDWebImageOperation.h; sourceTree = "<group>"; };
  1382. 5340674F167780C40042B59E /* SDWebImageCompat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCompat.m; sourceTree = "<group>"; };
  1383. 535699B415113E7300A4C397 /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "MKAnnotationView+WebCache.h"; path = "SDWebImage/MKAnnotationView+WebCache.h"; sourceTree = SOURCE_ROOT; };
  1384. 535699B515113E7300A4C397 /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "MKAnnotationView+WebCache.m"; path = "SDWebImage/MKAnnotationView+WebCache.m"; sourceTree = SOURCE_ROOT; };
  1385. 53761325155AD0D5005750A4 /* libSDWebImage iOS static.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libSDWebImage iOS static.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1386. 53922D72148C55820056699D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  1387. 53922D85148C56230056699D /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/SDImageCache.h; sourceTree = SOURCE_ROOT; };
  1388. 53922D86148C56230056699D /* SDImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/SDImageCache.m; sourceTree = SOURCE_ROOT; };
  1389. 53922D88148C56230056699D /* SDWebImageCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/SDWebImageCompat.h; sourceTree = SOURCE_ROOT; };
  1390. 53922D8B148C56230056699D /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/SDWebImageDownloader.h; sourceTree = SOURCE_ROOT; };
  1391. 53922D8C148C56230056699D /* SDWebImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/SDWebImageDownloader.m; sourceTree = SOURCE_ROOT; };
  1392. 53922D8E148C56230056699D /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/SDWebImageManager.h; sourceTree = SOURCE_ROOT; };
  1393. 53922D8F148C56230056699D /* SDWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/SDWebImageManager.m; sourceTree = SOURCE_ROOT; };
  1394. 53922D91148C56230056699D /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/SDWebImagePrefetcher.h; sourceTree = SOURCE_ROOT; };
  1395. 53922D92148C56230056699D /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/SDWebImagePrefetcher.m; sourceTree = SOURCE_ROOT; };
  1396. 53922D93148C56230056699D /* UIButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/UIButton+WebCache.h"; sourceTree = SOURCE_ROOT; };
  1397. 53922D94148C56230056699D /* UIButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/UIButton+WebCache.m"; sourceTree = SOURCE_ROOT; };
  1398. 53922D95148C56230056699D /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/UIImageView+WebCache.h"; sourceTree = SOURCE_ROOT; };
  1399. 53922D96148C56230056699D /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/UIImageView+WebCache.m"; sourceTree = SOURCE_ROOT; };
  1400. 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
  1401. 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MultiFormat.m"; sourceTree = "<group>"; };
  1402. 53EDFB911762547C00698166 /* UIImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+WebP.h"; sourceTree = "<group>"; };
  1403. 53EDFB921762547C00698166 /* UIImage+WebP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+WebP.m"; sourceTree = "<group>"; };
  1404. 53FB893F14D35D1A0020B787 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  1405. 53FB894814D35E9E0020B787 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  1406. 5D5B9140188EE8DD006D06BD /* NSData+ImageContentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageContentType.h"; sourceTree = "<group>"; };
  1407. 5D5B9141188EE8DD006D06BD /* NSData+ImageContentType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ImageContentType.m"; sourceTree = "<group>"; };
  1408. 80377BDE1F2F665300F89830 /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bit_reader_inl_utils.h; sourceTree = "<group>"; };
  1409. 80377BDF1F2F665300F89830 /* bit_reader_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bit_reader_utils.c; sourceTree = "<group>"; };
  1410. 80377BE01F2F665300F89830 /* bit_reader_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bit_reader_utils.h; sourceTree = "<group>"; };
  1411. 80377BE11F2F665300F89830 /* bit_writer_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bit_writer_utils.c; sourceTree = "<group>"; };
  1412. 80377BE21F2F665300F89830 /* bit_writer_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bit_writer_utils.h; sourceTree = "<group>"; };
  1413. 80377BE31F2F665300F89830 /* color_cache_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = color_cache_utils.c; sourceTree = "<group>"; };
  1414. 80377BE41F2F665300F89830 /* color_cache_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = color_cache_utils.h; sourceTree = "<group>"; };
  1415. 80377BE51F2F665300F89830 /* endian_inl_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endian_inl_utils.h; sourceTree = "<group>"; };
  1416. 80377BE61F2F665300F89830 /* filters_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filters_utils.c; sourceTree = "<group>"; };
  1417. 80377BE71F2F665300F89830 /* filters_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filters_utils.h; sourceTree = "<group>"; };
  1418. 80377BE81F2F665300F89830 /* huffman_encode_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = huffman_encode_utils.c; sourceTree = "<group>"; };
  1419. 80377BE91F2F665300F89830 /* huffman_encode_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = huffman_encode_utils.h; sourceTree = "<group>"; };
  1420. 80377BEA1F2F665300F89830 /* huffman_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = huffman_utils.c; sourceTree = "<group>"; };
  1421. 80377BEB1F2F665300F89830 /* huffman_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = huffman_utils.h; sourceTree = "<group>"; };
  1422. 80377BEC1F2F665300F89830 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = quant_levels_dec_utils.c; sourceTree = "<group>"; };
  1423. 80377BED1F2F665300F89830 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quant_levels_dec_utils.h; sourceTree = "<group>"; };
  1424. 80377BEE1F2F665300F89830 /* quant_levels_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = quant_levels_utils.c; sourceTree = "<group>"; };
  1425. 80377BEF1F2F665300F89830 /* quant_levels_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quant_levels_utils.h; sourceTree = "<group>"; };
  1426. 80377BF01F2F665300F89830 /* random_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = random_utils.c; sourceTree = "<group>"; };
  1427. 80377BF11F2F665300F89830 /* random_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = random_utils.h; sourceTree = "<group>"; };
  1428. 80377BF21F2F665300F89830 /* rescaler_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rescaler_utils.c; sourceTree = "<group>"; };
  1429. 80377BF31F2F665300F89830 /* rescaler_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rescaler_utils.h; sourceTree = "<group>"; };
  1430. 80377BF41F2F665300F89830 /* thread_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thread_utils.c; sourceTree = "<group>"; };
  1431. 80377BF51F2F665300F89830 /* thread_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_utils.h; sourceTree = "<group>"; };
  1432. 80377BF61F2F665300F89830 /* utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utils.c; sourceTree = "<group>"; };
  1433. 80377BF71F2F665300F89830 /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utils.h; sourceTree = "<group>"; };
  1434. 80377C941F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = alpha_processing_mips_dsp_r2.c; sourceTree = "<group>"; };
  1435. 80377C951F2F66A100F89830 /* alpha_processing_neon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = alpha_processing_neon.c; sourceTree = "<group>"; };
  1436. 80377C961F2F66A100F89830 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = alpha_processing_sse2.c; sourceTree = "<group>"; };
  1437. 80377C971F2F66A100F89830 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = alpha_processing_sse41.c; sourceTree = "<group>"; };
  1438. 80377C981F2F66A100F89830 /* alpha_processing.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = alpha_processing.c; sourceTree = "<group>"; };
  1439. 80377C991F2F66A100F89830 /* argb_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = argb_mips_dsp_r2.c; sourceTree = "<group>"; };
  1440. 80377C9A1F2F66A100F89830 /* argb_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = argb_sse2.c; sourceTree = "<group>"; };
  1441. 80377C9B1F2F66A100F89830 /* argb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = argb.c; sourceTree = "<group>"; };
  1442. 80377C9C1F2F66A100F89830 /* common_sse2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common_sse2.h; sourceTree = "<group>"; };
  1443. 80377C9D1F2F66A100F89830 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cost_mips_dsp_r2.c; sourceTree = "<group>"; };
  1444. 80377C9E1F2F66A100F89830 /* cost_mips32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cost_mips32.c; sourceTree = "<group>"; };
  1445. 80377C9F1F2F66A100F89830 /* cost_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cost_sse2.c; sourceTree = "<group>"; };
  1446. 80377CA01F2F66A100F89830 /* cost.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cost.c; sourceTree = "<group>"; };
  1447. 80377CA11F2F66A100F89830 /* cpu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpu.c; sourceTree = "<group>"; };
  1448. 80377CA21F2F66A100F89830 /* dec_clip_tables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dec_clip_tables.c; sourceTree = "<group>"; };
  1449. 80377CA31F2F66A100F89830 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dec_mips_dsp_r2.c; sourceTree = "<group>"; };
  1450. 80377CA41F2F66A100F89830 /* dec_mips32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dec_mips32.c; sourceTree = "<group>"; };
  1451. 80377CA51F2F66A100F89830 /* dec_msa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dec_msa.c; sourceTree = "<group>"; };
  1452. 80377CA61F2F66A100F89830 /* dec_neon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dec_neon.c; sourceTree = "<group>"; };
  1453. 80377CA71F2F66A100F89830 /* dec_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dec_sse2.c; sourceTree = "<group>"; };
  1454. 80377CA81F2F66A100F89830 /* dec_sse41.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dec_sse41.c; sourceTree = "<group>"; };
  1455. 80377CA91F2F66A100F89830 /* dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dec.c; sourceTree = "<group>"; };
  1456. 80377CAA1F2F66A100F89830 /* dsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsp.h; sourceTree = "<group>"; };
  1457. 80377CAB1F2F66A100F89830 /* enc_avx2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enc_avx2.c; sourceTree = "<group>"; };
  1458. 80377CAC1F2F66A100F89830 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enc_mips_dsp_r2.c; sourceTree = "<group>"; };
  1459. 80377CAD1F2F66A100F89830 /* enc_mips32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enc_mips32.c; sourceTree = "<group>"; };
  1460. 80377CAE1F2F66A100F89830 /* enc_msa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enc_msa.c; sourceTree = "<group>"; };
  1461. 80377CAF1F2F66A100F89830 /* enc_neon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enc_neon.c; sourceTree = "<group>"; };
  1462. 80377CB01F2F66A100F89830 /* enc_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enc_sse2.c; sourceTree = "<group>"; };
  1463. 80377CB11F2F66A100F89830 /* enc_sse41.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enc_sse41.c; sourceTree = "<group>"; };
  1464. 80377CB21F2F66A100F89830 /* enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enc.c; sourceTree = "<group>"; };
  1465. 80377CB31F2F66A100F89830 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filters_mips_dsp_r2.c; sourceTree = "<group>"; };
  1466. 80377CB41F2F66A100F89830 /* filters_msa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filters_msa.c; sourceTree = "<group>"; };
  1467. 80377CB51F2F66A100F89830 /* filters_neon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filters_neon.c; sourceTree = "<group>"; };
  1468. 80377CB61F2F66A100F89830 /* filters_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filters_sse2.c; sourceTree = "<group>"; };
  1469. 80377CB71F2F66A100F89830 /* filters.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filters.c; sourceTree = "<group>"; };
  1470. 80377CB81F2F66A100F89830 /* lossless_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lossless_common.h; sourceTree = "<group>"; };
  1471. 80377CB91F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_enc_mips_dsp_r2.c; sourceTree = "<group>"; };
  1472. 80377CBA1F2F66A100F89830 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_enc_mips32.c; sourceTree = "<group>"; };
  1473. 80377CBB1F2F66A100F89830 /* lossless_enc_msa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_enc_msa.c; sourceTree = "<group>"; };
  1474. 80377CBC1F2F66A100F89830 /* lossless_enc_neon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_enc_neon.c; sourceTree = "<group>"; };
  1475. 80377CBD1F2F66A100F89830 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_enc_sse2.c; sourceTree = "<group>"; };
  1476. 80377CBE1F2F66A100F89830 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_enc_sse41.c; sourceTree = "<group>"; };
  1477. 80377CBF1F2F66A100F89830 /* lossless_enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_enc.c; sourceTree = "<group>"; };
  1478. 80377CC01F2F66A100F89830 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_mips_dsp_r2.c; sourceTree = "<group>"; };
  1479. 80377CC11F2F66A100F89830 /* lossless_msa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_msa.c; sourceTree = "<group>"; };
  1480. 80377CC21F2F66A100F89830 /* lossless_neon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_neon.c; sourceTree = "<group>"; };
  1481. 80377CC31F2F66A100F89830 /* lossless_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless_sse2.c; sourceTree = "<group>"; };
  1482. 80377CC41F2F66A100F89830 /* lossless.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lossless.c; sourceTree = "<group>"; };
  1483. 80377CC51F2F66A100F89830 /* lossless.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lossless.h; sourceTree = "<group>"; };
  1484. 80377CC61F2F66A100F89830 /* mips_macro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mips_macro.h; sourceTree = "<group>"; };
  1485. 80377CC71F2F66A100F89830 /* msa_macro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msa_macro.h; sourceTree = "<group>"; };
  1486. 80377CC81F2F66A100F89830 /* neon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = neon.h; sourceTree = "<group>"; };
  1487. 80377CC91F2F66A100F89830 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rescaler_mips_dsp_r2.c; sourceTree = "<group>"; };
  1488. 80377CCA1F2F66A100F89830 /* rescaler_mips32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rescaler_mips32.c; sourceTree = "<group>"; };
  1489. 80377CCB1F2F66A100F89830 /* rescaler_msa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rescaler_msa.c; sourceTree = "<group>"; };
  1490. 80377CCC1F2F66A100F89830 /* rescaler_neon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rescaler_neon.c; sourceTree = "<group>"; };
  1491. 80377CCD1F2F66A100F89830 /* rescaler_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rescaler_sse2.c; sourceTree = "<group>"; };
  1492. 80377CCE1F2F66A100F89830 /* rescaler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rescaler.c; sourceTree = "<group>"; };
  1493. 80377CCF1F2F66A100F89830 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = upsampling_mips_dsp_r2.c; sourceTree = "<group>"; };
  1494. 80377CD01F2F66A100F89830 /* upsampling_msa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = upsampling_msa.c; sourceTree = "<group>"; };
  1495. 80377CD11F2F66A100F89830 /* upsampling_neon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = upsampling_neon.c; sourceTree = "<group>"; };
  1496. 80377CD21F2F66A100F89830 /* upsampling_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = upsampling_sse2.c; sourceTree = "<group>"; };
  1497. 80377CD31F2F66A100F89830 /* upsampling.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = upsampling.c; sourceTree = "<group>"; };
  1498. 80377CD41F2F66A100F89830 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yuv_mips_dsp_r2.c; sourceTree = "<group>"; };
  1499. 80377CD51F2F66A100F89830 /* yuv_mips32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yuv_mips32.c; sourceTree = "<group>"; };
  1500. 80377CD61F2F66A100F89830 /* yuv_sse2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yuv_sse2.c; sourceTree = "<group>"; };
  1501. 80377CD71F2F66A100F89830 /* yuv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yuv.c; sourceTree = "<group>"; };
  1502. 80377CD81F2F66A100F89830 /* yuv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yuv.h; sourceTree = "<group>"; };
  1503. 80377E771F2F66D000F89830 /* alpha_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = alpha_dec.c; sourceTree = "<group>"; };
  1504. 80377E781F2F66D000F89830 /* alphai_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alphai_dec.h; sourceTree = "<group>"; };
  1505. 80377E791F2F66D000F89830 /* buffer_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = buffer_dec.c; sourceTree = "<group>"; };
  1506. 80377E7A1F2F66D000F89830 /* common_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common_dec.h; sourceTree = "<group>"; };
  1507. 80377E7B1F2F66D000F89830 /* frame_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = frame_dec.c; sourceTree = "<group>"; };
  1508. 80377E7C1F2F66D000F89830 /* idec_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = idec_dec.c; sourceTree = "<group>"; };
  1509. 80377E7D1F2F66D000F89830 /* io_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = io_dec.c; sourceTree = "<group>"; };
  1510. 80377E7E1F2F66D000F89830 /* quant_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = quant_dec.c; sourceTree = "<group>"; };
  1511. 80377E7F1F2F66D000F89830 /* tree_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tree_dec.c; sourceTree = "<group>"; };
  1512. 80377E801F2F66D000F89830 /* vp8_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vp8_dec.c; sourceTree = "<group>"; };
  1513. 80377E811F2F66D000F89830 /* vp8_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vp8_dec.h; sourceTree = "<group>"; };
  1514. 80377E821F2F66D000F89830 /* vp8i_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vp8i_dec.h; sourceTree = "<group>"; };
  1515. 80377E831F2F66D000F89830 /* vp8l_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vp8l_dec.c; sourceTree = "<group>"; };
  1516. 80377E841F2F66D000F89830 /* vp8li_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vp8li_dec.h; sourceTree = "<group>"; };
  1517. 80377E851F2F66D000F89830 /* webp_dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = webp_dec.c; sourceTree = "<group>"; };
  1518. 80377E861F2F66D000F89830 /* webpi_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = webpi_dec.h; sourceTree = "<group>"; };
  1519. 807A12261F89636300EC2A9B /* SDWebImageCodersManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDWebImageCodersManager.h; sourceTree = "<group>"; };
  1520. 807A12271F89636300EC2A9B /* SDWebImageCodersManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCodersManager.m; sourceTree = "<group>"; };
  1521. A18A6CC5172DC28500419892 /* UIImage+GIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GIF.h"; sourceTree = "<group>"; };
  1522. A18A6CC6172DC28500419892 /* UIImage+GIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GIF.m"; sourceTree = "<group>"; };
  1523. AB615301192DA24600A2D8E9 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
  1524. AB615302192DA24600A2D8E9 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WebCacheOperation.m"; sourceTree = "<group>"; };
  1525. ABBE71A518C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
  1526. ABBE71A618C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; };
  1527. DA577CC41998E60B007367ED /* decode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decode.h; sourceTree = "<group>"; };
  1528. DA577CC51998E60B007367ED /* demux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = demux.h; sourceTree = "<group>"; };
  1529. DA577CC61998E60B007367ED /* encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = encode.h; sourceTree = "<group>"; };
  1530. DA577CC71998E60B007367ED /* format_constants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = format_constants.h; sourceTree = "<group>"; };
  1531. DA577CC81998E60B007367ED /* mux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mux.h; sourceTree = "<group>"; };
  1532. DA577CC91998E60B007367ED /* mux_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mux_types.h; sourceTree = "<group>"; };
  1533. DA577CCA1998E60B007367ED /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
  1534. /* End PBXFileReference section */
  1535. /* Begin PBXFrameworksBuildPhase section */
  1536. 00733A481BC487C000A5A117 /* Frameworks */ = {
  1537. isa = PBXFrameworksBuildPhase;
  1538. buildActionMask = 2147483647;
  1539. files = (
  1540. );
  1541. runOnlyForDeploymentPostprocessing = 0;
  1542. };
  1543. 4314D15D1D0E0E3B004B36C9 /* Frameworks */ = {
  1544. isa = PBXFrameworksBuildPhase;
  1545. buildActionMask = 2147483647;
  1546. files = (
  1547. 4314D15E1D0E0E3B004B36C9 /* UIKit.framework in Frameworks */,
  1548. 4314D15F1D0E0E3B004B36C9 /* Foundation.framework in Frameworks */,
  1549. 4314D1601D0E0E3B004B36C9 /* CoreGraphics.framework in Frameworks */,
  1550. );
  1551. runOnlyForDeploymentPostprocessing = 0;
  1552. };
  1553. 431BB6CA1D06D2C1006A3455 /* Frameworks */ = {
  1554. isa = PBXFrameworksBuildPhase;
  1555. buildActionMask = 2147483647;
  1556. files = (
  1557. );
  1558. runOnlyForDeploymentPostprocessing = 0;
  1559. };
  1560. 4397D2B81D0DDD8C00BB2784 /* Frameworks */ = {
  1561. isa = PBXFrameworksBuildPhase;
  1562. buildActionMask = 2147483647;
  1563. files = (
  1564. );
  1565. runOnlyForDeploymentPostprocessing = 0;
  1566. };
  1567. 4A2CADFB1AB4BB5300B6BC39 /* Frameworks */ = {
  1568. isa = PBXFrameworksBuildPhase;
  1569. buildActionMask = 2147483647;
  1570. files = (
  1571. );
  1572. runOnlyForDeploymentPostprocessing = 0;
  1573. };
  1574. 53761311155AD0D5005750A4 /* Frameworks */ = {
  1575. isa = PBXFrameworksBuildPhase;
  1576. buildActionMask = 2147483647;
  1577. files = (
  1578. 53761312155AD0D5005750A4 /* UIKit.framework in Frameworks */,
  1579. 53761313155AD0D5005750A4 /* Foundation.framework in Frameworks */,
  1580. 53761314155AD0D5005750A4 /* CoreGraphics.framework in Frameworks */,
  1581. );
  1582. runOnlyForDeploymentPostprocessing = 0;
  1583. };
  1584. /* End PBXFrameworksBuildPhase section */
  1585. /* Begin PBXGroup section */
  1586. 321E60831F38E88F00405457 /* Decoder */ = {
  1587. isa = PBXGroup;
  1588. children = (
  1589. 807A12261F89636300EC2A9B /* SDWebImageCodersManager.h */,
  1590. 807A12271F89636300EC2A9B /* SDWebImageCodersManager.m */,
  1591. 321E60841F38E8C800405457 /* SDWebImageCoder.h */,
  1592. 321E60851F38E8C800405457 /* SDWebImageCoder.m */,
  1593. 321E60921F38E8ED00405457 /* SDWebImageImageIOCoder.h */,
  1594. 321E60931F38E8ED00405457 /* SDWebImageImageIOCoder.m */,
  1595. 321E60A01F38E8F600405457 /* SDWebImageGIFCoder.h */,
  1596. 321E60A11F38E8F600405457 /* SDWebImageGIFCoder.m */,
  1597. 321E60AE1F38E90100405457 /* SDWebImageWebPCoder.h */,
  1598. 321E60AF1F38E90100405457 /* SDWebImageWebPCoder.m */,
  1599. 3290FA021FA478AF0047D20C /* SDWebImageFrame.h */,
  1600. 3290FA031FA478AF0047D20C /* SDWebImageFrame.m */,
  1601. 32CF1C051FA496B000004BD1 /* SDWebImageCoderHelper.h */,
  1602. 32CF1C061FA496B000004BD1 /* SDWebImageCoderHelper.m */,
  1603. 320224B9203979BA00E9F285 /* SDAnimatedImageRep.h */,
  1604. 320224BA203979BA00E9F285 /* SDAnimatedImageRep.m */,
  1605. );
  1606. name = Decoder;
  1607. sourceTree = "<group>";
  1608. };
  1609. 323F8B121F38EF770092B609 /* enc */ = {
  1610. isa = PBXGroup;
  1611. children = (
  1612. 323F8B131F38EF770092B609 /* alpha_enc.c */,
  1613. 323F8B141F38EF770092B609 /* analysis_enc.c */,
  1614. 323F8B151F38EF770092B609 /* backward_references_enc.c */,
  1615. 323F8B161F38EF770092B609 /* backward_references_enc.h */,
  1616. 323F8B171F38EF770092B609 /* config_enc.c */,
  1617. 323F8B181F38EF770092B609 /* cost_enc.c */,
  1618. 323F8B191F38EF770092B609 /* cost_enc.h */,
  1619. 323F8B1A1F38EF770092B609 /* delta_palettization_enc.c */,
  1620. 323F8B1B1F38EF770092B609 /* delta_palettization_enc.h */,
  1621. 323F8B1C1F38EF770092B609 /* filter_enc.c */,
  1622. 323F8B1D1F38EF770092B609 /* frame_enc.c */,
  1623. 323F8B1E1F38EF770092B609 /* histogram_enc.c */,
  1624. 323F8B1F1F38EF770092B609 /* histogram_enc.h */,
  1625. 323F8B201F38EF770092B609 /* iterator_enc.c */,
  1626. 323F8B221F38EF770092B609 /* near_lossless_enc.c */,
  1627. 323F8B231F38EF770092B609 /* picture_csp_enc.c */,
  1628. 323F8B241F38EF770092B609 /* picture_enc.c */,
  1629. 323F8B251F38EF770092B609 /* picture_psnr_enc.c */,
  1630. 323F8B261F38EF770092B609 /* picture_rescale_enc.c */,
  1631. 323F8B271F38EF770092B609 /* picture_tools_enc.c */,
  1632. 323F8B281F38EF770092B609 /* predictor_enc.c */,
  1633. 323F8B291F38EF770092B609 /* quant_enc.c */,
  1634. 323F8B2A1F38EF770092B609 /* syntax_enc.c */,
  1635. 323F8B2B1F38EF770092B609 /* token_enc.c */,
  1636. 323F8B2C1F38EF770092B609 /* tree_enc.c */,
  1637. 323F8B2D1F38EF770092B609 /* vp8i_enc.h */,
  1638. 323F8B2E1F38EF770092B609 /* vp8l_enc.c */,
  1639. 323F8B2F1F38EF770092B609 /* vp8li_enc.h */,
  1640. 323F8B301F38EF770092B609 /* webp_enc.c */,
  1641. );
  1642. path = enc;
  1643. sourceTree = "<group>";
  1644. };
  1645. 323F8B311F38EF770092B609 /* mux */ = {
  1646. isa = PBXGroup;
  1647. children = (
  1648. 323F8B321F38EF770092B609 /* anim_encode.c */,
  1649. 323F8B331F38EF770092B609 /* animi.h */,
  1650. 323F8B3A1F38EF770092B609 /* muxedit.c */,
  1651. 323F8B3B1F38EF770092B609 /* muxi.h */,
  1652. 323F8B3C1F38EF770092B609 /* muxinternal.c */,
  1653. 323F8B3D1F38EF770092B609 /* muxread.c */,
  1654. );
  1655. path = mux;
  1656. sourceTree = "<group>";
  1657. };
  1658. 4369C2851D9811BB007E863A /* WebCache Categories */ = {
  1659. isa = PBXGroup;
  1660. children = (
  1661. 4397D2F41D0DE2DF00BB2784 /* NSImage+WebCache.h */,
  1662. 4397D2F51D0DE2DF00BB2784 /* NSImage+WebCache.m */,
  1663. 321DB35F2011D4D60015D2CB /* NSButton+WebCache.h */,
  1664. 321DB3602011D4D60015D2CB /* NSButton+WebCache.m */,
  1665. 535699B415113E7300A4C397 /* MKAnnotationView+WebCache.h */,
  1666. 535699B515113E7300A4C397 /* MKAnnotationView+WebCache.m */,
  1667. 53922D93148C56230056699D /* UIButton+WebCache.h */,
  1668. 53922D94148C56230056699D /* UIButton+WebCache.m */,
  1669. ABBE71A518C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h */,
  1670. ABBE71A618C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m */,
  1671. 53922D95148C56230056699D /* UIImageView+WebCache.h */,
  1672. 53922D96148C56230056699D /* UIImageView+WebCache.m */,
  1673. 4369C2751D9807EC007E863A /* UIView+WebCache.h */,
  1674. 4369C2761D9807EC007E863A /* UIView+WebCache.m */,
  1675. );
  1676. name = "WebCache Categories";
  1677. path = ..;
  1678. sourceTree = "<group>";
  1679. };
  1680. 43C892971D9D6DBB0022038D /* demux */ = {
  1681. isa = PBXGroup;
  1682. children = (
  1683. 43C892981D9D6DD70022038D /* anim_decode.c */,
  1684. 43C892991D9D6DD70022038D /* demux.c */,
  1685. );
  1686. path = demux;
  1687. sourceTree = "<group>";
  1688. };
  1689. 43CE75451CFE9427006C64D0 /* FLAnimatedImage */ = {
  1690. isa = PBXGroup;
  1691. children = (
  1692. 43CE75481CFE9427006C64D0 /* FLAnimatedImage */,
  1693. );
  1694. name = FLAnimatedImage;
  1695. path = Vendors/FLAnimatedImage;
  1696. sourceTree = "<group>";
  1697. };
  1698. 43CE75481CFE9427006C64D0 /* FLAnimatedImage */ = {
  1699. isa = PBXGroup;
  1700. children = (
  1701. 43CE75491CFE9427006C64D0 /* FLAnimatedImage.h */,
  1702. 43CE754A1CFE9427006C64D0 /* FLAnimatedImage.m */,
  1703. 43CE754B1CFE9427006C64D0 /* FLAnimatedImageView.h */,
  1704. 43CE754C1CFE9427006C64D0 /* FLAnimatedImageView.m */,
  1705. );
  1706. path = FLAnimatedImage;
  1707. sourceTree = "<group>";
  1708. };
  1709. 43CE75CD1CFE98B3006C64D0 /* FLAnimatedImage */ = {
  1710. isa = PBXGroup;
  1711. children = (
  1712. 43CE75CE1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h */,
  1713. 43CE75CF1CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m */,
  1714. );
  1715. path = FLAnimatedImage;
  1716. sourceTree = "<group>";
  1717. };
  1718. 4A2CAE001AB4BB5300B6BC39 /* WebImage */ = {
  1719. isa = PBXGroup;
  1720. children = (
  1721. 4A2CAE031AB4BB5400B6BC39 /* SDWebImage.h */,
  1722. 4A2CAE011AB4BB5400B6BC39 /* Supporting Files */,
  1723. );
  1724. path = WebImage;
  1725. sourceTree = "<group>";
  1726. };
  1727. 4A2CAE011AB4BB5400B6BC39 /* Supporting Files */ = {
  1728. isa = PBXGroup;
  1729. children = (
  1730. 4A2CAE021AB4BB5400B6BC39 /* Info.plist */,
  1731. );
  1732. name = "Supporting Files";
  1733. sourceTree = "<group>";
  1734. };
  1735. 53922D64148C55810056699D = {
  1736. isa = PBXGroup;
  1737. children = (
  1738. 53922D74148C55820056699D /* SDWebImage */,
  1739. 4A2CAE001AB4BB5300B6BC39 /* WebImage */,
  1740. 53922D71148C55820056699D /* Frameworks */,
  1741. 53922D70148C55820056699D /* Products */,
  1742. );
  1743. sourceTree = "<group>";
  1744. usesTabs = 0;
  1745. };
  1746. 53922D70148C55820056699D /* Products */ = {
  1747. isa = PBXGroup;
  1748. children = (
  1749. 53761325155AD0D5005750A4 /* libSDWebImage iOS static.a */,
  1750. 4A2CADFF1AB4BB5300B6BC39 /* SDWebImage.framework */,
  1751. 00733A4C1BC487C000A5A117 /* SDWebImage.framework */,
  1752. 431BB7031D06D2C1006A3455 /* SDWebImage.framework */,
  1753. 4397D2F21D0DDD8C00BB2784 /* SDWebImage.framework */,
  1754. 4314D1991D0E0E3B004B36C9 /* libSDWebImage watchOS static.a */,
  1755. );
  1756. name = Products;
  1757. sourceTree = "<group>";
  1758. };
  1759. 53922D71148C55820056699D /* Frameworks */ = {
  1760. isa = PBXGroup;
  1761. children = (
  1762. 43CE75451CFE9427006C64D0 /* FLAnimatedImage */,
  1763. DA577C121998E60B007367ED /* libwebp */,
  1764. 53FB893F14D35D1A0020B787 /* CoreGraphics.framework */,
  1765. 53922D72148C55820056699D /* Foundation.framework */,
  1766. 53FB894814D35E9E0020B787 /* UIKit.framework */,
  1767. );
  1768. name = Frameworks;
  1769. sourceTree = "<group>";
  1770. };
  1771. 53922D74148C55820056699D /* SDWebImage */ = {
  1772. isa = PBXGroup;
  1773. children = (
  1774. 53922D88148C56230056699D /* SDWebImageCompat.h */,
  1775. 5340674F167780C40042B59E /* SDWebImageCompat.m */,
  1776. 530E49E71646388E002868E7 /* SDWebImageOperation.h */,
  1777. 53922DAB148C56810056699D /* Downloader */,
  1778. 53922DAA148C56470056699D /* Cache */,
  1779. 321E60831F38E88F00405457 /* Decoder */,
  1780. 53922DAC148C56DD0056699D /* Utils */,
  1781. 53922DA9148C562D0056699D /* Categories */,
  1782. 4369C2851D9811BB007E863A /* WebCache Categories */,
  1783. 43CE75CD1CFE98B3006C64D0 /* FLAnimatedImage */,
  1784. );
  1785. path = SDWebImage;
  1786. sourceTree = "<group>";
  1787. };
  1788. 53922DA9148C562D0056699D /* Categories */ = {
  1789. isa = PBXGroup;
  1790. children = (
  1791. 5D5B9140188EE8DD006D06BD /* NSData+ImageContentType.h */,
  1792. 5D5B9141188EE8DD006D06BD /* NSData+ImageContentType.m */,
  1793. A18A6CC5172DC28500419892 /* UIImage+GIF.h */,
  1794. A18A6CC6172DC28500419892 /* UIImage+GIF.m */,
  1795. 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */,
  1796. 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */,
  1797. 53EDFB911762547C00698166 /* UIImage+WebP.h */,
  1798. 53EDFB921762547C00698166 /* UIImage+WebP.m */,
  1799. 321E60BC1F38E91700405457 /* UIImage+ForceDecode.h */,
  1800. 321E60BD1F38E91700405457 /* UIImage+ForceDecode.m */,
  1801. AB615301192DA24600A2D8E9 /* UIView+WebCacheOperation.h */,
  1802. AB615302192DA24600A2D8E9 /* UIView+WebCacheOperation.m */,
  1803. 0E9EFA0821983283005D7892 /* UIImage+MemoryCacheCost.h */,
  1804. 0E9EFA0921983283005D7892 /* UIImage+MemoryCacheCost.m */,
  1805. );
  1806. name = Categories;
  1807. sourceTree = "<group>";
  1808. };
  1809. 53922DAA148C56470056699D /* Cache */ = {
  1810. isa = PBXGroup;
  1811. children = (
  1812. 53922D85148C56230056699D /* SDImageCache.h */,
  1813. 53922D86148C56230056699D /* SDImageCache.m */,
  1814. 43A918621D8308FE00B3925F /* SDImageCacheConfig.h */,
  1815. 43A918631D8308FE00B3925F /* SDImageCacheConfig.m */,
  1816. );
  1817. name = Cache;
  1818. sourceTree = "<group>";
  1819. };
  1820. 53922DAB148C56810056699D /* Downloader */ = {
  1821. isa = PBXGroup;
  1822. children = (
  1823. 53922D8B148C56230056699D /* SDWebImageDownloader.h */,
  1824. 53922D8C148C56230056699D /* SDWebImageDownloader.m */,
  1825. 530E49E316460AE2002868E7 /* SDWebImageDownloaderOperation.h */,
  1826. 530E49E416460AE2002868E7 /* SDWebImageDownloaderOperation.m */,
  1827. );
  1828. name = Downloader;
  1829. sourceTree = "<group>";
  1830. };
  1831. 53922DAC148C56DD0056699D /* Utils */ = {
  1832. isa = PBXGroup;
  1833. children = (
  1834. 53922D8E148C56230056699D /* SDWebImageManager.h */,
  1835. 53922D8F148C56230056699D /* SDWebImageManager.m */,
  1836. 53922D91148C56230056699D /* SDWebImagePrefetcher.h */,
  1837. 53922D92148C56230056699D /* SDWebImagePrefetcher.m */,
  1838. 325312C6200F09910046BF1E /* SDWebImageTransition.h */,
  1839. 325312C7200F09910046BF1E /* SDWebImageTransition.m */,
  1840. );
  1841. name = Utils;
  1842. sourceTree = "<group>";
  1843. };
  1844. DA577C121998E60B007367ED /* libwebp */ = {
  1845. isa = PBXGroup;
  1846. children = (
  1847. DA577C4F1998E60B007367ED /* src */,
  1848. );
  1849. name = libwebp;
  1850. path = Vendors/libwebp;
  1851. sourceTree = "<group>";
  1852. };
  1853. DA577C4F1998E60B007367ED /* src */ = {
  1854. isa = PBXGroup;
  1855. children = (
  1856. DA577D5A1998E6B2007367ED /* dec */,
  1857. 43C892971D9D6DBB0022038D /* demux */,
  1858. DA577C651998E60B007367ED /* dsp */,
  1859. 323F8B121F38EF770092B609 /* enc */,
  1860. 323F8B311F38EF770092B609 /* mux */,
  1861. DA577CA71998E60B007367ED /* utils */,
  1862. DA577CC31998E60B007367ED /* webp */,
  1863. );
  1864. path = src;
  1865. sourceTree = "<group>";
  1866. };
  1867. DA577C651998E60B007367ED /* dsp */ = {
  1868. isa = PBXGroup;
  1869. children = (
  1870. 80377C941F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c */,
  1871. 80377C951F2F66A100F89830 /* alpha_processing_neon.c */,
  1872. 80377C961F2F66A100F89830 /* alpha_processing_sse2.c */,
  1873. 80377C971F2F66A100F89830 /* alpha_processing_sse41.c */,
  1874. 80377C981F2F66A100F89830 /* alpha_processing.c */,
  1875. 80377C991F2F66A100F89830 /* argb_mips_dsp_r2.c */,
  1876. 80377C9A1F2F66A100F89830 /* argb_sse2.c */,
  1877. 80377C9B1F2F66A100F89830 /* argb.c */,
  1878. 80377C9C1F2F66A100F89830 /* common_sse2.h */,
  1879. 80377C9D1F2F66A100F89830 /* cost_mips_dsp_r2.c */,
  1880. 80377C9E1F2F66A100F89830 /* cost_mips32.c */,
  1881. 80377C9F1F2F66A100F89830 /* cost_sse2.c */,
  1882. 80377CA01F2F66A100F89830 /* cost.c */,
  1883. 80377CA11F2F66A100F89830 /* cpu.c */,
  1884. 80377CA21F2F66A100F89830 /* dec_clip_tables.c */,
  1885. 80377CA31F2F66A100F89830 /* dec_mips_dsp_r2.c */,
  1886. 80377CA41F2F66A100F89830 /* dec_mips32.c */,
  1887. 80377CA51F2F66A100F89830 /* dec_msa.c */,
  1888. 80377CA61F2F66A100F89830 /* dec_neon.c */,
  1889. 80377CA71F2F66A100F89830 /* dec_sse2.c */,
  1890. 80377CA81F2F66A100F89830 /* dec_sse41.c */,
  1891. 80377CA91F2F66A100F89830 /* dec.c */,
  1892. 80377CAA1F2F66A100F89830 /* dsp.h */,
  1893. 80377CAB1F2F66A100F89830 /* enc_avx2.c */,
  1894. 80377CAC1F2F66A100F89830 /* enc_mips_dsp_r2.c */,
  1895. 80377CAD1F2F66A100F89830 /* enc_mips32.c */,
  1896. 80377CAE1F2F66A100F89830 /* enc_msa.c */,
  1897. 80377CAF1F2F66A100F89830 /* enc_neon.c */,
  1898. 80377CB01F2F66A100F89830 /* enc_sse2.c */,
  1899. 80377CB11F2F66A100F89830 /* enc_sse41.c */,
  1900. 80377CB21F2F66A100F89830 /* enc.c */,
  1901. 80377CB31F2F66A100F89830 /* filters_mips_dsp_r2.c */,
  1902. 80377CB41F2F66A100F89830 /* filters_msa.c */,
  1903. 80377CB51F2F66A100F89830 /* filters_neon.c */,
  1904. 80377CB61F2F66A100F89830 /* filters_sse2.c */,
  1905. 80377CB71F2F66A100F89830 /* filters.c */,
  1906. 80377CB81F2F66A100F89830 /* lossless_common.h */,
  1907. 80377CB91F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c */,
  1908. 80377CBA1F2F66A100F89830 /* lossless_enc_mips32.c */,
  1909. 80377CBB1F2F66A100F89830 /* lossless_enc_msa.c */,
  1910. 80377CBC1F2F66A100F89830 /* lossless_enc_neon.c */,
  1911. 80377CBD1F2F66A100F89830 /* lossless_enc_sse2.c */,
  1912. 80377CBE1F2F66A100F89830 /* lossless_enc_sse41.c */,
  1913. 80377CBF1F2F66A100F89830 /* lossless_enc.c */,
  1914. 80377CC01F2F66A100F89830 /* lossless_mips_dsp_r2.c */,
  1915. 80377CC11F2F66A100F89830 /* lossless_msa.c */,
  1916. 80377CC21F2F66A100F89830 /* lossless_neon.c */,
  1917. 80377CC31F2F66A100F89830 /* lossless_sse2.c */,
  1918. 80377CC41F2F66A100F89830 /* lossless.c */,
  1919. 80377CC51F2F66A100F89830 /* lossless.h */,
  1920. 80377CC61F2F66A100F89830 /* mips_macro.h */,
  1921. 80377CC71F2F66A100F89830 /* msa_macro.h */,
  1922. 80377CC81F2F66A100F89830 /* neon.h */,
  1923. 80377CC91F2F66A100F89830 /* rescaler_mips_dsp_r2.c */,
  1924. 80377CCA1F2F66A100F89830 /* rescaler_mips32.c */,
  1925. 80377CCB1F2F66A100F89830 /* rescaler_msa.c */,
  1926. 80377CCC1F2F66A100F89830 /* rescaler_neon.c */,
  1927. 80377CCD1F2F66A100F89830 /* rescaler_sse2.c */,
  1928. 80377CCE1F2F66A100F89830 /* rescaler.c */,
  1929. 80377CCF1F2F66A100F89830 /* upsampling_mips_dsp_r2.c */,
  1930. 80377CD01F2F66A100F89830 /* upsampling_msa.c */,
  1931. 80377CD11F2F66A100F89830 /* upsampling_neon.c */,
  1932. 80377CD21F2F66A100F89830 /* upsampling_sse2.c */,
  1933. 80377CD31F2F66A100F89830 /* upsampling.c */,
  1934. 80377CD41F2F66A100F89830 /* yuv_mips_dsp_r2.c */,
  1935. 80377CD51F2F66A100F89830 /* yuv_mips32.c */,
  1936. 80377CD61F2F66A100F89830 /* yuv_sse2.c */,
  1937. 80377CD71F2F66A100F89830 /* yuv.c */,
  1938. 80377CD81F2F66A100F89830 /* yuv.h */,
  1939. );
  1940. path = dsp;
  1941. sourceTree = "<group>";
  1942. };
  1943. DA577CA71998E60B007367ED /* utils */ = {
  1944. isa = PBXGroup;
  1945. children = (
  1946. 80377BDE1F2F665300F89830 /* bit_reader_inl_utils.h */,
  1947. 80377BDF1F2F665300F89830 /* bit_reader_utils.c */,
  1948. 80377BE01F2F665300F89830 /* bit_reader_utils.h */,
  1949. 80377BE11F2F665300F89830 /* bit_writer_utils.c */,
  1950. 80377BE21F2F665300F89830 /* bit_writer_utils.h */,
  1951. 80377BE31F2F665300F89830 /* color_cache_utils.c */,
  1952. 80377BE41F2F665300F89830 /* color_cache_utils.h */,
  1953. 80377BE51F2F665300F89830 /* endian_inl_utils.h */,
  1954. 80377BE61F2F665300F89830 /* filters_utils.c */,
  1955. 80377BE71F2F665300F89830 /* filters_utils.h */,
  1956. 80377BE81F2F665300F89830 /* huffman_encode_utils.c */,
  1957. 80377BE91F2F665300F89830 /* huffman_encode_utils.h */,
  1958. 80377BEA1F2F665300F89830 /* huffman_utils.c */,
  1959. 80377BEB1F2F665300F89830 /* huffman_utils.h */,
  1960. 80377BEC1F2F665300F89830 /* quant_levels_dec_utils.c */,
  1961. 80377BED1F2F665300F89830 /* quant_levels_dec_utils.h */,
  1962. 80377BEE1F2F665300F89830 /* quant_levels_utils.c */,
  1963. 80377BEF1F2F665300F89830 /* quant_levels_utils.h */,
  1964. 80377BF01F2F665300F89830 /* random_utils.c */,
  1965. 80377BF11F2F665300F89830 /* random_utils.h */,
  1966. 80377BF21F2F665300F89830 /* rescaler_utils.c */,
  1967. 80377BF31F2F665300F89830 /* rescaler_utils.h */,
  1968. 80377BF41F2F665300F89830 /* thread_utils.c */,
  1969. 80377BF51F2F665300F89830 /* thread_utils.h */,
  1970. 80377BF61F2F665300F89830 /* utils.c */,
  1971. 80377BF71F2F665300F89830 /* utils.h */,
  1972. );
  1973. path = utils;
  1974. sourceTree = "<group>";
  1975. };
  1976. DA577CC31998E60B007367ED /* webp */ = {
  1977. isa = PBXGroup;
  1978. children = (
  1979. DA577CC41998E60B007367ED /* decode.h */,
  1980. DA577CC51998E60B007367ED /* demux.h */,
  1981. DA577CC61998E60B007367ED /* encode.h */,
  1982. DA577CC71998E60B007367ED /* format_constants.h */,
  1983. DA577CC81998E60B007367ED /* mux.h */,
  1984. DA577CC91998E60B007367ED /* mux_types.h */,
  1985. DA577CCA1998E60B007367ED /* types.h */,
  1986. );
  1987. path = webp;
  1988. sourceTree = "<group>";
  1989. };
  1990. DA577D5A1998E6B2007367ED /* dec */ = {
  1991. isa = PBXGroup;
  1992. children = (
  1993. 80377E771F2F66D000F89830 /* alpha_dec.c */,
  1994. 80377E781F2F66D000F89830 /* alphai_dec.h */,
  1995. 80377E791F2F66D000F89830 /* buffer_dec.c */,
  1996. 80377E7A1F2F66D000F89830 /* common_dec.h */,
  1997. 80377E7B1F2F66D000F89830 /* frame_dec.c */,
  1998. 80377E7C1F2F66D000F89830 /* idec_dec.c */,
  1999. 80377E7D1F2F66D000F89830 /* io_dec.c */,
  2000. 80377E7E1F2F66D000F89830 /* quant_dec.c */,
  2001. 80377E7F1F2F66D000F89830 /* tree_dec.c */,
  2002. 80377E801F2F66D000F89830 /* vp8_dec.c */,
  2003. 80377E811F2F66D000F89830 /* vp8_dec.h */,
  2004. 80377E821F2F66D000F89830 /* vp8i_dec.h */,
  2005. 80377E831F2F66D000F89830 /* vp8l_dec.c */,
  2006. 80377E841F2F66D000F89830 /* vp8li_dec.h */,
  2007. 80377E851F2F66D000F89830 /* webp_dec.c */,
  2008. 80377E861F2F66D000F89830 /* webpi_dec.h */,
  2009. );
  2010. path = dec;
  2011. sourceTree = "<group>";
  2012. };
  2013. /* End PBXGroup section */
  2014. /* Begin PBXHeadersBuildPhase section */
  2015. 00733A491BC487C000A5A117 /* Headers */ = {
  2016. isa = PBXHeadersBuildPhase;
  2017. buildActionMask = 2147483647;
  2018. files = (
  2019. 80377DDC1F2F66A700F89830 /* neon.h in Headers */,
  2020. 80377DEC1F2F66A700F89830 /* yuv.h in Headers */,
  2021. 80377DDA1F2F66A700F89830 /* mips_macro.h in Headers */,
  2022. 80377C571F2F666300F89830 /* quant_levels_utils.h in Headers */,
  2023. 323F8B531F38EF770092B609 /* backward_references_enc.h in Headers */,
  2024. 4317395A1CDFC8B70008FEB9 /* mux_types.h in Headers */,
  2025. 431739561CDFC8B70008FEB9 /* demux.h in Headers */,
  2026. 80377C4A1F2F666300F89830 /* bit_writer_utils.h in Headers */,
  2027. 4397D2F81D0DF44200BB2784 /* MKAnnotationView+WebCache.h in Headers */,
  2028. 323F8BE71F38EF770092B609 /* vp8li_enc.h in Headers */,
  2029. 4369C27A1D9807EC007E863A /* UIView+WebCache.h in Headers */,
  2030. 80377DCC1F2F66A700F89830 /* lossless_common.h in Headers */,
  2031. 321E60971F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */,
  2032. 0E9EFA0D21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */,
  2033. 43A918671D8308FE00B3925F /* SDImageCacheConfig.h in Headers */,
  2034. 431739571CDFC8B70008FEB9 /* encode.h in Headers */,
  2035. 00733A6F1BC4880E00A5A117 /* UIImage+WebP.h in Headers */,
  2036. 323F8B711F38EF770092B609 /* delta_palettization_enc.h in Headers */,
  2037. 321E60B31F38E90100405457 /* SDWebImageWebPCoder.h in Headers */,
  2038. 3290FA071FA478AF0047D20C /* SDWebImageFrame.h in Headers */,
  2039. 807A122B1F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */,
  2040. 80377EC61F2F66D500F89830 /* webpi_dec.h in Headers */,
  2041. 80377C591F2F666300F89830 /* random_utils.h in Headers */,
  2042. 80377DD91F2F66A700F89830 /* lossless.h in Headers */,
  2043. 00733A681BC4880E00A5A117 /* SDWebImageManager.h in Headers */,
  2044. 431739591CDFC8B70008FEB9 /* mux.h in Headers */,
  2045. 00733A6C1BC4880E00A5A117 /* UIButton+WebCache.h in Headers */,
  2046. 80377DB01F2F66A700F89830 /* common_sse2.h in Headers */,
  2047. 80377DDB1F2F66A700F89830 /* msa_macro.h in Headers */,
  2048. 4317395B1CDFC8B70008FEB9 /* types.h in Headers */,
  2049. 80377C531F2F666300F89830 /* huffman_utils.h in Headers */,
  2050. 43CE75D21CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h in Headers */,
  2051. 431739551CDFC8B70008FEB9 /* decode.h in Headers */,
  2052. 00733A731BC4880E00A5A117 /* SDWebImage.h in Headers */,
  2053. 323F8B651F38EF770092B609 /* cost_enc.h in Headers */,
  2054. 00733A701BC4880E00A5A117 /* UIImageView+HighlightedWebCache.h in Headers */,
  2055. 323F8BDB1F38EF770092B609 /* vp8i_enc.h in Headers */,
  2056. 80377C461F2F666300F89830 /* bit_reader_inl_utils.h in Headers */,
  2057. 00733A671BC4880E00A5A117 /* SDImageCache.h in Headers */,
  2058. 00733A711BC4880E00A5A117 /* UIImageView+WebCache.h in Headers */,
  2059. 00733A631BC4880E00A5A117 /* SDWebImageCompat.h in Headers */,
  2060. 00733A661BC4880E00A5A117 /* SDWebImageDownloaderOperation.h in Headers */,
  2061. 80377C5D1F2F666300F89830 /* thread_utils.h in Headers */,
  2062. 321E60891F38E8C800405457 /* SDWebImageCoder.h in Headers */,
  2063. 00733A721BC4880E00A5A117 /* UIView+WebCacheOperation.h in Headers */,
  2064. 80377C481F2F666300F89830 /* bit_reader_utils.h in Headers */,
  2065. 80377C511F2F666300F89830 /* huffman_encode_utils.h in Headers */,
  2066. 00733A6B1BC4880E00A5A117 /* NSData+ImageContentType.h in Headers */,
  2067. 325312CB200F09910046BF1E /* SDWebImageTransition.h in Headers */,
  2068. 323F8C111F38EF770092B609 /* muxi.h in Headers */,
  2069. 80377EC41F2F66D500F89830 /* vp8li_dec.h in Headers */,
  2070. 00733A6A1BC4880E00A5A117 /* SDWebImagePrefetcher.h in Headers */,
  2071. 00733A641BC4880E00A5A117 /* SDWebImageOperation.h in Headers */,
  2072. 321E60A51F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */,
  2073. 32CF1C0A1FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */,
  2074. 80377C4D1F2F666300F89830 /* endian_inl_utils.h in Headers */,
  2075. 431739581CDFC8B70008FEB9 /* format_constants.h in Headers */,
  2076. 43CE75781CFE9427006C64D0 /* FLAnimatedImage.h in Headers */,
  2077. 00733A6E1BC4880E00A5A117 /* UIImage+MultiFormat.h in Headers */,
  2078. 323F8B891F38EF770092B609 /* histogram_enc.h in Headers */,
  2079. 80377EC21F2F66D500F89830 /* vp8i_dec.h in Headers */,
  2080. 80377EBA1F2F66D500F89830 /* common_dec.h in Headers */,
  2081. 43CE757E1CFE9427006C64D0 /* FLAnimatedImageView.h in Headers */,
  2082. 80377C5F1F2F666300F89830 /* utils.h in Headers */,
  2083. 80377C5B1F2F666300F89830 /* rescaler_utils.h in Headers */,
  2084. 323F8BF91F38EF770092B609 /* animi.h in Headers */,
  2085. 80377C4F1F2F666300F89830 /* filters_utils.h in Headers */,
  2086. 80377C4C1F2F666300F89830 /* color_cache_utils.h in Headers */,
  2087. 321E60C11F38E91700405457 /* UIImage+ForceDecode.h in Headers */,
  2088. 80377DBE1F2F66A700F89830 /* dsp.h in Headers */,
  2089. 80377EB81F2F66D400F89830 /* alphai_dec.h in Headers */,
  2090. 00733A6D1BC4880E00A5A117 /* UIImage+GIF.h in Headers */,
  2091. 80377C551F2F666300F89830 /* quant_levels_dec_utils.h in Headers */,
  2092. 80377EC11F2F66D500F89830 /* vp8_dec.h in Headers */,
  2093. 00733A651BC4880E00A5A117 /* SDWebImageDownloader.h in Headers */,
  2094. );
  2095. runOnlyForDeploymentPostprocessing = 0;
  2096. };
  2097. 4314D1611D0E0E3B004B36C9 /* Headers */ = {
  2098. isa = PBXHeadersBuildPhase;
  2099. buildActionMask = 2147483647;
  2100. files = (
  2101. 80377D521F2F66A700F89830 /* neon.h in Headers */,
  2102. 80377D261F2F66A700F89830 /* common_sse2.h in Headers */,
  2103. 3290FA051FA478AF0047D20C /* SDWebImageFrame.h in Headers */,
  2104. 80377C1D1F2F666300F89830 /* huffman_encode_utils.h in Headers */,
  2105. 321E60B11F38E90100405457 /* SDWebImageWebPCoder.h in Headers */,
  2106. 80377E9A1F2F66D400F89830 /* common_dec.h in Headers */,
  2107. 80377C231F2F666300F89830 /* quant_levels_utils.h in Headers */,
  2108. 321E60BF1F38E91700405457 /* UIImage+ForceDecode.h in Headers */,
  2109. 80377EA61F2F66D400F89830 /* webpi_dec.h in Headers */,
  2110. 807A12291F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */,
  2111. 80377C141F2F666300F89830 /* bit_reader_utils.h in Headers */,
  2112. 323F8C0F1F38EF770092B609 /* muxi.h in Headers */,
  2113. 80377C2B1F2F666300F89830 /* utils.h in Headers */,
  2114. 4314D1621D0E0E3B004B36C9 /* mux_types.h in Headers */,
  2115. 4314D1631D0E0E3B004B36C9 /* demux.h in Headers */,
  2116. 80377D421F2F66A700F89830 /* lossless_common.h in Headers */,
  2117. 32CF1C081FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */,
  2118. 4314D16B1D0E0E3B004B36C9 /* encode.h in Headers */,
  2119. 80377D501F2F66A700F89830 /* mips_macro.h in Headers */,
  2120. 80377C291F2F666300F89830 /* thread_utils.h in Headers */,
  2121. 4314D16D1D0E0E3B004B36C9 /* SDImageCache.h in Headers */,
  2122. 4314D16F1D0E0E3B004B36C9 /* NSData+ImageContentType.h in Headers */,
  2123. 80377C121F2F666300F89830 /* bit_reader_inl_utils.h in Headers */,
  2124. 0E9EFA0B21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */,
  2125. 4314D1701D0E0E3B004B36C9 /* mux.h in Headers */,
  2126. 321E60871F38E8C800405457 /* SDWebImageCoder.h in Headers */,
  2127. 80377EA21F2F66D400F89830 /* vp8i_dec.h in Headers */,
  2128. 321E60951F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */,
  2129. 80377C211F2F666300F89830 /* quant_levels_dec_utils.h in Headers */,
  2130. 4314D1721D0E0E3B004B36C9 /* SDWebImageCompat.h in Headers */,
  2131. 80377C251F2F666300F89830 /* random_utils.h in Headers */,
  2132. 80377D4F1F2F66A700F89830 /* lossless.h in Headers */,
  2133. 80377D511F2F66A700F89830 /* msa_macro.h in Headers */,
  2134. 323F8BD91F38EF770092B609 /* vp8i_enc.h in Headers */,
  2135. 80377EA11F2F66D400F89830 /* vp8_dec.h in Headers */,
  2136. 80377C271F2F666300F89830 /* rescaler_utils.h in Headers */,
  2137. 323F8B511F38EF770092B609 /* backward_references_enc.h in Headers */,
  2138. 325312C9200F09910046BF1E /* SDWebImageTransition.h in Headers */,
  2139. 43A918651D8308FE00B3925F /* SDImageCacheConfig.h in Headers */,
  2140. 4314D1741D0E0E3B004B36C9 /* types.h in Headers */,
  2141. 4314D1761D0E0E3B004B36C9 /* decode.h in Headers */,
  2142. 80377C1B1F2F666300F89830 /* filters_utils.h in Headers */,
  2143. 323F8B6F1F38EF770092B609 /* delta_palettization_enc.h in Headers */,
  2144. 4314D1781D0E0E3B004B36C9 /* SDWebImageDownloader.h in Headers */,
  2145. 80377E981F2F66D400F89830 /* alphai_dec.h in Headers */,
  2146. 4314D1791D0E0E3B004B36C9 /* SDWebImageManager.h in Headers */,
  2147. 323F8BE51F38EF770092B609 /* vp8li_enc.h in Headers */,
  2148. 80377C191F2F666300F89830 /* endian_inl_utils.h in Headers */,
  2149. 321E60A31F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */,
  2150. 4314D17C1D0E0E3B004B36C9 /* UIImage+WebP.h in Headers */,
  2151. 4369C2781D9807EC007E863A /* UIView+WebCache.h in Headers */,
  2152. 80377D621F2F66A700F89830 /* yuv.h in Headers */,
  2153. 80377D341F2F66A700F89830 /* dsp.h in Headers */,
  2154. 4314D17D1D0E0E3B004B36C9 /* SDWebImagePrefetcher.h in Headers */,
  2155. 80377C181F2F666300F89830 /* color_cache_utils.h in Headers */,
  2156. 323F8B871F38EF770092B609 /* histogram_enc.h in Headers */,
  2157. 80377C1F1F2F666300F89830 /* huffman_utils.h in Headers */,
  2158. 4314D17F1D0E0E3B004B36C9 /* UIButton+WebCache.h in Headers */,
  2159. 4314D1811D0E0E3B004B36C9 /* UIImageView+WebCache.h in Headers */,
  2160. 4314D1841D0E0E3B004B36C9 /* SDWebImageOperation.h in Headers */,
  2161. 4314D1851D0E0E3B004B36C9 /* SDWebImageDownloaderOperation.h in Headers */,
  2162. 4314D1861D0E0E3B004B36C9 /* UIImageView+HighlightedWebCache.h in Headers */,
  2163. 4314D1881D0E0E3B004B36C9 /* format_constants.h in Headers */,
  2164. 323F8B631F38EF770092B609 /* cost_enc.h in Headers */,
  2165. 323F8BF71F38EF770092B609 /* animi.h in Headers */,
  2166. 4314D18F1D0E0E3B004B36C9 /* UIView+WebCacheOperation.h in Headers */,
  2167. 4314D1901D0E0E3B004B36C9 /* UIImage+GIF.h in Headers */,
  2168. 80377C161F2F666300F89830 /* bit_writer_utils.h in Headers */,
  2169. 4314D1921D0E0E3B004B36C9 /* UIImage+MultiFormat.h in Headers */,
  2170. 80377EA41F2F66D400F89830 /* vp8li_dec.h in Headers */,
  2171. );
  2172. runOnlyForDeploymentPostprocessing = 0;
  2173. };
  2174. 431BB6CB1D06D2C1006A3455 /* Headers */ = {
  2175. isa = PBXHeadersBuildPhase;
  2176. buildActionMask = 2147483647;
  2177. files = (
  2178. 80377C791F2F666400F89830 /* utils.h in Headers */,
  2179. 323F8B721F38EF770092B609 /* delta_palettization_enc.h in Headers */,
  2180. 32CF1C0B1FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */,
  2181. 431BB6D71D06D2C1006A3455 /* UIImage+WebP.h in Headers */,
  2182. 431BB6D91D06D2C1006A3455 /* SDWebImageManager.h in Headers */,
  2183. 80377C691F2F666400F89830 /* filters_utils.h in Headers */,
  2184. 80377EC81F2F66D500F89830 /* alphai_dec.h in Headers */,
  2185. 43A62A1B1D0E0A800089D7DD /* decode.h in Headers */,
  2186. 321E608A1F38E8C800405457 /* SDWebImageCoder.h in Headers */,
  2187. 80377C601F2F666400F89830 /* bit_reader_inl_utils.h in Headers */,
  2188. 431BB6DC1D06D2C1006A3455 /* UIButton+WebCache.h in Headers */,
  2189. 431BB6E11D06D2C1006A3455 /* SDWebImage.h in Headers */,
  2190. 80377E311F2F66A800F89830 /* yuv.h in Headers */,
  2191. 0E9EFA0E21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */,
  2192. 80377ECA1F2F66D500F89830 /* common_dec.h in Headers */,
  2193. 80377C771F2F666400F89830 /* thread_utils.h in Headers */,
  2194. 80377E1F1F2F66A800F89830 /* mips_macro.h in Headers */,
  2195. 323F8B661F38EF770092B609 /* cost_enc.h in Headers */,
  2196. 80377C621F2F666400F89830 /* bit_reader_utils.h in Headers */,
  2197. 431BB6E21D06D2C1006A3455 /* UIImageView+HighlightedWebCache.h in Headers */,
  2198. 43A62A1C1D0E0A800089D7DD /* demux.h in Headers */,
  2199. 321E60C21F38E91700405457 /* UIImage+ForceDecode.h in Headers */,
  2200. 431BB6E31D06D2C1006A3455 /* SDImageCache.h in Headers */,
  2201. 43A62A1D1D0E0A800089D7DD /* encode.h in Headers */,
  2202. 431BB6E61D06D2C1006A3455 /* UIImageView+WebCache.h in Headers */,
  2203. 80377E201F2F66A800F89830 /* msa_macro.h in Headers */,
  2204. 80377E031F2F66A800F89830 /* dsp.h in Headers */,
  2205. 80377C661F2F666400F89830 /* color_cache_utils.h in Headers */,
  2206. 3290FA081FA478AF0047D20C /* SDWebImageFrame.h in Headers */,
  2207. 321E60A61F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */,
  2208. 431BB6E71D06D2C1006A3455 /* SDWebImageCompat.h in Headers */,
  2209. 80377E211F2F66A800F89830 /* neon.h in Headers */,
  2210. 80377C711F2F666400F89830 /* quant_levels_utils.h in Headers */,
  2211. 323F8B541F38EF770092B609 /* backward_references_enc.h in Headers */,
  2212. 43A62A1F1D0E0A800089D7DD /* mux.h in Headers */,
  2213. 431BB6E91D06D2C1006A3455 /* SDWebImageDownloaderOperation.h in Headers */,
  2214. 80377ED41F2F66D500F89830 /* vp8li_dec.h in Headers */,
  2215. 431BB6EB1D06D2C1006A3455 /* UIView+WebCacheOperation.h in Headers */,
  2216. 325312CC200F09910046BF1E /* SDWebImageTransition.h in Headers */,
  2217. 80377C6D1F2F666400F89830 /* huffman_utils.h in Headers */,
  2218. 80377C731F2F666400F89830 /* random_utils.h in Headers */,
  2219. 431BB6EE1D06D2C1006A3455 /* NSData+ImageContentType.h in Headers */,
  2220. 431BB6EF1D06D2C1006A3455 /* SDWebImagePrefetcher.h in Headers */,
  2221. 80377C671F2F666400F89830 /* endian_inl_utils.h in Headers */,
  2222. 80377C6B1F2F666400F89830 /* huffman_encode_utils.h in Headers */,
  2223. 323F8C121F38EF770092B609 /* muxi.h in Headers */,
  2224. 80377ED61F2F66D500F89830 /* webpi_dec.h in Headers */,
  2225. 323F8BE81F38EF770092B609 /* vp8li_enc.h in Headers */,
  2226. 323F8B8A1F38EF770092B609 /* histogram_enc.h in Headers */,
  2227. 80377E1E1F2F66A800F89830 /* lossless.h in Headers */,
  2228. 321E60981F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */,
  2229. 4369C27B1D9807EC007E863A /* UIView+WebCache.h in Headers */,
  2230. 80377ED11F2F66D500F89830 /* vp8_dec.h in Headers */,
  2231. 80377C751F2F666400F89830 /* rescaler_utils.h in Headers */,
  2232. 80377C6F1F2F666400F89830 /* quant_levels_dec_utils.h in Headers */,
  2233. 431BB6F01D06D2C1006A3455 /* SDWebImageOperation.h in Headers */,
  2234. 43A62A201D0E0A800089D7DD /* mux_types.h in Headers */,
  2235. 43A62A211D0E0A800089D7DD /* types.h in Headers */,
  2236. 80377C641F2F666400F89830 /* bit_writer_utils.h in Headers */,
  2237. 43A62A1E1D0E0A800089D7DD /* format_constants.h in Headers */,
  2238. 80377E111F2F66A800F89830 /* lossless_common.h in Headers */,
  2239. 431BB6F61D06D2C1006A3455 /* UIImage+MultiFormat.h in Headers */,
  2240. 807A122C1F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */,
  2241. 323F8BFA1F38EF770092B609 /* animi.h in Headers */,
  2242. 431BB6F91D06D2C1006A3455 /* UIImage+GIF.h in Headers */,
  2243. 321E60B41F38E90100405457 /* SDWebImageWebPCoder.h in Headers */,
  2244. 431BB6FA1D06D2C1006A3455 /* SDWebImageDownloader.h in Headers */,
  2245. 80377DF51F2F66A800F89830 /* common_sse2.h in Headers */,
  2246. 323F8BDC1F38EF770092B609 /* vp8i_enc.h in Headers */,
  2247. 80377ED21F2F66D500F89830 /* vp8i_dec.h in Headers */,
  2248. 43A918681D8308FE00B3925F /* SDImageCacheConfig.h in Headers */,
  2249. );
  2250. runOnlyForDeploymentPostprocessing = 0;
  2251. };
  2252. 4397D2B91D0DDD8C00BB2784 /* Headers */ = {
  2253. isa = PBXHeadersBuildPhase;
  2254. buildActionMask = 2147483647;
  2255. files = (
  2256. 80377C7E1F2F666400F89830 /* bit_writer_utils.h in Headers */,
  2257. 80377ED81F2F66D500F89830 /* alphai_dec.h in Headers */,
  2258. 321E60A71F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */,
  2259. 80377EDA1F2F66D500F89830 /* common_dec.h in Headers */,
  2260. 80377EE61F2F66D500F89830 /* webpi_dec.h in Headers */,
  2261. 4397D2BA1D0DDD8C00BB2784 /* demux.h in Headers */,
  2262. 80377C8F1F2F666400F89830 /* rescaler_utils.h in Headers */,
  2263. 4397D2BD1D0DDD8C00BB2784 /* types.h in Headers */,
  2264. 4397D2C01D0DDD8C00BB2784 /* SDWebImage.h in Headers */,
  2265. 4397D2C11D0DDD8C00BB2784 /* format_constants.h in Headers */,
  2266. 80377C8D1F2F666400F89830 /* random_utils.h in Headers */,
  2267. 4397D2C31D0DDD8C00BB2784 /* SDWebImageManager.h in Headers */,
  2268. 323F8B551F38EF770092B609 /* backward_references_enc.h in Headers */,
  2269. 80377C811F2F666400F89830 /* endian_inl_utils.h in Headers */,
  2270. 321E60991F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */,
  2271. 323F8B8B1F38EF770092B609 /* histogram_enc.h in Headers */,
  2272. 4397D2C41D0DDD8C00BB2784 /* SDImageCache.h in Headers */,
  2273. 4397D2C51D0DDD8C00BB2784 /* UIImageView+WebCache.h in Headers */,
  2274. 3290FA091FA478AF0047D20C /* SDWebImageFrame.h in Headers */,
  2275. 4369C27C1D9807EC007E863A /* UIView+WebCache.h in Headers */,
  2276. 80377EE21F2F66D500F89830 /* vp8i_dec.h in Headers */,
  2277. 80377C8B1F2F666400F89830 /* quant_levels_utils.h in Headers */,
  2278. 4397D2C81D0DDD8C00BB2784 /* SDWebImageCompat.h in Headers */,
  2279. 4397D2CB1D0DDD8C00BB2784 /* UIImageView+HighlightedWebCache.h in Headers */,
  2280. 4397D2CC1D0DDD8C00BB2784 /* mux.h in Headers */,
  2281. 0E9EFA0F21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */,
  2282. 80377C911F2F666400F89830 /* thread_utils.h in Headers */,
  2283. 4397D2D01D0DDD8C00BB2784 /* SDWebImageDownloaderOperation.h in Headers */,
  2284. 4397D2D11D0DDD8C00BB2784 /* decode.h in Headers */,
  2285. 80377E481F2F66A800F89830 /* dsp.h in Headers */,
  2286. 323F8BE91F38EF770092B609 /* vp8li_enc.h in Headers */,
  2287. 320224BB203979BA00E9F285 /* SDAnimatedImageRep.h in Headers */,
  2288. 80377E761F2F66A800F89830 /* yuv.h in Headers */,
  2289. 80377C7A1F2F666400F89830 /* bit_reader_inl_utils.h in Headers */,
  2290. 80377E631F2F66A800F89830 /* lossless.h in Headers */,
  2291. 32CF1C0C1FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */,
  2292. 43A918691D8308FE00B3925F /* SDImageCacheConfig.h in Headers */,
  2293. 4397D2D81D0DDD8C00BB2784 /* UIButton+WebCache.h in Headers */,
  2294. 80377E641F2F66A800F89830 /* mips_macro.h in Headers */,
  2295. 323F8BDD1F38EF770092B609 /* vp8i_enc.h in Headers */,
  2296. 323F8B671F38EF770092B609 /* cost_enc.h in Headers */,
  2297. 80377EE11F2F66D500F89830 /* vp8_dec.h in Headers */,
  2298. 80377EE41F2F66D500F89830 /* vp8li_dec.h in Headers */,
  2299. 80377C931F2F666400F89830 /* utils.h in Headers */,
  2300. 80377C801F2F666400F89830 /* color_cache_utils.h in Headers */,
  2301. 80377C891F2F666400F89830 /* quant_levels_dec_utils.h in Headers */,
  2302. 323F8C131F38EF770092B609 /* muxi.h in Headers */,
  2303. 80377E3A1F2F66A800F89830 /* common_sse2.h in Headers */,
  2304. 4397D2D91D0DDD8C00BB2784 /* SDWebImagePrefetcher.h in Headers */,
  2305. 80377C871F2F666400F89830 /* huffman_utils.h in Headers */,
  2306. 4397D2DA1D0DDD8C00BB2784 /* UIView+WebCacheOperation.h in Headers */,
  2307. 80377E661F2F66A800F89830 /* neon.h in Headers */,
  2308. 4397D2DB1D0DDD8C00BB2784 /* UIImage+MultiFormat.h in Headers */,
  2309. 4397D2DC1D0DDD8C00BB2784 /* SDWebImageOperation.h in Headers */,
  2310. 4397D2F61D0DE2DF00BB2784 /* NSImage+WebCache.h in Headers */,
  2311. 4397D2E11D0DDD8C00BB2784 /* SDWebImageDownloader.h in Headers */,
  2312. 323F8BFB1F38EF770092B609 /* animi.h in Headers */,
  2313. 4397D2E31D0DDD8C00BB2784 /* MKAnnotationView+WebCache.h in Headers */,
  2314. 4397D2E61D0DDD8C00BB2784 /* encode.h in Headers */,
  2315. 80377C7C1F2F666400F89830 /* bit_reader_utils.h in Headers */,
  2316. 321E608B1F38E8C800405457 /* SDWebImageCoder.h in Headers */,
  2317. 323F8B731F38EF770092B609 /* delta_palettization_enc.h in Headers */,
  2318. 321E60C31F38E91700405457 /* UIImage+ForceDecode.h in Headers */,
  2319. 80377E561F2F66A800F89830 /* lossless_common.h in Headers */,
  2320. 4397D2E91D0DDD8C00BB2784 /* UIImage+WebP.h in Headers */,
  2321. 325312CD200F09910046BF1E /* SDWebImageTransition.h in Headers */,
  2322. 4397D2EA1D0DDD8C00BB2784 /* UIImage+GIF.h in Headers */,
  2323. 321E60B51F38E90100405457 /* SDWebImageWebPCoder.h in Headers */,
  2324. 4397D2EB1D0DDD8C00BB2784 /* NSData+ImageContentType.h in Headers */,
  2325. 80377C851F2F666400F89830 /* huffman_encode_utils.h in Headers */,
  2326. 321DB3612011D4D70015D2CB /* NSButton+WebCache.h in Headers */,
  2327. 807A122D1F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */,
  2328. 4397D2ED1D0DDD8C00BB2784 /* mux_types.h in Headers */,
  2329. 80377C831F2F666400F89830 /* filters_utils.h in Headers */,
  2330. 80377E651F2F66A800F89830 /* msa_macro.h in Headers */,
  2331. );
  2332. runOnlyForDeploymentPostprocessing = 0;
  2333. };
  2334. 4A2CADFC1AB4BB5300B6BC39 /* Headers */ = {
  2335. isa = PBXHeadersBuildPhase;
  2336. buildActionMask = 2147483647;
  2337. files = (
  2338. 80377D971F2F66A700F89830 /* neon.h in Headers */,
  2339. 80377DA71F2F66A700F89830 /* yuv.h in Headers */,
  2340. 80377D951F2F66A700F89830 /* mips_macro.h in Headers */,
  2341. 80377C3D1F2F666300F89830 /* quant_levels_utils.h in Headers */,
  2342. 323F8B521F38EF770092B609 /* backward_references_enc.h in Headers */,
  2343. 4317394F1CDFC8B70008FEB9 /* demux.h in Headers */,
  2344. 43CE757D1CFE9427006C64D0 /* FLAnimatedImageView.h in Headers */,
  2345. 80377C301F2F666300F89830 /* bit_writer_utils.h in Headers */,
  2346. 431739541CDFC8B70008FEB9 /* types.h in Headers */,
  2347. 323F8BE61F38EF770092B609 /* vp8li_enc.h in Headers */,
  2348. 4369C2791D9807EC007E863A /* UIView+WebCache.h in Headers */,
  2349. 80377D871F2F66A700F89830 /* lossless_common.h in Headers */,
  2350. 321E60961F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */,
  2351. 4A2CAE041AB4BB5400B6BC39 /* SDWebImage.h in Headers */,
  2352. 0E9EFA0C21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */,
  2353. 431739511CDFC8B70008FEB9 /* format_constants.h in Headers */,
  2354. 43A918661D8308FE00B3925F /* SDImageCacheConfig.h in Headers */,
  2355. 323F8B701F38EF770092B609 /* delta_palettization_enc.h in Headers */,
  2356. 321E60B21F38E90100405457 /* SDWebImageWebPCoder.h in Headers */,
  2357. 3290FA061FA478AF0047D20C /* SDWebImageFrame.h in Headers */,
  2358. 807A122A1F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */,
  2359. 80377EB61F2F66D400F89830 /* webpi_dec.h in Headers */,
  2360. 4A2CAE211AB4BB7000B6BC39 /* SDWebImageManager.h in Headers */,
  2361. 80377D941F2F66A700F89830 /* lossless.h in Headers */,
  2362. 80377C3F1F2F666300F89830 /* random_utils.h in Headers */,
  2363. 4A2CAE1F1AB4BB6C00B6BC39 /* SDImageCache.h in Headers */,
  2364. 4A2CAE351AB4BB7500B6BC39 /* UIImageView+WebCache.h in Headers */,
  2365. 80377D6B1F2F66A700F89830 /* common_sse2.h in Headers */,
  2366. 4A2CAE181AB4BB6400B6BC39 /* SDWebImageCompat.h in Headers */,
  2367. 80377D961F2F66A700F89830 /* msa_macro.h in Headers */,
  2368. 43CE75D11CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h in Headers */,
  2369. 80377C391F2F666300F89830 /* huffman_utils.h in Headers */,
  2370. 4A2CAE331AB4BB7500B6BC39 /* UIImageView+HighlightedWebCache.h in Headers */,
  2371. 431739521CDFC8B70008FEB9 /* mux.h in Headers */,
  2372. 323F8B641F38EF770092B609 /* cost_enc.h in Headers */,
  2373. 4A2CAE1D1AB4BB6800B6BC39 /* SDWebImageDownloaderOperation.h in Headers */,
  2374. 323F8BDA1F38EF770092B609 /* vp8i_enc.h in Headers */,
  2375. 4317394E1CDFC8B70008FEB9 /* decode.h in Headers */,
  2376. 80377C2C1F2F666300F89830 /* bit_reader_inl_utils.h in Headers */,
  2377. 43CE75771CFE9427006C64D0 /* FLAnimatedImage.h in Headers */,
  2378. 4A2CAE2B1AB4BB7500B6BC39 /* UIButton+WebCache.h in Headers */,
  2379. 4A2CAE251AB4BB7000B6BC39 /* SDWebImagePrefetcher.h in Headers */,
  2380. 80377C431F2F666300F89830 /* thread_utils.h in Headers */,
  2381. 321E60881F38E8C800405457 /* SDWebImageCoder.h in Headers */,
  2382. 4A2CAE371AB4BB7500B6BC39 /* UIView+WebCacheOperation.h in Headers */,
  2383. 80377C2E1F2F666300F89830 /* bit_reader_utils.h in Headers */,
  2384. 80377C371F2F666300F89830 /* huffman_encode_utils.h in Headers */,
  2385. 4A2CAE2F1AB4BB7500B6BC39 /* UIImage+MultiFormat.h in Headers */,
  2386. 325312CA200F09910046BF1E /* SDWebImageTransition.h in Headers */,
  2387. 323F8C101F38EF770092B609 /* muxi.h in Headers */,
  2388. 80377EB41F2F66D400F89830 /* vp8li_dec.h in Headers */,
  2389. 4A2CAE1A1AB4BB6400B6BC39 /* SDWebImageOperation.h in Headers */,
  2390. 80377C331F2F666300F89830 /* endian_inl_utils.h in Headers */,
  2391. 321E60A41F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */,
  2392. 32CF1C091FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */,
  2393. 4A2CAE1B1AB4BB6800B6BC39 /* SDWebImageDownloader.h in Headers */,
  2394. 4A2CAE271AB4BB7500B6BC39 /* MKAnnotationView+WebCache.h in Headers */,
  2395. 431739501CDFC8B70008FEB9 /* encode.h in Headers */,
  2396. 323F8B881F38EF770092B609 /* histogram_enc.h in Headers */,
  2397. 80377EB21F2F66D400F89830 /* vp8i_dec.h in Headers */,
  2398. 80377EAA1F2F66D400F89830 /* common_dec.h in Headers */,
  2399. 80377C451F2F666300F89830 /* utils.h in Headers */,
  2400. 80377C411F2F666300F89830 /* rescaler_utils.h in Headers */,
  2401. 4A2CAE311AB4BB7500B6BC39 /* UIImage+WebP.h in Headers */,
  2402. 323F8BF81F38EF770092B609 /* animi.h in Headers */,
  2403. 80377C351F2F666300F89830 /* filters_utils.h in Headers */,
  2404. 80377C321F2F666300F89830 /* color_cache_utils.h in Headers */,
  2405. 321E60C01F38E91700405457 /* UIImage+ForceDecode.h in Headers */,
  2406. 80377D791F2F66A700F89830 /* dsp.h in Headers */,
  2407. 80377EA81F2F66D400F89830 /* alphai_dec.h in Headers */,
  2408. 4A2CAE2D1AB4BB7500B6BC39 /* UIImage+GIF.h in Headers */,
  2409. 80377C3B1F2F666300F89830 /* quant_levels_dec_utils.h in Headers */,
  2410. 80377EB11F2F66D400F89830 /* vp8_dec.h in Headers */,
  2411. 4A2CAE291AB4BB7500B6BC39 /* NSData+ImageContentType.h in Headers */,
  2412. 431739531CDFC8B70008FEB9 /* mux_types.h in Headers */,
  2413. );
  2414. runOnlyForDeploymentPostprocessing = 0;
  2415. };
  2416. 53761315155AD0D5005750A4 /* Headers */ = {
  2417. isa = PBXHeadersBuildPhase;
  2418. buildActionMask = 2147483647;
  2419. files = (
  2420. 431738C21CDFC2660008FEB9 /* mux_types.h in Headers */,
  2421. 431738BE1CDFC2660008FEB9 /* demux.h in Headers */,
  2422. 80377BFC1F2F665300F89830 /* bit_writer_utils.h in Headers */,
  2423. 32CF1C071FA496B000004BD1 /* SDWebImageCoderHelper.h in Headers */,
  2424. 431738BF1CDFC2660008FEB9 /* encode.h in Headers */,
  2425. 53761316155AD0D5005750A4 /* SDImageCache.h in Headers */,
  2426. 323F8C0E1F38EF770092B609 /* muxi.h in Headers */,
  2427. 325312C8200F09910046BF1E /* SDWebImageTransition.h in Headers */,
  2428. 321E60A21F38E8F600405457 /* SDWebImageGIFCoder.h in Headers */,
  2429. 5D5B9142188EE8DD006D06BD /* NSData+ImageContentType.h in Headers */,
  2430. 80377BFE1F2F665300F89830 /* color_cache_utils.h in Headers */,
  2431. 431738C11CDFC2660008FEB9 /* mux.h in Headers */,
  2432. 80377D0A1F2F66A100F89830 /* lossless.h in Headers */,
  2433. 53761318155AD0D5005750A4 /* SDWebImageCompat.h in Headers */,
  2434. 80377D0D1F2F66A100F89830 /* neon.h in Headers */,
  2435. 431738C31CDFC2660008FEB9 /* types.h in Headers */,
  2436. 80377D0C1F2F66A100F89830 /* msa_macro.h in Headers */,
  2437. 3290FA041FA478AF0047D20C /* SDWebImageFrame.h in Headers */,
  2438. 80377D1D1F2F66A100F89830 /* yuv.h in Headers */,
  2439. 43CE75D01CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.h in Headers */,
  2440. 807A12281F89636300EC2A9B /* SDWebImageCodersManager.h in Headers */,
  2441. 80377C051F2F665300F89830 /* huffman_utils.h in Headers */,
  2442. 80377E881F2F66D000F89830 /* alphai_dec.h in Headers */,
  2443. 321E60941F38E8ED00405457 /* SDWebImageImageIOCoder.h in Headers */,
  2444. 431738BD1CDFC2660008FEB9 /* decode.h in Headers */,
  2445. 80377D0B1F2F66A100F89830 /* mips_macro.h in Headers */,
  2446. 5376131A155AD0D5005750A4 /* SDWebImageDownloader.h in Headers */,
  2447. 4369C2771D9807EC007E863A /* UIView+WebCache.h in Headers */,
  2448. 0E9EFA0A21983283005D7892 /* UIImage+MemoryCacheCost.h in Headers */,
  2449. 80377CEF1F2F66A100F89830 /* dsp.h in Headers */,
  2450. 80377C011F2F665300F89830 /* filters_utils.h in Headers */,
  2451. 5376131C155AD0D5005750A4 /* SDWebImageManager.h in Headers */,
  2452. 438096741CDFC09C00DC626B /* UIImage+WebP.h in Headers */,
  2453. 80377BFF1F2F665300F89830 /* endian_inl_utils.h in Headers */,
  2454. 80377C0F1F2F665300F89830 /* thread_utils.h in Headers */,
  2455. 321E60BE1F38E91700405457 /* UIImage+ForceDecode.h in Headers */,
  2456. 5376131E155AD0D5005750A4 /* SDWebImagePrefetcher.h in Headers */,
  2457. 80377CE11F2F66A100F89830 /* common_sse2.h in Headers */,
  2458. 80377C0B1F2F665300F89830 /* random_utils.h in Headers */,
  2459. 80377E921F2F66D000F89830 /* vp8i_dec.h in Headers */,
  2460. 5376131F155AD0D5005750A4 /* UIButton+WebCache.h in Headers */,
  2461. 53761320155AD0D5005750A4 /* UIImageView+WebCache.h in Headers */,
  2462. 530E49E816464C25002868E7 /* SDWebImageOperation.h in Headers */,
  2463. 80377E961F2F66D000F89830 /* webpi_dec.h in Headers */,
  2464. 80377BF81F2F665300F89830 /* bit_reader_inl_utils.h in Headers */,
  2465. 530E49EA16464C7C002868E7 /* SDWebImageDownloaderOperation.h in Headers */,
  2466. ABBE71A718C43B4D00B75E91 /* UIImageView+HighlightedWebCache.h in Headers */,
  2467. 80377C071F2F665300F89830 /* quant_levels_dec_utils.h in Headers */,
  2468. 323F8BD81F38EF770092B609 /* vp8i_enc.h in Headers */,
  2469. 80377E941F2F66D000F89830 /* vp8li_dec.h in Headers */,
  2470. 80377CFD1F2F66A100F89830 /* lossless_common.h in Headers */,
  2471. 431738C01CDFC2660008FEB9 /* format_constants.h in Headers */,
  2472. 323F8B621F38EF770092B609 /* cost_enc.h in Headers */,
  2473. 43CE75761CFE9427006C64D0 /* FLAnimatedImage.h in Headers */,
  2474. 323F8BE41F38EF770092B609 /* vp8li_enc.h in Headers */,
  2475. 323F8B861F38EF770092B609 /* histogram_enc.h in Headers */,
  2476. 323F8BF61F38EF770092B609 /* animi.h in Headers */,
  2477. 321E60861F38E8C800405457 /* SDWebImageCoder.h in Headers */,
  2478. 321E60B01F38E90100405457 /* SDWebImageWebPCoder.h in Headers */,
  2479. 80377C0D1F2F665300F89830 /* rescaler_utils.h in Headers */,
  2480. 80377E911F2F66D000F89830 /* vp8_dec.h in Headers */,
  2481. 323F8B6E1F38EF770092B609 /* delta_palettization_enc.h in Headers */,
  2482. 438096721CDFC08200DC626B /* MKAnnotationView+WebCache.h in Headers */,
  2483. 43CE757C1CFE9427006C64D0 /* FLAnimatedImageView.h in Headers */,
  2484. 80377E8A1F2F66D000F89830 /* common_dec.h in Headers */,
  2485. AB615303192DA24600A2D8E9 /* UIView+WebCacheOperation.h in Headers */,
  2486. 323F8B501F38EF770092B609 /* backward_references_enc.h in Headers */,
  2487. 80377C111F2F665300F89830 /* utils.h in Headers */,
  2488. 80377BFA1F2F665300F89830 /* bit_reader_utils.h in Headers */,
  2489. 80377C091F2F665300F89830 /* quant_levels_utils.h in Headers */,
  2490. A18A6CC7172DC28500419892 /* UIImage+GIF.h in Headers */,
  2491. 53EDFB8A17623F7C00698166 /* UIImage+MultiFormat.h in Headers */,
  2492. 80377C031F2F665300F89830 /* huffman_encode_utils.h in Headers */,
  2493. 43A918641D8308FE00B3925F /* SDImageCacheConfig.h in Headers */,
  2494. );
  2495. runOnlyForDeploymentPostprocessing = 0;
  2496. };
  2497. /* End PBXHeadersBuildPhase section */
  2498. /* Begin PBXNativeTarget section */
  2499. 00733A4B1BC487C000A5A117 /* SDWebImage tvOS */ = {
  2500. isa = PBXNativeTarget;
  2501. buildConfigurationList = 00733A531BC487C100A5A117 /* Build configuration list for PBXNativeTarget "SDWebImage tvOS" */;
  2502. buildPhases = (
  2503. 00733A471BC487C000A5A117 /* Sources */,
  2504. 00733A481BC487C000A5A117 /* Frameworks */,
  2505. 00733A491BC487C000A5A117 /* Headers */,
  2506. 00733A4A1BC487C000A5A117 /* Resources */,
  2507. );
  2508. buildRules = (
  2509. );
  2510. dependencies = (
  2511. );
  2512. name = "SDWebImage tvOS";
  2513. productName = "WebImage tvOS";
  2514. productReference = 00733A4C1BC487C000A5A117 /* SDWebImage.framework */;
  2515. productType = "com.apple.product-type.framework";
  2516. };
  2517. 4314D11B1D0E0E3B004B36C9 /* SDWebImage watchOS static */ = {
  2518. isa = PBXNativeTarget;
  2519. buildConfigurationList = 4314D1961D0E0E3B004B36C9 /* Build configuration list for PBXNativeTarget "SDWebImage watchOS static" */;
  2520. buildPhases = (
  2521. 4314D11C1D0E0E3B004B36C9 /* Sources */,
  2522. 4314D15D1D0E0E3B004B36C9 /* Frameworks */,
  2523. 4314D1611D0E0E3B004B36C9 /* Headers */,
  2524. 4314D1951D0E0E3B004B36C9 /* Prepare Framework */,
  2525. );
  2526. buildRules = (
  2527. );
  2528. dependencies = (
  2529. );
  2530. name = "SDWebImage watchOS static";
  2531. productName = SDWebImage;
  2532. productReference = 4314D1991D0E0E3B004B36C9 /* libSDWebImage watchOS static.a */;
  2533. productType = "com.apple.product-type.library.static";
  2534. };
  2535. 431BB6891D06D2C1006A3455 /* SDWebImage watchOS */ = {
  2536. isa = PBXNativeTarget;
  2537. buildConfigurationList = 431BB7001D06D2C1006A3455 /* Build configuration list for PBXNativeTarget "SDWebImage watchOS" */;
  2538. buildPhases = (
  2539. 431BB68A1D06D2C1006A3455 /* Sources */,
  2540. 431BB6CA1D06D2C1006A3455 /* Frameworks */,
  2541. 431BB6CB1D06D2C1006A3455 /* Headers */,
  2542. 431BB6FF1D06D2C1006A3455 /* Resources */,
  2543. );
  2544. buildRules = (
  2545. );
  2546. dependencies = (
  2547. );
  2548. name = "SDWebImage watchOS";
  2549. productName = "WebImage tvOS";
  2550. productReference = 431BB7031D06D2C1006A3455 /* SDWebImage.framework */;
  2551. productType = "com.apple.product-type.framework";
  2552. };
  2553. 4397D2761D0DDD8C00BB2784 /* SDWebImage OSX */ = {
  2554. isa = PBXNativeTarget;
  2555. buildConfigurationList = 4397D2EF1D0DDD8C00BB2784 /* Build configuration list for PBXNativeTarget "SDWebImage OSX" */;
  2556. buildPhases = (
  2557. 4397D2771D0DDD8C00BB2784 /* Sources */,
  2558. 4397D2B81D0DDD8C00BB2784 /* Frameworks */,
  2559. 4397D2B91D0DDD8C00BB2784 /* Headers */,
  2560. 4397D2EE1D0DDD8C00BB2784 /* Resources */,
  2561. );
  2562. buildRules = (
  2563. );
  2564. dependencies = (
  2565. );
  2566. name = "SDWebImage OSX";
  2567. productName = WebImage;
  2568. productReference = 4397D2F21D0DDD8C00BB2784 /* SDWebImage.framework */;
  2569. productType = "com.apple.product-type.framework";
  2570. };
  2571. 4A2CADFE1AB4BB5300B6BC39 /* SDWebImage iOS */ = {
  2572. isa = PBXNativeTarget;
  2573. buildConfigurationList = 4A2CAE121AB4BB5400B6BC39 /* Build configuration list for PBXNativeTarget "SDWebImage iOS" */;
  2574. buildPhases = (
  2575. 4A2CADFA1AB4BB5300B6BC39 /* Sources */,
  2576. 4A2CADFB1AB4BB5300B6BC39 /* Frameworks */,
  2577. 4A2CADFC1AB4BB5300B6BC39 /* Headers */,
  2578. 4A2CADFD1AB4BB5300B6BC39 /* Resources */,
  2579. );
  2580. buildRules = (
  2581. );
  2582. dependencies = (
  2583. );
  2584. name = "SDWebImage iOS";
  2585. productName = WebImage;
  2586. productReference = 4A2CADFF1AB4BB5300B6BC39 /* SDWebImage.framework */;
  2587. productType = "com.apple.product-type.framework";
  2588. };
  2589. 53761307155AD0D5005750A4 /* SDWebImage iOS static */ = {
  2590. isa = PBXNativeTarget;
  2591. buildConfigurationList = 53761322155AD0D5005750A4 /* Build configuration list for PBXNativeTarget "SDWebImage iOS static" */;
  2592. buildPhases = (
  2593. 53761308155AD0D5005750A4 /* Sources */,
  2594. 53761311155AD0D5005750A4 /* Frameworks */,
  2595. 53761315155AD0D5005750A4 /* Headers */,
  2596. 539F912A16316D0500160719 /* Prepare Framework */,
  2597. );
  2598. buildRules = (
  2599. );
  2600. dependencies = (
  2601. );
  2602. name = "SDWebImage iOS static";
  2603. productName = SDWebImage;
  2604. productReference = 53761325155AD0D5005750A4 /* libSDWebImage iOS static.a */;
  2605. productType = "com.apple.product-type.library.static";
  2606. };
  2607. /* End PBXNativeTarget section */
  2608. /* Begin PBXProject section */
  2609. 53922D66148C55810056699D /* Project object */ = {
  2610. isa = PBXProject;
  2611. attributes = {
  2612. LastUpgradeCheck = 0900;
  2613. ORGANIZATIONNAME = Dailymotion;
  2614. TargetAttributes = {
  2615. 00733A4B1BC487C000A5A117 = {
  2616. CreatedOnToolsVersion = 7.1;
  2617. };
  2618. 4A2CADFE1AB4BB5300B6BC39 = {
  2619. CreatedOnToolsVersion = 6.3;
  2620. };
  2621. };
  2622. };
  2623. buildConfigurationList = 53922D69148C55810056699D /* Build configuration list for PBXProject "SDWebImage" */;
  2624. compatibilityVersion = "Xcode 3.2";
  2625. developmentRegion = English;
  2626. hasScannedForEncodings = 0;
  2627. knownRegions = (
  2628. en,
  2629. );
  2630. mainGroup = 53922D64148C55810056699D;
  2631. productRefGroup = 53922D70148C55820056699D /* Products */;
  2632. projectDirPath = "";
  2633. projectRoot = "";
  2634. targets = (
  2635. 53761307155AD0D5005750A4 /* SDWebImage iOS static */,
  2636. 4314D11B1D0E0E3B004B36C9 /* SDWebImage watchOS static */,
  2637. 4A2CADFE1AB4BB5300B6BC39 /* SDWebImage iOS */,
  2638. 00733A4B1BC487C000A5A117 /* SDWebImage tvOS */,
  2639. 431BB6891D06D2C1006A3455 /* SDWebImage watchOS */,
  2640. 4397D2761D0DDD8C00BB2784 /* SDWebImage OSX */,
  2641. );
  2642. };
  2643. /* End PBXProject section */
  2644. /* Begin PBXResourcesBuildPhase section */
  2645. 00733A4A1BC487C000A5A117 /* Resources */ = {
  2646. isa = PBXResourcesBuildPhase;
  2647. buildActionMask = 2147483647;
  2648. files = (
  2649. );
  2650. runOnlyForDeploymentPostprocessing = 0;
  2651. };
  2652. 431BB6FF1D06D2C1006A3455 /* Resources */ = {
  2653. isa = PBXResourcesBuildPhase;
  2654. buildActionMask = 2147483647;
  2655. files = (
  2656. );
  2657. runOnlyForDeploymentPostprocessing = 0;
  2658. };
  2659. 4397D2EE1D0DDD8C00BB2784 /* Resources */ = {
  2660. isa = PBXResourcesBuildPhase;
  2661. buildActionMask = 2147483647;
  2662. files = (
  2663. );
  2664. runOnlyForDeploymentPostprocessing = 0;
  2665. };
  2666. 4A2CADFD1AB4BB5300B6BC39 /* Resources */ = {
  2667. isa = PBXResourcesBuildPhase;
  2668. buildActionMask = 2147483647;
  2669. files = (
  2670. );
  2671. runOnlyForDeploymentPostprocessing = 0;
  2672. };
  2673. /* End PBXResourcesBuildPhase section */
  2674. /* Begin PBXShellScriptBuildPhase section */
  2675. 4314D1951D0E0E3B004B36C9 /* Prepare Framework */ = {
  2676. isa = PBXShellScriptBuildPhase;
  2677. buildActionMask = 2147483647;
  2678. files = (
  2679. );
  2680. inputPaths = (
  2681. );
  2682. name = "Prepare Framework";
  2683. outputPaths = (
  2684. );
  2685. runOnlyForDeploymentPostprocessing = 0;
  2686. shellPath = /bin/sh;
  2687. shellScript = "set -e\n\nmkdir -p \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/Versions/A/Headers\"\n\n# Link the \"Current\" version to \"A\"\n/bin/ln -sfh A \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/Versions/Current\"\n/bin/ln -sfh Versions/Current/Headers \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/Headers\"\n/bin/ln -sfh \"Versions/Current/${PRODUCT_NAME}\" \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/${PRODUCT_NAME}\"\n\n# The -a ensures that the headers maintain the source modification date so that we don't constantly\n# cause propagating rebuilds of files that import these headers.\n/bin/cp -a \"${TARGET_BUILD_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}/\" \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/Versions/A/Headers\"\n";
  2688. };
  2689. 539F912A16316D0500160719 /* Prepare Framework */ = {
  2690. isa = PBXShellScriptBuildPhase;
  2691. buildActionMask = 2147483647;
  2692. files = (
  2693. );
  2694. inputPaths = (
  2695. );
  2696. name = "Prepare Framework";
  2697. outputPaths = (
  2698. );
  2699. runOnlyForDeploymentPostprocessing = 0;
  2700. shellPath = /bin/sh;
  2701. shellScript = "set -e\n\nmkdir -p \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/Versions/A/Headers\"\n\n# Link the \"Current\" version to \"A\"\n/bin/ln -sfh A \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/Versions/Current\"\n/bin/ln -sfh Versions/Current/Headers \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/Headers\"\n/bin/ln -sfh \"Versions/Current/${PRODUCT_NAME}\" \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/${PRODUCT_NAME}\"\n\n# The -a ensures that the headers maintain the source modification date so that we don't constantly\n# cause propagating rebuilds of files that import these headers.\n/bin/cp -a \"${TARGET_BUILD_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}/\" \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.framework/Versions/A/Headers\"\n";
  2702. };
  2703. /* End PBXShellScriptBuildPhase section */
  2704. /* Begin PBXSourcesBuildPhase section */
  2705. 00733A471BC487C000A5A117 /* Sources */ = {
  2706. isa = PBXSourcesBuildPhase;
  2707. buildActionMask = 2147483647;
  2708. files = (
  2709. 80377DD31F2F66A700F89830 /* lossless_enc.c in Sources */,
  2710. 323F8BBD1F38EF770092B609 /* predictor_enc.c in Sources */,
  2711. 3290FA0D1FA478AF0047D20C /* SDWebImageFrame.m in Sources */,
  2712. 80377DBD1F2F66A700F89830 /* dec.c in Sources */,
  2713. 0E9EFA1321983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */,
  2714. 00733A561BC4880000A5A117 /* SDWebImageDownloaderOperation.m in Sources */,
  2715. 80377DE71F2F66A700F89830 /* upsampling.c in Sources */,
  2716. 321E60C71F38E91700405457 /* UIImage+ForceDecode.m in Sources */,
  2717. 323F8BB71F38EF770092B609 /* picture_tools_enc.c in Sources */,
  2718. 80377C5A1F2F666300F89830 /* rescaler_utils.c in Sources */,
  2719. 323F8B8F1F38EF770092B609 /* iterator_enc.c in Sources */,
  2720. 80377DEA1F2F66A700F89830 /* yuv_sse2.c in Sources */,
  2721. 80377DB91F2F66A700F89830 /* dec_msa.c in Sources */,
  2722. 323F8BE11F38EF770092B609 /* vp8l_enc.c in Sources */,
  2723. 80377DAB1F2F66A700F89830 /* alpha_processing_sse41.c in Sources */,
  2724. 80377DBA1F2F66A700F89830 /* dec_neon.c in Sources */,
  2725. 80377C5C1F2F666300F89830 /* thread_utils.c in Sources */,
  2726. 00733A5A1BC4880000A5A117 /* SDWebImagePrefetcher.m in Sources */,
  2727. 80377DBF1F2F66A700F89830 /* enc_avx2.c in Sources */,
  2728. 80377DC71F2F66A700F89830 /* filters_mips_dsp_r2.c in Sources */,
  2729. 323F8BC91F38EF770092B609 /* syntax_enc.c in Sources */,
  2730. 80377DC01F2F66A700F89830 /* enc_mips_dsp_r2.c in Sources */,
  2731. 80377DA91F2F66A700F89830 /* alpha_processing_neon.c in Sources */,
  2732. 43CE75D51CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m in Sources */,
  2733. 80377DB71F2F66A700F89830 /* dec_mips_dsp_r2.c in Sources */,
  2734. 80377DC31F2F66A700F89830 /* enc_neon.c in Sources */,
  2735. 80377C501F2F666300F89830 /* huffman_encode_utils.c in Sources */,
  2736. 80377DE51F2F66A700F89830 /* upsampling_neon.c in Sources */,
  2737. 32CF1C101FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */,
  2738. 80377DAE1F2F66A700F89830 /* argb_sse2.c in Sources */,
  2739. 323F8B7D1F38EF770092B609 /* frame_enc.c in Sources */,
  2740. 80377EBB1F2F66D500F89830 /* frame_dec.c in Sources */,
  2741. 80377DAF1F2F66A700F89830 /* argb.c in Sources */,
  2742. 323F8B6B1F38EF770092B609 /* delta_palettization_enc.c in Sources */,
  2743. 00733A5B1BC4880000A5A117 /* NSData+ImageContentType.m in Sources */,
  2744. 323F8B5F1F38EF770092B609 /* cost_enc.c in Sources */,
  2745. 43C8929E1D9D6DDA0022038D /* anim_decode.c in Sources */,
  2746. 80377EB91F2F66D400F89830 /* buffer_dec.c in Sources */,
  2747. 80377DCF1F2F66A700F89830 /* lossless_enc_msa.c in Sources */,
  2748. 80377DD51F2F66A700F89830 /* lossless_msa.c in Sources */,
  2749. 80377C4E1F2F666300F89830 /* filters_utils.c in Sources */,
  2750. 321E60B91F38E90100405457 /* SDWebImageWebPCoder.m in Sources */,
  2751. 80377DEB1F2F66A700F89830 /* yuv.c in Sources */,
  2752. 00733A551BC4880000A5A117 /* SDWebImageDownloader.m in Sources */,
  2753. 80377EB71F2F66D400F89830 /* alpha_dec.c in Sources */,
  2754. 80377DC61F2F66A700F89830 /* enc.c in Sources */,
  2755. 80377DD41F2F66A700F89830 /* lossless_mips_dsp_r2.c in Sources */,
  2756. 323F8B771F38EF770092B609 /* filter_enc.c in Sources */,
  2757. 80377DDD1F2F66A700F89830 /* rescaler_mips_dsp_r2.c in Sources */,
  2758. 323F8B4D1F38EF770092B609 /* backward_references_enc.c in Sources */,
  2759. 80377DCD1F2F66A700F89830 /* lossless_enc_mips_dsp_r2.c in Sources */,
  2760. 323F8BF31F38EF770092B609 /* anim_encode.c in Sources */,
  2761. 80377DD71F2F66A700F89830 /* lossless_sse2.c in Sources */,
  2762. 80377DA81F2F66A700F89830 /* alpha_processing_mips_dsp_r2.c in Sources */,
  2763. 80377DB11F2F66A700F89830 /* cost_mips_dsp_r2.c in Sources */,
  2764. 80377C581F2F666300F89830 /* random_utils.c in Sources */,
  2765. 323F8B591F38EF770092B609 /* config_enc.c in Sources */,
  2766. 80377DE91F2F66A700F89830 /* yuv_mips32.c in Sources */,
  2767. 80377DB41F2F66A700F89830 /* cost.c in Sources */,
  2768. 80377DE31F2F66A700F89830 /* upsampling_mips_dsp_r2.c in Sources */,
  2769. 80377EBD1F2F66D500F89830 /* io_dec.c in Sources */,
  2770. 80377EBC1F2F66D500F89830 /* idec_dec.c in Sources */,
  2771. 323F8B991F38EF770092B609 /* near_lossless_enc.c in Sources */,
  2772. 80377DE81F2F66A700F89830 /* yuv_mips_dsp_r2.c in Sources */,
  2773. 80377EC31F2F66D500F89830 /* vp8l_dec.c in Sources */,
  2774. 325312D1200F09910046BF1E /* SDWebImageTransition.m in Sources */,
  2775. 321E609D1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */,
  2776. 323F8B9F1F38EF770092B609 /* picture_csp_enc.c in Sources */,
  2777. 43C892A31D9D6DDD0022038D /* demux.c in Sources */,
  2778. 00733A611BC4880000A5A117 /* UIImageView+WebCache.m in Sources */,
  2779. 80377EBF1F2F66D500F89830 /* tree_dec.c in Sources */,
  2780. 80377DD21F2F66A700F89830 /* lossless_enc_sse41.c in Sources */,
  2781. 80377DB31F2F66A700F89830 /* cost_sse2.c in Sources */,
  2782. 80377DDE1F2F66A700F89830 /* rescaler_mips32.c in Sources */,
  2783. 80377DCA1F2F66A700F89830 /* filters_sse2.c in Sources */,
  2784. 80377EBE1F2F66D500F89830 /* quant_dec.c in Sources */,
  2785. 80377DB61F2F66A700F89830 /* dec_clip_tables.c in Sources */,
  2786. 80377C5E1F2F666300F89830 /* utils.c in Sources */,
  2787. 323F8C0B1F38EF770092B609 /* muxedit.c in Sources */,
  2788. 80377DC11F2F66A700F89830 /* enc_mips32.c in Sources */,
  2789. 80377DBC1F2F66A700F89830 /* dec_sse41.c in Sources */,
  2790. 80377DCE1F2F66A700F89830 /* lossless_enc_mips32.c in Sources */,
  2791. 80377DCB1F2F66A700F89830 /* filters.c in Sources */,
  2792. 80377DAA1F2F66A700F89830 /* alpha_processing_sse2.c in Sources */,
  2793. 43A9186E1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */,
  2794. 80377C471F2F666300F89830 /* bit_reader_utils.c in Sources */,
  2795. 321E60AB1F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */,
  2796. 323F8BD51F38EF770092B609 /* tree_enc.c in Sources */,
  2797. 80377DBB1F2F66A700F89830 /* dec_sse2.c in Sources */,
  2798. 323F8B831F38EF770092B609 /* histogram_enc.c in Sources */,
  2799. 321E608F1F38E8C800405457 /* SDWebImageCoder.m in Sources */,
  2800. 00733A581BC4880000A5A117 /* SDWebImageManager.m in Sources */,
  2801. 323F8B411F38EF770092B609 /* alpha_enc.c in Sources */,
  2802. 4397D2F91D0DF44A00BB2784 /* MKAnnotationView+WebCache.m in Sources */,
  2803. 323F8BC31F38EF770092B609 /* quant_enc.c in Sources */,
  2804. 00733A541BC4880000A5A117 /* SDWebImageCompat.m in Sources */,
  2805. 80377DDF1F2F66A700F89830 /* rescaler_msa.c in Sources */,
  2806. 80377DE41F2F66A700F89830 /* upsampling_msa.c in Sources */,
  2807. 00733A621BC4880000A5A117 /* UIView+WebCacheOperation.m in Sources */,
  2808. 80377DC21F2F66A700F89830 /* enc_msa.c in Sources */,
  2809. 80377DC91F2F66A700F89830 /* filters_neon.c in Sources */,
  2810. 80377DC51F2F66A700F89830 /* enc_sse41.c in Sources */,
  2811. 80377DE61F2F66A700F89830 /* upsampling_sse2.c in Sources */,
  2812. 43CE75811CFE9427006C64D0 /* FLAnimatedImageView.m in Sources */,
  2813. 80377C561F2F666300F89830 /* quant_levels_utils.c in Sources */,
  2814. 323F8BCF1F38EF770092B609 /* token_enc.c in Sources */,
  2815. 80377DD11F2F66A700F89830 /* lossless_enc_sse2.c in Sources */,
  2816. 323F8C1D1F38EF770092B609 /* muxread.c in Sources */,
  2817. 807A12311F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */,
  2818. 80377C491F2F666300F89830 /* bit_writer_utils.c in Sources */,
  2819. 323F8B471F38EF770092B609 /* analysis_enc.c in Sources */,
  2820. 00733A5F1BC4880000A5A117 /* UIImage+WebP.m in Sources */,
  2821. 80377DB51F2F66A700F89830 /* cpu.c in Sources */,
  2822. 80377EC51F2F66D500F89830 /* webp_dec.c in Sources */,
  2823. 80377DD61F2F66A700F89830 /* lossless_neon.c in Sources */,
  2824. 00733A5C1BC4880000A5A117 /* UIButton+WebCache.m in Sources */,
  2825. 80377EC01F2F66D500F89830 /* vp8_dec.c in Sources */,
  2826. 80377C521F2F666300F89830 /* huffman_utils.c in Sources */,
  2827. 80377DD81F2F66A700F89830 /* lossless.c in Sources */,
  2828. 80377DE11F2F66A700F89830 /* rescaler_sse2.c in Sources */,
  2829. 80377DAC1F2F66A700F89830 /* alpha_processing.c in Sources */,
  2830. 80377DE01F2F66A700F89830 /* rescaler_neon.c in Sources */,
  2831. 80377C541F2F666300F89830 /* quant_levels_dec_utils.c in Sources */,
  2832. 80377C4B1F2F666300F89830 /* color_cache_utils.c in Sources */,
  2833. 80377DB81F2F66A700F89830 /* dec_mips32.c in Sources */,
  2834. 323F8BED1F38EF770092B609 /* webp_enc.c in Sources */,
  2835. 80377DC41F2F66A700F89830 /* enc_sse2.c in Sources */,
  2836. 00733A5D1BC4880000A5A117 /* UIImage+GIF.m in Sources */,
  2837. 323F8C171F38EF770092B609 /* muxinternal.c in Sources */,
  2838. 323F8BB11F38EF770092B609 /* picture_rescale_enc.c in Sources */,
  2839. 80377DB21F2F66A700F89830 /* cost_mips32.c in Sources */,
  2840. 80377DC81F2F66A700F89830 /* filters_msa.c in Sources */,
  2841. 43CE757B1CFE9427006C64D0 /* FLAnimatedImage.m in Sources */,
  2842. 00733A571BC4880000A5A117 /* SDImageCache.m in Sources */,
  2843. 4369C2811D9807EC007E863A /* UIView+WebCache.m in Sources */,
  2844. 00733A5E1BC4880000A5A117 /* UIImage+MultiFormat.m in Sources */,
  2845. 80377DD01F2F66A700F89830 /* lossless_enc_neon.c in Sources */,
  2846. 80377DE21F2F66A700F89830 /* rescaler.c in Sources */,
  2847. 80377DAD1F2F66A700F89830 /* argb_mips_dsp_r2.c in Sources */,
  2848. 00733A601BC4880000A5A117 /* UIImageView+HighlightedWebCache.m in Sources */,
  2849. 323F8BAB1F38EF770092B609 /* picture_psnr_enc.c in Sources */,
  2850. 323F8BA51F38EF770092B609 /* picture_enc.c in Sources */,
  2851. );
  2852. runOnlyForDeploymentPostprocessing = 0;
  2853. };
  2854. 4314D11C1D0E0E3B004B36C9 /* Sources */ = {
  2855. isa = PBXSourcesBuildPhase;
  2856. buildActionMask = 2147483647;
  2857. files = (
  2858. 80377E9F1F2F66D400F89830 /* tree_dec.c in Sources */,
  2859. 80377D2C1F2F66A700F89830 /* dec_clip_tables.c in Sources */,
  2860. 323F8B971F38EF770092B609 /* near_lossless_enc.c in Sources */,
  2861. 80377D531F2F66A700F89830 /* rescaler_mips_dsp_r2.c in Sources */,
  2862. 43C8929C1D9D6DD90022038D /* anim_decode.c in Sources */,
  2863. 80377D311F2F66A700F89830 /* dec_sse2.c in Sources */,
  2864. 4314D1231D0E0E3B004B36C9 /* SDImageCache.m in Sources */,
  2865. 80377C151F2F666300F89830 /* bit_writer_utils.c in Sources */,
  2866. 323F8BEB1F38EF770092B609 /* webp_enc.c in Sources */,
  2867. 80377EA01F2F66D400F89830 /* vp8_dec.c in Sources */,
  2868. 80377EA31F2F66D400F89830 /* vp8l_dec.c in Sources */,
  2869. 80377E9D1F2F66D400F89830 /* io_dec.c in Sources */,
  2870. 80377D541F2F66A700F89830 /* rescaler_mips32.c in Sources */,
  2871. 80377D331F2F66A700F89830 /* dec.c in Sources */,
  2872. 323F8BAF1F38EF770092B609 /* picture_rescale_enc.c in Sources */,
  2873. 80377D3F1F2F66A700F89830 /* filters_neon.c in Sources */,
  2874. 80377D3E1F2F66A700F89830 /* filters_msa.c in Sources */,
  2875. 80377D241F2F66A700F89830 /* argb_sse2.c in Sources */,
  2876. 323F8B3F1F38EF770092B609 /* alpha_enc.c in Sources */,
  2877. 80377D4D1F2F66A700F89830 /* lossless_sse2.c in Sources */,
  2878. 80377D271F2F66A700F89830 /* cost_mips_dsp_r2.c in Sources */,
  2879. 80377D2D1F2F66A700F89830 /* dec_mips_dsp_r2.c in Sources */,
  2880. 80377D301F2F66A700F89830 /* dec_neon.c in Sources */,
  2881. 80377D2B1F2F66A700F89830 /* cpu.c in Sources */,
  2882. 80377EA51F2F66D400F89830 /* webp_dec.c in Sources */,
  2883. 80377E9E1F2F66D400F89830 /* quant_dec.c in Sources */,
  2884. 80377D4B1F2F66A700F89830 /* lossless_msa.c in Sources */,
  2885. 323F8B5D1F38EF770092B609 /* cost_enc.c in Sources */,
  2886. 80377D3B1F2F66A700F89830 /* enc_sse41.c in Sources */,
  2887. 321E608D1F38E8C800405457 /* SDWebImageCoder.m in Sources */,
  2888. 80377D3A1F2F66A700F89830 /* enc_sse2.c in Sources */,
  2889. 80377D381F2F66A700F89830 /* enc_msa.c in Sources */,
  2890. 4314D1311D0E0E3B004B36C9 /* SDWebImageDownloader.m in Sources */,
  2891. 323F8B811F38EF770092B609 /* histogram_enc.c in Sources */,
  2892. 80377D441F2F66A700F89830 /* lossless_enc_mips32.c in Sources */,
  2893. 4369C27F1D9807EC007E863A /* UIView+WebCache.m in Sources */,
  2894. 80377D4A1F2F66A700F89830 /* lossless_mips_dsp_r2.c in Sources */,
  2895. 80377D4C1F2F66A700F89830 /* lossless_neon.c in Sources */,
  2896. 80377D591F2F66A700F89830 /* upsampling_mips_dsp_r2.c in Sources */,
  2897. 323F8BDF1F38EF770092B609 /* vp8l_enc.c in Sources */,
  2898. 4314D1341D0E0E3B004B36C9 /* UIImage+WebP.m in Sources */,
  2899. 80377D3D1F2F66A700F89830 /* filters_mips_dsp_r2.c in Sources */,
  2900. 323F8B751F38EF770092B609 /* filter_enc.c in Sources */,
  2901. 80377D401F2F66A700F89830 /* filters_sse2.c in Sources */,
  2902. 80377D1E1F2F66A700F89830 /* alpha_processing_mips_dsp_r2.c in Sources */,
  2903. 80377D291F2F66A700F89830 /* cost_sse2.c in Sources */,
  2904. 80377D601F2F66A700F89830 /* yuv_sse2.c in Sources */,
  2905. 80377C281F2F666300F89830 /* thread_utils.c in Sources */,
  2906. 3290FA0B1FA478AF0047D20C /* SDWebImageFrame.m in Sources */,
  2907. 80377C2A1F2F666300F89830 /* utils.c in Sources */,
  2908. 323F8B4B1F38EF770092B609 /* backward_references_enc.c in Sources */,
  2909. 807A122F1F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */,
  2910. 4314D1361D0E0E3B004B36C9 /* SDWebImageManager.m in Sources */,
  2911. 321E609B1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */,
  2912. 80377D4E1F2F66A700F89830 /* lossless.c in Sources */,
  2913. 80377D351F2F66A700F89830 /* enc_avx2.c in Sources */,
  2914. 80377D201F2F66A700F89830 /* alpha_processing_sse2.c in Sources */,
  2915. 323F8C1B1F38EF770092B609 /* muxread.c in Sources */,
  2916. 80377D581F2F66A700F89830 /* rescaler.c in Sources */,
  2917. 80377D361F2F66A700F89830 /* enc_mips_dsp_r2.c in Sources */,
  2918. 323F8BA31F38EF770092B609 /* picture_enc.c in Sources */,
  2919. 4314D1371D0E0E3B004B36C9 /* SDWebImagePrefetcher.m in Sources */,
  2920. 80377C241F2F666300F89830 /* random_utils.c in Sources */,
  2921. 80377D2A1F2F66A700F89830 /* cost.c in Sources */,
  2922. 80377D411F2F66A700F89830 /* filters.c in Sources */,
  2923. 80377D221F2F66A700F89830 /* alpha_processing.c in Sources */,
  2924. 80377D391F2F66A700F89830 /* enc_neon.c in Sources */,
  2925. 80377D5B1F2F66A700F89830 /* upsampling_neon.c in Sources */,
  2926. 80377D5F1F2F66A700F89830 /* yuv_mips32.c in Sources */,
  2927. 80377D3C1F2F66A700F89830 /* enc.c in Sources */,
  2928. 4314D13B1D0E0E3B004B36C9 /* UIButton+WebCache.m in Sources */,
  2929. 321E60C51F38E91700405457 /* UIImage+ForceDecode.m in Sources */,
  2930. 80377D461F2F66A700F89830 /* lossless_enc_neon.c in Sources */,
  2931. 80377E9B1F2F66D400F89830 /* frame_dec.c in Sources */,
  2932. 80377C1C1F2F666300F89830 /* huffman_encode_utils.c in Sources */,
  2933. 323F8B451F38EF770092B609 /* analysis_enc.c in Sources */,
  2934. 80377C261F2F666300F89830 /* rescaler_utils.c in Sources */,
  2935. 323F8BBB1F38EF770092B609 /* predictor_enc.c in Sources */,
  2936. 325312CF200F09910046BF1E /* SDWebImageTransition.m in Sources */,
  2937. 80377D2F1F2F66A700F89830 /* dec_msa.c in Sources */,
  2938. 323F8C151F38EF770092B609 /* muxinternal.c in Sources */,
  2939. 80377D571F2F66A700F89830 /* rescaler_sse2.c in Sources */,
  2940. 43C892A11D9D6DDC0022038D /* demux.c in Sources */,
  2941. 80377C131F2F666300F89830 /* bit_reader_utils.c in Sources */,
  2942. 80377E9C1F2F66D400F89830 /* idec_dec.c in Sources */,
  2943. 323F8B7B1F38EF770092B609 /* frame_enc.c in Sources */,
  2944. 80377D211F2F66A700F89830 /* alpha_processing_sse41.c in Sources */,
  2945. 323F8B8D1F38EF770092B609 /* iterator_enc.c in Sources */,
  2946. 80377D481F2F66A700F89830 /* lossless_enc_sse41.c in Sources */,
  2947. 323F8BA91F38EF770092B609 /* picture_psnr_enc.c in Sources */,
  2948. 323F8C091F38EF770092B609 /* muxedit.c in Sources */,
  2949. 80377D1F1F2F66A700F89830 /* alpha_processing_neon.c in Sources */,
  2950. 4314D1401D0E0E3B004B36C9 /* UIImageView+WebCache.m in Sources */,
  2951. 43A9186C1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */,
  2952. 4314D1411D0E0E3B004B36C9 /* SDWebImageDownloaderOperation.m in Sources */,
  2953. 80377D561F2F66A700F89830 /* rescaler_neon.c in Sources */,
  2954. 80377D551F2F66A700F89830 /* rescaler_msa.c in Sources */,
  2955. 80377D5E1F2F66A700F89830 /* yuv_mips_dsp_r2.c in Sources */,
  2956. 80377D611F2F66A700F89830 /* yuv.c in Sources */,
  2957. 323F8BC11F38EF770092B609 /* quant_enc.c in Sources */,
  2958. 323F8BB51F38EF770092B609 /* picture_tools_enc.c in Sources */,
  2959. 80377C221F2F666300F89830 /* quant_levels_utils.c in Sources */,
  2960. 80377D2E1F2F66A700F89830 /* dec_mips32.c in Sources */,
  2961. 323F8BD31F38EF770092B609 /* tree_enc.c in Sources */,
  2962. 80377D5C1F2F66A700F89830 /* upsampling_sse2.c in Sources */,
  2963. 323F8BC71F38EF770092B609 /* syntax_enc.c in Sources */,
  2964. 80377D321F2F66A700F89830 /* dec_sse41.c in Sources */,
  2965. 80377D451F2F66A700F89830 /* lossless_enc_msa.c in Sources */,
  2966. 80377C1A1F2F666300F89830 /* filters_utils.c in Sources */,
  2967. 323F8B9D1F38EF770092B609 /* picture_csp_enc.c in Sources */,
  2968. 4314D14B1D0E0E3B004B36C9 /* SDWebImageCompat.m in Sources */,
  2969. 4314D14D1D0E0E3B004B36C9 /* UIImage+GIF.m in Sources */,
  2970. 32CF1C0E1FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */,
  2971. 323F8B571F38EF770092B609 /* config_enc.c in Sources */,
  2972. 80377D371F2F66A700F89830 /* enc_mips32.c in Sources */,
  2973. 80377D431F2F66A700F89830 /* lossless_enc_mips_dsp_r2.c in Sources */,
  2974. 323F8BCD1F38EF770092B609 /* token_enc.c in Sources */,
  2975. 80377E971F2F66D400F89830 /* alpha_dec.c in Sources */,
  2976. 323F8B691F38EF770092B609 /* delta_palettization_enc.c in Sources */,
  2977. 4314D1501D0E0E3B004B36C9 /* UIView+WebCacheOperation.m in Sources */,
  2978. 321E60A91F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */,
  2979. 80377D5A1F2F66A700F89830 /* upsampling_msa.c in Sources */,
  2980. 80377D491F2F66A700F89830 /* lossless_enc.c in Sources */,
  2981. 80377C171F2F666300F89830 /* color_cache_utils.c in Sources */,
  2982. 4314D1521D0E0E3B004B36C9 /* NSData+ImageContentType.m in Sources */,
  2983. 80377D231F2F66A700F89830 /* argb_mips_dsp_r2.c in Sources */,
  2984. 4314D1531D0E0E3B004B36C9 /* UIImage+MultiFormat.m in Sources */,
  2985. 321E60B71F38E90100405457 /* SDWebImageWebPCoder.m in Sources */,
  2986. 80377D5D1F2F66A700F89830 /* upsampling.c in Sources */,
  2987. 80377D251F2F66A700F89830 /* argb.c in Sources */,
  2988. 0E9EFA1121983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */,
  2989. 80377D281F2F66A700F89830 /* cost_mips32.c in Sources */,
  2990. 323F8BF11F38EF770092B609 /* anim_encode.c in Sources */,
  2991. 4314D1551D0E0E3B004B36C9 /* UIImageView+HighlightedWebCache.m in Sources */,
  2992. 80377E991F2F66D400F89830 /* buffer_dec.c in Sources */,
  2993. 80377C201F2F666300F89830 /* quant_levels_dec_utils.c in Sources */,
  2994. 80377D471F2F66A700F89830 /* lossless_enc_sse2.c in Sources */,
  2995. 80377C1E1F2F666300F89830 /* huffman_utils.c in Sources */,
  2996. );
  2997. runOnlyForDeploymentPostprocessing = 0;
  2998. };
  2999. 431BB68A1D06D2C1006A3455 /* Sources */ = {
  3000. isa = PBXSourcesBuildPhase;
  3001. buildActionMask = 2147483647;
  3002. files = (
  3003. 80377ECF1F2F66D500F89830 /* tree_dec.c in Sources */,
  3004. 80377DFB1F2F66A800F89830 /* dec_clip_tables.c in Sources */,
  3005. 323F8B9A1F38EF770092B609 /* near_lossless_enc.c in Sources */,
  3006. 80377E221F2F66A800F89830 /* rescaler_mips_dsp_r2.c in Sources */,
  3007. 431BB68C1D06D2C1006A3455 /* SDWebImageDownloaderOperation.m in Sources */,
  3008. 431BB68E1D06D2C1006A3455 /* SDWebImagePrefetcher.m in Sources */,
  3009. 80377E001F2F66A800F89830 /* dec_sse2.c in Sources */,
  3010. 80377C631F2F666400F89830 /* bit_writer_utils.c in Sources */,
  3011. 323F8BEE1F38EF770092B609 /* webp_enc.c in Sources */,
  3012. 80377ED01F2F66D500F89830 /* vp8_dec.c in Sources */,
  3013. 80377ED31F2F66D500F89830 /* vp8l_dec.c in Sources */,
  3014. 80377ECD1F2F66D500F89830 /* io_dec.c in Sources */,
  3015. 80377E231F2F66A800F89830 /* rescaler_mips32.c in Sources */,
  3016. 80377E021F2F66A800F89830 /* dec.c in Sources */,
  3017. 323F8BB21F38EF770092B609 /* picture_rescale_enc.c in Sources */,
  3018. 80377E0E1F2F66A800F89830 /* filters_neon.c in Sources */,
  3019. 80377E0D1F2F66A800F89830 /* filters_msa.c in Sources */,
  3020. 80377DF31F2F66A800F89830 /* argb_sse2.c in Sources */,
  3021. 323F8B421F38EF770092B609 /* alpha_enc.c in Sources */,
  3022. 80377E1C1F2F66A800F89830 /* lossless_sse2.c in Sources */,
  3023. 80377DF61F2F66A800F89830 /* cost_mips_dsp_r2.c in Sources */,
  3024. 80377DFC1F2F66A800F89830 /* dec_mips_dsp_r2.c in Sources */,
  3025. 80377DFF1F2F66A800F89830 /* dec_neon.c in Sources */,
  3026. 80377DFA1F2F66A800F89830 /* cpu.c in Sources */,
  3027. 80377ED51F2F66D500F89830 /* webp_dec.c in Sources */,
  3028. 43C8929F1D9D6DDA0022038D /* anim_decode.c in Sources */,
  3029. 80377ECE1F2F66D500F89830 /* quant_dec.c in Sources */,
  3030. 80377E1A1F2F66A800F89830 /* lossless_msa.c in Sources */,
  3031. 323F8B601F38EF770092B609 /* cost_enc.c in Sources */,
  3032. 80377E0A1F2F66A800F89830 /* enc_sse41.c in Sources */,
  3033. 321E60901F38E8C800405457 /* SDWebImageCoder.m in Sources */,
  3034. 80377E091F2F66A800F89830 /* enc_sse2.c in Sources */,
  3035. 431BB6921D06D2C1006A3455 /* NSData+ImageContentType.m in Sources */,
  3036. 80377E071F2F66A800F89830 /* enc_msa.c in Sources */,
  3037. 323F8B841F38EF770092B609 /* histogram_enc.c in Sources */,
  3038. 431BB69A1D06D2C1006A3455 /* SDWebImageDownloader.m in Sources */,
  3039. 80377E131F2F66A800F89830 /* lossless_enc_mips32.c in Sources */,
  3040. 80377E191F2F66A800F89830 /* lossless_mips_dsp_r2.c in Sources */,
  3041. 80377E1B1F2F66A800F89830 /* lossless_neon.c in Sources */,
  3042. 80377E281F2F66A800F89830 /* upsampling_mips_dsp_r2.c in Sources */,
  3043. 323F8BE21F38EF770092B609 /* vp8l_enc.c in Sources */,
  3044. 431BB6A31D06D2C1006A3455 /* UIImageView+WebCache.m in Sources */,
  3045. 80377E0C1F2F66A800F89830 /* filters_mips_dsp_r2.c in Sources */,
  3046. 323F8B781F38EF770092B609 /* filter_enc.c in Sources */,
  3047. 4369C2821D9807EC007E863A /* UIView+WebCache.m in Sources */,
  3048. 80377E0F1F2F66A800F89830 /* filters_sse2.c in Sources */,
  3049. 80377DED1F2F66A800F89830 /* alpha_processing_mips_dsp_r2.c in Sources */,
  3050. 80377DF81F2F66A800F89830 /* cost_sse2.c in Sources */,
  3051. 3290FA0E1FA478AF0047D20C /* SDWebImageFrame.m in Sources */,
  3052. 80377E2F1F2F66A800F89830 /* yuv_sse2.c in Sources */,
  3053. 431BB6AA1D06D2C1006A3455 /* SDWebImageManager.m in Sources */,
  3054. 323F8B4E1F38EF770092B609 /* backward_references_enc.c in Sources */,
  3055. 807A12321F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */,
  3056. 80377C761F2F666400F89830 /* thread_utils.c in Sources */,
  3057. 321E609E1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */,
  3058. 80377E1D1F2F66A800F89830 /* lossless.c in Sources */,
  3059. 80377E041F2F66A800F89830 /* enc_avx2.c in Sources */,
  3060. 80377DEF1F2F66A800F89830 /* alpha_processing_sse2.c in Sources */,
  3061. 323F8C1E1F38EF770092B609 /* muxread.c in Sources */,
  3062. 80377E271F2F66A800F89830 /* rescaler.c in Sources */,
  3063. 80377E051F2F66A800F89830 /* enc_mips_dsp_r2.c in Sources */,
  3064. 323F8BA61F38EF770092B609 /* picture_enc.c in Sources */,
  3065. 80377C781F2F666400F89830 /* utils.c in Sources */,
  3066. 80377DF91F2F66A800F89830 /* cost.c in Sources */,
  3067. 80377E101F2F66A800F89830 /* filters.c in Sources */,
  3068. 80377DF11F2F66A800F89830 /* alpha_processing.c in Sources */,
  3069. 80377E081F2F66A800F89830 /* enc_neon.c in Sources */,
  3070. 80377E2A1F2F66A800F89830 /* upsampling_neon.c in Sources */,
  3071. 80377E2E1F2F66A800F89830 /* yuv_mips32.c in Sources */,
  3072. 80377E0B1F2F66A800F89830 /* enc.c in Sources */,
  3073. 431BB6AC1D06D2C1006A3455 /* SDWebImageCompat.m in Sources */,
  3074. 80377E151F2F66A800F89830 /* lossless_enc_neon.c in Sources */,
  3075. 321E60C81F38E91700405457 /* UIImage+ForceDecode.m in Sources */,
  3076. 80377C721F2F666400F89830 /* random_utils.c in Sources */,
  3077. 80377ECB1F2F66D500F89830 /* frame_dec.c in Sources */,
  3078. 80377C6A1F2F666400F89830 /* huffman_encode_utils.c in Sources */,
  3079. 323F8B481F38EF770092B609 /* analysis_enc.c in Sources */,
  3080. 80377DFE1F2F66A800F89830 /* dec_msa.c in Sources */,
  3081. 325312D2200F09910046BF1E /* SDWebImageTransition.m in Sources */,
  3082. 323F8BBE1F38EF770092B609 /* predictor_enc.c in Sources */,
  3083. 80377E261F2F66A800F89830 /* rescaler_sse2.c in Sources */,
  3084. 323F8C181F38EF770092B609 /* muxinternal.c in Sources */,
  3085. 80377C741F2F666400F89830 /* rescaler_utils.c in Sources */,
  3086. 431BB6B11D06D2C1006A3455 /* UIView+WebCacheOperation.m in Sources */,
  3087. 80377DF01F2F66A800F89830 /* alpha_processing_sse41.c in Sources */,
  3088. 80377ECC1F2F66D500F89830 /* idec_dec.c in Sources */,
  3089. 323F8B7E1F38EF770092B609 /* frame_enc.c in Sources */,
  3090. 80377E171F2F66A800F89830 /* lossless_enc_sse41.c in Sources */,
  3091. 323F8B901F38EF770092B609 /* iterator_enc.c in Sources */,
  3092. 80377C611F2F666400F89830 /* bit_reader_utils.c in Sources */,
  3093. 323F8BAC1F38EF770092B609 /* picture_psnr_enc.c in Sources */,
  3094. 323F8C0C1F38EF770092B609 /* muxedit.c in Sources */,
  3095. 80377DEE1F2F66A800F89830 /* alpha_processing_neon.c in Sources */,
  3096. 43C892A41D9D6DDD0022038D /* demux.c in Sources */,
  3097. 431BB6B61D06D2C1006A3455 /* UIImage+WebP.m in Sources */,
  3098. 80377E251F2F66A800F89830 /* rescaler_neon.c in Sources */,
  3099. 80377E241F2F66A800F89830 /* rescaler_msa.c in Sources */,
  3100. 80377E2D1F2F66A800F89830 /* yuv_mips_dsp_r2.c in Sources */,
  3101. 431BB6B91D06D2C1006A3455 /* UIButton+WebCache.m in Sources */,
  3102. 323F8BC41F38EF770092B609 /* quant_enc.c in Sources */,
  3103. 323F8BB81F38EF770092B609 /* picture_tools_enc.c in Sources */,
  3104. 80377E301F2F66A800F89830 /* yuv.c in Sources */,
  3105. 43A9186F1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */,
  3106. 323F8BD61F38EF770092B609 /* tree_enc.c in Sources */,
  3107. 80377DFD1F2F66A800F89830 /* dec_mips32.c in Sources */,
  3108. 323F8BCA1F38EF770092B609 /* syntax_enc.c in Sources */,
  3109. 80377E2B1F2F66A800F89830 /* upsampling_sse2.c in Sources */,
  3110. 80377E011F2F66A800F89830 /* dec_sse41.c in Sources */,
  3111. 80377E141F2F66A800F89830 /* lossless_enc_msa.c in Sources */,
  3112. 323F8BA01F38EF770092B609 /* picture_csp_enc.c in Sources */,
  3113. 80377C701F2F666400F89830 /* quant_levels_utils.c in Sources */,
  3114. 431BB6BD1D06D2C1006A3455 /* UIImage+GIF.m in Sources */,
  3115. 32CF1C111FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */,
  3116. 323F8B5A1F38EF770092B609 /* config_enc.c in Sources */,
  3117. 80377E061F2F66A800F89830 /* enc_mips32.c in Sources */,
  3118. 80377E121F2F66A800F89830 /* lossless_enc_mips_dsp_r2.c in Sources */,
  3119. 323F8BD01F38EF770092B609 /* token_enc.c in Sources */,
  3120. 80377EC71F2F66D500F89830 /* alpha_dec.c in Sources */,
  3121. 323F8B6C1F38EF770092B609 /* delta_palettization_enc.c in Sources */,
  3122. 80377C681F2F666400F89830 /* filters_utils.c in Sources */,
  3123. 321E60AC1F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */,
  3124. 80377E291F2F66A800F89830 /* upsampling_msa.c in Sources */,
  3125. 80377E181F2F66A800F89830 /* lossless_enc.c in Sources */,
  3126. 431BB6C01D06D2C1006A3455 /* SDImageCache.m in Sources */,
  3127. 80377C651F2F666400F89830 /* color_cache_utils.c in Sources */,
  3128. 431BB6C41D06D2C1006A3455 /* UIImage+MultiFormat.m in Sources */,
  3129. 80377DF21F2F66A800F89830 /* argb_mips_dsp_r2.c in Sources */,
  3130. 321E60BA1F38E90100405457 /* SDWebImageWebPCoder.m in Sources */,
  3131. 80377E2C1F2F66A800F89830 /* upsampling.c in Sources */,
  3132. 80377DF41F2F66A800F89830 /* argb.c in Sources */,
  3133. 0E9EFA1421983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */,
  3134. 80377DF71F2F66A800F89830 /* cost_mips32.c in Sources */,
  3135. 323F8BF41F38EF770092B609 /* anim_encode.c in Sources */,
  3136. 80377C6E1F2F666400F89830 /* quant_levels_dec_utils.c in Sources */,
  3137. 80377EC91F2F66D500F89830 /* buffer_dec.c in Sources */,
  3138. 80377C6C1F2F666400F89830 /* huffman_utils.c in Sources */,
  3139. 80377E161F2F66A800F89830 /* lossless_enc_sse2.c in Sources */,
  3140. 431BB6C71D06D2C1006A3455 /* UIImageView+HighlightedWebCache.m in Sources */,
  3141. );
  3142. runOnlyForDeploymentPostprocessing = 0;
  3143. };
  3144. 4397D2771D0DDD8C00BB2784 /* Sources */ = {
  3145. isa = PBXSourcesBuildPhase;
  3146. buildActionMask = 2147483647;
  3147. files = (
  3148. 80377E591F2F66A800F89830 /* lossless_enc_msa.c in Sources */,
  3149. 80377E511F2F66A800F89830 /* filters_mips_dsp_r2.c in Sources */,
  3150. 80377E371F2F66A800F89830 /* argb_mips_dsp_r2.c in Sources */,
  3151. 80377E471F2F66A800F89830 /* dec.c in Sources */,
  3152. 0E9EFA1521983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */,
  3153. 80377C921F2F666400F89830 /* utils.c in Sources */,
  3154. 4397D27E1D0DDD8C00BB2784 /* UIImage+GIF.m in Sources */,
  3155. 321E60911F38E8C800405457 /* SDWebImageCoder.m in Sources */,
  3156. 80377C8A1F2F666400F89830 /* quant_levels_utils.c in Sources */,
  3157. 4397D27F1D0DDD8C00BB2784 /* UIImage+WebP.m in Sources */,
  3158. 4397D2F71D0DE2DF00BB2784 /* NSImage+WebCache.m in Sources */,
  3159. 80377E751F2F66A800F89830 /* yuv.c in Sources */,
  3160. 43C892A01D9D6DDA0022038D /* anim_decode.c in Sources */,
  3161. 80377E4A1F2F66A800F89830 /* enc_mips_dsp_r2.c in Sources */,
  3162. 80377E411F2F66A800F89830 /* dec_mips_dsp_r2.c in Sources */,
  3163. 80377EDC1F2F66D500F89830 /* idec_dec.c in Sources */,
  3164. 80377E501F2F66A800F89830 /* enc.c in Sources */,
  3165. 80377E721F2F66A800F89830 /* yuv_mips_dsp_r2.c in Sources */,
  3166. 323F8BA71F38EF770092B609 /* picture_enc.c in Sources */,
  3167. 80377E601F2F66A800F89830 /* lossless_neon.c in Sources */,
  3168. 80377E461F2F66A800F89830 /* dec_sse41.c in Sources */,
  3169. 43C892A51D9D6DDE0022038D /* demux.c in Sources */,
  3170. 80377E3E1F2F66A800F89830 /* cost.c in Sources */,
  3171. 323F8BEF1F38EF770092B609 /* webp_enc.c in Sources */,
  3172. 323F8BA11F38EF770092B609 /* picture_csp_enc.c in Sources */,
  3173. 323F8C1F1F38EF770092B609 /* muxread.c in Sources */,
  3174. 323F8C0D1F38EF770092B609 /* muxedit.c in Sources */,
  3175. 323F8B491F38EF770092B609 /* analysis_enc.c in Sources */,
  3176. 80377E6E1F2F66A800F89830 /* upsampling_msa.c in Sources */,
  3177. 323F8B911F38EF770092B609 /* iterator_enc.c in Sources */,
  3178. 3290FA0F1FA478AF0047D20C /* SDWebImageFrame.m in Sources */,
  3179. 80377EE01F2F66D500F89830 /* vp8_dec.c in Sources */,
  3180. 32CF1C121FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */,
  3181. 80377E521F2F66A800F89830 /* filters_msa.c in Sources */,
  3182. 80377C821F2F666400F89830 /* filters_utils.c in Sources */,
  3183. 4397D28C1D0DDD8C00BB2784 /* UIImageView+WebCache.m in Sources */,
  3184. 80377E581F2F66A800F89830 /* lossless_enc_mips32.c in Sources */,
  3185. 4397D28F1D0DDD8C00BB2784 /* SDWebImageDownloaderOperation.m in Sources */,
  3186. 323F8BB91F38EF770092B609 /* picture_tools_enc.c in Sources */,
  3187. 80377E451F2F66A800F89830 /* dec_sse2.c in Sources */,
  3188. 80377E3F1F2F66A800F89830 /* cpu.c in Sources */,
  3189. 80377E4C1F2F66A800F89830 /* enc_msa.c in Sources */,
  3190. 80377E4E1F2F66A800F89830 /* enc_sse2.c in Sources */,
  3191. 80377E6C1F2F66A800F89830 /* rescaler.c in Sources */,
  3192. 80377EE31F2F66D500F89830 /* vp8l_dec.c in Sources */,
  3193. 80377ED71F2F66D500F89830 /* alpha_dec.c in Sources */,
  3194. 323F8B7F1F38EF770092B609 /* frame_enc.c in Sources */,
  3195. 80377E681F2F66A800F89830 /* rescaler_mips32.c in Sources */,
  3196. 80377E621F2F66A800F89830 /* lossless.c in Sources */,
  3197. 80377E5D1F2F66A800F89830 /* lossless_enc.c in Sources */,
  3198. 80377EDF1F2F66D500F89830 /* tree_dec.c in Sources */,
  3199. 80377C7D1F2F666400F89830 /* bit_writer_utils.c in Sources */,
  3200. 80377C7B1F2F666400F89830 /* bit_reader_utils.c in Sources */,
  3201. 323F8B6D1F38EF770092B609 /* delta_palettization_enc.c in Sources */,
  3202. 321E60C91F38E91700405457 /* UIImage+ForceDecode.m in Sources */,
  3203. 80377E551F2F66A800F89830 /* filters.c in Sources */,
  3204. 80377E731F2F66A800F89830 /* yuv_mips32.c in Sources */,
  3205. 4397D2911D0DDD8C00BB2784 /* MKAnnotationView+WebCache.m in Sources */,
  3206. 4397D2921D0DDD8C00BB2784 /* SDWebImagePrefetcher.m in Sources */,
  3207. 323F8BBF1F38EF770092B609 /* predictor_enc.c in Sources */,
  3208. 807A12331F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */,
  3209. 323F8BD11F38EF770092B609 /* token_enc.c in Sources */,
  3210. 323F8B4F1F38EF770092B609 /* backward_references_enc.c in Sources */,
  3211. 80377E4D1F2F66A800F89830 /* enc_neon.c in Sources */,
  3212. 4397D2961D0DDD8C00BB2784 /* UIImage+MultiFormat.m in Sources */,
  3213. 323F8BF51F38EF770092B609 /* anim_encode.c in Sources */,
  3214. 80377E381F2F66A800F89830 /* argb_sse2.c in Sources */,
  3215. 323F8B9B1F38EF770092B609 /* near_lossless_enc.c in Sources */,
  3216. 80377E3B1F2F66A800F89830 /* cost_mips_dsp_r2.c in Sources */,
  3217. 4397D29B1D0DDD8C00BB2784 /* SDWebImageDownloader.m in Sources */,
  3218. 80377E711F2F66A800F89830 /* upsampling.c in Sources */,
  3219. 4397D29C1D0DDD8C00BB2784 /* NSData+ImageContentType.m in Sources */,
  3220. 323F8BB31F38EF770092B609 /* picture_rescale_enc.c in Sources */,
  3221. 80377E6A1F2F66A800F89830 /* rescaler_neon.c in Sources */,
  3222. 80377C841F2F666400F89830 /* huffman_encode_utils.c in Sources */,
  3223. 80377E491F2F66A800F89830 /* enc_avx2.c in Sources */,
  3224. 80377E531F2F66A800F89830 /* filters_neon.c in Sources */,
  3225. 323F8B431F38EF770092B609 /* alpha_enc.c in Sources */,
  3226. 323F8C191F38EF770092B609 /* muxinternal.c in Sources */,
  3227. 80377E5F1F2F66A800F89830 /* lossless_msa.c in Sources */,
  3228. 80377C8C1F2F666400F89830 /* random_utils.c in Sources */,
  3229. 323F8BAD1F38EF770092B609 /* picture_psnr_enc.c in Sources */,
  3230. 323F8BC51F38EF770092B609 /* quant_enc.c in Sources */,
  3231. 321DB3622011D4D70015D2CB /* NSButton+WebCache.m in Sources */,
  3232. 80377C7F1F2F666400F89830 /* color_cache_utils.c in Sources */,
  3233. 80377E331F2F66A800F89830 /* alpha_processing_neon.c in Sources */,
  3234. 80377E401F2F66A800F89830 /* dec_clip_tables.c in Sources */,
  3235. 80377C901F2F666400F89830 /* thread_utils.c in Sources */,
  3236. 80377E441F2F66A800F89830 /* dec_neon.c in Sources */,
  3237. 80377E741F2F66A800F89830 /* yuv_sse2.c in Sources */,
  3238. 80377E431F2F66A800F89830 /* dec_msa.c in Sources */,
  3239. 80377E6B1F2F66A800F89830 /* rescaler_sse2.c in Sources */,
  3240. 80377E671F2F66A800F89830 /* rescaler_mips_dsp_r2.c in Sources */,
  3241. 80377E541F2F66A800F89830 /* filters_sse2.c in Sources */,
  3242. 80377EDB1F2F66D500F89830 /* frame_dec.c in Sources */,
  3243. 80377C861F2F666400F89830 /* huffman_utils.c in Sources */,
  3244. 323F8BD71F38EF770092B609 /* tree_enc.c in Sources */,
  3245. 80377E571F2F66A800F89830 /* lossless_enc_mips_dsp_r2.c in Sources */,
  3246. 80377E5B1F2F66A800F89830 /* lossless_enc_sse2.c in Sources */,
  3247. 80377ED91F2F66D500F89830 /* buffer_dec.c in Sources */,
  3248. 4397D2A11D0DDD8C00BB2784 /* SDWebImageManager.m in Sources */,
  3249. 323F8BCB1F38EF770092B609 /* syntax_enc.c in Sources */,
  3250. 321E60AD1F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */,
  3251. 80377E341F2F66A800F89830 /* alpha_processing_sse2.c in Sources */,
  3252. 4397D2A61D0DDD8C00BB2784 /* SDWebImageCompat.m in Sources */,
  3253. 80377E6F1F2F66A800F89830 /* upsampling_neon.c in Sources */,
  3254. 4397D2A81D0DDD8C00BB2784 /* UIButton+WebCache.m in Sources */,
  3255. 320224BC203979BA00E9F285 /* SDAnimatedImageRep.m in Sources */,
  3256. 80377C8E1F2F666400F89830 /* rescaler_utils.c in Sources */,
  3257. 80377E5C1F2F66A800F89830 /* lossless_enc_sse41.c in Sources */,
  3258. 323F8BE31F38EF770092B609 /* vp8l_enc.c in Sources */,
  3259. 80377C881F2F666400F89830 /* quant_levels_dec_utils.c in Sources */,
  3260. 80377E5A1F2F66A800F89830 /* lossless_enc_neon.c in Sources */,
  3261. 80377E6D1F2F66A800F89830 /* upsampling_mips_dsp_r2.c in Sources */,
  3262. 80377E321F2F66A800F89830 /* alpha_processing_mips_dsp_r2.c in Sources */,
  3263. 323F8B611F38EF770092B609 /* cost_enc.c in Sources */,
  3264. 80377EDE1F2F66D500F89830 /* quant_dec.c in Sources */,
  3265. 321E609F1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */,
  3266. 323F8B5B1F38EF770092B609 /* config_enc.c in Sources */,
  3267. 80377E361F2F66A800F89830 /* alpha_processing.c in Sources */,
  3268. 80377E351F2F66A800F89830 /* alpha_processing_sse41.c in Sources */,
  3269. 323F8B791F38EF770092B609 /* filter_enc.c in Sources */,
  3270. 80377EDD1F2F66D500F89830 /* io_dec.c in Sources */,
  3271. 43A918701D8308FE00B3925F /* SDImageCacheConfig.m in Sources */,
  3272. 80377E4B1F2F66A800F89830 /* enc_mips32.c in Sources */,
  3273. 4397D2AB1D0DDD8C00BB2784 /* UIView+WebCacheOperation.m in Sources */,
  3274. 325312D3200F09910046BF1E /* SDWebImageTransition.m in Sources */,
  3275. 80377E391F2F66A800F89830 /* argb.c in Sources */,
  3276. 4369C2831D9807EC007E863A /* UIView+WebCache.m in Sources */,
  3277. 80377E611F2F66A800F89830 /* lossless_sse2.c in Sources */,
  3278. 80377E691F2F66A800F89830 /* rescaler_msa.c in Sources */,
  3279. 80377E5E1F2F66A800F89830 /* lossless_mips_dsp_r2.c in Sources */,
  3280. 80377E3D1F2F66A800F89830 /* cost_sse2.c in Sources */,
  3281. 321E60BB1F38E90100405457 /* SDWebImageWebPCoder.m in Sources */,
  3282. 80377E3C1F2F66A800F89830 /* cost_mips32.c in Sources */,
  3283. 80377E421F2F66A800F89830 /* dec_mips32.c in Sources */,
  3284. 4397D2AE1D0DDD8C00BB2784 /* UIImageView+HighlightedWebCache.m in Sources */,
  3285. 323F8B851F38EF770092B609 /* histogram_enc.c in Sources */,
  3286. 80377EE51F2F66D500F89830 /* webp_dec.c in Sources */,
  3287. 4397D2B01D0DDD8C00BB2784 /* SDImageCache.m in Sources */,
  3288. 80377E4F1F2F66A800F89830 /* enc_sse41.c in Sources */,
  3289. 80377E701F2F66A800F89830 /* upsampling_sse2.c in Sources */,
  3290. );
  3291. runOnlyForDeploymentPostprocessing = 0;
  3292. };
  3293. 4A2CADFA1AB4BB5300B6BC39 /* Sources */ = {
  3294. isa = PBXSourcesBuildPhase;
  3295. buildActionMask = 2147483647;
  3296. files = (
  3297. 80377D8E1F2F66A700F89830 /* lossless_enc.c in Sources */,
  3298. 323F8BBC1F38EF770092B609 /* predictor_enc.c in Sources */,
  3299. 3290FA0C1FA478AF0047D20C /* SDWebImageFrame.m in Sources */,
  3300. 80377D781F2F66A700F89830 /* dec.c in Sources */,
  3301. 0E9EFA1221983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */,
  3302. 80377DA21F2F66A700F89830 /* upsampling.c in Sources */,
  3303. 80377C401F2F666300F89830 /* rescaler_utils.c in Sources */,
  3304. 321E60C61F38E91700405457 /* UIImage+ForceDecode.m in Sources */,
  3305. 323F8BB61F38EF770092B609 /* picture_tools_enc.c in Sources */,
  3306. 80377DA51F2F66A700F89830 /* yuv_sse2.c in Sources */,
  3307. 323F8B8E1F38EF770092B609 /* iterator_enc.c in Sources */,
  3308. 80377D741F2F66A700F89830 /* dec_msa.c in Sources */,
  3309. 80377D661F2F66A700F89830 /* alpha_processing_sse41.c in Sources */,
  3310. 323F8BE01F38EF770092B609 /* vp8l_enc.c in Sources */,
  3311. 80377D751F2F66A700F89830 /* dec_neon.c in Sources */,
  3312. 80377C421F2F666300F89830 /* thread_utils.c in Sources */,
  3313. 4A2CAE2E1AB4BB7500B6BC39 /* UIImage+GIF.m in Sources */,
  3314. 80377D7A1F2F66A700F89830 /* enc_avx2.c in Sources */,
  3315. 80377D821F2F66A700F89830 /* filters_mips_dsp_r2.c in Sources */,
  3316. 80377D7B1F2F66A700F89830 /* enc_mips_dsp_r2.c in Sources */,
  3317. 323F8BC81F38EF770092B609 /* syntax_enc.c in Sources */,
  3318. 80377D641F2F66A700F89830 /* alpha_processing_neon.c in Sources */,
  3319. 80377C361F2F666300F89830 /* huffman_encode_utils.c in Sources */,
  3320. 80377D721F2F66A700F89830 /* dec_mips_dsp_r2.c in Sources */,
  3321. 80377D7E1F2F66A700F89830 /* enc_neon.c in Sources */,
  3322. 4A2CAE321AB4BB7500B6BC39 /* UIImage+WebP.m in Sources */,
  3323. 80377DA01F2F66A700F89830 /* upsampling_neon.c in Sources */,
  3324. 80377D691F2F66A700F89830 /* argb_sse2.c in Sources */,
  3325. 32CF1C0F1FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */,
  3326. 80377D6A1F2F66A700F89830 /* argb.c in Sources */,
  3327. 323F8B7C1F38EF770092B609 /* frame_enc.c in Sources */,
  3328. 80377EAB1F2F66D400F89830 /* frame_dec.c in Sources */,
  3329. 43C8929D1D9D6DD90022038D /* anim_decode.c in Sources */,
  3330. 323F8B6A1F38EF770092B609 /* delta_palettization_enc.c in Sources */,
  3331. 43CE75D41CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m in Sources */,
  3332. 323F8B5E1F38EF770092B609 /* cost_enc.c in Sources */,
  3333. 80377D8A1F2F66A700F89830 /* lossless_enc_msa.c in Sources */,
  3334. 80377EA91F2F66D400F89830 /* buffer_dec.c in Sources */,
  3335. 80377C341F2F666300F89830 /* filters_utils.c in Sources */,
  3336. 80377D901F2F66A700F89830 /* lossless_msa.c in Sources */,
  3337. 80377DA61F2F66A700F89830 /* yuv.c in Sources */,
  3338. 321E60B81F38E90100405457 /* SDWebImageWebPCoder.m in Sources */,
  3339. 43CE757A1CFE9427006C64D0 /* FLAnimatedImage.m in Sources */,
  3340. 80377D811F2F66A700F89830 /* enc.c in Sources */,
  3341. 80377EA71F2F66D400F89830 /* alpha_dec.c in Sources */,
  3342. 80377D8F1F2F66A700F89830 /* lossless_mips_dsp_r2.c in Sources */,
  3343. 80377C3E1F2F666300F89830 /* random_utils.c in Sources */,
  3344. 323F8B761F38EF770092B609 /* filter_enc.c in Sources */,
  3345. 80377D981F2F66A700F89830 /* rescaler_mips_dsp_r2.c in Sources */,
  3346. 323F8B4C1F38EF770092B609 /* backward_references_enc.c in Sources */,
  3347. 80377D881F2F66A700F89830 /* lossless_enc_mips_dsp_r2.c in Sources */,
  3348. 323F8BF21F38EF770092B609 /* anim_encode.c in Sources */,
  3349. 80377D921F2F66A700F89830 /* lossless_sse2.c in Sources */,
  3350. 80377D631F2F66A700F89830 /* alpha_processing_mips_dsp_r2.c in Sources */,
  3351. 80377D6C1F2F66A700F89830 /* cost_mips_dsp_r2.c in Sources */,
  3352. 4A2CAE361AB4BB7500B6BC39 /* UIImageView+WebCache.m in Sources */,
  3353. 323F8B581F38EF770092B609 /* config_enc.c in Sources */,
  3354. 43C892A21D9D6DDD0022038D /* demux.c in Sources */,
  3355. 80377DA41F2F66A700F89830 /* yuv_mips32.c in Sources */,
  3356. 4A2CAE1E1AB4BB6800B6BC39 /* SDWebImageDownloaderOperation.m in Sources */,
  3357. 80377EAD1F2F66D400F89830 /* io_dec.c in Sources */,
  3358. 80377EAC1F2F66D400F89830 /* idec_dec.c in Sources */,
  3359. 323F8B981F38EF770092B609 /* near_lossless_enc.c in Sources */,
  3360. 80377D6F1F2F66A700F89830 /* cost.c in Sources */,
  3361. 80377EB31F2F66D400F89830 /* vp8l_dec.c in Sources */,
  3362. 325312D0200F09910046BF1E /* SDWebImageTransition.m in Sources */,
  3363. 321E609C1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */,
  3364. 323F8B9E1F38EF770092B609 /* picture_csp_enc.c in Sources */,
  3365. 80377D9E1F2F66A700F89830 /* upsampling_mips_dsp_r2.c in Sources */,
  3366. 80377DA31F2F66A700F89830 /* yuv_mips_dsp_r2.c in Sources */,
  3367. 80377EAF1F2F66D400F89830 /* tree_dec.c in Sources */,
  3368. 4A2CAE281AB4BB7500B6BC39 /* MKAnnotationView+WebCache.m in Sources */,
  3369. 4A2CAE261AB4BB7000B6BC39 /* SDWebImagePrefetcher.m in Sources */,
  3370. 80377C441F2F666300F89830 /* utils.c in Sources */,
  3371. 80377D8D1F2F66A700F89830 /* lossless_enc_sse41.c in Sources */,
  3372. 80377EAE1F2F66D400F89830 /* quant_dec.c in Sources */,
  3373. 80377D6E1F2F66A700F89830 /* cost_sse2.c in Sources */,
  3374. 80377D991F2F66A700F89830 /* rescaler_mips32.c in Sources */,
  3375. 323F8C0A1F38EF770092B609 /* muxedit.c in Sources */,
  3376. 80377D851F2F66A700F89830 /* filters_sse2.c in Sources */,
  3377. 80377D711F2F66A700F89830 /* dec_clip_tables.c in Sources */,
  3378. 43A9186D1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */,
  3379. 80377D7C1F2F66A700F89830 /* enc_mips32.c in Sources */,
  3380. 80377D771F2F66A700F89830 /* dec_sse41.c in Sources */,
  3381. 80377D891F2F66A700F89830 /* lossless_enc_mips32.c in Sources */,
  3382. 80377D861F2F66A700F89830 /* filters.c in Sources */,
  3383. 321E60AA1F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */,
  3384. 323F8BD41F38EF770092B609 /* tree_enc.c in Sources */,
  3385. 80377D651F2F66A700F89830 /* alpha_processing_sse2.c in Sources */,
  3386. 323F8B821F38EF770092B609 /* histogram_enc.c in Sources */,
  3387. 321E608E1F38E8C800405457 /* SDWebImageCoder.m in Sources */,
  3388. 4A2CAE301AB4BB7500B6BC39 /* UIImage+MultiFormat.m in Sources */,
  3389. 323F8B401F38EF770092B609 /* alpha_enc.c in Sources */,
  3390. 80377C2D1F2F666300F89830 /* bit_reader_utils.c in Sources */,
  3391. 323F8BC21F38EF770092B609 /* quant_enc.c in Sources */,
  3392. 80377D761F2F66A700F89830 /* dec_sse2.c in Sources */,
  3393. 4A2CAE1C1AB4BB6800B6BC39 /* SDWebImageDownloader.m in Sources */,
  3394. 4A2CAE2A1AB4BB7500B6BC39 /* NSData+ImageContentType.m in Sources */,
  3395. 80377D9A1F2F66A700F89830 /* rescaler_msa.c in Sources */,
  3396. 80377D9F1F2F66A700F89830 /* upsampling_msa.c in Sources */,
  3397. 80377D7D1F2F66A700F89830 /* enc_msa.c in Sources */,
  3398. 80377D841F2F66A700F89830 /* filters_neon.c in Sources */,
  3399. 80377D801F2F66A700F89830 /* enc_sse41.c in Sources */,
  3400. 4A2CAE221AB4BB7000B6BC39 /* SDWebImageManager.m in Sources */,
  3401. 4A2CAE191AB4BB6400B6BC39 /* SDWebImageCompat.m in Sources */,
  3402. 80377DA11F2F66A700F89830 /* upsampling_sse2.c in Sources */,
  3403. 323F8BCE1F38EF770092B609 /* token_enc.c in Sources */,
  3404. 80377C3C1F2F666300F89830 /* quant_levels_utils.c in Sources */,
  3405. 323F8C1C1F38EF770092B609 /* muxread.c in Sources */,
  3406. 807A12301F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */,
  3407. 80377C2F1F2F666300F89830 /* bit_writer_utils.c in Sources */,
  3408. 323F8B461F38EF770092B609 /* analysis_enc.c in Sources */,
  3409. 80377D8C1F2F66A700F89830 /* lossless_enc_sse2.c in Sources */,
  3410. 4A2CAE2C1AB4BB7500B6BC39 /* UIButton+WebCache.m in Sources */,
  3411. 80377EB51F2F66D400F89830 /* webp_dec.c in Sources */,
  3412. 80377D701F2F66A700F89830 /* cpu.c in Sources */,
  3413. 80377D911F2F66A700F89830 /* lossless_neon.c in Sources */,
  3414. 80377EB01F2F66D400F89830 /* vp8_dec.c in Sources */,
  3415. 80377C381F2F666300F89830 /* huffman_utils.c in Sources */,
  3416. 80377C3A1F2F666300F89830 /* quant_levels_dec_utils.c in Sources */,
  3417. 80377D931F2F66A700F89830 /* lossless.c in Sources */,
  3418. 80377D9C1F2F66A700F89830 /* rescaler_sse2.c in Sources */,
  3419. 80377D671F2F66A700F89830 /* alpha_processing.c in Sources */,
  3420. 80377D9B1F2F66A700F89830 /* rescaler_neon.c in Sources */,
  3421. 4A2CAE381AB4BB7500B6BC39 /* UIView+WebCacheOperation.m in Sources */,
  3422. 80377C311F2F666300F89830 /* color_cache_utils.c in Sources */,
  3423. 323F8BEC1F38EF770092B609 /* webp_enc.c in Sources */,
  3424. 80377D731F2F66A700F89830 /* dec_mips32.c in Sources */,
  3425. 80377D7F1F2F66A700F89830 /* enc_sse2.c in Sources */,
  3426. 323F8C161F38EF770092B609 /* muxinternal.c in Sources */,
  3427. 323F8BB01F38EF770092B609 /* picture_rescale_enc.c in Sources */,
  3428. 80377D6D1F2F66A700F89830 /* cost_mips32.c in Sources */,
  3429. 80377D831F2F66A700F89830 /* filters_msa.c in Sources */,
  3430. 4A2CAE341AB4BB7500B6BC39 /* UIImageView+HighlightedWebCache.m in Sources */,
  3431. 4A2CAE201AB4BB6C00B6BC39 /* SDImageCache.m in Sources */,
  3432. 43CE75801CFE9427006C64D0 /* FLAnimatedImageView.m in Sources */,
  3433. 4369C2801D9807EC007E863A /* UIView+WebCache.m in Sources */,
  3434. 80377D8B1F2F66A700F89830 /* lossless_enc_neon.c in Sources */,
  3435. 80377D9D1F2F66A700F89830 /* rescaler.c in Sources */,
  3436. 80377D681F2F66A700F89830 /* argb_mips_dsp_r2.c in Sources */,
  3437. 323F8BAA1F38EF770092B609 /* picture_psnr_enc.c in Sources */,
  3438. 323F8BA41F38EF770092B609 /* picture_enc.c in Sources */,
  3439. );
  3440. runOnlyForDeploymentPostprocessing = 0;
  3441. };
  3442. 53761308155AD0D5005750A4 /* Sources */ = {
  3443. isa = PBXSourcesBuildPhase;
  3444. buildActionMask = 2147483647;
  3445. files = (
  3446. 80377D041F2F66A100F89830 /* lossless_enc.c in Sources */,
  3447. 323F8BBA1F38EF770092B609 /* predictor_enc.c in Sources */,
  3448. 3290FA0A1FA478AF0047D20C /* SDWebImageFrame.m in Sources */,
  3449. 80377CEE1F2F66A100F89830 /* dec.c in Sources */,
  3450. 0E9EFA1021983283005D7892 /* UIImage+MemoryCacheCost.m in Sources */,
  3451. 80377D181F2F66A100F89830 /* upsampling.c in Sources */,
  3452. 80377C0C1F2F665300F89830 /* rescaler_utils.c in Sources */,
  3453. 321E60C41F38E91700405457 /* UIImage+ForceDecode.m in Sources */,
  3454. 323F8BB41F38EF770092B609 /* picture_tools_enc.c in Sources */,
  3455. 80377D1B1F2F66A100F89830 /* yuv_sse2.c in Sources */,
  3456. 323F8B8C1F38EF770092B609 /* iterator_enc.c in Sources */,
  3457. 80377CEA1F2F66A100F89830 /* dec_msa.c in Sources */,
  3458. 80377CDC1F2F66A100F89830 /* alpha_processing_sse41.c in Sources */,
  3459. 323F8BDE1F38EF770092B609 /* vp8l_enc.c in Sources */,
  3460. 80377CEB1F2F66A100F89830 /* dec_neon.c in Sources */,
  3461. 80377C0E1F2F665300F89830 /* thread_utils.c in Sources */,
  3462. 53761309155AD0D5005750A4 /* SDImageCache.m in Sources */,
  3463. 80377CF01F2F66A100F89830 /* enc_avx2.c in Sources */,
  3464. 80377CF81F2F66A100F89830 /* filters_mips_dsp_r2.c in Sources */,
  3465. 80377CF11F2F66A100F89830 /* enc_mips_dsp_r2.c in Sources */,
  3466. 323F8BC61F38EF770092B609 /* syntax_enc.c in Sources */,
  3467. 80377CDA1F2F66A100F89830 /* alpha_processing_neon.c in Sources */,
  3468. 80377C021F2F665300F89830 /* huffman_encode_utils.c in Sources */,
  3469. 80377CE81F2F66A100F89830 /* dec_mips_dsp_r2.c in Sources */,
  3470. 80377CF41F2F66A100F89830 /* enc_neon.c in Sources */,
  3471. 80377D161F2F66A100F89830 /* upsampling_neon.c in Sources */,
  3472. 80377CDF1F2F66A100F89830 /* argb_sse2.c in Sources */,
  3473. 80377CE01F2F66A100F89830 /* argb.c in Sources */,
  3474. 32CF1C0D1FA496B000004BD1 /* SDWebImageCoderHelper.m in Sources */,
  3475. 323F8B7A1F38EF770092B609 /* frame_enc.c in Sources */,
  3476. 80377E8B1F2F66D000F89830 /* frame_dec.c in Sources */,
  3477. 43C8929A1D9D6DD70022038D /* anim_decode.c in Sources */,
  3478. 323F8B681F38EF770092B609 /* delta_palettization_enc.c in Sources */,
  3479. 43CE75D31CFE98E0006C64D0 /* FLAnimatedImageView+WebCache.m in Sources */,
  3480. 323F8B5C1F38EF770092B609 /* cost_enc.c in Sources */,
  3481. 80377D001F2F66A100F89830 /* lossless_enc_msa.c in Sources */,
  3482. 80377E891F2F66D000F89830 /* buffer_dec.c in Sources */,
  3483. 80377C001F2F665300F89830 /* filters_utils.c in Sources */,
  3484. 80377D061F2F66A100F89830 /* lossless_msa.c in Sources */,
  3485. 80377D1C1F2F66A100F89830 /* yuv.c in Sources */,
  3486. 321E60B61F38E90100405457 /* SDWebImageWebPCoder.m in Sources */,
  3487. 43CE75791CFE9427006C64D0 /* FLAnimatedImage.m in Sources */,
  3488. 80377CF71F2F66A100F89830 /* enc.c in Sources */,
  3489. 80377E871F2F66D000F89830 /* alpha_dec.c in Sources */,
  3490. 80377D051F2F66A100F89830 /* lossless_mips_dsp_r2.c in Sources */,
  3491. 80377C0A1F2F665300F89830 /* random_utils.c in Sources */,
  3492. 323F8B741F38EF770092B609 /* filter_enc.c in Sources */,
  3493. 80377D0E1F2F66A100F89830 /* rescaler_mips_dsp_r2.c in Sources */,
  3494. 323F8B4A1F38EF770092B609 /* backward_references_enc.c in Sources */,
  3495. 80377CFE1F2F66A100F89830 /* lossless_enc_mips_dsp_r2.c in Sources */,
  3496. 323F8BF01F38EF770092B609 /* anim_encode.c in Sources */,
  3497. 80377D081F2F66A100F89830 /* lossless_sse2.c in Sources */,
  3498. 80377CD91F2F66A100F89830 /* alpha_processing_mips_dsp_r2.c in Sources */,
  3499. 80377CE21F2F66A100F89830 /* cost_mips_dsp_r2.c in Sources */,
  3500. 5376130B155AD0D5005750A4 /* SDWebImageDownloader.m in Sources */,
  3501. 323F8B561F38EF770092B609 /* config_enc.c in Sources */,
  3502. 43C8929B1D9D6DD70022038D /* demux.c in Sources */,
  3503. 80377D1A1F2F66A100F89830 /* yuv_mips32.c in Sources */,
  3504. 438096751CDFC0A100DC626B /* UIImage+WebP.m in Sources */,
  3505. 80377E8D1F2F66D000F89830 /* io_dec.c in Sources */,
  3506. 80377E8C1F2F66D000F89830 /* idec_dec.c in Sources */,
  3507. 323F8B961F38EF770092B609 /* near_lossless_enc.c in Sources */,
  3508. 80377CE51F2F66A100F89830 /* cost.c in Sources */,
  3509. 80377E931F2F66D000F89830 /* vp8l_dec.c in Sources */,
  3510. 321E609A1F38E8ED00405457 /* SDWebImageImageIOCoder.m in Sources */,
  3511. 325312CE200F09910046BF1E /* SDWebImageTransition.m in Sources */,
  3512. 323F8B9C1F38EF770092B609 /* picture_csp_enc.c in Sources */,
  3513. 80377D141F2F66A100F89830 /* upsampling_mips_dsp_r2.c in Sources */,
  3514. 80377D191F2F66A100F89830 /* yuv_mips_dsp_r2.c in Sources */,
  3515. 80377E8F1F2F66D000F89830 /* tree_dec.c in Sources */,
  3516. 5376130C155AD0D5005750A4 /* SDWebImageManager.m in Sources */,
  3517. 5376130D155AD0D5005750A4 /* SDWebImagePrefetcher.m in Sources */,
  3518. 80377C101F2F665300F89830 /* utils.c in Sources */,
  3519. 80377D031F2F66A100F89830 /* lossless_enc_sse41.c in Sources */,
  3520. 80377E8E1F2F66D000F89830 /* quant_dec.c in Sources */,
  3521. 80377CE41F2F66A100F89830 /* cost_sse2.c in Sources */,
  3522. 80377D0F1F2F66A100F89830 /* rescaler_mips32.c in Sources */,
  3523. 323F8C081F38EF770092B609 /* muxedit.c in Sources */,
  3524. 80377CFB1F2F66A100F89830 /* filters_sse2.c in Sources */,
  3525. 80377CE71F2F66A100F89830 /* dec_clip_tables.c in Sources */,
  3526. 43A9186B1D8308FE00B3925F /* SDImageCacheConfig.m in Sources */,
  3527. 80377CF21F2F66A100F89830 /* enc_mips32.c in Sources */,
  3528. 80377CED1F2F66A100F89830 /* dec_sse41.c in Sources */,
  3529. 80377CFF1F2F66A100F89830 /* lossless_enc_mips32.c in Sources */,
  3530. 80377CFC1F2F66A100F89830 /* filters.c in Sources */,
  3531. 321E60A81F38E8F600405457 /* SDWebImageGIFCoder.m in Sources */,
  3532. 323F8BD21F38EF770092B609 /* tree_enc.c in Sources */,
  3533. 80377CDB1F2F66A100F89830 /* alpha_processing_sse2.c in Sources */,
  3534. 323F8B801F38EF770092B609 /* histogram_enc.c in Sources */,
  3535. 321E608C1F38E8C800405457 /* SDWebImageCoder.m in Sources */,
  3536. 5376130E155AD0D5005750A4 /* UIButton+WebCache.m in Sources */,
  3537. 323F8B3E1F38EF770092B609 /* alpha_enc.c in Sources */,
  3538. 80377BF91F2F665300F89830 /* bit_reader_utils.c in Sources */,
  3539. 323F8BC01F38EF770092B609 /* quant_enc.c in Sources */,
  3540. 80377CEC1F2F66A100F89830 /* dec_sse2.c in Sources */,
  3541. 5376130F155AD0D5005750A4 /* UIImageView+WebCache.m in Sources */,
  3542. 530E49EC16464C84002868E7 /* SDWebImageDownloaderOperation.m in Sources */,
  3543. 80377D101F2F66A100F89830 /* rescaler_msa.c in Sources */,
  3544. 80377D151F2F66A100F89830 /* upsampling_msa.c in Sources */,
  3545. 80377CF31F2F66A100F89830 /* enc_msa.c in Sources */,
  3546. 80377CFA1F2F66A100F89830 /* filters_neon.c in Sources */,
  3547. 80377CF61F2F66A100F89830 /* enc_sse41.c in Sources */,
  3548. 438096731CDFC08F00DC626B /* MKAnnotationView+WebCache.m in Sources */,
  3549. 53406750167780C40042B59E /* SDWebImageCompat.m in Sources */,
  3550. 80377D171F2F66A100F89830 /* upsampling_sse2.c in Sources */,
  3551. 323F8BCC1F38EF770092B609 /* token_enc.c in Sources */,
  3552. 80377C081F2F665300F89830 /* quant_levels_utils.c in Sources */,
  3553. 323F8C1A1F38EF770092B609 /* muxread.c in Sources */,
  3554. 807A122E1F89636300EC2A9B /* SDWebImageCodersManager.m in Sources */,
  3555. 80377BFB1F2F665300F89830 /* bit_writer_utils.c in Sources */,
  3556. 323F8B441F38EF770092B609 /* analysis_enc.c in Sources */,
  3557. 80377D021F2F66A100F89830 /* lossless_enc_sse2.c in Sources */,
  3558. A18A6CC9172DC28500419892 /* UIImage+GIF.m in Sources */,
  3559. 80377E951F2F66D000F89830 /* webp_dec.c in Sources */,
  3560. 80377CE61F2F66A100F89830 /* cpu.c in Sources */,
  3561. 80377D071F2F66A100F89830 /* lossless_neon.c in Sources */,
  3562. 80377E901F2F66D000F89830 /* vp8_dec.c in Sources */,
  3563. 80377C041F2F665300F89830 /* huffman_utils.c in Sources */,
  3564. 80377C061F2F665300F89830 /* quant_levels_dec_utils.c in Sources */,
  3565. 80377D091F2F66A100F89830 /* lossless.c in Sources */,
  3566. 80377D121F2F66A100F89830 /* rescaler_sse2.c in Sources */,
  3567. 80377CDD1F2F66A100F89830 /* alpha_processing.c in Sources */,
  3568. 80377D111F2F66A100F89830 /* rescaler_neon.c in Sources */,
  3569. AB615306192DA24600A2D8E9 /* UIView+WebCacheOperation.m in Sources */,
  3570. 80377BFD1F2F665300F89830 /* color_cache_utils.c in Sources */,
  3571. 323F8BEA1F38EF770092B609 /* webp_enc.c in Sources */,
  3572. 80377CE91F2F66A100F89830 /* dec_mips32.c in Sources */,
  3573. 80377CF51F2F66A100F89830 /* enc_sse2.c in Sources */,
  3574. 323F8C141F38EF770092B609 /* muxinternal.c in Sources */,
  3575. 323F8BAE1F38EF770092B609 /* picture_rescale_enc.c in Sources */,
  3576. 80377CE31F2F66A100F89830 /* cost_mips32.c in Sources */,
  3577. 80377CF91F2F66A100F89830 /* filters_msa.c in Sources */,
  3578. 5D5B9145188EE8DD006D06BD /* NSData+ImageContentType.m in Sources */,
  3579. 53EDFB8C17623F7C00698166 /* UIImage+MultiFormat.m in Sources */,
  3580. ABBE71A818C43B4D00B75E91 /* UIImageView+HighlightedWebCache.m in Sources */,
  3581. 43CE757F1CFE9427006C64D0 /* FLAnimatedImageView.m in Sources */,
  3582. 4369C27E1D9807EC007E863A /* UIView+WebCache.m in Sources */,
  3583. 80377D011F2F66A100F89830 /* lossless_enc_neon.c in Sources */,
  3584. 80377D131F2F66A100F89830 /* rescaler.c in Sources */,
  3585. 80377CDE1F2F66A100F89830 /* argb_mips_dsp_r2.c in Sources */,
  3586. 323F8BA81F38EF770092B609 /* picture_psnr_enc.c in Sources */,
  3587. 323F8BA21F38EF770092B609 /* picture_enc.c in Sources */,
  3588. );
  3589. runOnlyForDeploymentPostprocessing = 0;
  3590. };
  3591. /* End PBXSourcesBuildPhase section */
  3592. /* Begin XCBuildConfiguration section */
  3593. 00733A511BC487C100A5A117 /* Debug */ = {
  3594. isa = XCBuildConfiguration;
  3595. buildSettings = {
  3596. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3597. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3598. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  3599. CURRENT_PROJECT_VERSION = 1;
  3600. DEBUG_INFORMATION_FORMAT = dwarf;
  3601. DEFINES_MODULE = YES;
  3602. DYLIB_COMPATIBILITY_VERSION = 1;
  3603. DYLIB_CURRENT_VERSION = 1;
  3604. DYLIB_INSTALL_NAME_BASE = "@rpath";
  3605. ENABLE_BITCODE = YES;
  3606. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3607. ENABLE_TESTABILITY = YES;
  3608. GCC_NO_COMMON_BLOCKS = YES;
  3609. INFOPLIST_FILE = WebImage/Info.plist;
  3610. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3611. MTL_ENABLE_DEBUG_INFO = YES;
  3612. PRODUCT_BUNDLE_IDENTIFIER = "com.dailymotion.$(PRODUCT_NAME:rfc1034identifier).tvos";
  3613. PRODUCT_NAME = SDWebImage;
  3614. SDKROOT = appletvos;
  3615. SKIP_INSTALL = YES;
  3616. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3617. TARGETED_DEVICE_FAMILY = 3;
  3618. TVOS_DEPLOYMENT_TARGET = 9.0;
  3619. VERSIONING_SYSTEM = "apple-generic";
  3620. VERSION_INFO_PREFIX = "";
  3621. };
  3622. name = Debug;
  3623. };
  3624. 00733A521BC487C100A5A117 /* Release */ = {
  3625. isa = XCBuildConfiguration;
  3626. buildSettings = {
  3627. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3628. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3629. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  3630. COPY_PHASE_STRIP = NO;
  3631. CURRENT_PROJECT_VERSION = 1;
  3632. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3633. DEFINES_MODULE = YES;
  3634. DYLIB_COMPATIBILITY_VERSION = 1;
  3635. DYLIB_CURRENT_VERSION = 1;
  3636. DYLIB_INSTALL_NAME_BASE = "@rpath";
  3637. ENABLE_BITCODE = YES;
  3638. ENABLE_NS_ASSERTIONS = NO;
  3639. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3640. GCC_NO_COMMON_BLOCKS = YES;
  3641. INFOPLIST_FILE = WebImage/Info.plist;
  3642. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3643. MTL_ENABLE_DEBUG_INFO = NO;
  3644. PRODUCT_BUNDLE_IDENTIFIER = "com.dailymotion.$(PRODUCT_NAME:rfc1034identifier).tvos";
  3645. PRODUCT_NAME = SDWebImage;
  3646. SDKROOT = appletvos;
  3647. SKIP_INSTALL = YES;
  3648. TARGETED_DEVICE_FAMILY = 3;
  3649. TVOS_DEPLOYMENT_TARGET = 9.0;
  3650. VERSIONING_SYSTEM = "apple-generic";
  3651. VERSION_INFO_PREFIX = "";
  3652. };
  3653. name = Release;
  3654. };
  3655. 4314D1971D0E0E3B004B36C9 /* Debug */ = {
  3656. isa = XCBuildConfiguration;
  3657. buildSettings = {
  3658. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3659. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3660. GCC_PREPROCESSOR_DEFINITIONS = (
  3661. "WEBP_USE_INTRINSICS=1",
  3662. "$(inherited)",
  3663. );
  3664. PRODUCT_NAME = "$(TARGET_NAME)";
  3665. PUBLIC_HEADERS_FOLDER_PATH = include/SDWebImage;
  3666. SDKROOT = watchos;
  3667. TARGETED_DEVICE_FAMILY = 4;
  3668. WATCHOS_DEPLOYMENT_TARGET = 2.0;
  3669. };
  3670. name = Debug;
  3671. };
  3672. 4314D1981D0E0E3B004B36C9 /* Release */ = {
  3673. isa = XCBuildConfiguration;
  3674. buildSettings = {
  3675. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3676. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3677. GCC_PREPROCESSOR_DEFINITIONS = (
  3678. "WEBP_USE_INTRINSICS=1",
  3679. "$(inherited)",
  3680. );
  3681. PRODUCT_NAME = "$(TARGET_NAME)";
  3682. PUBLIC_HEADERS_FOLDER_PATH = include/SDWebImage;
  3683. SDKROOT = watchos;
  3684. TARGETED_DEVICE_FAMILY = 4;
  3685. WATCHOS_DEPLOYMENT_TARGET = 2.0;
  3686. };
  3687. name = Release;
  3688. };
  3689. 431BB7011D06D2C1006A3455 /* Debug */ = {
  3690. isa = XCBuildConfiguration;
  3691. buildSettings = {
  3692. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3693. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3694. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  3695. CURRENT_PROJECT_VERSION = 1;
  3696. DEBUG_INFORMATION_FORMAT = dwarf;
  3697. DEFINES_MODULE = YES;
  3698. DYLIB_COMPATIBILITY_VERSION = 1;
  3699. DYLIB_CURRENT_VERSION = 1;
  3700. DYLIB_INSTALL_NAME_BASE = "@rpath";
  3701. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3702. ENABLE_TESTABILITY = YES;
  3703. GCC_NO_COMMON_BLOCKS = YES;
  3704. GCC_PREPROCESSOR_DEFINITIONS = (
  3705. "WEBP_USE_INTRINSICS=1",
  3706. "$(inherited)",
  3707. );
  3708. INFOPLIST_FILE = WebImage/Info.plist;
  3709. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3710. MTL_ENABLE_DEBUG_INFO = YES;
  3711. PRODUCT_BUNDLE_IDENTIFIER = "com.dailymotion.$(PRODUCT_NAME:rfc1034identifier).watchos";
  3712. PRODUCT_NAME = SDWebImage;
  3713. SDKROOT = watchos;
  3714. SKIP_INSTALL = YES;
  3715. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3716. TARGETED_DEVICE_FAMILY = 4;
  3717. VERSIONING_SYSTEM = "apple-generic";
  3718. VERSION_INFO_PREFIX = "";
  3719. WATCHOS_DEPLOYMENT_TARGET = 2.0;
  3720. };
  3721. name = Debug;
  3722. };
  3723. 431BB7021D06D2C1006A3455 /* Release */ = {
  3724. isa = XCBuildConfiguration;
  3725. buildSettings = {
  3726. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3727. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3728. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  3729. COPY_PHASE_STRIP = NO;
  3730. CURRENT_PROJECT_VERSION = 1;
  3731. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3732. DEFINES_MODULE = YES;
  3733. DYLIB_COMPATIBILITY_VERSION = 1;
  3734. DYLIB_CURRENT_VERSION = 1;
  3735. DYLIB_INSTALL_NAME_BASE = "@rpath";
  3736. ENABLE_NS_ASSERTIONS = NO;
  3737. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3738. GCC_NO_COMMON_BLOCKS = YES;
  3739. GCC_PREPROCESSOR_DEFINITIONS = (
  3740. "WEBP_USE_INTRINSICS=1",
  3741. "$(inherited)",
  3742. );
  3743. INFOPLIST_FILE = WebImage/Info.plist;
  3744. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3745. MTL_ENABLE_DEBUG_INFO = NO;
  3746. PRODUCT_BUNDLE_IDENTIFIER = "com.dailymotion.$(PRODUCT_NAME:rfc1034identifier).watchos";
  3747. PRODUCT_NAME = SDWebImage;
  3748. SDKROOT = watchos;
  3749. SKIP_INSTALL = YES;
  3750. TARGETED_DEVICE_FAMILY = 4;
  3751. VERSIONING_SYSTEM = "apple-generic";
  3752. VERSION_INFO_PREFIX = "";
  3753. WATCHOS_DEPLOYMENT_TARGET = 2.0;
  3754. };
  3755. name = Release;
  3756. };
  3757. 4397D2F01D0DDD8C00BB2784 /* Debug */ = {
  3758. isa = XCBuildConfiguration;
  3759. buildSettings = {
  3760. APPLICATION_EXTENSION_API_ONLY = YES;
  3761. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3762. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3763. COMBINE_HIDPI_IMAGES = YES;
  3764. DEFINES_MODULE = YES;
  3765. DYLIB_COMPATIBILITY_VERSION = 1;
  3766. DYLIB_CURRENT_VERSION = 1;
  3767. DYLIB_INSTALL_NAME_BASE = "@rpath";
  3768. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3769. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  3770. INFOPLIST_FILE = WebImage/Info.plist;
  3771. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3772. MACOSX_DEPLOYMENT_TARGET = 10.9;
  3773. MTL_ENABLE_DEBUG_INFO = YES;
  3774. PRODUCT_BUNDLE_IDENTIFIER = "com.dailymotion.$(PRODUCT_NAME:rfc1034identifier).ios";
  3775. PRODUCT_NAME = SDWebImage;
  3776. SDKROOT = macosx;
  3777. };
  3778. name = Debug;
  3779. };
  3780. 4397D2F11D0DDD8C00BB2784 /* Release */ = {
  3781. isa = XCBuildConfiguration;
  3782. buildSettings = {
  3783. APPLICATION_EXTENSION_API_ONLY = YES;
  3784. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3785. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3786. COMBINE_HIDPI_IMAGES = YES;
  3787. DEFINES_MODULE = YES;
  3788. DYLIB_COMPATIBILITY_VERSION = 1;
  3789. DYLIB_CURRENT_VERSION = 1;
  3790. DYLIB_INSTALL_NAME_BASE = "@rpath";
  3791. ENABLE_NS_ASSERTIONS = NO;
  3792. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3793. INFOPLIST_FILE = WebImage/Info.plist;
  3794. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3795. MACOSX_DEPLOYMENT_TARGET = 10.9;
  3796. MTL_ENABLE_DEBUG_INFO = NO;
  3797. PRODUCT_BUNDLE_IDENTIFIER = "com.dailymotion.$(PRODUCT_NAME:rfc1034identifier).ios";
  3798. PRODUCT_NAME = SDWebImage;
  3799. SDKROOT = macosx;
  3800. };
  3801. name = Release;
  3802. };
  3803. 4A2CAE131AB4BB5400B6BC39 /* Debug */ = {
  3804. isa = XCBuildConfiguration;
  3805. buildSettings = {
  3806. APPLICATION_EXTENSION_API_ONLY = YES;
  3807. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3808. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3809. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  3810. DEFINES_MODULE = YES;
  3811. DYLIB_COMPATIBILITY_VERSION = 1;
  3812. DYLIB_CURRENT_VERSION = 1;
  3813. DYLIB_INSTALL_NAME_BASE = "@rpath";
  3814. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3815. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  3816. INFOPLIST_FILE = WebImage/Info.plist;
  3817. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  3818. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3819. MTL_ENABLE_DEBUG_INFO = YES;
  3820. PRODUCT_BUNDLE_IDENTIFIER = "com.dailymotion.$(PRODUCT_NAME:rfc1034identifier).ios";
  3821. PRODUCT_NAME = SDWebImage;
  3822. SDKROOT = iphoneos;
  3823. TARGETED_DEVICE_FAMILY = "1,2";
  3824. };
  3825. name = Debug;
  3826. };
  3827. 4A2CAE141AB4BB5400B6BC39 /* Release */ = {
  3828. isa = XCBuildConfiguration;
  3829. buildSettings = {
  3830. APPLICATION_EXTENSION_API_ONLY = YES;
  3831. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3832. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3833. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  3834. DEFINES_MODULE = YES;
  3835. DYLIB_COMPATIBILITY_VERSION = 1;
  3836. DYLIB_CURRENT_VERSION = 1;
  3837. DYLIB_INSTALL_NAME_BASE = "@rpath";
  3838. ENABLE_NS_ASSERTIONS = NO;
  3839. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3840. INFOPLIST_FILE = WebImage/Info.plist;
  3841. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  3842. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3843. MTL_ENABLE_DEBUG_INFO = NO;
  3844. PRODUCT_BUNDLE_IDENTIFIER = "com.dailymotion.$(PRODUCT_NAME:rfc1034identifier).ios";
  3845. PRODUCT_NAME = SDWebImage;
  3846. SDKROOT = iphoneos;
  3847. TARGETED_DEVICE_FAMILY = "1,2";
  3848. };
  3849. name = Release;
  3850. };
  3851. 53761323155AD0D5005750A4 /* Debug */ = {
  3852. isa = XCBuildConfiguration;
  3853. buildSettings = {
  3854. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3855. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3856. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  3857. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  3858. PRODUCT_NAME = "$(TARGET_NAME)";
  3859. PUBLIC_HEADERS_FOLDER_PATH = include/SDWebImage;
  3860. SDKROOT = iphoneos;
  3861. TARGETED_DEVICE_FAMILY = "1,2";
  3862. };
  3863. name = Debug;
  3864. };
  3865. 53761324155AD0D5005750A4 /* Release */ = {
  3866. isa = XCBuildConfiguration;
  3867. buildSettings = {
  3868. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3869. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3870. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  3871. PRODUCT_NAME = "$(TARGET_NAME)";
  3872. PUBLIC_HEADERS_FOLDER_PATH = include/SDWebImage;
  3873. SDKROOT = iphoneos;
  3874. TARGETED_DEVICE_FAMILY = "1,2";
  3875. };
  3876. name = Release;
  3877. };
  3878. 53922D7A148C55820056699D /* Debug */ = {
  3879. isa = XCBuildConfiguration;
  3880. buildSettings = {
  3881. ALWAYS_SEARCH_USER_PATHS = NO;
  3882. CLANG_ANALYZER_NONNULL = YES;
  3883. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  3884. CLANG_CXX_LIBRARY = "libc++";
  3885. CLANG_ENABLE_MODULES = YES;
  3886. CLANG_ENABLE_OBJC_ARC = YES;
  3887. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3888. CLANG_WARN_BOOL_CONVERSION = YES;
  3889. CLANG_WARN_COMMA = YES;
  3890. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3891. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3892. CLANG_WARN_EMPTY_BODY = YES;
  3893. CLANG_WARN_ENUM_CONVERSION = YES;
  3894. CLANG_WARN_INFINITE_RECURSION = YES;
  3895. CLANG_WARN_INT_CONVERSION = YES;
  3896. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3897. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3898. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3899. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3900. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3901. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3902. CLANG_WARN_UNREACHABLE_CODE = NO;
  3903. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3904. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3905. COPY_PHASE_STRIP = NO;
  3906. CURRENT_PROJECT_VERSION = 1;
  3907. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3908. ENABLE_TESTABILITY = YES;
  3909. FRAMEWORK_SEARCH_PATHS = (
  3910. "$(inherited)",
  3911. "\"$(SRCROOT)\"",
  3912. );
  3913. GCC_C_LANGUAGE_STANDARD = gnu99;
  3914. GCC_DYNAMIC_NO_PIC = NO;
  3915. GCC_NO_COMMON_BLOCKS = YES;
  3916. GCC_OPTIMIZATION_LEVEL = 0;
  3917. GCC_PREPROCESSOR_DEFINITIONS = (
  3918. "DEBUG=1",
  3919. "SD_WEBP=1",
  3920. "$(inherited)",
  3921. );
  3922. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  3923. GCC_TREAT_WARNINGS_AS_ERRORS = NO;
  3924. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3925. GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
  3926. GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
  3927. GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
  3928. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3929. GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
  3930. GCC_WARN_SHADOW = YES;
  3931. GCC_WARN_SIGN_COMPARE = YES;
  3932. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3933. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3934. GCC_WARN_UNUSED_FUNCTION = YES;
  3935. GCC_WARN_UNUSED_LABEL = YES;
  3936. GCC_WARN_UNUSED_PARAMETER = NO;
  3937. GCC_WARN_UNUSED_VARIABLE = YES;
  3938. HEADER_SEARCH_PATHS = Vendors/libwebp/src;
  3939. ONLY_ACTIVE_ARCH = YES;
  3940. OTHER_LDFLAGS = "-ObjC";
  3941. RUN_CLANG_STATIC_ANALYZER = YES;
  3942. SKIP_INSTALL = YES;
  3943. };
  3944. name = Debug;
  3945. };
  3946. 53922D7B148C55820056699D /* Release */ = {
  3947. isa = XCBuildConfiguration;
  3948. buildSettings = {
  3949. ALWAYS_SEARCH_USER_PATHS = NO;
  3950. CLANG_ANALYZER_NONNULL = YES;
  3951. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  3952. CLANG_CXX_LIBRARY = "libc++";
  3953. CLANG_ENABLE_MODULES = YES;
  3954. CLANG_ENABLE_OBJC_ARC = YES;
  3955. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3956. CLANG_WARN_BOOL_CONVERSION = YES;
  3957. CLANG_WARN_COMMA = YES;
  3958. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3959. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3960. CLANG_WARN_EMPTY_BODY = YES;
  3961. CLANG_WARN_ENUM_CONVERSION = YES;
  3962. CLANG_WARN_INFINITE_RECURSION = YES;
  3963. CLANG_WARN_INT_CONVERSION = YES;
  3964. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3965. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3966. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3967. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3968. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3969. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3970. CLANG_WARN_UNREACHABLE_CODE = NO;
  3971. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3972. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3973. COPY_PHASE_STRIP = YES;
  3974. CURRENT_PROJECT_VERSION = 1;
  3975. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3976. FRAMEWORK_SEARCH_PATHS = (
  3977. "$(inherited)",
  3978. "\"$(SRCROOT)\"",
  3979. );
  3980. GCC_C_LANGUAGE_STANDARD = gnu99;
  3981. GCC_NO_COMMON_BLOCKS = YES;
  3982. GCC_PREPROCESSOR_DEFINITIONS = (
  3983. "SD_WEBP=1",
  3984. "$(inherited)",
  3985. );
  3986. GCC_TREAT_WARNINGS_AS_ERRORS = NO;
  3987. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3988. GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
  3989. GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
  3990. GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
  3991. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3992. GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
  3993. GCC_WARN_SHADOW = YES;
  3994. GCC_WARN_SIGN_COMPARE = YES;
  3995. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3996. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3997. GCC_WARN_UNUSED_FUNCTION = YES;
  3998. GCC_WARN_UNUSED_LABEL = YES;
  3999. GCC_WARN_UNUSED_PARAMETER = NO;
  4000. GCC_WARN_UNUSED_VARIABLE = YES;
  4001. HEADER_SEARCH_PATHS = Vendors/libwebp/src;
  4002. OTHER_LDFLAGS = "-ObjC";
  4003. RUN_CLANG_STATIC_ANALYZER = YES;
  4004. SKIP_INSTALL = YES;
  4005. VALIDATE_PRODUCT = YES;
  4006. };
  4007. name = Release;
  4008. };
  4009. /* End XCBuildConfiguration section */
  4010. /* Begin XCConfigurationList section */
  4011. 00733A531BC487C100A5A117 /* Build configuration list for PBXNativeTarget "SDWebImage tvOS" */ = {
  4012. isa = XCConfigurationList;
  4013. buildConfigurations = (
  4014. 00733A511BC487C100A5A117 /* Debug */,
  4015. 00733A521BC487C100A5A117 /* Release */,
  4016. );
  4017. defaultConfigurationIsVisible = 0;
  4018. defaultConfigurationName = Release;
  4019. };
  4020. 4314D1961D0E0E3B004B36C9 /* Build configuration list for PBXNativeTarget "SDWebImage watchOS static" */ = {
  4021. isa = XCConfigurationList;
  4022. buildConfigurations = (
  4023. 4314D1971D0E0E3B004B36C9 /* Debug */,
  4024. 4314D1981D0E0E3B004B36C9 /* Release */,
  4025. );
  4026. defaultConfigurationIsVisible = 0;
  4027. defaultConfigurationName = Release;
  4028. };
  4029. 431BB7001D06D2C1006A3455 /* Build configuration list for PBXNativeTarget "SDWebImage watchOS" */ = {
  4030. isa = XCConfigurationList;
  4031. buildConfigurations = (
  4032. 431BB7011D06D2C1006A3455 /* Debug */,
  4033. 431BB7021D06D2C1006A3455 /* Release */,
  4034. );
  4035. defaultConfigurationIsVisible = 0;
  4036. defaultConfigurationName = Release;
  4037. };
  4038. 4397D2EF1D0DDD8C00BB2784 /* Build configuration list for PBXNativeTarget "SDWebImage OSX" */ = {
  4039. isa = XCConfigurationList;
  4040. buildConfigurations = (
  4041. 4397D2F01D0DDD8C00BB2784 /* Debug */,
  4042. 4397D2F11D0DDD8C00BB2784 /* Release */,
  4043. );
  4044. defaultConfigurationIsVisible = 0;
  4045. defaultConfigurationName = Release;
  4046. };
  4047. 4A2CAE121AB4BB5400B6BC39 /* Build configuration list for PBXNativeTarget "SDWebImage iOS" */ = {
  4048. isa = XCConfigurationList;
  4049. buildConfigurations = (
  4050. 4A2CAE131AB4BB5400B6BC39 /* Debug */,
  4051. 4A2CAE141AB4BB5400B6BC39 /* Release */,
  4052. );
  4053. defaultConfigurationIsVisible = 0;
  4054. defaultConfigurationName = Release;
  4055. };
  4056. 53761322155AD0D5005750A4 /* Build configuration list for PBXNativeTarget "SDWebImage iOS static" */ = {
  4057. isa = XCConfigurationList;
  4058. buildConfigurations = (
  4059. 53761323155AD0D5005750A4 /* Debug */,
  4060. 53761324155AD0D5005750A4 /* Release */,
  4061. );
  4062. defaultConfigurationIsVisible = 0;
  4063. defaultConfigurationName = Release;
  4064. };
  4065. 53922D69148C55810056699D /* Build configuration list for PBXProject "SDWebImage" */ = {
  4066. isa = XCConfigurationList;
  4067. buildConfigurations = (
  4068. 53922D7A148C55820056699D /* Debug */,
  4069. 53922D7B148C55820056699D /* Release */,
  4070. );
  4071. defaultConfigurationIsVisible = 0;
  4072. defaultConfigurationName = Release;
  4073. };
  4074. /* End XCConfigurationList section */
  4075. };
  4076. rootObject = 53922D66148C55810056699D /* Project object */;
  4077. }