project.pbxproj 1016 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 51;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 320FF48323A720C50009043B /* NoteBookVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 320FF48223A720C50009043B /* NoteBookVC.m */; };
  10. 320FF48723A7283B0009043B /* MyNoteBookModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 320FF48623A7283B0009043B /* MyNoteBookModel.m */; };
  11. 3220A0C223CC7F34005A347C /* shoujianrenResultView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3220A0C123CC7F34005A347C /* shoujianrenResultView.m */; };
  12. 3220A0C623CC8F7C005A347C /* shoujianrenResultViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3220A0C423CC8F7C005A347C /* shoujianrenResultViewCell.m */; };
  13. 3220A0C723CC8F7C005A347C /* shoujianrenResultViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3220A0C523CC8F7C005A347C /* shoujianrenResultViewCell.xib */; };
  14. 3237321923BC6B2700CC048D /* WZSendInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3237321723BC6B2700CC048D /* WZSendInfoCell.m */; };
  15. 3237321A23BC6B2700CC048D /* WZSendInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3237321823BC6B2700CC048D /* WZSendInfoCell.xib */; };
  16. 324D960423A1139300C7D9E8 /* ChatMsgSearchModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D960023A1139300C7D9E8 /* ChatMsgSearchModel.m */; };
  17. 324D960523A1139300C7D9E8 /* ChatMsgSearchModelSub.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D960123A1139300C7D9E8 /* ChatMsgSearchModelSub.m */; };
  18. 324D960823A204B300C7D9E8 /* ChatTestingVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D960723A204B300C7D9E8 /* ChatTestingVC.m */; };
  19. 324D960B23A2062700C7D9E8 /* TestinModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D960A23A2062700C7D9E8 /* TestinModel.m */; };
  20. 324D960F23A206B900C7D9E8 /* TestinCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D960D23A206B900C7D9E8 /* TestinCell.m */; };
  21. 324D961023A206B900C7D9E8 /* TestinCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 324D960E23A206B900C7D9E8 /* TestinCell.xib */; };
  22. 324D961323A232A200C7D9E8 /* Favorite.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 324D961223A232A200C7D9E8 /* Favorite.storyboard */; };
  23. 324D961923A233A300C7D9E8 /* MyFavoriteVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D961823A233A300C7D9E8 /* MyFavoriteVC.m */; };
  24. 324D962523A245A100C7D9E8 /* MyFavoriteViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D962323A245A100C7D9E8 /* MyFavoriteViewCell.m */; };
  25. 324D962623A245A100C7D9E8 /* MyFavoriteViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 324D962423A245A100C7D9E8 /* MyFavoriteViewCell.xib */; };
  26. 324D962923A24C7F00C7D9E8 /* MyFavoriteNewFindVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D962823A24C7F00C7D9E8 /* MyFavoriteNewFindVC.m */; };
  27. 324D962D23A24E3700C7D9E8 /* FindShareTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D962B23A24E3700C7D9E8 /* FindShareTypeCell.m */; };
  28. 324D962E23A24E3700C7D9E8 /* FindShareTypeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 324D962C23A24E3700C7D9E8 /* FindShareTypeCell.xib */; };
  29. 324D963123A3887100C7D9E8 /* MyFavoriteModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D963023A3887100C7D9E8 /* MyFavoriteModel.m */; };
  30. 324D963423A38A4A00C7D9E8 /* MyFavoriteSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D963323A38A4A00C7D9E8 /* MyFavoriteSubModel.m */; };
  31. 324D963823A3BD1E00C7D9E8 /* MyCenterSearch.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 324D963623A3BD1E00C7D9E8 /* MyCenterSearch.storyboard */; };
  32. 324D963B23A3BD5700C7D9E8 /* MyCenterSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 324D963A23A3BD5700C7D9E8 /* MyCenterSearchVC.m */; };
  33. 324D963E23A4D47F00C7D9E8 /* NoteBook.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 324D963D23A4D47F00C7D9E8 /* NoteBook.storyboard */; };
  34. 324F176A239B3B4D0025CAE7 /* NoticeSelectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 324F1768239B3B4D0025CAE7 /* NoticeSelectCell.m */; };
  35. 324F176B239B3B4D0025CAE7 /* NoticeSelectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 324F1769239B3B4D0025CAE7 /* NoticeSelectCell.xib */; };
  36. 324F17F4239E57010025CAE7 /* HomeTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 324F17F3239E57010025CAE7 /* HomeTestViewController.m */; };
  37. 324F17F6239E5B540025CAE7 /* App.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 324F17F5239E5B540025CAE7 /* App.pdf */; };
  38. 32580E5323AB9977005DF500 /* NoteBookDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 32580E5223AB9976005DF500 /* NoteBookDetailVC.m */; };
  39. 32580E5B23ACA98A005DF500 /* MyNoteBookDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 32580E5A23ACA98A005DF500 /* MyNoteBookDetailModel.m */; };
  40. 32580E5E23ADB3D2005DF500 /* NoteBookSelectFinderVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 32580E5D23ADB3D2005DF500 /* NoteBookSelectFinderVC.m */; };
  41. 32580E6223ADB814005DF500 /* NoteBookSelectFinderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 32580E6023ADB814005DF500 /* NoteBookSelectFinderCell.m */; };
  42. 32580E6323ADB814005DF500 /* NoteBookSelectFinderCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 32580E6123ADB814005DF500 /* NoteBookSelectFinderCell.xib */; };
  43. 32580E6623ADCF35005DF500 /* NoteBooKSelectNoteBookVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 32580E6523ADCF35005DF500 /* NoteBooKSelectNoteBookVC.m */; };
  44. 32580E6923ADF744005DF500 /* FWZGetNoteBookTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 32580E6823ADF744005DF500 /* FWZGetNoteBookTool.m */; };
  45. 325BB82E23CEFB34006F3972 /* HomeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 325BB82D23CEFB34006F3972 /* HomeTableViewCell.xib */; };
  46. 3264781F23BDB47E00E0DC2D /* ChatMsgNoticeDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 3264781E23BDB47E00E0DC2D /* ChatMsgNoticeDetailVC.m */; };
  47. 3264782223BEF4C900E0DC2D /* UIAlertController+TapGesAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3264782123BEF4C900E0DC2D /* UIAlertController+TapGesAlertController.m */; };
  48. 3264782623BF0B9600E0DC2D /* ArtticleComentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3264782423BF0B9600E0DC2D /* ArtticleComentCell.m */; };
  49. 3264782723BF0B9600E0DC2D /* ArtticleComentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3264782523BF0B9600E0DC2D /* ArtticleComentCell.xib */; };
  50. 326B92D6239F4B35004230EB /* FWZFileGetTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 326B92D5239F4B35004230EB /* FWZFileGetTool.m */; };
  51. 326B92D9239F78B8004230EB /* MoveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 326B92D8239F78B8004230EB /* MoveViewController.m */; };
  52. 326B92DC239F8EFD004230EB /* NoticeFindModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 326B92DB239F8EFD004230EB /* NoticeFindModel.m */; };
  53. 3274780323A87E97003B5F49 /* FileLookupVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 3274780223A87E97003B5F49 /* FileLookupVC.m */; };
  54. 327E375D23A9C86600842F47 /* NoteBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 327E375B23A9C86600842F47 /* NoteBookCell.m */; };
  55. 327E375E23A9C86600842F47 /* NoteBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 327E375C23A9C86600842F47 /* NoteBookCell.xib */; };
  56. 327E376123A9C90900842F47 /* CreateNoteBookVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 327E376023A9C90900842F47 /* CreateNoteBookVC.m */; };
  57. 327E376523A9D9C900842F47 /* CreateNoteBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 327E376323A9D9C900842F47 /* CreateNoteBookCell.m */; };
  58. 327E376623A9D9C900842F47 /* CreateNoteBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 327E376423A9D9C900842F47 /* CreateNoteBookCell.xib */; };
  59. 32A72DB323BA02510018BA9D /* WZContactModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A72DB223BA02510018BA9D /* WZContactModel.m */; };
  60. 32AB488623A5036E00A1E9F7 /* MyFindModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AB488523A5036E00A1E9F7 /* MyFindModel.m */; };
  61. 32C384C223B0E24B00BBC733 /* NoteBookShareVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C384C123B0E24B00BBC733 /* NoteBookShareVC.m */; };
  62. 32C384C823B1AE9500BBC733 /* NoteBookCommentVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C384C723B1AE9500BBC733 /* NoteBookCommentVC.m */; };
  63. 32C384CB23B329E700BBC733 /* TDInterLeterTypeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C384CA23B329E700BBC733 /* TDInterLeterTypeVC.m */; };
  64. 32C384CF23B3416800BBC733 /* InterLeterModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C384CE23B3416800BBC733 /* InterLeterModel.m */; };
  65. 32C384D223B3636100BBC733 /* CreateInterLeterVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C384D123B3636100BBC733 /* CreateInterLeterVC.m */; };
  66. 32C384D523B4B84B00BBC733 /* TDInterLeterDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C384D423B4B84B00BBC733 /* TDInterLeterDetailVC.m */; };
  67. 99467865DA80FC608E42FA68 /* Pods_smartRhino.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E51D21316DAB2F2BC17B146 /* Pods_smartRhino.framework */; };
  68. C5598D1C23865E4500BC7185 /* DepartmentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C5598D1B23865E4500BC7185 /* DepartmentModel.m */; };
  69. C5598D1F23865E7400BC7185 /* AddressBookGroupsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C5598D1E23865E7400BC7185 /* AddressBookGroupsModel.m */; };
  70. C5598D2223869D1400BC7185 /* NoticeListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C5598D2123869D1400BC7185 /* NoticeListModel.m */; };
  71. C5598D2523869D2300BC7185 /* NoticeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C5598D2423869D2300BC7185 /* NoticeModel.m */; };
  72. C56AC85F2384DB1000D46052 /* EaseSDKHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = C56AC7912384DB0F00D46052 /* EaseSDKHelper.m */; };
  73. C572647623828C5C0054EE66 /* NSDictionary+NilSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = C572647323828C5C0054EE66 /* NSDictionary+NilSafe.m */; };
  74. C572647723828C5C0054EE66 /* NSArray+NilSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = C572647423828C5C0054EE66 /* NSArray+NilSafe.m */; };
  75. C57264812382A6370054EE66 /* ArticleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C572647F2382A6370054EE66 /* ArticleImageCell.m */; };
  76. C57264822382A6370054EE66 /* ArticleImageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C57264802382A6370054EE66 /* ArticleImageCell.xib */; };
  77. C57264862382A6520054EE66 /* ArticleTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C57264842382A6520054EE66 /* ArticleTextCell.m */; };
  78. C57264872382A6520054EE66 /* ArticleTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C57264852382A6520054EE66 /* ArticleTextCell.xib */; };
  79. C59D0A3F2382468A007D0760 /* NSArray+JSONModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A272382468A007D0760 /* NSArray+JSONModel.m */; };
  80. C59D0A402382468A007D0760 /* JSONValueTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A2A2382468A007D0760 /* JSONValueTransformer.m */; };
  81. C59D0A412382468A007D0760 /* JSONKeyMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A2D2382468A007D0760 /* JSONKeyMapper.m */; };
  82. C59D0A422382468A007D0760 /* JSONModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A2F2382468A007D0760 /* JSONModel.m */; };
  83. C59D0A432382468A007D0760 /* JSONModelError.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A312382468A007D0760 /* JSONModelError.m */; };
  84. C59D0A442382468A007D0760 /* JSONModelArray.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A342382468A007D0760 /* JSONModelArray.m */; };
  85. C59D0A452382468A007D0760 /* JSONModelClassProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A352382468A007D0760 /* JSONModelClassProperty.m */; };
  86. C59D0A462382468A007D0760 /* JSONHTTPClient.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A392382468A007D0760 /* JSONHTTPClient.m */; };
  87. C59D0A472382468A007D0760 /* JSONAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A3A2382468A007D0760 /* JSONAPI.m */; };
  88. C59D0A482382468A007D0760 /* JSONModel+networking.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0A3E2382468A007D0760 /* JSONModel+networking.m */; };
  89. C59D0BFD23825DE1007D0760 /* YYDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B4E23825DE0007D0760 /* YYDiskCache.m */; };
  90. C59D0BFE23825DE1007D0760 /* YYCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B5023825DE0007D0760 /* YYCache.m */; };
  91. C59D0BFF23825DE1007D0760 /* YYKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B5423825DE0007D0760 /* YYKVStorage.m */; };
  92. C59D0C0023825DE1007D0760 /* YYMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B5523825DE0007D0760 /* YYMemoryCache.m */; };
  93. C59D0C0123825DE1007D0760 /* YYImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B5723825DE0007D0760 /* YYImageCache.m */; };
  94. C59D0C0223825DE1007D0760 /* YYWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B5923825DE0007D0760 /* YYWebImageManager.m */; };
  95. C59D0C0323825DE1007D0760 /* YYSpriteSheetImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B5C23825DE0007D0760 /* YYSpriteSheetImage.m */; };
  96. C59D0C0423825DE1007D0760 /* YYImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B5F23825DE0007D0760 /* YYImage.m */; };
  97. C59D0C0523825DE1007D0760 /* YYImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B6123825DE0007D0760 /* YYImageCoder.m */; };
  98. C59D0C0623825DE1007D0760 /* YYFrameImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B6323825DE0007D0760 /* YYFrameImage.m */; };
  99. C59D0C0723825DE1007D0760 /* _YYWebImageSetter.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B6523825DE0007D0760 /* _YYWebImageSetter.m */; };
  100. C59D0C0823825DE1007D0760 /* UIButton+YYWebImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B6B23825DE0007D0760 /* UIButton+YYWebImage.m */; };
  101. C59D0C0923825DE1007D0760 /* UIImageView+YYWebImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B6C23825DE0007D0760 /* UIImageView+YYWebImage.m */; };
  102. C59D0C0A23825DE1007D0760 /* MKAnnotationView+YYWebImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B6D23825DE0007D0760 /* MKAnnotationView+YYWebImage.m */; };
  103. C59D0C0B23825DE1007D0760 /* CALayer+YYWebImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B6E23825DE0007D0760 /* CALayer+YYWebImage.m */; };
  104. C59D0C0C23825DE1007D0760 /* YYAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B6F23825DE0007D0760 /* YYAnimatedImageView.m */; };
  105. C59D0C0D23825DE1007D0760 /* YYWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B7023825DE0007D0760 /* YYWebImageOperation.m */; };
  106. C59D0C0E23825DE1007D0760 /* NSObject+YYModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B7423825DE0007D0760 /* NSObject+YYModel.m */; };
  107. C59D0C0F23825DE1007D0760 /* YYClassInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B7523825DE0007D0760 /* YYClassInfo.m */; };
  108. C59D0C1023825DE1007D0760 /* YYTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B7923825DE0007D0760 /* YYTextView.m */; };
  109. C59D0C1123825DE1007D0760 /* YYTextMagnifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B7D23825DE0007D0760 /* YYTextMagnifier.m */; };
  110. C59D0C1223825DE1007D0760 /* YYTextContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8023825DE0007D0760 /* YYTextContainerView.m */; };
  111. C59D0C1323825DE1007D0760 /* YYTextEffectWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8123825DE1007D0760 /* YYTextEffectWindow.m */; };
  112. C59D0C1423825DE1007D0760 /* YYTextInput.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8323825DE1007D0760 /* YYTextInput.m */; };
  113. C59D0C1523825DE1007D0760 /* YYTextLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8423825DE1007D0760 /* YYTextLayout.m */; };
  114. C59D0C1623825DE1007D0760 /* YYTextLine.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8623825DE1007D0760 /* YYTextLine.m */; };
  115. C59D0C1723825DE1007D0760 /* YYTextSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8723825DE1007D0760 /* YYTextSelectionView.m */; };
  116. C59D0C1823825DE1007D0760 /* YYTextKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8A23825DE1007D0760 /* YYTextKeyboardManager.m */; };
  117. C59D0C1923825DE1007D0760 /* YYTextDebugOption.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8C23825DE1007D0760 /* YYTextDebugOption.m */; };
  118. C59D0C1A23825DE1007D0760 /* YYLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B8D23825DE1007D0760 /* YYLabel.m */; };
  119. C59D0C1B23825DE1007D0760 /* YYTextRunDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B9123825DE1007D0760 /* YYTextRunDelegate.m */; };
  120. C59D0C1C23825DE1007D0760 /* YYTextUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B9223825DE1007D0760 /* YYTextUtilities.m */; };
  121. C59D0C1D23825DE1007D0760 /* NSParagraphStyle+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B9323825DE1007D0760 /* NSParagraphStyle+YYText.m */; };
  122. C59D0C1E23825DE1007D0760 /* YYTextParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B9423825DE1007D0760 /* YYTextParser.m */; };
  123. C59D0C1F23825DE1007D0760 /* NSAttributedString+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B9523825DE1007D0760 /* NSAttributedString+YYText.m */; };
  124. C59D0C2023825DE1007D0760 /* UIPasteboard+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B9623825DE1007D0760 /* UIPasteboard+YYText.m */; };
  125. C59D0C2123825DE1007D0760 /* YYTextAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B9B23825DE1007D0760 /* YYTextAttribute.m */; };
  126. C59D0C2223825DE1007D0760 /* YYTextArchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0B9F23825DE1007D0760 /* YYTextArchiver.m */; };
  127. C59D0C2323825DE1007D0760 /* YYTextRubyAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BA023825DE1007D0760 /* YYTextRubyAnnotation.m */; };
  128. C59D0C2423825DE1007D0760 /* UITextField+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BA623825DE1007D0760 /* UITextField+YYAdd.m */; };
  129. C59D0C2523825DE1007D0760 /* UIBezierPath+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BA723825DE1007D0760 /* UIBezierPath+YYAdd.m */; };
  130. C59D0C2623825DE1007D0760 /* UIColor+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BA823825DE1007D0760 /* UIColor+YYAdd.m */; };
  131. C59D0C2723825DE1007D0760 /* UIDevice+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BAA23825DE1007D0760 /* UIDevice+YYAdd.m */; };
  132. C59D0C2823825DE1007D0760 /* UIApplication+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BAB23825DE1007D0760 /* UIApplication+YYAdd.m */; };
  133. C59D0C2923825DE1007D0760 /* UITableView+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BAC23825DE1007D0760 /* UITableView+YYAdd.m */; };
  134. C59D0C2A23825DE1007D0760 /* UIScrollView+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BAE23825DE1007D0760 /* UIScrollView+YYAdd.m */; };
  135. C59D0C2B23825DE1007D0760 /* UIScreen+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BAF23825DE1007D0760 /* UIScreen+YYAdd.m */; };
  136. C59D0C2C23825DE1007D0760 /* UIView+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BB023825DE1007D0760 /* UIView+YYAdd.m */; };
  137. C59D0C2D23825DE1007D0760 /* UIBarButtonItem+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BB223825DE1007D0760 /* UIBarButtonItem+YYAdd.m */; };
  138. C59D0C2E23825DE1007D0760 /* UIGestureRecognizer+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BB323825DE1007D0760 /* UIGestureRecognizer+YYAdd.m */; };
  139. C59D0C2F23825DE1007D0760 /* UIImage+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BBA23825DE1007D0760 /* UIImage+YYAdd.m */; };
  140. C59D0C3023825DE1007D0760 /* UIControl+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BBD23825DE1007D0760 /* UIControl+YYAdd.m */; };
  141. C59D0C3123825DE1007D0760 /* UIFont+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BC023825DE1007D0760 /* UIFont+YYAdd.m */; };
  142. C59D0C3223825DE1007D0760 /* NSArray+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BC323825DE1007D0760 /* NSArray+YYAdd.m */; };
  143. C59D0C3323825DE1007D0760 /* NSNumber+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BC423825DE1007D0760 /* NSNumber+YYAdd.m */; };
  144. C59D0C3423825DE1007D0760 /* NSBundle+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BC923825DE1007D0760 /* NSBundle+YYAdd.m */; };
  145. C59D0C3523825DE1007D0760 /* NSObject+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BCA23825DE1007D0760 /* NSObject+YYAdd.m */; };
  146. C59D0C3623825DE1007D0760 /* NSData+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BCD23825DE1007D0760 /* NSData+YYAdd.m */; };
  147. C59D0C3723825DE1007D0760 /* NSThread+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BCE23825DE1007D0760 /* NSThread+YYAdd.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  148. C59D0C3823825DE1007D0760 /* NSKeyedUnarchiver+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BD023825DE1007D0760 /* NSKeyedUnarchiver+YYAdd.m */; };
  149. C59D0C3923825DE1007D0760 /* NSTimer+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BD123825DE1007D0760 /* NSTimer+YYAdd.m */; };
  150. C59D0C3A23825DE1007D0760 /* NSObject+YYAddForARC.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BD423825DE1007D0760 /* NSObject+YYAddForARC.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  151. C59D0C3B23825DE1007D0760 /* NSDate+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BD523825DE1007D0760 /* NSDate+YYAdd.m */; };
  152. C59D0C3C23825DE1007D0760 /* NSString+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BD723825DE1007D0760 /* NSString+YYAdd.m */; };
  153. C59D0C3D23825DE1007D0760 /* NSNotificationCenter+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BD923825DE1007D0760 /* NSNotificationCenter+YYAdd.m */; };
  154. C59D0C3E23825DE1007D0760 /* NSDictionary+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BDB23825DE1007D0760 /* NSDictionary+YYAdd.m */; };
  155. C59D0C3F23825DE1007D0760 /* NSObject+YYAddForKVO.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BDE23825DE1007D0760 /* NSObject+YYAddForKVO.m */; };
  156. C59D0C4023825DE1007D0760 /* YYCGUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BE023825DE1007D0760 /* YYCGUtilities.m */; };
  157. C59D0C4123825DE1007D0760 /* CALayer+YYAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BE123825DE1007D0760 /* CALayer+YYAdd.m */; };
  158. C59D0C4223825DE1007D0760 /* YYWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BE523825DE1007D0760 /* YYWeakProxy.m */; };
  159. C59D0C4323825DE1007D0760 /* YYAsyncLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BE623825DE1007D0760 /* YYAsyncLayer.m */; };
  160. C59D0C4423825DE1007D0760 /* YYThreadSafeDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BEA23825DE1007D0760 /* YYThreadSafeDictionary.m */; };
  161. C59D0C4523825DE1007D0760 /* YYSentinel.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BED23825DE1007D0760 /* YYSentinel.m */; };
  162. C59D0C4623825DE1007D0760 /* YYTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BF423825DE1007D0760 /* YYTransaction.m */; };
  163. C59D0C4723825DE1007D0760 /* YYDispatchQueuePool.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BF523825DE1007D0760 /* YYDispatchQueuePool.m */; };
  164. C59D0C4823825DE1007D0760 /* YYKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BF623825DE1007D0760 /* YYKeychain.m */; };
  165. C59D0C4923825DE1007D0760 /* YYGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BF723825DE1007D0760 /* YYGestureRecognizer.m */; };
  166. C59D0C4A23825DE1007D0760 /* YYFileHash.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BF823825DE1007D0760 /* YYFileHash.m */; };
  167. C59D0C4B23825DE1007D0760 /* YYTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BF923825DE1007D0760 /* YYTimer.m */; };
  168. C59D0C4C23825DE1007D0760 /* YYThreadSafeArray.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BFA23825DE1007D0760 /* YYThreadSafeArray.m */; };
  169. C59D0C4D23825DE1007D0760 /* YYReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = C59D0BFB23825DE1007D0760 /* YYReachability.m */; };
  170. C62215632371057F006F5D7F /* MoreAppModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C62215622371057F006F5D7F /* MoreAppModel.m */; };
  171. C62215672371147A006F5D7F /* MoreAppCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C62215652371147A006F5D7F /* MoreAppCell.m */; };
  172. C62215682371147A006F5D7F /* MoreAppCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C62215662371147A006F5D7F /* MoreAppCell.xib */; };
  173. C622156C23714B00006F5D7F /* ChatMsgListImModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C622156B23714B00006F5D7F /* ChatMsgListImModel.m */; };
  174. C622156F2371501E006F5D7F /* ChatNewGroupVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C622156E2371501E006F5D7F /* ChatNewGroupVC.m */; };
  175. C6221572237157B8006F5D7F /* NoticeNewGroupVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6221571237157B8006F5D7F /* NoticeNewGroupVC.m */; };
  176. C622157523716492006F5D7F /* NoticeNewGroupMenuVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C622157423716492006F5D7F /* NoticeNewGroupMenuVC.m */; };
  177. C62215782371688C006F5D7F /* NoticeNewGroupMenuModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C62215772371688C006F5D7F /* NoticeNewGroupMenuModel.m */; };
  178. C622157C237169E3006F5D7F /* NoticeNewGroupMenuCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C622157A237169E3006F5D7F /* NoticeNewGroupMenuCell.m */; };
  179. C622157D237169E3006F5D7F /* NoticeNewGroupMenuCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C622157B237169E3006F5D7F /* NoticeNewGroupMenuCell.xib */; };
  180. C622158523719C84006F5D7F /* LoginVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C622158023719C84006F5D7F /* LoginVC.m */; };
  181. C622158623719C84006F5D7F /* Login.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C622158223719C84006F5D7F /* Login.storyboard */; };
  182. C6221589237278A8006F5D7F /* ShowKeepNoticeAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = C6221588237278A8006F5D7F /* ShowKeepNoticeAlert.m */; };
  183. C622158B237278BD006F5D7F /* ShowKeepNoticeAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = C622158A237278BD006F5D7F /* ShowKeepNoticeAlert.xib */; };
  184. C622158E2372A179006F5D7F /* NoticeUnreadVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C622158D2372A179006F5D7F /* NoticeUnreadVC.m */; };
  185. C62215922372A32B006F5D7F /* NoticeUnreadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C62215902372A32B006F5D7F /* NoticeUnreadCell.m */; };
  186. C62215932372A32B006F5D7F /* NoticeUnreadCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C62215912372A32B006F5D7F /* NoticeUnreadCell.xib */; };
  187. C62215962372C0CC006F5D7F /* MailList.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C62215952372C0CC006F5D7F /* MailList.storyboard */; };
  188. C622159C2372C0F9006F5D7F /* MailListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C622159B2372C0F9006F5D7F /* MailListVC.m */; };
  189. C62215A02372C27B006F5D7F /* MailListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C622159E2372C27B006F5D7F /* MailListCell.m */; };
  190. C62215A12372C27B006F5D7F /* MailListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C622159F2372C27B006F5D7F /* MailListCell.xib */; };
  191. C62215A42372CC89006F5D7F /* MailListByZuVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C62215A32372CC89006F5D7F /* MailListByZuVC.m */; };
  192. C6226FDC236C08F700E2E3BF /* My_Center.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C6226FDB236C08F700E2E3BF /* My_Center.storyboard */; };
  193. C622708C236C09FC00E2E3BF /* mj_house@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C622704C236C09FB00E2E3BF /* mj_house@3x.png */; };
  194. C622708D236C09FC00E2E3BF /* mj_house_black@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C622704D236C09FB00E2E3BF /* mj_house_black@3x.png */; };
  195. C622708E236C09FC00E2E3BF /* mj_sun_black@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C622704E236C09FB00E2E3BF /* mj_sun_black@3x.png */; };
  196. C622708F236C09FC00E2E3BF /* mj_sun@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C622704F236C09FB00E2E3BF /* mj_sun@2x.png */; };
  197. C6227090236C09FC00E2E3BF /* mj_air@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227050236C09FB00E2E3BF /* mj_air@3x.png */; };
  198. C6227091236C09FC00E2E3BF /* mj_air@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227051236C09FB00E2E3BF /* mj_air@2x.png */; };
  199. C6227092236C09FC00E2E3BF /* mj_sun@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227052236C09FB00E2E3BF /* mj_sun@3x.png */; };
  200. C6227093236C09FC00E2E3BF /* mj_sun_black@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227053236C09FB00E2E3BF /* mj_sun_black@2x.png */; };
  201. C6227094236C09FC00E2E3BF /* mj_house_black@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227054236C09FB00E2E3BF /* mj_house_black@2x.png */; };
  202. C6227095236C09FC00E2E3BF /* mj_house@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227055236C09FB00E2E3BF /* mj_house@2x.png */; };
  203. C6227096236C09FC00E2E3BF /* mj_air_black@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227056236C09FB00E2E3BF /* mj_air_black@3x.png */; };
  204. C6227097236C09FC00E2E3BF /* mj_air_black@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227057236C09FB00E2E3BF /* mj_air_black@2x.png */; };
  205. C6227098236C09FC00E2E3BF /* mj_car@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227058236C09FB00E2E3BF /* mj_car@3x.png */; };
  206. C6227099236C09FC00E2E3BF /* mj_car@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6227059236C09FB00E2E3BF /* mj_car@2x.png */; };
  207. C622709A236C09FC00E2E3BF /* mj_shoe@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C622705A236C09FB00E2E3BF /* mj_shoe@2x.png */; };
  208. C622709B236C09FC00E2E3BF /* mj_shoe@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C622705B236C09FB00E2E3BF /* mj_shoe@3x.png */; };
  209. C622709C236C09FC00E2E3BF /* CarRefreshHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = C622705C236C09FB00E2E3BF /* CarRefreshHeadView.m */; };
  210. C622709D236C09FC00E2E3BF /* GHRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C622705F236C09FB00E2E3BF /* GHRefreshHeader.m */; };
  211. C622709E236C09FC00E2E3BF /* GHRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227060236C09FB00E2E3BF /* GHRefreshFooter.m */; };
  212. C622709F236C09FC00E2E3BF /* XLDot.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227063236C09FB00E2E3BF /* XLDot.m */; };
  213. C62270A0236C09FC00E2E3BF /* XLDotLoading.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227066236C09FB00E2E3BF /* XLDotLoading.m */; };
  214. C62270A1236C09FC00E2E3BF /* GHRefreshCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227067236C09FB00E2E3BF /* GHRefreshCollectionView.m */; };
  215. C62270A2236C09FC00E2E3BF /* CarRefreshHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C6227068236C09FB00E2E3BF /* CarRefreshHeadView.xib */; };
  216. C62270A3236C09FC00E2E3BF /* GHRefreshTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227069236C09FB00E2E3BF /* GHRefreshTableView.m */; };
  217. C62270A4236C09FC00E2E3BF /* WQNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C622706B236C09FB00E2E3BF /* WQNavigationBar.m */; };
  218. C62270A5236C09FC00E2E3BF /* DGThumbUpButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C622706E236C09FB00E2E3BF /* DGThumbUpButton.m */; };
  219. C62270A6236C09FC00E2E3BF /* DGExplodeAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = C622706F236C09FB00E2E3BF /* DGExplodeAnimationView.m */; };
  220. C62270A7236C09FC00E2E3BF /* StoryboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227074236C09FB00E2E3BF /* StoryboardManager.m */; };
  221. C62270A8236C09FC00E2E3BF /* GHBlankView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227076236C09FB00E2E3BF /* GHBlankView.m */; };
  222. C62270A9236C09FC00E2E3BF /* UIView+GHBlank.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227078236C09FB00E2E3BF /* UIView+GHBlank.m */; };
  223. C62270AA236C09FC00E2E3BF /* DatePikerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C622707B236C09FB00E2E3BF /* DatePikerView.m */; };
  224. C62270AB236C09FC00E2E3BF /* BSAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C622707C236C09FB00E2E3BF /* BSAlertView.m */; };
  225. C62270AC236C09FC00E2E3BF /* DatePikerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C622707D236C09FB00E2E3BF /* DatePikerView.xib */; };
  226. C62270AD236C09FC00E2E3BF /* DeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227082236C09FB00E2E3BF /* DeviceInfo.m */; };
  227. C62270AE236C09FC00E2E3BF /* LeeTagItemViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227086236C09FB00E2E3BF /* LeeTagItemViewModel.m */; };
  228. C62270AF236C09FC00E2E3BF /* LeeTagItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227088236C09FB00E2E3BF /* LeeTagItem.m */; };
  229. C62270B0236C09FC00E2E3BF /* LeeTagView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227089236C09FB00E2E3BF /* LeeTagView.m */; };
  230. C622711F236C0BBC00E2E3BF /* ShowtipTool.m in Sources */ = {isa = PBXBuildFile; fileRef = C622711D236C0BBC00E2E3BF /* ShowtipTool.m */; };
  231. C6227127236C11A800E2E3BF /* UIViewController+GHTheme.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227121236C11A800E2E3BF /* UIViewController+GHTheme.m */; };
  232. C6227128236C11A800E2E3BF /* UIView+GHTheme.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227122236C11A800E2E3BF /* UIView+GHTheme.m */; };
  233. C6227129236C11A800E2E3BF /* GHThemeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6227123236C11A800E2E3BF /* GHThemeManager.m */; };
  234. C6227132236C122500E2E3BF /* My_CenterVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C622712F236C122500E2E3BF /* My_CenterVC.m */; };
  235. C625AA60236D98CE0010E967 /* ChatMsg.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C625AA5F236D98CE0010E967 /* ChatMsg.storyboard */; };
  236. C625AA66236D99170010E967 /* ChatMsgListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA65236D99170010E967 /* ChatMsgListVC.m */; };
  237. C625AA6A236D9D990010E967 /* ChatMsgListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA68236D9D990010E967 /* ChatMsgListCell.m */; };
  238. C625AA6B236D9D990010E967 /* ChatMsgListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C625AA69236D9D990010E967 /* ChatMsgListCell.xib */; };
  239. C625AA71236FB2930010E967 /* ChatMsgCollectionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA70236FB2930010E967 /* ChatMsgCollectionModel.m */; };
  240. C625AA7A236FB5A40010E967 /* ChatMsgCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA78236FB5A40010E967 /* ChatMsgCollectionCell.m */; };
  241. C625AA7B236FB5A40010E967 /* ChatMsgCollectionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C625AA79236FB5A40010E967 /* ChatMsgCollectionCell.xib */; };
  242. C625AA7E236FB9080010E967 /* UIView+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA7D236FB9080010E967 /* UIView+Extension.m */; };
  243. C625AA82236FBF670010E967 /* YCMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA81236FBF660010E967 /* YCMenuView.m */; };
  244. C625AA85236FCD680010E967 /* ChatMsgSearch.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C625AA84236FCD680010E967 /* ChatMsgSearch.storyboard */; };
  245. C625AA8E236FCDD30010E967 /* ChatMsgSearchHistoryVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA8D236FCDD30010E967 /* ChatMsgSearchHistoryVC.m */; };
  246. C625AA91236FCDEE0010E967 /* ChatMsgSearchResultVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA90236FCDEE0010E967 /* ChatMsgSearchResultVC.m */; };
  247. C625AA95236FD1A90010E967 /* ChatMsgSearchHistoryCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA93236FD1A90010E967 /* ChatMsgSearchHistoryCell.m */; };
  248. C625AA96236FD1A90010E967 /* ChatMsgSearchHistoryCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C625AA94236FD1A90010E967 /* ChatMsgSearchHistoryCell.xib */; };
  249. C625AAA3236FEF130010E967 /* ZLCollectionViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA98236FEF130010E967 /* ZLCollectionViewFlowLayout.m */; };
  250. C625AAA4236FEF130010E967 /* ZLCellFakeView.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA99236FEF130010E967 /* ZLCellFakeView.m */; };
  251. C625AAA5236FEF130010E967 /* ZLCollectionViewLayoutAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA9A236FEF130010E967 /* ZLCollectionViewLayoutAttributes.m */; };
  252. C625AAA6236FEF130010E967 /* ZLCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AA9B236FEF130010E967 /* ZLCollectionReusableView.m */; };
  253. C625AAA7236FEF130010E967 /* SPPageMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AAA1236FEF130010E967 /* SPPageMenu.m */; };
  254. C625AAAA236FF23E0010E967 /* ChatMsgSearchReseltContentVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AAA9236FF23E0010E967 /* ChatMsgSearchReseltContentVC.m */; };
  255. C625AAAE236FF35B0010E967 /* ChatMsgSearchReseltContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AAAC236FF35B0010E967 /* ChatMsgSearchReseltContentCell.m */; };
  256. C625AAAF236FF35B0010E967 /* ChatMsgSearchReseltContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C625AAAD236FF35B0010E967 /* ChatMsgSearchReseltContentCell.xib */; };
  257. C625AAB2236FFCC60010E967 /* ChatMsgSerchReseltByIMVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AAB1236FFCC60010E967 /* ChatMsgSerchReseltByIMVC.m */; };
  258. C625AAB5236FFFAA0010E967 /* WorkingGroup.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C625AAB4236FFFAA0010E967 /* WorkingGroup.storyboard */; };
  259. C625AABE237000010010E967 /* WorkingGroupMainVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AABB237000010010E967 /* WorkingGroupMainVC.m */; };
  260. C625AAC1237003EE0010E967 /* ShowNewGroupAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AAC0237003EE0010E967 /* ShowNewGroupAlert.m */; };
  261. C625AAC3237003F80010E967 /* ShowNewGroupAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = C625AAC2237003F80010E967 /* ShowNewGroupAlert.xib */; };
  262. C625AAC6237011D50010E967 /* ChatMsgNotice.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C625AAC5237011D50010E967 /* ChatMsgNotice.storyboard */; };
  263. C625AACF2370125D0010E967 /* ChatMsgNoticeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AACC2370125D0010E967 /* ChatMsgNoticeVC.m */; };
  264. C625AAD3237017650010E967 /* ChatMsgNoticeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AAD1237017650010E967 /* ChatMsgNoticeCell.m */; };
  265. C625AAD4237017650010E967 /* ChatMsgNoticeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C625AAD2237017650010E967 /* ChatMsgNoticeCell.xib */; };
  266. C625AAD723701ECE0010E967 /* ChatMsgNoticeTypeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AAD623701ECE0010E967 /* ChatMsgNoticeTypeVC.m */; };
  267. C625AADD2371029A0010E967 /* MoreAppVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C625AADC2371029A0010E967 /* MoreAppVC.m */; };
  268. C69A8DBE2372CFE70098FA26 /* pinyin.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DBC2372CFE70098FA26 /* pinyin.m */; };
  269. C69A8DBF2372CFE70098FA26 /* ChineseString.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DBD2372CFE70098FA26 /* ChineseString.m */; };
  270. C69A8DC32372D45F0098FA26 /* MailListByZuCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DC12372D45F0098FA26 /* MailListByZuCell.m */; };
  271. C69A8DC42372D45F0098FA26 /* MailListByZuCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8DC22372D45F0098FA26 /* MailListByZuCell.xib */; };
  272. C69A8DC72373AB470098FA26 /* MailListDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DC62373AB470098FA26 /* MailListDetailVC.m */; };
  273. C69A8DCB2373AFB50098FA26 /* MailListDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DC92373AFB50098FA26 /* MailListDetailCell.m */; };
  274. C69A8DCC2373AFB50098FA26 /* MailListDetailCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8DCA2373AFB50098FA26 /* MailListDetailCell.xib */; };
  275. C69A8DD32373C2C00098FA26 /* SearchBarDisplayCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DD12373C2BF0098FA26 /* SearchBarDisplayCenter.m */; };
  276. C69A8DD72374047E0098FA26 /* ChatMsgDetail.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C69A8DD62374047E0098FA26 /* ChatMsgDetail.storyboard */; };
  277. C69A8DE02374050D0098FA26 /* ChatMsgDetailChatVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DDE2374050D0098FA26 /* ChatMsgDetailChatVC.m */; };
  278. C69A8DE423740AB80098FA26 /* ChatMsgDetailChatCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DE223740AB80098FA26 /* ChatMsgDetailChatCell.m */; };
  279. C69A8DE523740AB80098FA26 /* ChatMsgDetailChatCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8DE323740AB80098FA26 /* ChatMsgDetailChatCell.xib */; };
  280. C69A8DE823741AD90098FA26 /* ChatMsgDetailChatModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DE723741AD90098FA26 /* ChatMsgDetailChatModel.m */; };
  281. C69A8DEB23743AC80098FA26 /* ChatMsgDetailChatInfoVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DEA23743AC80098FA26 /* ChatMsgDetailChatInfoVC.m */; };
  282. C69A8DEF23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DED23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.m */; };
  283. C69A8DF023743B9B0098FA26 /* ChatMsgDetailChatInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8DEE23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.xib */; };
  284. C69A8DF32374455C0098FA26 /* ChatInfoUserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DF22374455C0098FA26 /* ChatInfoUserModel.m */; };
  285. C69A8DF7237446670098FA26 /* ChatInfoUserCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DF5237446670098FA26 /* ChatInfoUserCollectionCell.m */; };
  286. C69A8DF8237446670098FA26 /* ChatInfoUserCollectionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8DF6237446670098FA26 /* ChatInfoUserCollectionCell.xib */; };
  287. C69A8DFB2374FBBE0098FA26 /* DetailChatInfoAllUserVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DFA2374FBBE0098FA26 /* DetailChatInfoAllUserVC.m */; };
  288. C69A8DFF237506C30098FA26 /* ChatInfoUserSearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8DFD237506C30098FA26 /* ChatInfoUserSearchCell.m */; };
  289. C69A8E00237506C30098FA26 /* ChatInfoUserSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8DFE237506C30098FA26 /* ChatInfoUserSearchCell.xib */; };
  290. C69A8E0323750D770098FA26 /* ChatImNameUpdateVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E0223750D770098FA26 /* ChatImNameUpdateVC.m */; };
  291. C69A8E06237513330098FA26 /* GroupManagementVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E05237513330098FA26 /* GroupManagementVC.m */; };
  292. C69A8E0923751B490098FA26 /* ChatSearchCenterVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E0823751B490098FA26 /* ChatSearchCenterVC.m */; };
  293. C69A8E1923753A150098FA26 /* CalenderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E0B23753A150098FA26 /* CalenderView.m */; };
  294. C69A8E1A23753A150098FA26 /* CalenderCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E0C23753A150098FA26 /* CalenderCollectionCell.m */; };
  295. C69A8E1B23753A150098FA26 /* CalenderModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E0F23753A150098FA26 /* CalenderModel.m */; };
  296. C69A8E1C23753A150098FA26 /* CalenderHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E1023753A150098FA26 /* CalenderHeaderView.m */; };
  297. C69A8E1D23753A150098FA26 /* CalenderWeekView.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E1123753A150098FA26 /* CalenderWeekView.m */; };
  298. C69A8E1E23753A150098FA26 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E1323753A150098FA26 /* NSDate+Extension.m */; };
  299. C69A8E1F23753A150098FA26 /* UIColor+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E1423753A150098FA26 /* UIColor+Extension.m */; };
  300. C69A8E2223753A700098FA26 /* ChatSearchFindbyDateVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E2123753A6F0098FA26 /* ChatSearchFindbyDateVC.m */; };
  301. C69A8E2523753A890098FA26 /* ChatSearchFindbyPhotoVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E2423753A890098FA26 /* ChatSearchFindbyPhotoVC.m */; };
  302. C69A8E3123753AD60098FA26 /* ChatSearchFindbyFuJVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E3023753AD60098FA26 /* ChatSearchFindbyFuJVC.m */; };
  303. C69A8E38237546310098FA26 /* ChatSearchFindbyPhotoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E36237546310098FA26 /* ChatSearchFindbyPhotoCell.m */; };
  304. C69A8E39237546310098FA26 /* ChatSearchFindbyPhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8E37237546310098FA26 /* ChatSearchFindbyPhotoCell.xib */; };
  305. C69A8E3D23754A660098FA26 /* FindPhotoOrVideoHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E3B23754A660098FA26 /* FindPhotoOrVideoHeaderView.m */; };
  306. C69A8E3E23754A660098FA26 /* FindPhotoOrVideoHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8E3C23754A660098FA26 /* FindPhotoOrVideoHeaderView.xib */; };
  307. C69A8E4223754F7A0098FA26 /* ChatSearchFindbyFuJCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C69A8E4023754F7A0098FA26 /* ChatSearchFindbyFuJCell.m */; };
  308. C69A8E4323754F7A0098FA26 /* ChatSearchFindbyFuJCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C69A8E4123754F7A0098FA26 /* ChatSearchFindbyFuJCell.xib */; };
  309. C6F2E17E236C14B0009E6903 /* My_CenterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E17C236C14B0009E6903 /* My_CenterCell.m */; };
  310. C6F2E17F236C14B0009E6903 /* My_CenterCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C6F2E17D236C14B0009E6903 /* My_CenterCell.xib */; };
  311. C6F2E182236C266F009E6903 /* MyInfoVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E181236C266F009E6903 /* MyInfoVC.m */; };
  312. C6F2E186236C26EC009E6903 /* MyInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E184236C26EC009E6903 /* MyInfoCell.m */; };
  313. C6F2E187236C26EC009E6903 /* MyInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C6F2E185236C26EC009E6903 /* MyInfoCell.xib */; };
  314. C6F2E18A236C2D7A009E6903 /* ShowPhotoCameraAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E189236C2D7A009E6903 /* ShowPhotoCameraAlertView.m */; };
  315. C6F2E18C236C2EE3009E6903 /* ShowPhotoCameraAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C6F2E18B236C2EE3009E6903 /* ShowPhotoCameraAlertView.xib */; };
  316. C6F2E197236C334A009E6903 /* LYLPhotoTailoringTool.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E18F236C334A009E6903 /* LYLPhotoTailoringTool.m */; };
  317. C6F2E198236C334A009E6903 /* PhotoMaskView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E191236C334A009E6903 /* PhotoMaskView.m */; };
  318. C6F2E199236C334A009E6903 /* LYLPhotoTailoringViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E192236C334A009E6903 /* LYLPhotoTailoringViewController.m */; };
  319. C6F2E19A236C334A009E6903 /* UIImage+Crop.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E194236C334A009E6903 /* UIImage+Crop.m */; };
  320. C6F2E19D236C3444009E6903 /* UtilsTools.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E19C236C3444009E6903 /* UtilsTools.m */; };
  321. C6F2E1A0236C3C32009E6903 /* EditUserNickVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E19F236C3C32009E6903 /* EditUserNickVC.m */; };
  322. C6F2E1A3236C44D8009E6903 /* ShowGenderAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1A2236C44D8009E6903 /* ShowGenderAlertView.m */; };
  323. C6F2E1A5236C4554009E6903 /* ShowGenderAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C6F2E1A4236C4554009E6903 /* ShowGenderAlertView.xib */; };
  324. C6F2E1A8236C4CB7009E6903 /* EditMySignOrBriefVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1A7236C4CB7009E6903 /* EditMySignOrBriefVC.m */; };
  325. C6F2E1AB236C528E009E6903 /* MyQRCodeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1AA236C528E009E6903 /* MyQRCodeVC.m */; };
  326. C6F2E1AE236C594A009E6903 /* EditPhoneOrEmailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1AD236C594A009E6903 /* EditPhoneOrEmailVC.m */; };
  327. C6F2E1B1236D1214009E6903 /* ToolFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1B0236D1214009E6903 /* ToolFoundation.m */; };
  328. C6F2E1D7236D126B009E6903 /* UILabel+GHConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1B3236D1268009E6903 /* UILabel+GHConfig.m */; };
  329. C6F2E1D9236D126B009E6903 /* NSString+XTExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1B6236D1268009E6903 /* NSString+XTExtension.m */; };
  330. C6F2E1DA236D126B009E6903 /* NSString+Tools.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1B9236D1269009E6903 /* NSString+Tools.m */; };
  331. C6F2E1DB236D126B009E6903 /* UIViewController+GH.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1BB236D1269009E6903 /* UIViewController+GH.m */; };
  332. C6F2E1DC236D126B009E6903 /* NSNumber+Formatter.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1BD236D1269009E6903 /* NSNumber+Formatter.m */; };
  333. C6F2E1DD236D126B009E6903 /* UIButton+XTExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1BE236D1269009E6903 /* UIButton+XTExtension.m */; };
  334. C6F2E1DE236D126B009E6903 /* UIView+GH.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1C1236D1269009E6903 /* UIView+GH.m */; };
  335. C6F2E1DF236D126B009E6903 /* XTSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1C2236D126A009E6903 /* XTSystem.m */; };
  336. C6F2E1E1236D126B009E6903 /* UIColor+XTExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1C9236D126A009E6903 /* UIColor+XTExtension.m */; };
  337. C6F2E1E2236D126B009E6903 /* UIViewController+NavBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1CA236D126A009E6903 /* UIViewController+NavBar.m */; };
  338. C6F2E1E3236D126B009E6903 /* NSObject+XTExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1CB236D126A009E6903 /* NSObject+XTExtension.m */; };
  339. C6F2E1E4236D126B009E6903 /* NSDate+XTExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1CD236D126A009E6903 /* NSDate+XTExtension.m */; };
  340. C6F2E1E6236D126B009E6903 /* UIView+XTExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1D2236D126B009E6903 /* UIView+XTExtension.m */; };
  341. C6F2E1E7236D126B009E6903 /* UIImage+GH.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1D5236D126B009E6903 /* UIImage+GH.m */; };
  342. C6F2E1EA236D1353009E6903 /* UITableView+HeadSet.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1E8236D1352009E6903 /* UITableView+HeadSet.m */; };
  343. C6F2E1ED236D1401009E6903 /* UILabel+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F2E1EB236D1401009E6903 /* UILabel+Extension.m */; };
  344. C701EE4A23C2D97800082463 /* InPutGongWenImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C701EE4823C2D97800082463 /* InPutGongWenImageCell.m */; };
  345. C701EE4B23C2D97800082463 /* InPutGongWenImageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C701EE4923C2D97800082463 /* InPutGongWenImageCell.xib */; };
  346. C7037FEA236FB65A008EA3E4 /* SendInfoGroupVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C7037FE9236FB65A008EA3E4 /* SendInfoGroupVC.m */; };
  347. C7037FED236FC1E6008EA3E4 /* SendInfoGroupModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7037FEC236FC1E6008EA3E4 /* SendInfoGroupModel.m */; };
  348. C7037FF0236FC317008EA3E4 /* SendInfoGroupSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7037FEF236FC317008EA3E4 /* SendInfoGroupSubModel.m */; };
  349. C7037FF3236FC3DC008EA3E4 /* SendInfoGroupSubTwoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7037FF2236FC3DC008EA3E4 /* SendInfoGroupSubTwoModel.m */; };
  350. C7037FF7236FC847008EA3E4 /* SendInfoGroupCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7037FF5236FC847008EA3E4 /* SendInfoGroupCell.m */; };
  351. C7037FF8236FC847008EA3E4 /* SendInfoGroupCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7037FF6236FC847008EA3E4 /* SendInfoGroupCell.xib */; };
  352. C7037FFC236FD33F008EA3E4 /* SendGroupBCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7037FFA236FD33F008EA3E4 /* SendGroupBCell.m */; };
  353. C7037FFD236FD33F008EA3E4 /* SendGroupBCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7037FFB236FD33F008EA3E4 /* SendGroupBCell.xib */; };
  354. C703800B23700CA7008EA3E4 /* MyApprovalPageDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = C703800A23700CA7008EA3E4 /* MyApprovalPageDetail.m */; };
  355. C703801123701018008EA3E4 /* MyApprovalDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C703800F23701018008EA3E4 /* MyApprovalDetailCell.m */; };
  356. C703801223701018008EA3E4 /* MyApprovalDetailCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C703801023701018008EA3E4 /* MyApprovalDetailCell.xib */; };
  357. C7038015237044B8008EA3E4 /* MyApprovalDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7038014237044B8008EA3E4 /* MyApprovalDetailModel.m */; };
  358. C708DC062371A46D005CC822 /* WorkFlowSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = C708DC052371A46D005CC822 /* WorkFlowSearchView.m */; };
  359. C708DC0A2371BE36005CC822 /* WorkFlowSearchDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C708DC092371BE36005CC822 /* WorkFlowSearchDetailVC.m */; };
  360. C70B6D6623CEBB6A008D5C48 /* ZFReOrderTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C70B6D6423CEBB6A008D5C48 /* ZFReOrderTableView.m */; };
  361. C7235185238244B20037E4F6 /* DatasModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7235181238244B20037E4F6 /* DatasModel.m */; };
  362. C7235186238244B20037E4F6 /* ArticleBlocks.m in Sources */ = {isa = PBXBuildFile; fileRef = C7235183238244B20037E4F6 /* ArticleBlocks.m */; };
  363. C723518923824EDA0037E4F6 /* ArticleZanModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C723518823824EDA0037E4F6 /* ArticleZanModel.m */; };
  364. C72351C12382907B0037E4F6 /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C72351BF2382907A0037E4F6 /* NSImage+WebCache.m */; };
  365. C72F2A58236D829D00F6ADE2 /* AddFileTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F2A56236D829D00F6ADE2 /* AddFileTableViewCell.m */; };
  366. C72F2A59236D829D00F6ADE2 /* AddFileTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C72F2A57236D829D00F6ADE2 /* AddFileTableViewCell.xib */; };
  367. C72F38FB236DADDC00933828 /* Setting.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C72F38E4236DADDC00933828 /* Setting.storyboard */; };
  368. C72F38FC236DADDC00933828 /* DisplaySettingsVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38E6236DADDC00933828 /* DisplaySettingsVC.m */; };
  369. C72F38FD236DADDC00933828 /* BlacklistVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38E8236DADDC00933828 /* BlacklistVC.m */; };
  370. C72F38FE236DADDC00933828 /* AccountSecurityVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38E9236DADDC00933828 /* AccountSecurityVC.m */; };
  371. C72F38FF236DADDC00933828 /* NewMsgAlertVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38EA236DADDC00933828 /* NewMsgAlertVC.m */; };
  372. C72F3900236DADDC00933828 /* MyAboutVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38EE236DADDC00933828 /* MyAboutVC.m */; };
  373. C72F3901236DADDC00933828 /* SettingVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38F1236DADDC00933828 /* SettingVC.m */; };
  374. C72F3902236DADDC00933828 /* FeedBackVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38F2236DADDC00933828 /* FeedBackVC.m */; };
  375. C72F3903236DADDC00933828 /* SettingCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C72F38F5236DADDC00933828 /* SettingCell.xib */; };
  376. C72F3904236DADDC00933828 /* BlacklistCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38F7236DADDC00933828 /* BlacklistCell.m */; };
  377. C72F3905236DADDC00933828 /* BlacklistCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C72F38F8236DADDC00933828 /* BlacklistCell.xib */; };
  378. C72F3906236DADDC00933828 /* SettingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F38FA236DADDC00933828 /* SettingCell.m */; };
  379. C72F390A236DAE1D00933828 /* UIPlaceHolderTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = C72F3909236DAE1D00933828 /* UIPlaceHolderTextView.m */; };
  380. C732D3A62394B3BE0097A059 /* ScanResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C732D3A52394B3BE0097A059 /* ScanResultModel.m */; };
  381. C732D3A92394E8C20097A059 /* WorkFlowFileModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C732D3A82394E8C20097A059 /* WorkFlowFileModel.m */; };
  382. C7404E6F238D23A600DB19AC /* AddPictureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7404E6D238D23A600DB19AC /* AddPictureCell.m */; };
  383. C7404E70238D23A600DB19AC /* AddPictureCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7404E6E238D23A600DB19AC /* AddPictureCell.xib */; };
  384. C7404E73238D2FA700DB19AC /* SelectImageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7404E72238D2FA700DB19AC /* SelectImageModel.m */; };
  385. C7404E77238E1BCF00DB19AC /* MyApprovalFileCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7404E75238E1BCF00DB19AC /* MyApprovalFileCell.m */; };
  386. C7404E78238E1BCF00DB19AC /* MyApprovalFileCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7404E76238E1BCF00DB19AC /* MyApprovalFileCell.xib */; };
  387. C744D23F2369AABE00D51EDD /* MyFavoriteFindCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C744D23E2369AABE00D51EDD /* MyFavoriteFindCell.m */; };
  388. C744D2422369B97E00D51EDD /* FavoriteHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C744D2412369B97E00D51EDD /* FavoriteHeaderView.m */; };
  389. C746485B2376E7F200876BA2 /* TDInterLeterHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C746485A2376E7F200876BA2 /* TDInterLeterHomeViewController.m */; };
  390. C7473D6A237105F30037DC39 /* WorkFlowSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C7473D68237105F30037DC39 /* WorkFlowSearchVC.m */; };
  391. C74BCC6F238F611700169982 /* AddChannelController.m in Sources */ = {isa = PBXBuildFile; fileRef = C74BCC6E238F611700169982 /* AddChannelController.m */; };
  392. C74BCC75238F88A200169982 /* VersionData.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C74BCC74238F88A200169982 /* VersionData.storyboard */; };
  393. C74BCC7C238FA1FF00169982 /* UILabel+RightAndLeft.m in Sources */ = {isa = PBXBuildFile; fileRef = C74BCC7B238FA1FF00169982 /* UILabel+RightAndLeft.m */; };
  394. C74BCC80238FB69B00169982 /* VersionDataModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C74BCC7F238FB69B00169982 /* VersionDataModel.m */; };
  395. C74BCC83238FB6C900169982 /* VersionDataSub.m in Sources */ = {isa = PBXBuildFile; fileRef = C74BCC82238FB6C900169982 /* VersionDataSub.m */; };
  396. C74E72EA23D2FF2B00BD1271 /* DepartureController.m in Sources */ = {isa = PBXBuildFile; fileRef = C74E72E823D2FF2B00BD1271 /* DepartureController.m */; };
  397. C74E72EB23D2FF2B00BD1271 /* DepartureController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C74E72E923D2FF2B00BD1271 /* DepartureController.xib */; };
  398. C75049F2236027DA0096B15B /* HomeContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C75049F0236027DA0096B15B /* HomeContentCell.m */; };
  399. C75049F3236027DA0096B15B /* HomeContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C75049F1236027DA0096B15B /* HomeContentCell.xib */; };
  400. C751012823837FB100E4429B /* MyZanCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C751012623837FB100E4429B /* MyZanCell.m */; };
  401. C751012923837FB100E4429B /* MyZanCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C751012723837FB100E4429B /* MyZanCell.xib */; };
  402. C751012C2383A02F00E4429B /* FormFields.m in Sources */ = {isa = PBXBuildFile; fileRef = C751012B2383A02F00E4429B /* FormFields.m */; };
  403. C751012F2383BEA200E4429B /* FormFieldsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C751012E2383BEA200E4429B /* FormFieldsModel.m */; };
  404. C7525DE12388DC9E004B9D71 /* LMJHorizontalScrollText.m in Sources */ = {isa = PBXBuildFile; fileRef = C7525DE02388DC9E004B9D71 /* LMJHorizontalScrollText.m */; };
  405. C7525DE52388F25F004B9D71 /* MyWordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7525DE32388F25F004B9D71 /* MyWordCell.m */; };
  406. C7525DE62388F25F004B9D71 /* MyWordCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7525DE42388F25F004B9D71 /* MyWordCell.xib */; };
  407. C7525DEA238907D6004B9D71 /* MyWorkAppApprovalCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7525DE8238907D6004B9D71 /* MyWorkAppApprovalCell.m */; };
  408. C7525DEB238907D6004B9D71 /* MyWorkAppApprovalCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7525DE9238907D6004B9D71 /* MyWorkAppApprovalCell.xib */; };
  409. C7525DEF23890A8B004B9D71 /* MyWorkSpaceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7525DED23890A8B004B9D71 /* MyWorkSpaceCell.m */; };
  410. C7525DF023890A8B004B9D71 /* MyWorkSpaceCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7525DEE23890A8B004B9D71 /* MyWorkSpaceCell.xib */; };
  411. C7525DF923895918004B9D71 /* SelectModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7525DF823895918004B9D71 /* SelectModel.m */; };
  412. C752D20E2375118700913F97 /* AgreeApprovalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C752D20D2375118700913F97 /* AgreeApprovalViewController.m */; };
  413. C752D21123751F1600913F97 /* DownFileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C752D21023751F1600913F97 /* DownFileViewController.m */; };
  414. C752D21523751FB200913F97 /* NextApprovalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C752D21323751FB200913F97 /* NextApprovalViewController.m */; };
  415. C752D21623751FB200913F97 /* NextApprovalViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C752D21423751FB200913F97 /* NextApprovalViewController.xib */; };
  416. C752D2192375337E00913F97 /* AgreeApprovalViewControllerSub.m in Sources */ = {isa = PBXBuildFile; fileRef = C752D2182375337E00913F97 /* AgreeApprovalViewControllerSub.m */; };
  417. C752D21C23755B4400913F97 /* FWZViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C752D21B23755B4400913F97 /* FWZViewController.m */; };
  418. C75958A0237FF2BF00AE85C0 /* HomeTopImageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C759589F237FF2BE00AE85C0 /* HomeTopImageModel.m */; };
  419. C75958A3237FFC9700AE85C0 /* HomeArticleModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C75958A1237FFC9700AE85C0 /* HomeArticleModel.m */; };
  420. C75958A6237FFCC200AE85C0 /* Item.m in Sources */ = {isa = PBXBuildFile; fileRef = C75958A4237FFCC200AE85C0 /* Item.m */; };
  421. C75958AA2380223B00AE85C0 /* ThesaurusName.m in Sources */ = {isa = PBXBuildFile; fileRef = C75958A82380223B00AE85C0 /* ThesaurusName.m */; };
  422. C75ACED2236A842400CB6374 /* TDShareButtonView.m in Sources */ = {isa = PBXBuildFile; fileRef = C75ACED1236A842400CB6374 /* TDShareButtonView.m */; };
  423. C75ACEDA236AAE5F00CB6374 /* MyTDGroupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C75ACED9236AAE5F00CB6374 /* MyTDGroupViewController.m */; };
  424. C75ACEDD236AAE7800CB6374 /* MyTDGroupModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C75ACEDC236AAE7800CB6374 /* MyTDGroupModel.m */; };
  425. C75ACEE0236AAE8A00CB6374 /* MyTDGroupCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C75ACEDF236AAE8A00CB6374 /* MyTDGroupCell.m */; };
  426. C75ACEE3236AAE9300CB6374 /* MyTDGroupView.m in Sources */ = {isa = PBXBuildFile; fileRef = C75ACEE2236AAE9300CB6374 /* MyTDGroupView.m */; };
  427. C75F9F222367FAD3002867A2 /* DetailContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = C75F9F212367FAD3002867A2 /* DetailContentView.m */; };
  428. C75F9F2523681DD8002867A2 /* ClickOKView.m in Sources */ = {isa = PBXBuildFile; fileRef = C75F9F2423681DD8002867A2 /* ClickOKView.m */; };
  429. C75F9F28236861A9002867A2 /* CommentSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C75F9F27236861A9002867A2 /* CommentSubModel.m */; };
  430. C75F9F2C236875CB002867A2 /* ComentSubCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C75F9F2A236875CB002867A2 /* ComentSubCell.m */; };
  431. C7602276239249270069414C /* TDWaitWorkModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7602275239249270069414C /* TDWaitWorkModel.m */; };
  432. C76745132373A6C4001675FA /* SKUCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C767450D2373A6C3001675FA /* SKUCollectionCell.m */; };
  433. C76745152373A6C4001675FA /* BYHLabelsLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C767450F2373A6C3001675FA /* BYHLabelsLayout.m */; };
  434. C76745162373A6C4001675FA /* WorkFLowCollectionSelectView.m in Sources */ = {isa = PBXBuildFile; fileRef = C76745112373A6C3001675FA /* WorkFLowCollectionSelectView.m */; };
  435. C768AFB223796C0C00E0A066 /* IgnoreHeaderTouchAndRecognizeSimultaneousTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C768AFAE23796C0B00E0A066 /* IgnoreHeaderTouchAndRecognizeSimultaneousTableView.m */; };
  436. C768AFB323796C0C00E0A066 /* IgnoreHeaderTouchTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C768AFB023796C0C00E0A066 /* IgnoreHeaderTouchTableView.m */; };
  437. C768AFB62379778F00E0A066 /* MyTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C768AFB42379778F00E0A066 /* MyTableView.m */; };
  438. C76B01252387B0C500AD6E28 /* WorkNumberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C76B01242387B0C500AD6E28 /* WorkNumberModel.m */; };
  439. C76B01282387B9C400AD6E28 /* WorkFilterModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C76B01272387B9C400AD6E28 /* WorkFilterModel.m */; };
  440. C76CC9D723BC9C7A003B23DC /* MeetingRecordJoinCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C76CC9D523BC9C7A003B23DC /* MeetingRecordJoinCell.m */; };
  441. C76CC9D823BC9C7A003B23DC /* MeetingRecordJoinCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C76CC9D623BC9C7A003B23DC /* MeetingRecordJoinCell.xib */; };
  442. C76CC9DC23BC9E25003B23DC /* MeetingRecordUserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C76CC9DA23BC9E25003B23DC /* MeetingRecordUserCell.m */; };
  443. C76CC9DD23BC9E25003B23DC /* MeetingRecordUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C76CC9DB23BC9E25003B23DC /* MeetingRecordUserCell.xib */; };
  444. C76CC9E123BCA03D003B23DC /* MeetingRecordTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C76CC9DF23BCA03D003B23DC /* MeetingRecordTitleCell.m */; };
  445. C76CC9E223BCA03D003B23DC /* MeetingRecordTitleCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C76CC9E023BCA03D003B23DC /* MeetingRecordTitleCell.xib */; };
  446. C76CC9E623BCA6B6003B23DC /* MeetingRecordContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C76CC9E423BCA6B6003B23DC /* MeetingRecordContentCell.m */; };
  447. C76CC9E723BCA6B6003B23DC /* MeetingRecordContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C76CC9E523BCA6B6003B23DC /* MeetingRecordContentCell.xib */; };
  448. C76DB42F236ACB4B00369F5C /* MyTDTopicViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C76DB42E236ACB4B00369F5C /* MyTDTopicViewController.m */; };
  449. C76DB432236ACC1200369F5C /* MyTDTopicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C76DB431236ACC1200369F5C /* MyTDTopicModel.m */; };
  450. C76DB435236ACC8100369F5C /* MyTDTopicSelectGroupVIew.m in Sources */ = {isa = PBXBuildFile; fileRef = C76DB434236ACC8100369F5C /* MyTDTopicSelectGroupVIew.m */; };
  451. C76DB438236ACCC400369F5C /* MyTDTopicTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = C76DB437236ACCC400369F5C /* MyTDTopicTitleView.m */; };
  452. C76DB43B236ACCF600369F5C /* MyTDTopicCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = C76DB43A236ACCF500369F5C /* MyTDTopicCellView.m */; };
  453. C76DB43E236ACF5700369F5C /* MyTDTopicModelSub.m in Sources */ = {isa = PBXBuildFile; fileRef = C76DB43D236ACF5700369F5C /* MyTDTopicModelSub.m */; };
  454. C76FD29C238506E100E858F6 /* NodesModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C76FD29B238506E100E858F6 /* NodesModel.m */; };
  455. C770405B23AC655700BFF1B0 /* UIView+BYIBInspectable.m in Sources */ = {isa = PBXBuildFile; fileRef = C770405923AC655700BFF1B0 /* UIView+BYIBInspectable.m */; };
  456. C770406823AC9BC900BFF1B0 /* RefreshBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C770406723AC9BC900BFF1B0 /* RefreshBaseViewController.m */; };
  457. C770406D23AC9F7300BFF1B0 /* MeetingListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C770406C23AC9F7300BFF1B0 /* MeetingListModel.m */; };
  458. C7716AF923B3435C00D6D45D /* MeetingSummaryListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7716AF823B3435C00D6D45D /* MeetingSummaryListModel.m */; };
  459. C772299B23B5A7A700007B21 /* MyMeetingListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C772299A23B5A7A700007B21 /* MyMeetingListModel.m */; };
  460. C772299F23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C772299D23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.m */; };
  461. C77229A023B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C772299E23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.xib */; };
  462. C77229A323B63B3500007B21 /* WorkFlowPersonnelListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C77229A223B63B3500007B21 /* WorkFlowPersonnelListModel.m */; };
  463. C7743F8723A86A8600973D70 /* WorkFlowHomeListController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743F8523A86A8600973D70 /* WorkFlowHomeListController.m */; };
  464. C7743F8823A86A8600973D70 /* WorkFlowHomeListController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7743F8623A86A8600973D70 /* WorkFlowHomeListController.xib */; };
  465. C7743F8B23A86BD300973D70 /* WorkFlowTabbarController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743F8A23A86BD300973D70 /* WorkFlowTabbarController.m */; };
  466. C7743F9123A86D7000973D70 /* MyWorkFlowListController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743F8F23A86D7000973D70 /* MyWorkFlowListController.m */; };
  467. C7743F9223A86D7000973D70 /* MyWorkFlowListController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7743F9023A86D7000973D70 /* MyWorkFlowListController.xib */; };
  468. C7743F9823A86DAE00973D70 /* WorkFlowFecordController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743F9623A86DAE00973D70 /* WorkFlowFecordController.m */; };
  469. C7743F9923A86DAE00973D70 /* WorkFlowFecordController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7743F9723A86DAE00973D70 /* WorkFlowFecordController.xib */; };
  470. C7743F9D23A8B2D800973D70 /* WorkFlowHomeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743F9B23A8B2D800973D70 /* WorkFlowHomeCell.m */; };
  471. C7743F9E23A8B2D800973D70 /* WorkFlowHomeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7743F9C23A8B2D800973D70 /* WorkFlowHomeCell.xib */; };
  472. C7743FA223A8C03D00973D70 /* WorkFlowSearchItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743FA023A8C03D00973D70 /* WorkFlowSearchItemCell.m */; };
  473. C7743FA323A8C03D00973D70 /* WorkFlowSearchItemCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7743FA123A8C03D00973D70 /* WorkFlowSearchItemCell.xib */; };
  474. C7743FA623A8CAA500973D70 /* CollectionViewSpaceLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743FA423A8CAA500973D70 /* CollectionViewSpaceLayout.m */; };
  475. C7743FAD23A9018200973D70 /* MyWorkFlowListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743FAB23A9018200973D70 /* MyWorkFlowListCell.m */; };
  476. C7743FAE23A9018200973D70 /* MyWorkFlowListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7743FAC23A9018200973D70 /* MyWorkFlowListCell.xib */; };
  477. C7743FB223A9078100973D70 /* historicalRecordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7743FB023A9078100973D70 /* historicalRecordCell.m */; };
  478. C7743FB323A9078100973D70 /* historicalRecordCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7743FB123A9078100973D70 /* historicalRecordCell.xib */; };
  479. C7799EF423AB19EA00270988 /* WorkFlowOrderTopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7799EF223AB19EA00270988 /* WorkFlowOrderTopCell.m */; };
  480. C7799EF523AB19EA00270988 /* WorkFlowOrderTopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7799EF323AB19EA00270988 /* WorkFlowOrderTopCell.xib */; };
  481. C7799EF923AB1DF100270988 /* WorkFlowOrderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7799EF723AB1DF100270988 /* WorkFlowOrderCell.m */; };
  482. C7799EFA23AB1DF100270988 /* WorkFlowOrderCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7799EF823AB1DF100270988 /* WorkFlowOrderCell.xib */; };
  483. C7799EFE23AB2A1600270988 /* WorkFlowOrderItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7799EFC23AB2A1600270988 /* WorkFlowOrderItemCell.m */; };
  484. C7799EFF23AB2A1600270988 /* WorkFlowOrderItemCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7799EFD23AB2A1600270988 /* WorkFlowOrderItemCell.xib */; };
  485. C7799F0323AB2C6E00270988 /* WorkFlowOrderController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7799F0123AB2C6E00270988 /* WorkFlowOrderController.m */; };
  486. C7799F0423AB2C6E00270988 /* WorkFlowOrderController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7799F0223AB2C6E00270988 /* WorkFlowOrderController.xib */; };
  487. C7799F0823AB5C5A00270988 /* WorkFlowOrderInputCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7799F0623AB5C5A00270988 /* WorkFlowOrderInputCell.m */; };
  488. C7799F0923AB5C5A00270988 /* WorkFlowOrderInputCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7799F0723AB5C5A00270988 /* WorkFlowOrderInputCell.xib */; };
  489. C7799F1223AB7E6500270988 /* WorkFlowPersonnelListController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7799F1023AB7E6500270988 /* WorkFlowPersonnelListController.m */; };
  490. C7799F1323AB7E6500270988 /* WorkFlowPersonnelListController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7799F1123AB7E6500270988 /* WorkFlowPersonnelListController.xib */; };
  491. C7799F1723AB849F00270988 /* WorkFlowPersonnelListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7799F1523AB849F00270988 /* WorkFlowPersonnelListCell.m */; };
  492. C7799F1823AB849F00270988 /* WorkFlowPersonnelListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7799F1623AB849F00270988 /* WorkFlowPersonnelListCell.xib */; };
  493. C7799F1B23AB991100270988 /* WorkFlowPersonnelListHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7799F1A23AB991100270988 /* WorkFlowPersonnelListHeadView.m */; };
  494. C7799F1D23AB99C500270988 /* WorkFlowPersonnelListHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7799F1C23AB99C500270988 /* WorkFlowPersonnelListHeadView.xib */; };
  495. C77E217F23ADEE51009A230C /* WorkFlowOrderSelectedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C77E217D23ADEE51009A230C /* WorkFlowOrderSelectedCell.m */; };
  496. C77E218023ADEE51009A230C /* WorkFlowOrderSelectedCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C77E217E23ADEE51009A230C /* WorkFlowOrderSelectedCell.xib */; };
  497. C77E218323ADF55F009A230C /* SelectedTimeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C77E218223ADF55F009A230C /* SelectedTimeModel.m */; };
  498. C77E218623AE0ED5009A230C /* SelectedTimeSourceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C77E218523AE0ED5009A230C /* SelectedTimeSourceModel.m */; };
  499. C77E218A23AE3776009A230C /* WorkFlowOrderSelectedTimeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C77E218823AE3776009A230C /* WorkFlowOrderSelectedTimeCell.m */; };
  500. C77E218B23AE3776009A230C /* WorkFlowOrderSelectedTimeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C77E218923AE3776009A230C /* WorkFlowOrderSelectedTimeCell.xib */; };
  501. C77E218E23AE4CC2009A230C /* WorkFlowOrderModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C77E218D23AE4CC2009A230C /* WorkFlowOrderModel.m */; };
  502. C77F3E58236D55D10015C412 /* AutoLayoutScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = C77F3E57236D55D10015C412 /* AutoLayoutScrollView.m */; };
  503. C7819D5A23B0549300300297 /* NSDate+JKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C7819D5823B0549300300297 /* NSDate+JKExtension.m */; };
  504. C7819D5D23B0597500300297 /* TimeSourceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7819D5C23B0597500300297 /* TimeSourceModel.m */; };
  505. C78373F023A9D82E0096AFE2 /* HistoricalWorkFlowListController.m in Sources */ = {isa = PBXBuildFile; fileRef = C78373EE23A9D82E0096AFE2 /* HistoricalWorkFlowListController.m */; };
  506. C78373F123A9D82E0096AFE2 /* HistoricalWorkFlowListController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C78373EF23A9D82E0096AFE2 /* HistoricalWorkFlowListController.xib */; };
  507. C78373F623A9F5430096AFE2 /* HistoricalWorkFlowListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C78373F423A9F5430096AFE2 /* HistoricalWorkFlowListCell.m */; };
  508. C78373F723A9F5430096AFE2 /* HistoricalWorkFlowListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C78373F523A9F5430096AFE2 /* HistoricalWorkFlowListCell.xib */; };
  509. C78373FB23AA287C0096AFE2 /* FecordJoinWorkFlowListController.m in Sources */ = {isa = PBXBuildFile; fileRef = C78373F923AA287C0096AFE2 /* FecordJoinWorkFlowListController.m */; };
  510. C78373FC23AA287C0096AFE2 /* FecordJoinWorkFlowListController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C78373FA23AA287C0096AFE2 /* FecordJoinWorkFlowListController.xib */; };
  511. C783740323AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C783740123AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.m */; };
  512. C783740423AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C783740223AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.xib */; };
  513. C783740823AA42C00096AFE2 /* WorkFlowDetailsController.m in Sources */ = {isa = PBXBuildFile; fileRef = C783740623AA42C00096AFE2 /* WorkFlowDetailsController.m */; };
  514. C783740923AA42C00096AFE2 /* WorkFlowDetailsController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C783740723AA42C00096AFE2 /* WorkFlowDetailsController.xib */; };
  515. C783740D23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C783740B23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.m */; };
  516. C783740E23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C783740C23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.xib */; };
  517. C783741223AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C783741023AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.m */; };
  518. C783741323AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C783741123AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.xib */; };
  519. C783741723AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C783741523AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.m */; };
  520. C783741823AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C783741623AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.xib */; };
  521. C783741B23AA48F50096AFE2 /* HistoricalWorkFlowDetailsBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C783741A23AA48F50096AFE2 /* HistoricalWorkFlowDetailsBaseCell.m */; };
  522. C788F1882369451A0070A6B3 /* FavoritesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C788F1862369451A0070A6B3 /* FavoritesViewController.m */; };
  523. C788F1892369451A0070A6B3 /* FavoritesViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C788F1872369451A0070A6B3 /* FavoritesViewController.xib */; };
  524. C788F18C236957890070A6B3 /* FavoriteFindModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C788F18B236957890070A6B3 /* FavoriteFindModel.m */; };
  525. C788F18F236957E70070A6B3 /* FavoriteTextModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C788F18E236957E70070A6B3 /* FavoriteTextModel.m */; };
  526. C788F19A236963980070A6B3 /* FavoriteTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C788F199236963980070A6B3 /* FavoriteTextCell.m */; };
  527. C7914DCD236D8573000CD5CA /* AddPeopleToGongWenCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7914DCB236D8573000CD5CA /* AddPeopleToGongWenCell.m */; };
  528. C7914DCE236D8573000CD5CA /* AddPeopleToGongWenCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7914DCC236D8573000CD5CA /* AddPeopleToGongWenCell.xib */; };
  529. C7938E51236443AA00746248 /* ClickOKViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7938E4F236443AA00746248 /* ClickOKViewController.m */; };
  530. C7938E562364446B00746248 /* ClickOKCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7938E542364446B00746248 /* ClickOKCell.m */; };
  531. C7938E572364446B00746248 /* ClickOKCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7938E552364446B00746248 /* ClickOKCell.xib */; };
  532. C7954B4A237E799200EDC479 /* AddressBookGroupModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7954B44237E799100EDC479 /* AddressBookGroupModel.m */; };
  533. C7954B4B237E799200EDC479 /* Addressbookgroup.m in Sources */ = {isa = PBXBuildFile; fileRef = C7954B45237E799100EDC479 /* Addressbookgroup.m */; };
  534. C7954B4C237E799200EDC479 /* Department.m in Sources */ = {isa = PBXBuildFile; fileRef = C7954B47237E799200EDC479 /* Department.m */; };
  535. C7954B4F237EAD0A00EDC479 /* AddressUserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7954B4E237EAD0A00EDC479 /* AddressUserModel.m */; };
  536. C795C62C2374348E0042300F /* MyWorkFlowFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = C795C62B2374348E0042300F /* MyWorkFlowFooterView.m */; };
  537. C795C62F23744CD00042300F /* GoDisscussView.m in Sources */ = {isa = PBXBuildFile; fileRef = C795C62E23744CD00042300F /* GoDisscussView.m */; };
  538. C7973958237BB5AB008BA2DF /* APIPOPOPO.m in Sources */ = {isa = PBXBuildFile; fileRef = C7973957237BB5AB008BA2DF /* APIPOPOPO.m */; };
  539. C7974A1B236BE250004D5470 /* WorkFLowModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A1A236BE250004D5470 /* WorkFLowModel.m */; };
  540. C7974A1F236BFBD0004D5470 /* WorkFLowCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A1D236BFBD0004D5470 /* WorkFLowCell.m */; };
  541. C7974A20236BFBD0004D5470 /* WorkFLowCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7974A1E236BFBD0004D5470 /* WorkFLowCell.xib */; };
  542. C7974A2A236C2617004D5470 /* MyApprovalPageVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A28236C2617004D5470 /* MyApprovalPageVC.m */; };
  543. C7974A2F236C2A2C004D5470 /* MyApprovalModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A2E236C2A2C004D5470 /* MyApprovalModel.m */; };
  544. C7974A37236C3199004D5470 /* MyApprovalBCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A35236C3198004D5470 /* MyApprovalBCell.m */; };
  545. C7974A38236C3199004D5470 /* MyApprovalBCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7974A36236C3199004D5470 /* MyApprovalBCell.xib */; };
  546. C7974A40236C4CC0004D5470 /* MyWorkWordVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A3F236C4CC0004D5470 /* MyWorkWordVC.m */; };
  547. C7974A43236C4CD5004D5470 /* MyWorkWordView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A42236C4CD5004D5470 /* MyWorkWordView.m */; };
  548. C7974A46236C4CFA004D5470 /* MyWorkWordModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A45236C4CFA004D5470 /* MyWorkWordModel.m */; };
  549. C7974A4A236C4D2A004D5470 /* MyWorkWordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7974A48236C4D2A004D5470 /* MyWorkWordCell.m */; };
  550. C7974A4B236C4D2A004D5470 /* MyWorkWordCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7974A49236C4D2A004D5470 /* MyWorkWordCell.xib */; };
  551. C79C6D3523BF0A5500BE4156 /* MyMeetingTimeView.m in Sources */ = {isa = PBXBuildFile; fileRef = C79C6D3423BF0A5500BE4156 /* MyMeetingTimeView.m */; };
  552. C79C6D3723BF0A6100BE4156 /* MyMeetingTimeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C79C6D3623BF0A6100BE4156 /* MyMeetingTimeView.xib */; };
  553. C79C6D3B23BF16C500BE4156 /* MeetingDetailsTimeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C79C6D3923BF16C500BE4156 /* MeetingDetailsTimeCell.m */; };
  554. C79C6D3C23BF16C500BE4156 /* MeetingDetailsTimeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C79C6D3A23BF16C500BE4156 /* MeetingDetailsTimeCell.xib */; };
  555. C7A84AFD2386374000FB0F82 /* HomeWaitWorkModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7A84AFC2386374000FB0F82 /* HomeWaitWorkModel.m */; };
  556. C7AB8434235EA93B00F2363F /* SWQRCodeConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB8429235EA93B00F2363F /* SWQRCodeConfig.m */; };
  557. C7AB8435235EA93B00F2363F /* SWQRCodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB842A235EA93B00F2363F /* SWQRCodeManager.m */; };
  558. C7AB8436235EA93B00F2363F /* SWQRCodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB842E235EA93B00F2363F /* SWQRCodeViewController.m */; };
  559. C7AB8437235EA93B00F2363F /* SWQRCode.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C7AB842F235EA93B00F2363F /* SWQRCode.bundle */; };
  560. C7AB8438235EA93B00F2363F /* SWScannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB8431235EA93B00F2363F /* SWScannerView.m */; };
  561. C7AB843B235EBA0700F2363F /* UIViewController+TD.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB843A235EBA0700F2363F /* UIViewController+TD.m */; };
  562. C7AB8441235EE65600F2363F /* WorkListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB8440235EE65600F2363F /* WorkListCell.m */; };
  563. C7AB8448235EFC6700F2363F /* UILabel+TD.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB8447235EFC6700F2363F /* UILabel+TD.m */; };
  564. C7B8646B23C9CE810090F2A3 /* SwipeTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B8646523C9CE800090F2A3 /* SwipeTableCell.m */; };
  565. C7B8646C23C9CE810090F2A3 /* SwipeView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B8646623C9CE800090F2A3 /* SwipeView.m */; };
  566. C7B8646D23C9CE810090F2A3 /* SwipeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B8646A23C9CE800090F2A3 /* SwipeButton.m */; };
  567. C7C06737236D70700049C50C /* SelectTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C06735236D70700049C50C /* SelectTextCell.m */; };
  568. C7C06738236D70700049C50C /* SelectTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7C06736236D70700049C50C /* SelectTextCell.xib */; };
  569. C7C0673C236D7BC50049C50C /* InPutTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C0673A236D7BC50049C50C /* InPutTextCell.m */; };
  570. C7C0673D236D7BC50049C50C /* InPutTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7C0673B236D7BC50049C50C /* InPutTextCell.xib */; };
  571. C7CA60AD237312680062B8B8 /* WorkFlowSelectView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7CA60AC237312680062B8B8 /* WorkFlowSelectView.m */; };
  572. C7CA60B1237312A50062B8B8 /* WorkFlowSelectCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7CA60AF237312A50062B8B8 /* WorkFlowSelectCollectCell.m */; };
  573. C7CA60B2237312A50062B8B8 /* WorkFlowSelectCollectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7CA60B0237312A50062B8B8 /* WorkFlowSelectCollectCell.xib */; };
  574. C7D6B9CC235D7D7200770E7C /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6B9CB235D7D7200770E7C /* AppDelegate.m */; };
  575. C7D6B9D7235D7D7600770E7C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C7D6B9D6235D7D7600770E7C /* Assets.xcassets */; };
  576. C7D6B9DA235D7D7600770E7C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C7D6B9D8235D7D7600770E7C /* LaunchScreen.storyboard */; };
  577. C7D6B9DD235D7D7600770E7C /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6B9DC235D7D7600770E7C /* main.m */; };
  578. C7D6BB3A235DA18A00770E7C /* MyChanelCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6B9FD235DA18700770E7C /* MyChanelCollectionViewCell.xib */; };
  579. C7D6BB3B235DA18A00770E7C /* MyChanelCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6B9FF235DA18700770E7C /* MyChanelCollectionViewCell.m */; };
  580. C7D6BB3C235DA18A00770E7C /* MyChanelCollectionReusableViewTop.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BA00235DA18700770E7C /* MyChanelCollectionReusableViewTop.xib */; };
  581. C7D6BB3D235DA18A00770E7C /* MyChanelCollectionReusableViewTop.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA02235DA18700770E7C /* MyChanelCollectionReusableViewTop.m */; };
  582. C7D6BB3E235DA18A00770E7C /* HomeSearchController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA04235DA18700770E7C /* HomeSearchController.m */; };
  583. C7D6BB40235DA18A00770E7C /* SearchHistoryCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA0D235DA18700770E7C /* SearchHistoryCell.m */; };
  584. C7D6BB41235DA18A00770E7C /* SearchTypeSection.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA0E235DA18700770E7C /* SearchTypeSection.m */; };
  585. C7D6BB42235DA18A00770E7C /* SearchTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA0F235DA18700770E7C /* SearchTypeCell.m */; };
  586. C7D6BB43235DA18A00770E7C /* HomeDetailController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA11235DA18700770E7C /* HomeDetailController.m */; };
  587. C7D6BB44235DA18A00770E7C /* ReplyDetailController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA14235DA18700770E7C /* ReplyDetailController.m */; };
  588. C7D6BB45235DA18A00770E7C /* CommentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA18235DA18700770E7C /* CommentModel.m */; };
  589. C7D6BB46235DA18A00770E7C /* ThirdSharedView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA1F235DA18700770E7C /* ThirdSharedView.m */; };
  590. C7D6BB47235DA18A00770E7C /* CommentSetView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA20235DA18700770E7C /* CommentSetView.m */; };
  591. C7D6BB48235DA18A00770E7C /* HomeDetailCommentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA21235DA18700770E7C /* HomeDetailCommentCell.m */; };
  592. C7D6BB49235DA18A00770E7C /* DetailTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA22235DA18700770E7C /* DetailTitleView.m */; };
  593. C7D6BB4A235DA18A00770E7C /* TextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA23235DA18700770E7C /* TextInputView.m */; };
  594. C7D6BB4B235DA18A00770E7C /* ChannelModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA26235DA18700770E7C /* ChannelModel.m */; };
  595. C7D6BB4C235DA18A00770E7C /* DocumentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA27235DA18700770E7C /* DocumentModel.m */; };
  596. C7D6BB4D235DA18A00770E7C /* HomeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA2B235DA18700770E7C /* HomeTableViewCell.m */; };
  597. C7D6BB4E235DA18A00770E7C /* HorizonScroll.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BA2C235DA18700770E7C /* HorizonScroll.m */; };
  598. C7D6BB98235DA18A00770E7C /* H5ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BADA235DA18900770E7C /* H5ViewController.m */; };
  599. C7D6BB99235DA18A00770E7C /* TDFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BADC235DA18900770E7C /* TDFileStorage.m */; };
  600. C7D6BB9A235DA18A00770E7C /* UIControl+Blocks.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BADE235DA18900770E7C /* UIControl+Blocks.m */; };
  601. C7D6BB9B235DA18A00770E7C /* NSString+RegexCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BADF235DA18900770E7C /* NSString+RegexCategory.m */; };
  602. C7D6BB9C235DA18A00770E7C /* ZYCTool.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAE0235DA18900770E7C /* ZYCTool.m */; };
  603. C7D6BB9D235DA18A00770E7C /* ZDTostView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAE4235DA18900770E7C /* ZDTostView.m */; };
  604. C7D6BB9E235DA18A00770E7C /* ZDChatroomAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAE5235DA18900770E7C /* ZDChatroomAlertView.m */; };
  605. C7D6BB9F235DA18A00770E7C /* UITableViewCell+XL.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAE6235DA18900770E7C /* UITableViewCell+XL.m */; };
  606. C7D6BBA0235DA18A00770E7C /* UIView+Frame.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAE7235DA18900770E7C /* UIView+Frame.m */; };
  607. C7D6BBA1235DA18A00770E7C /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAE8235DA18900770E7C /* UIImage+Extension.m */; };
  608. C7D6BBA2235DA18A00770E7C /* UIView+Corner.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAE9235DA18900770E7C /* UIView+Corner.m */; };
  609. C7D6BBA3235DA18A00770E7C /* NSString+CGSize.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAEA235DA18900770E7C /* NSString+CGSize.m */; };
  610. C7D6BBA4235DA18A00770E7C /* NSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAF1235DA18900770E7C /* NSString+HTML.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  611. C7D6BBA5235DA18A00770E7C /* GTMNSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAF2235DA18900770E7C /* GTMNSString+HTML.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  612. C7D6BBA6235DA18A00770E7C /* HttpManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAF6235DA18900770E7C /* HttpManager.m */; };
  613. C7D6BBA7235DA18A00770E7C /* UIColor+HexCustomer.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BAFC235DA18900770E7C /* UIColor+HexCustomer.m */; };
  614. C7D6BBA8235DA18A00770E7C /* TDSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB02235DA18A00770E7C /* TDSearchBar.m */; };
  615. C7D6BBA9235DA18A00770E7C /* TDTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB06235DA18A00770E7C /* TDTableView.m */; };
  616. C7D6BBAA235DA18A00770E7C /* TDTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB09235DA18A00770E7C /* TDTextView.m */; };
  617. C7D6BBAB235DA18A00770E7C /* NavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB0B235DA18A00770E7C /* NavigationBar.m */; };
  618. C7D6BBAC235DA18A00770E7C /* NavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB0D235DA18A00770E7C /* NavigationController.m */; };
  619. C7D6BBAD235DA18A00770E7C /* TDHorizontalWaterFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB10235DA18A00770E7C /* TDHorizontalWaterFlowLayout.m */; };
  620. C7D6BBAE235DA18A00770E7C /* PickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB14235DA18A00770E7C /* PickerView.m */; };
  621. C7D6BBAF235DA18A00770E7C /* TDNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB16235DA18A00770E7C /* TDNavigationBar.m */; };
  622. C7D6BBB0235DA18A00770E7C /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB19235DA18A00770E7C /* BaseViewController.m */; };
  623. C7D6BBB1235DA18A00770E7C /* SurfaceSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB1D235DA18A00770E7C /* SurfaceSearchView.m */; };
  624. C7D6BBB2235DA18A00770E7C /* InfoSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB1E235DA18A00770E7C /* InfoSearchView.m */; };
  625. C7D6BBB3235DA18A00770E7C /* TDButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB22235DA18A00770E7C /* TDButton.m */; };
  626. C7D6BBB4235DA18A00770E7C /* BaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB24235DA18A00770E7C /* BaseModel.m */; };
  627. C7D6BBB5235DA18A00770E7C /* TDTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB27235DA18A00770E7C /* TDTableViewCell.m */; };
  628. C7D6BBB6235DA18A00770E7C /* XLTextCalculateHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB2B235DA18A00770E7C /* XLTextCalculateHelper.m */; };
  629. C7D6BBB7235DA18A00770E7C /* TabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB2D235DA18A00770E7C /* TabBarController.m */; };
  630. C7D6BBB8235DA18A00770E7C /* TabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BB2E235DA18A00770E7C /* TabBar.m */; };
  631. C7D6BC7D235DA1CE00770E7C /* MyOrderViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BBD8235DA1CD00770E7C /* MyOrderViewController.xib */; };
  632. C7D6BC7E235DA1CE00770E7C /* MyOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBD9235DA1CD00770E7C /* MyOrderViewController.m */; };
  633. C7D6BC7F235DA1CE00770E7C /* MyOrderModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBDC235DA1CD00770E7C /* MyOrderModel.m */; };
  634. C7D6BC80235DA1CE00770E7C /* MyOrderTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BBDF235DA1CD00770E7C /* MyOrderTableViewCell.xib */; };
  635. C7D6BC81235DA1CE00770E7C /* MyOrderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBE1235DA1CD00770E7C /* MyOrderTableViewCell.m */; };
  636. C7D6BC82235DA1CE00770E7C /* MyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BBE3235DA1CD00770E7C /* MyViewController.xib */; };
  637. C7D6BC83235DA1CE00770E7C /* MyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBE5235DA1CD00770E7C /* MyViewController.m */; };
  638. C7D6BC84235DA1CE00770E7C /* NoticeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BBE9235DA1CD00770E7C /* NoticeViewController.xib */; };
  639. C7D6BC85235DA1CE00770E7C /* NoticeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBEA235DA1CD00770E7C /* NoticeViewController.m */; };
  640. C7D6BC87235DA1CE00770E7C /* NoticeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BBEF235DA1CD00770E7C /* NoticeTableViewCell.xib */; };
  641. C7D6BC88235DA1CE00770E7C /* NoticeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBF0235DA1CD00770E7C /* NoticeTableViewCell.m */; };
  642. C7D6BC89235DA1CE00770E7C /* MyPaperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBF4235DA1CD00770E7C /* MyPaperViewController.m */; };
  643. C7D6BC8A235DA1CE00770E7C /* MyPaperViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BBF5235DA1CD00770E7C /* MyPaperViewController.xib */; };
  644. C7D6BC8B235DA1CE00770E7C /* MyPaperTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BBF8235DA1CD00770E7C /* MyPaperTableViewCell.xib */; };
  645. C7D6BC8C235DA1CE00770E7C /* MyPaperTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBF9235DA1CD00770E7C /* MyPaperTableViewCell.m */; };
  646. C7D6BC8D235DA1CE00770E7C /* MyClubApplicationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BBFE235DA1CD00770E7C /* MyClubApplicationViewController.xib */; };
  647. C7D6BC8E235DA1CE00770E7C /* MyClubApplicationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BBFF235DA1CD00770E7C /* MyClubApplicationViewController.m */; };
  648. C7D6BC8F235DA1CE00770E7C /* MyClubApplicationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC01235DA1CD00770E7C /* MyClubApplicationTableViewCell.m */; };
  649. C7D6BC90235DA1CE00770E7C /* MyClubApplicationTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC03235DA1CD00770E7C /* MyClubApplicationTableViewCell.xib */; };
  650. C7D6BC91235DA1CE00770E7C /* ClubApplicationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC06235DA1CD00770E7C /* ClubApplicationViewController.xib */; };
  651. C7D6BC92235DA1CE00770E7C /* ClubApplicationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC07235DA1CD00770E7C /* ClubApplicationViewController.m */; };
  652. C7D6BC93235DA1CE00770E7C /* ClubApplicationModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC0A235DA1CD00770E7C /* ClubApplicationModel.m */; };
  653. C7D6BC94235DA1CE00770E7C /* ClubApplicationTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC0D235DA1CD00770E7C /* ClubApplicationTableViewCell.xib */; };
  654. C7D6BC95235DA1CE00770E7C /* ClubApplicationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC0F235DA1CD00770E7C /* ClubApplicationTableViewCell.m */; };
  655. C7D6BC96235DA1CE00770E7C /* PersonalCertificationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC14235DA1CD00770E7C /* PersonalCertificationViewController.m */; };
  656. C7D6BC97235DA1CE00770E7C /* PersonalCertificationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC15235DA1CD00770E7C /* PersonalCertificationViewController.xib */; };
  657. C7D6BC98235DA1CE00770E7C /* PersonalCertificationModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC17235DA1CD00770E7C /* PersonalCertificationModel.m */; };
  658. C7D6BC99235DA1CE00770E7C /* PersonalCertificationHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC1B235DA1CD00770E7C /* PersonalCertificationHeaderView.m */; };
  659. C7D6BC9A235DA1CE00770E7C /* PersonalCertificationHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC1C235DA1CD00770E7C /* PersonalCertificationHeaderView.xib */; };
  660. C7D6BC9B235DA1CE00770E7C /* PersonalCertificationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC1E235DA1CD00770E7C /* PersonalCertificationTableViewCell.m */; };
  661. C7D6BC9C235DA1CE00770E7C /* PersonalCertificationTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC1F235DA1CD00770E7C /* PersonalCertificationTableViewCell.xib */; };
  662. C7D6BC9D235DA1CE00770E7C /* MyDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC22235DA1CD00770E7C /* MyDetailViewController.m */; };
  663. C7D6BC9E235DA1CE00770E7C /* MyDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC23235DA1CD00770E7C /* MyDetailViewController.xib */; };
  664. C7D6BC9F235DA1CE00770E7C /* MyDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC25235DA1CD00770E7C /* MyDetailModel.m */; };
  665. C7D6BCA0235DA1CE00770E7C /* MyDetailTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC29235DA1CD00770E7C /* MyDetailTableViewCell.xib */; };
  666. C7D6BCA1235DA1CE00770E7C /* MyDetailTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC2A235DA1CD00770E7C /* MyDetailTableViewCell.m */; };
  667. C7D6BCA2235DA1CE00770E7C /* MyModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC2D235DA1CD00770E7C /* MyModel.m */; };
  668. C7D6BCA3235DA1CE00770E7C /* MyTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC2F235DA1CD00770E7C /* MyTableViewCell.m */; };
  669. C7D6BCA4235DA1CE00770E7C /* MyTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC31235DA1CD00770E7C /* MyTableViewCell.xib */; };
  670. C7D6BCA5235DA1CE00770E7C /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC34235DA1CD00770E7C /* AboutViewController.m */; };
  671. C7D6BCA6235DA1CE00770E7C /* AboutViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC36235DA1CD00770E7C /* AboutViewController.xib */; };
  672. C7D6BCA7235DA1CE00770E7C /* FeedbackViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC38235DA1CD00770E7C /* FeedbackViewController.xib */; };
  673. C7D6BCA8235DA1CE00770E7C /* FeedbackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC3A235DA1CD00770E7C /* FeedbackViewController.m */; };
  674. C7D6BCA9235DA1CE00770E7C /* SettingViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC3D235DA1CD00770E7C /* SettingViewController.xib */; };
  675. C7D6BCAA235DA1CE00770E7C /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC3E235DA1CD00770E7C /* SettingViewController.m */; };
  676. C7D6BCAB235DA1CE00770E7C /* BlacklistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC41235DA1CD00770E7C /* BlacklistViewController.m */; };
  677. C7D6BCAC235DA1CE00770E7C /* BlacklistViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC42235DA1CD00770E7C /* BlacklistViewController.xib */; };
  678. C7D6BCAD235DA1CE00770E7C /* BlacklistModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC46235DA1CD00770E7C /* BlacklistModel.m */; };
  679. C7D6BCAE235DA1CE00770E7C /* BlacklistTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC48235DA1CD00770E7C /* BlacklistTableViewCell.m */; };
  680. C7D6BCAF235DA1CE00770E7C /* BlacklistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC49235DA1CD00770E7C /* BlacklistTableViewCell.xib */; };
  681. C7D6BCB0235DA1CE00770E7C /* SettingModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC4D235DA1CD00770E7C /* SettingModel.m */; };
  682. C7D6BCB1235DA1CE00770E7C /* AccountAndSecurityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC51235DA1CD00770E7C /* AccountAndSecurityViewController.m */; };
  683. C7D6BCB2235DA1CE00770E7C /* AccountAndSecurityViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC52235DA1CD00770E7C /* AccountAndSecurityViewController.xib */; };
  684. C7D6BCB3235DA1CE00770E7C /* AccountAndSecurityModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC55235DA1CD00770E7C /* AccountAndSecurityModel.m */; };
  685. C7D6BCB4235DA1CE00770E7C /* AccountAndSecurityTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC57235DA1CD00770E7C /* AccountAndSecurityTableViewCell.m */; };
  686. C7D6BCB5235DA1CE00770E7C /* AccountAndSecurityTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC58235DA1CD00770E7C /* AccountAndSecurityTableViewCell.xib */; };
  687. C7D6BCB6235DA1CE00770E7C /* ReplacePhoneNumberViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC5C235DA1CD00770E7C /* ReplacePhoneNumberViewController.xib */; };
  688. C7D6BCB7235DA1CE00770E7C /* ReplacePhoneNumberViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC5E235DA1CD00770E7C /* ReplacePhoneNumberViewController.m */; };
  689. C7D6BCB8235DA1CE00770E7C /* LearninglistViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC61235DA1CD00770E7C /* LearninglistViewController.xib */; };
  690. C7D6BCB9235DA1CE00770E7C /* LearninglistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC63235DA1CD00770E7C /* LearninglistViewController.m */; };
  691. C7D6BCBA235DA1CE00770E7C /* LearninglistTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC65235DA1CD00770E7C /* LearninglistTableViewCell.m */; };
  692. C7D6BCBB235DA1CE00770E7C /* LearninglistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC67235DA1CD00770E7C /* LearninglistTableViewCell.xib */; };
  693. C7D6BCBC235DA1CE00770E7C /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC6A235DA1CD00770E7C /* LoginViewController.m */; };
  694. C7D6BCBD235DA1CE00770E7C /* LoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC6B235DA1CD00770E7C /* LoginViewController.xib */; };
  695. C7D6BCBE235DA1CE00770E7C /* BindMobileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BC6F235DA1CD00770E7C /* BindMobileViewController.m */; };
  696. C7D6BCBF235DA1CE00770E7C /* BindMobileViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7D6BC70235DA1CD00770E7C /* BindMobileViewController.xib */; };
  697. C7D6BCC2235DA28500770E7C /* WorkFlowController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BCC1235DA28500770E7C /* WorkFlowController.m */; };
  698. C7D6BCCA235DD7A700770E7C /* DrawerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BCC9235DD7A700770E7C /* DrawerView.m */; };
  699. C7D6BCCE235DDF3F00770E7C /* DrawerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6BCCD235DDF3F00770E7C /* DrawerCell.m */; };
  700. C7DBAE4F237A87E100D427DD /* FwzBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7DBAE4E237A87E100D427DD /* FwzBaseView.m */; };
  701. C7E03AD523CD89EA00A97589 /* InputGongwenFileCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E03AD323CD89EA00A97589 /* InputGongwenFileCell.m */; };
  702. C7E03AD623CD89EA00A97589 /* InputGongwenFileCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7E03AD423CD89EA00A97589 /* InputGongwenFileCell.xib */; };
  703. C7E1001F236DB2D700803CFA /* TaasdasdbleVieasdsawCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E1001E236DB2D700803CFA /* TaasdasdbleVieasdsawCell.m */; };
  704. C7E125AA23793AA60067F275 /* JpushTool.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E125A923793AA50067F275 /* JpushTool.m */; };
  705. C7E17CC0236D7F7800C53DB8 /* InPutGongWenCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E17CBE236D7F7800C53DB8 /* InPutGongWenCell.m */; };
  706. C7E17CC1236D7F7800C53DB8 /* InPutGongWenCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7E17CBF236D7F7800C53DB8 /* InPutGongWenCell.xib */; };
  707. C7E3E2F5237179AA0013BBDD /* FootCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E3E2F3237179AA0013BBDD /* FootCollectionReusableView.m */; };
  708. C7E3E2F6237179AA0013BBDD /* FootCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7E3E2F4237179AA0013BBDD /* FootCollectionReusableView.xib */; };
  709. C7EE366423BAF631002EB3BF /* MeetingFecordDetailsController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE366223BAF631002EB3BF /* MeetingFecordDetailsController.m */; };
  710. C7EE366523BAF631002EB3BF /* MeetingFecordDetailsController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7EE366323BAF631002EB3BF /* MeetingFecordDetailsController.xib */; };
  711. C7EE366923BAFA71002EB3BF /* MeetingDetailsHeadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE366723BAFA71002EB3BF /* MeetingDetailsHeadCell.m */; };
  712. C7EE366A23BAFA71002EB3BF /* MeetingDetailsHeadCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7EE366823BAFA71002EB3BF /* MeetingDetailsHeadCell.xib */; };
  713. C7EE366E23BAFD2E002EB3BF /* FecordDetailsContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE366C23BAFD2E002EB3BF /* FecordDetailsContentCell.m */; };
  714. C7EE366F23BAFD2E002EB3BF /* FecordDetailsContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7EE366D23BAFD2E002EB3BF /* FecordDetailsContentCell.xib */; };
  715. C7EE367323BAFE6E002EB3BF /* FecordDetailsGoodsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE367123BAFE6E002EB3BF /* FecordDetailsGoodsCell.m */; };
  716. C7EE367423BAFE6E002EB3BF /* FecordDetailsGoodsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7EE367223BAFE6E002EB3BF /* FecordDetailsGoodsCell.xib */; };
  717. C7EE367823BB2D57002EB3BF /* NewMeetingFecordDetailsController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE367623BB2D57002EB3BF /* NewMeetingFecordDetailsController.m */; };
  718. C7EE367923BB2D57002EB3BF /* NewMeetingFecordDetailsController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C7EE367723BB2D57002EB3BF /* NewMeetingFecordDetailsController.xib */; };
  719. C7F61619238B62FF008AF22D /* AddLookUpUserSecondVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C7F61618238B62FF008AF22D /* AddLookUpUserSecondVC.m */; };
  720. C7F61622238BF67B008AF22D /* SWForm.gif in Resources */ = {isa = PBXBuildFile; fileRef = C7F61621238BF67B008AF22D /* SWForm.gif */; };
  721. C7F61628238C068A008AF22D /* AppUserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7F61626238C068A008AF22D /* AppUserModel.m */; };
  722. C7F6162B238C06F0008AF22D /* UserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C7F61629238C06F0008AF22D /* UserManager.m */; };
  723. EB03C7F22493637300B2EF18 /* BookVideoSetAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB03C7EF2493637300B2EF18 /* BookVideoSetAlert.m */; };
  724. EB03C7F32493637300B2EF18 /* BookVideoSetAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB03C7F02493637300B2EF18 /* BookVideoSetAlert.xib */; };
  725. EB03C7F724936AA900B2EF18 /* BookSetBgMusicAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB03C7F424936AA800B2EF18 /* BookSetBgMusicAlert.xib */; };
  726. EB03C7F824936AA900B2EF18 /* BookSetBgMusicAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB03C7F624936AA800B2EF18 /* BookSetBgMusicAlert.m */; };
  727. EB03C7FC2493703100B2EF18 /* BookSelectMusicAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB03C7FA2493703100B2EF18 /* BookSelectMusicAlert.m */; };
  728. EB03C7FD2493703100B2EF18 /* BookSelectMusicAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB03C7FB2493703100B2EF18 /* BookSelectMusicAlert.xib */; };
  729. EB03C801249375A400B2EF18 /* BookSelectMusicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB03C7FF249375A400B2EF18 /* BookSelectMusicCell.m */; };
  730. EB03C802249375A400B2EF18 /* BookSelectMusicCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB03C800249375A400B2EF18 /* BookSelectMusicCell.xib */; };
  731. EB03C80524937C2000B2EF18 /* BookSelectMusicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB03C80424937C2000B2EF18 /* BookSelectMusicModel.m */; };
  732. EB05E109240CEDAF00D9E276 /* MyPcUpdata.m in Sources */ = {isa = PBXBuildFile; fileRef = EB05E108240CEDAF00D9E276 /* MyPcUpdata.m */; };
  733. EB095CDD24D13BBA00493536 /* ReplyModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB095CDC24D13BBA00493536 /* ReplyModel.m */; };
  734. EB095CE024D1701600493536 /* ReplayMeSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB095CDF24D1701600493536 /* ReplayMeSearchVC.m */; };
  735. EB095CE324D175DA00493536 /* ReplayLikeSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB095CE224D175DA00493536 /* ReplayLikeSearchVC.m */; };
  736. EB09BF2D23B1A32B001CCBC7 /* WaitWorkLabelModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB09BF2C23B1A32B001CCBC7 /* WaitWorkLabelModel.m */; };
  737. EB09BF3023B1AA19001CCBC7 /* WaitWorkWarnAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB09BF2F23B1AA19001CCBC7 /* WaitWorkWarnAlert.m */; };
  738. EB0A7391247B8B8B00DB75CB /* BookBillboardVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0A7390247B8B8B00DB75CB /* BookBillboardVC.m */; };
  739. EB0A7395247B9F7600DB75CB /* BookBillCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0A7393247B9F7600DB75CB /* BookBillCell.m */; };
  740. EB0A7396247B9F7600DB75CB /* BookBillCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB0A7394247B9F7600DB75CB /* BookBillCell.xib */; };
  741. EB0A7399247BA42500DB75CB /* BookBillModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0A7398247BA42500DB75CB /* BookBillModel.m */; };
  742. EB0A73A2247BC93800DB75CB /* BookBillBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0A73A0247BC93800DB75CB /* BookBillBookCell.m */; };
  743. EB0A73A3247BC93800DB75CB /* BookBillBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB0A73A1247BC93800DB75CB /* BookBillBookCell.xib */; };
  744. EB0A73A7247BC95900DB75CB /* BookBillCousreCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0A73A5247BC95900DB75CB /* BookBillCousreCell.m */; };
  745. EB0A73A8247BC95900DB75CB /* BookBillCousreCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB0A73A6247BC95900DB75CB /* BookBillCousreCell.xib */; };
  746. EB0A73AC247BC96C00DB75CB /* BookBillMusicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0A73AA247BC96C00DB75CB /* BookBillMusicCell.m */; };
  747. EB0A73AD247BC96C00DB75CB /* BookBillMusicCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB0A73AB247BC96C00DB75CB /* BookBillMusicCell.xib */; };
  748. EB0BBB7C23D2978F005C850C /* ChatMsgNoticeSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0BBB7B23D2978E005C850C /* ChatMsgNoticeSearchVC.m */; };
  749. EB0BDF4D244D49F1009F6434 /* MailListSortVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0BDF4C244D49F1009F6434 /* MailListSortVC.m */; };
  750. EB0DBF0323ADA8A200E977ED /* MyTDTopicSelectExtentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB0DBF0023ADA8A200E977ED /* MyTDTopicSelectExtentCell.xib */; };
  751. EB0DBF0423ADA8A200E977ED /* MyTDTopicSelectExtentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0DBF0123ADA8A200E977ED /* MyTDTopicSelectExtentCell.m */; };
  752. EB0DBF0723ADA8EE00E977ED /* MyTDTSEModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0DBF0623ADA8EE00E977ED /* MyTDTSEModel.m */; };
  753. EB0DBF0A23AE1EF200E977ED /* NewWaitWorkVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0DBF0923AE1EF200E977ED /* NewWaitWorkVC.m */; };
  754. EB0DBF0D23AE3D9700E977ED /* WaitWorkLevelView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0DBF0C23AE3D9700E977ED /* WaitWorkLevelView.m */; };
  755. EB0DBF0F23AE3DF800E977ED /* WaitWorkLevelView.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB0DBF0E23AE3DF800E977ED /* WaitWorkLevelView.xib */; };
  756. EB0F64C523A9DA2B00AD56A0 /* MyTDTopicGroupManageVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0F64C423A9DA2B00AD56A0 /* MyTDTopicGroupManageVC.m */; };
  757. EB0F64CC23A9DAD000AD56A0 /* TopicGroupManageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0F64CA23A9DAD000AD56A0 /* TopicGroupManageCell.m */; };
  758. EB0F64CD23A9DAD000AD56A0 /* TopicGroupManageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB0F64CB23A9DAD000AD56A0 /* TopicGroupManageCell.xib */; };
  759. EB0F64D023A9EE5900AD56A0 /* TopicGroupManageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0F64CF23A9EE5900AD56A0 /* TopicGroupManageModel.m */; };
  760. EB0F64D323AA096A00AD56A0 /* MyTDTopicGroupUserVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0F64D223AA096A00AD56A0 /* MyTDTopicGroupUserVC.m */; };
  761. EB0F64D623AA528A00AD56A0 /* TopicListItemModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0F64D523AA528A00AD56A0 /* TopicListItemModel.m */; };
  762. EB0F64D923AA529400AD56A0 /* TopicListSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0F64D823AA529400AD56A0 /* TopicListSubModel.m */; };
  763. EB0FA5D0241F6DBD00BF8558 /* HomeScrCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB0FA5CE241F6DBD00BF8558 /* HomeScrCell.m */; };
  764. EB0FA5D1241F6DBD00BF8558 /* HomeScrCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB0FA5CF241F6DBD00BF8558 /* HomeScrCell.xib */; };
  765. EB12500A23CC359400143436 /* RichFileCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB12500823CC359400143436 /* RichFileCell.m */; };
  766. EB18108C24888DC3009EDEF5 /* BookTextBookVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB18108B24888DC3009EDEF5 /* BookTextBookVC.m */; };
  767. EB181090248894F9009EDEF5 /* BookTextBookTopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB18108E248894F9009EDEF5 /* BookTextBookTopCell.m */; };
  768. EB181091248894F9009EDEF5 /* BookTextBookTopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB18108F248894F9009EDEF5 /* BookTextBookTopCell.xib */; };
  769. EB1810942488A5DF009EDEF5 /* BookTextBookModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1810932488A5DF009EDEF5 /* BookTextBookModel.m */; };
  770. EB1810982488C0DB009EDEF5 /* BookTextBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1810962488C0DB009EDEF5 /* BookTextBookCell.m */; };
  771. EB1810992488C0DB009EDEF5 /* BookTextBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB1810972488C0DB009EDEF5 /* BookTextBookCell.xib */; };
  772. EB18109D2488DB5F009EDEF5 /* BookTextTopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB18109B2488DB5F009EDEF5 /* BookTextTopCell.m */; };
  773. EB18109E2488DB5F009EDEF5 /* BookTextTopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB18109C2488DB5F009EDEF5 /* BookTextTopCell.xib */; };
  774. EB195A58252174D700EA68D3 /* BookCommentView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB195A56252174D700EA68D3 /* BookCommentView.m */; };
  775. EB195A59252174D700EA68D3 /* BookCommentView.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB195A57252174D700EA68D3 /* BookCommentView.xib */; };
  776. EB195A5D252185E000EA68D3 /* BookCommentVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB195A5B252185E000EA68D3 /* BookCommentVC.m */; };
  777. EB195A612521BA1600EA68D3 /* BookCommentHeadModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB195A602521BA1600EA68D3 /* BookCommentHeadModel.m */; };
  778. EB1BA21323FFD6E500202452 /* H6ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1BA21223FFD6E500202452 /* H6ViewController.m */; };
  779. EB1D052A24A9EA6C00796A7E /* BookNavModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1D052924A9EA6C00796A7E /* BookNavModel.m */; };
  780. EB1D158424C807A800C82FED /* TopicShowListView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1D158324C807A800C82FED /* TopicShowListView.m */; };
  781. EB1D158824C8329D00C82FED /* MoveMegAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1D158524C8329D00C82FED /* MoveMegAlert.m */; };
  782. EB1D158924C8329D00C82FED /* MoveMegAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB1D158724C8329D00C82FED /* MoveMegAlert.xib */; };
  783. EB1E0F73246CD5A300D4C3DE /* BookAllLookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E0F71246CD5A300D4C3DE /* BookAllLookCell.m */; };
  784. EB1E0F74246CD5A300D4C3DE /* BookAllLookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB1E0F72246CD5A300D4C3DE /* BookAllLookCell.xib */; };
  785. EB1E0F77246CE49100D4C3DE /* BookContentNavVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E0F76246CE49100D4C3DE /* BookContentNavVC.m */; };
  786. EB1E0F7B246D0DA700D4C3DE /* BookContentLeftCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E0F79246D0DA700D4C3DE /* BookContentLeftCell.m */; };
  787. EB1E0F7C246D0DA700D4C3DE /* BookContentLeftCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB1E0F7A246D0DA700D4C3DE /* BookContentLeftCell.xib */; };
  788. EB1E0F7F246D0FDB00D4C3DE /* BookContentLeftModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E0F7E246D0FDB00D4C3DE /* BookContentLeftModel.m */; };
  789. EB1E0F82246D0FF300D4C3DE /* BookContentTopModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E0F81246D0FF300D4C3DE /* BookContentTopModel.m */; };
  790. EB1E0F85246D100200D4C3DE /* BookContentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E0F84246D100200D4C3DE /* BookContentModel.m */; };
  791. EB1E0F89246D17B600D4C3DE /* BookContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E0F87246D17B600D4C3DE /* BookContentCell.m */; };
  792. EB1E0F8A246D17B600D4C3DE /* BookContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB1E0F88246D17B600D4C3DE /* BookContentCell.xib */; };
  793. EB1E0F8E246D4A9700D4C3DE /* BookContentTopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E0F8C246D4A9700D4C3DE /* BookContentTopCell.m */; };
  794. EB1E0F8F246D4A9700D4C3DE /* BookContentTopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB1E0F8D246D4A9700D4C3DE /* BookContentTopCell.xib */; };
  795. EB2B5A72242B0CA40087E1E7 /* MyNewFindUserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2B5A70242B0CA40087E1E7 /* MyNewFindUserCell.m */; };
  796. EB2B5A73242B0CA40087E1E7 /* MyNewFindUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB2B5A71242B0CA40087E1E7 /* MyNewFindUserCell.xib */; };
  797. EB2B5A76242B36010087E1E7 /* OtherNoteBookVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2B5A75242B36010087E1E7 /* OtherNoteBookVC.m */; };
  798. EB2CC02023BDBEAA0059F942 /* SearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2CC01F23BDBEAA0059F942 /* SearchCell.m */; };
  799. EB2CC02323BDDE490059F942 /* ChatGroupSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2CC02223BDDE490059F942 /* ChatGroupSearchVC.m */; };
  800. EB2E46FD23A46B5F00CAF0D3 /* TDGroupSearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2E46FB23A46B5F00CAF0D3 /* TDGroupSearchCell.m */; };
  801. EB2E46FE23A46B5F00CAF0D3 /* TDGroupSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB2E46FC23A46B5F00CAF0D3 /* TDGroupSearchCell.xib */; };
  802. EB2E470223A47B9000CAF0D3 /* NewRowUserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2E470023A47B9000CAF0D3 /* NewRowUserCell.m */; };
  803. EB2E470323A47B9000CAF0D3 /* NewRowUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB2E470123A47B9000CAF0D3 /* NewRowUserCell.xib */; };
  804. EB2E470623A48BAB00CAF0D3 /* TDQrJoinVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2E470523A48BAB00CAF0D3 /* TDQrJoinVC.m */; };
  805. EB2E470923A4B55D00CAF0D3 /* SmartBar.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2E470823A4B55D00CAF0D3 /* SmartBar.m */; };
  806. EB2E470C23A4B78300CAF0D3 /* SmartBarModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2E470B23A4B78300CAF0D3 /* SmartBarModel.m */; };
  807. EB2E471223A4D32400CAF0D3 /* NewTopicVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2E471123A4D32400CAF0D3 /* NewTopicVC.m */; };
  808. EB31796B251C6E01001E01D3 /* BookBillArticeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB317968251C6E00001E01D3 /* BookBillArticeCell.m */; };
  809. EB31796C251C6E01001E01D3 /* BookBillArticeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB31796A251C6E01001E01D3 /* BookBillArticeCell.xib */; };
  810. EB317970251CA2D0001E01D3 /* BookBillListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB31796E251CA2D0001E01D3 /* BookBillListModel.m */; };
  811. EB38513F24652BA700E28172 /* TDGroupRoleVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB38513E24652BA700E28172 /* TDGroupRoleVC.m */; };
  812. EB38514224652EB000E28172 /* TDGroupLabelVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB38514124652EB000E28172 /* TDGroupLabelVC.m */; };
  813. EB38514624653A2200E28172 /* TDGroupLabelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB38514424653A2200E28172 /* TDGroupLabelCell.m */; };
  814. EB38514724653A2200E28172 /* TDGroupLabelCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB38514524653A2200E28172 /* TDGroupLabelCell.xib */; };
  815. EB38514A24653F5D00E28172 /* AddGroupLabelVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB38514924653F5D00E28172 /* AddGroupLabelVC.m */; };
  816. EB3B6C8224BD985800FA60F8 /* MailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3B6C8124BD985800FA60F8 /* MailModel.m */; };
  817. EB3B6C8524BD993B00FA60F8 /* MailSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3B6C8424BD993B00FA60F8 /* MailSubModel.m */; };
  818. EB3CB79624E4F0F100F399E7 /* GroupVerifyVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3CB79524E4F0F100F399E7 /* GroupVerifyVC.m */; };
  819. EB3CB79924E5152800F399E7 /* NoteTopicDraftListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3CB79724E5152800F399E7 /* NoteTopicDraftListVC.m */; };
  820. EB3CB79C24E51FFC00F399E7 /* NoteTopicDraftSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3CB79B24E51FFC00F399E7 /* NoteTopicDraftSearchVC.m */; };
  821. EB3CB79F24E5481B00F399E7 /* GroupSynopsisUserVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3CB79E24E5481B00F399E7 /* GroupSynopsisUserVC.m */; };
  822. EB3CB7A224E54D8700F399E7 /* GroupSynopsisUserSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3CB7A124E54D8700F399E7 /* GroupSynopsisUserSearchVC.m */; };
  823. EB3DCA4724551B0E000A0189 /* ShareListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3DCA4624551B0E000A0189 /* ShareListVC.m */; };
  824. EB3DCA4F24555299000A0189 /* ShareSysVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3DCA4E24555299000A0189 /* ShareSysVC.m */; };
  825. EB3DCA52245552AE000A0189 /* ShareCusVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3DCA51245552AE000A0189 /* ShareCusVC.m */; };
  826. EB3EAFD423A10CE600C38AB4 /* WaitWorkCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3EAFD223A10CE600C38AB4 /* WaitWorkCell.m */; };
  827. EB3EAFD523A10CE600C38AB4 /* WaitWorkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB3EAFD323A10CE600C38AB4 /* WaitWorkCell.xib */; };
  828. EB3EAFD823A1D1FC00C38AB4 /* MenuListView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3EAFD723A1D1FC00C38AB4 /* MenuListView.m */; };
  829. EB3EAFDC23A1DAB400C38AB4 /* MenuListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3EAFDA23A1DAB400C38AB4 /* MenuListCell.m */; };
  830. EB3EAFDD23A1DAB400C38AB4 /* MenuListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB3EAFDB23A1DAB400C38AB4 /* MenuListCell.xib */; };
  831. EB3EAFE023A22E4100C38AB4 /* TDGroupQrcodeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3EAFDF23A22E4100C38AB4 /* TDGroupQrcodeVC.m */; };
  832. EB3EAFE223A22EBF00C38AB4 /* TDGroup.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EB3EAFE123A22EBE00C38AB4 /* TDGroup.storyboard */; };
  833. EB3EAFE823A2437E00C38AB4 /* TDGroupSearchResultVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3EAFE723A2437E00C38AB4 /* TDGroupSearchResultVC.m */; };
  834. EB3EAFEE23A26B9B00C38AB4 /* TDGroupInfoListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3EAFED23A26B9B00C38AB4 /* TDGroupInfoListVC.m */; };
  835. EB3EAFF123A31C7D00C38AB4 /* TDGroupInfoDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3EAFF023A31C7D00C38AB4 /* TDGroupInfoDetailVC.m */; };
  836. EB41513B246BC64800030371 /* BookStore.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EB41513A246BC64800030371 /* BookStore.storyboard */; };
  837. EB41513E246BC71500030371 /* BookStoreHome.m in Sources */ = {isa = PBXBuildFile; fileRef = EB41513D246BC71500030371 /* BookStoreHome.m */; };
  838. EB415142246BCD6C00030371 /* BookHomeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB415140246BCD6C00030371 /* BookHomeCell.m */; };
  839. EB415143246BCD6C00030371 /* BookHomeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB415141246BCD6C00030371 /* BookHomeCell.xib */; };
  840. EB415146246BD1CB00030371 /* BookHomeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB415145246BD1CB00030371 /* BookHomeModel.m */; };
  841. EB41514A246BD58F00030371 /* BookHomeSubCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB415148246BD58F00030371 /* BookHomeSubCell.m */; };
  842. EB41514B246BD58F00030371 /* BookHomeSubCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB415149246BD58F00030371 /* BookHomeSubCell.xib */; };
  843. EB41514E246BDEB900030371 /* BookHomeSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB41514D246BDEB900030371 /* BookHomeSubModel.m */; };
  844. EB415151246C001D00030371 /* BookMingVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB415150246C001D00030371 /* BookMingVC.m */; };
  845. EB415154246C071300030371 /* BookAllLookVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB415153246C071300030371 /* BookAllLookVC.m */; };
  846. EB4310B324CE7D1F00481097 /* SourceGroupSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4310B224CE7D1E00481097 /* SourceGroupSearchVC.m */; };
  847. EB4310B624CEAF6D00481097 /* MyTDTopicGroupSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4310B524CEAF6D00481097 /* MyTDTopicGroupSearchVC.m */; };
  848. EB440029247CB7AE0094C333 /* BookMingDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB440028247CB7AE0094C333 /* BookMingDetailVC.m */; };
  849. EB44002C247D12630094C333 /* BookSubArticeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44002B247D12630094C333 /* BookSubArticeVC.m */; };
  850. EB44002F247D127B0094C333 /* BookSubVideoVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44002E247D127B0094C333 /* BookSubVideoVC.m */; };
  851. EB440032247D12910094C333 /* BookSubMusicVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB440031247D12910094C333 /* BookSubMusicVC.m */; };
  852. EB440036247D15AD0094C333 /* BookSubArticeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB440034247D15AD0094C333 /* BookSubArticeCell.m */; };
  853. EB440037247D15AD0094C333 /* BookSubArticeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB440035247D15AD0094C333 /* BookSubArticeCell.xib */; };
  854. EB440FC523A32302006BCB95 /* TDGroupInfoDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB440FC323A32302006BCB95 /* TDGroupInfoDetailCell.m */; };
  855. EB440FC623A32302006BCB95 /* TDGroupInfoDetailCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB440FC423A32302006BCB95 /* TDGroupInfoDetailCell.xib */; };
  856. EB440FC923A3324F006BCB95 /* createSearchBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB440FC823A3324F006BCB95 /* createSearchBarView.m */; };
  857. EB440FCC23A33970006BCB95 /* TDGroupInfoListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB440FCB23A33970006BCB95 /* TDGroupInfoListModel.m */; };
  858. EB440FCF23A33982006BCB95 /* TDGroupInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB440FCE23A33982006BCB95 /* TDGroupInfoModel.m */; };
  859. EB440FD123A36BCE006BCB95 /* TDGroupInfo.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EB440FD023A36BCE006BCB95 /* TDGroupInfo.storyboard */; };
  860. EB440FD423A36D4C006BCB95 /* TDGroupInfoChangeVc.m in Sources */ = {isa = PBXBuildFile; fileRef = EB440FD323A36D4C006BCB95 /* TDGroupInfoChangeVc.m */; };
  861. EB44408724A1CA5E00B2E212 /* HomeSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44408624A1CA5E00B2E212 /* HomeSubModel.m */; };
  862. EB44408A24A1CBB600B2E212 /* HomeSubItemModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44408924A1CBB600B2E212 /* HomeSubItemModel.m */; };
  863. EB44409624A1F5D200B2E212 /* IndexViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44409524A1F5D200B2E212 /* IndexViewController.m */; };
  864. EB44409A24A1FF7400B2E212 /* HomeRecommendVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44409924A1FF7400B2E212 /* HomeRecommendVC.m */; };
  865. EB44409D24A2110D00B2E212 /* HomeBigshotVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44409C24A2110D00B2E212 /* HomeBigshotVC.m */; };
  866. EB44982624E3AFE80040A9FF /* GroupSquareSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44982524E3AFE80040A9FF /* GroupSquareSearchVC.m */; };
  867. EB44982924E3E13D0040A9FF /* GroupListView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44982824E3E13D0040A9FF /* GroupListView.m */; };
  868. EB4B652524C003050041A82C /* MailAddUserSearch.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4B652424C003050041A82C /* MailAddUserSearch.m */; };
  869. EB4B652824C01DCE0041A82C /* MailVerifyVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4B652724C01DCE0041A82C /* MailVerifyVC.m */; };
  870. EB4B652B24C04DED0041A82C /* MailEditVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4B652A24C04DED0041A82C /* MailEditVC.m */; };
  871. EB4B653124C19A060041A82C /* MailGroupListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4B653024C19A060041A82C /* MailGroupListVC.m */; };
  872. EB4B653424C19E4B0041A82C /* MailGroupListSerachVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4B653324C19E4B0041A82C /* MailGroupListSerachVC.m */; };
  873. EB4ECF12241101A000B60F05 /* CountDataVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4ECF11241101A000B60F05 /* CountDataVC.m */; };
  874. EB50DAE223C8967400A14FED /* ReadListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB50DAE123C8967400A14FED /* ReadListVC.m */; };
  875. EB52714E2428555C00B37D2A /* TDInterLeterSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB52714D2428555C00B37D2A /* TDInterLeterSearchVC.m */; };
  876. EB568FBD239B369D000827B0 /* FindChatItemsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB568FBC239B369D000827B0 /* FindChatItemsModel.m */; };
  877. EB568FC1239B40C7000827B0 /* FindResultViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB568FBF239B40C7000827B0 /* FindResultViewCell.m */; };
  878. EB568FC2239B40C7000827B0 /* FindResultViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB568FC0239B40C7000827B0 /* FindResultViewCell.xib */; };
  879. EB568FC5239B47A3000827B0 /* ChatResultVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB568FC4239B47A3000827B0 /* ChatResultVC.m */; };
  880. EB568FC8239B7470000827B0 /* ChatJoinGroupVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB568FC7239B7470000827B0 /* ChatJoinGroupVC.m */; };
  881. EB56DA0723BB31AF00FE7262 /* EMChatFileShowVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB56DA0623BB31AF00FE7262 /* EMChatFileShowVC.m */; };
  882. EB56DA0A23BB431500FE7262 /* ChatListMoveVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB56DA0923BB431500FE7262 /* ChatListMoveVC.m */; };
  883. EB581CEE23A0F5C800C451B0 /* WaitWorkVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB581CED23A0F5C800C451B0 /* WaitWorkVC.m */; };
  884. EB581CF623A0F72000C451B0 /* WaitWork.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EB581CF523A0F72000C451B0 /* WaitWork.storyboard */; };
  885. EB5A587023AB512100B93149 /* MyTDTopicDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5A586F23AB512100B93149 /* MyTDTopicDetailVC.m */; };
  886. EB5A587323AB7D5800B93149 /* MyTDTopicSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5A587223AB7D5800B93149 /* MyTDTopicSearchVC.m */; };
  887. EB5E18C5247F88E800EDB76E /* BookPublicBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5E18C3247F88E800EDB76E /* BookPublicBookCell.m */; };
  888. EB5E18C6247F88E800EDB76E /* BookPublicBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB5E18C4247F88E800EDB76E /* BookPublicBookCell.xib */; };
  889. EB5E18CC247F969D00EDB76E /* BookPeriodicaDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5E18CB247F969D00EDB76E /* BookPeriodicaDetailVC.m */; };
  890. EB5E18D3247FAB2100EDB76E /* BookSubPeriodicaCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5E18D1247FAB2100EDB76E /* BookSubPeriodicaCell.m */; };
  891. EB5E18D4247FAB2100EDB76E /* BookSubPeriodicaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB5E18D2247FAB2100EDB76E /* BookSubPeriodicaCell.xib */; };
  892. EB5F44F42474BFAD008D316D /* HomeGoodBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5F44F22474BFAD008D316D /* HomeGoodBookCell.m */; };
  893. EB5F44F52474BFAD008D316D /* HomeGoodBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB5F44F32474BFAD008D316D /* HomeGoodBookCell.xib */; };
  894. EB5F44F92474C52C008D316D /* HomeGoodBookCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5F44F72474C52C008D316D /* HomeGoodBookCollectCell.m */; };
  895. EB5F44FA2474C52C008D316D /* HomeGoodBookCollectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB5F44F82474C52C008D316D /* HomeGoodBookCollectCell.xib */; };
  896. EB5F44FD2474CCCA008D316D /* BookDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5F44FC2474CCCA008D316D /* BookDetailVC.m */; };
  897. EB5F45012474CE0E008D316D /* BookDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5F44FF2474CE0E008D316D /* BookDetailCell.m */; };
  898. EB5F45022474CE0E008D316D /* BookDetailCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB5F45002474CE0E008D316D /* BookDetailCell.xib */; };
  899. EB5F450524750765008D316D /* BookChanelVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5F450424750765008D316D /* BookChanelVC.m */; };
  900. EB5F45092475093C008D316D /* BookChanelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5F45072475093C008D316D /* BookChanelCell.m */; };
  901. EB5F450A2475093C008D316D /* BookChanelCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB5F45082475093C008D316D /* BookChanelCell.xib */; };
  902. EB629DFC2415E28900A5E0EE /* MeetingDataModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB629DFB2415E28900A5E0EE /* MeetingDataModel.m */; };
  903. EB629DFF2416206200A5E0EE /* _NoInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB629DFE2416206200A5E0EE /* _NoInputAccessoryView.m */; };
  904. EB674D07242E126C003FEC6D /* MoveSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB674D06242E126C003FEC6D /* MoveSearchVC.m */; };
  905. EB6A3D5224A864740067DBFA /* HomeProblemVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6A3D5124A864740067DBFA /* HomeProblemVC.m */; };
  906. EB6A3D5624A8ADC60067DBFA /* BookHomeSubNumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6A3D5424A8ADC60067DBFA /* BookHomeSubNumCell.m */; };
  907. EB6A3D5724A8ADC60067DBFA /* BookHomeSubNumCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB6A3D5524A8ADC60067DBFA /* BookHomeSubNumCell.xib */; };
  908. EB6D1C1623F6B590000D2EF8 /* FileOpenViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6D1C1523F6B590000D2EF8 /* FileOpenViewController.m */; };
  909. EB6D86D424977EFA001D3B6C /* GroupSynopsisVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6D86D324977EFA001D3B6C /* GroupSynopsisVC.m */; };
  910. EB6D86D824978392001D3B6C /* GroupSynopsisCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6D86D624978392001D3B6C /* GroupSynopsisCell.m */; };
  911. EB6D86D924978392001D3B6C /* GroupSynopsisCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB6D86D724978392001D3B6C /* GroupSynopsisCell.xib */; };
  912. EB6E84D0246F99A200BE0524 /* HomeSchoolCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6E84CE246F99A200BE0524 /* HomeSchoolCell.m */; };
  913. EB6E84D1246F99A200BE0524 /* HomeSchoolCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB6E84CF246F99A200BE0524 /* HomeSchoolCell.xib */; };
  914. EB6E84D5246FB90300BE0524 /* HomeUserPrivilegeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6E84D3246FB90300BE0524 /* HomeUserPrivilegeCell.m */; };
  915. EB6E84D6246FB90300BE0524 /* HomeUserPrivilegeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB6E84D4246FB90300BE0524 /* HomeUserPrivilegeCell.xib */; };
  916. EB6E84DA246FD1BF00BE0524 /* HomeWeiCousreCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6E84D8246FD1BF00BE0524 /* HomeWeiCousreCell.m */; };
  917. EB6E84DB246FD1BF00BE0524 /* HomeWeiCousreCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB6E84D9246FD1BF00BE0524 /* HomeWeiCousreCell.xib */; };
  918. EB6E84E2246FDF2400BE0524 /* BookPlayListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6E84E1246FDF2400BE0524 /* BookPlayListVC.m */; };
  919. EB6F001F247381FD00808484 /* HomeProblemTopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6F001D247381FD00808484 /* HomeProblemTopCell.m */; };
  920. EB6F0020247381FD00808484 /* HomeProblemTopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB6F001E247381FD00808484 /* HomeProblemTopCell.xib */; };
  921. EB6F002424738F0100808484 /* HomeProblemTopCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6F002224738F0100808484 /* HomeProblemTopCollectCell.m */; };
  922. EB6F002524738F0100808484 /* HomeProblemTopCollectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB6F002324738F0100808484 /* HomeProblemTopCollectCell.xib */; };
  923. EB6F002D2473B19300808484 /* BookWeiCourseListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6F002C2473B19300808484 /* BookWeiCourseListVC.m */; };
  924. EB71EEFC240E565B0089B1A6 /* FlowAttachmentsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB71EEFB240E565B0089B1A6 /* FlowAttachmentsModel.m */; };
  925. EB77B293239F9A4F0050A3C0 /* ChatNewRowVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB77B292239F9A4F0050A3C0 /* ChatNewRowVC.m */; };
  926. EB77B297239FCAF90050A3C0 /* ChatNewRowCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB77B295239FCAF90050A3C0 /* ChatNewRowCell.m */; };
  927. EB77B298239FCAF90050A3C0 /* ChatNewRowCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB77B296239FCAF90050A3C0 /* ChatNewRowCell.xib */; };
  928. EB7955CB24C695CB00EE9A55 /* MyTDTopicBookVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7955CA24C695CB00EE9A55 /* MyTDTopicBookVC.m */; };
  929. EB7955CF24C6B0BB00EE9A55 /* TopicBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7955CD24C6B0BB00EE9A55 /* TopicBookCell.m */; };
  930. EB7955D024C6B0BB00EE9A55 /* TopicBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB7955CE24C6B0BB00EE9A55 /* TopicBookCell.xib */; };
  931. EB7955D324C6BB4E00EE9A55 /* TopicBookModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7955D224C6BB4E00EE9A55 /* TopicBookModel.m */; };
  932. EB7955D624C6CA6800EE9A55 /* MyTDTopicBookEditVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7955D524C6CA6800EE9A55 /* MyTDTopicBookEditVC.m */; };
  933. EB7DD22C2462620100C6048F /* SourceHomeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7DD22B2462620100C6048F /* SourceHomeVC.m */; };
  934. EB7DD23524629A1B00C6048F /* Source.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EB7DD23424629A1B00C6048F /* Source.storyboard */; };
  935. EB7DD2382462AB5B00C6048F /* GroupSquareVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7DD2372462AB5B00C6048F /* GroupSquareVC.m */; };
  936. EB7DD23C2462B62600C6048F /* GroupSquareCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7DD23A2462B62600C6048F /* GroupSquareCell.m */; };
  937. EB7DD23D2462B62600C6048F /* GroupSquareCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB7DD23B2462B62600C6048F /* GroupSquareCell.xib */; };
  938. EB7DD2402462BC8F00C6048F /* GroupSquareModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7DD23F2462BC8F00C6048F /* GroupSquareModel.m */; };
  939. EB7F373E247E05FC00E7FAD6 /* BookIntroductionVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7F373D247E05FC00E7FAD6 /* BookIntroductionVC.m */; };
  940. EB7F3741247E357E00E7FAD6 /* BookMingArticeDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7F3740247E357E00E7FAD6 /* BookMingArticeDetailVC.m */; };
  941. EB7F3745247E3BEE00E7FAD6 /* BookCardBuyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7F3743247E3BEE00E7FAD6 /* BookCardBuyCell.m */; };
  942. EB7F3746247E3BEE00E7FAD6 /* BookCardBuyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB7F3744247E3BEE00E7FAD6 /* BookCardBuyCell.xib */; };
  943. EB7F374A247E426900E7FAD6 /* BookMingArticeListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7F3748247E426900E7FAD6 /* BookMingArticeListVC.m */; };
  944. EB7F374B247E426900E7FAD6 /* BookMingArticeListVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB7F3749247E426900E7FAD6 /* BookMingArticeListVC.xib */; };
  945. EB7F374F247E63DC00E7FAD6 /* SearchDetailViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7F374D247E63DC00E7FAD6 /* SearchDetailViewCell.m */; };
  946. EB7F3750247E63DC00E7FAD6 /* SearchDetailViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB7F374E247E63DC00E7FAD6 /* SearchDetailViewCell.xib */; };
  947. EB7F3755247E86A000E7FAD6 /* hanjian.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EB7F3754247E869F00E7FAD6 /* hanjian.ttf */; };
  948. EB8143BD2440502B00C439A9 /* HomeListWorkCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8143BB2440502B00C439A9 /* HomeListWorkCell.m */; };
  949. EB8143BE2440502B00C439A9 /* HomeListWorkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB8143BC2440502B00C439A9 /* HomeListWorkCell.xib */; };
  950. EB8143C224407A3E00C439A9 /* AddChanelNoDataCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8143C024407A3E00C439A9 /* AddChanelNoDataCell.m */; };
  951. EB8143C324407A3E00C439A9 /* AddChanelNoDataCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB8143C124407A3E00C439A9 /* AddChanelNoDataCell.xib */; };
  952. EB820AD523BC48CF00B96C6C /* ChatMoveModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB820AD423BC48CF00B96C6C /* ChatMoveModel.m */; };
  953. EB820ADC23BC882B00B96C6C /* SearchBaseVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB820ADB23BC882B00B96C6C /* SearchBaseVC.m */; };
  954. EB820ADF23BC97BA00B96C6C /* MyTDTopicUserSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB820ADE23BC97BA00B96C6C /* MyTDTopicUserSearchVC.m */; };
  955. EB848E962508DE2E006A3ECD /* BookSetPlaySpeedAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB848E942508DE2E006A3ECD /* BookSetPlaySpeedAlert.m */; };
  956. EB848E972508DE2E006A3ECD /* BookSetPlaySpeedAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB848E952508DE2E006A3ECD /* BookSetPlaySpeedAlert.xib */; };
  957. EB85BF4A243DB566006C7A82 /* ChatMsgPersonInfoVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB85BF49243DB566006C7A82 /* ChatMsgPersonInfoVC.m */; };
  958. EB85BF4D243DDAC6006C7A82 /* SearchTabBaseVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB85BF4C243DDAC6006C7A82 /* SearchTabBaseVC.m */; };
  959. EB85BF50243DDB31006C7A82 /* SearchTabCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB85BF4F243DDB31006C7A82 /* SearchTabCell.m */; };
  960. EB85BF53243DDD38006C7A82 /* ChatMsgTopSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB85BF52243DDD38006C7A82 /* ChatMsgTopSearchVC.m */; };
  961. EB8E2CD3239666A800CDFBDA /* EMNotificationHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2B7C239666A800CDFBDA /* EMNotificationHelper.m */; };
  962. EB8E2CD4239666A800CDFBDA /* EMEmojiHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2B7F239666A800CDFBDA /* EMEmojiHelper.m */; };
  963. EB8E2CD5239666A800CDFBDA /* EMConversationHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2B80239666A800CDFBDA /* EMConversationHelper.m */; };
  964. EB8E2CD6239666A900CDFBDA /* UIViewController+HUD.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2B82239666A800CDFBDA /* UIViewController+HUD.m */; };
  965. EB8E2CD7239666A900CDFBDA /* UIViewController+Util.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2B86239666A800CDFBDA /* UIViewController+Util.m */; };
  966. EB8E2CD8239666A900CDFBDA /* NSObject+Alert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2B87239666A800CDFBDA /* NSObject+Alert.m */; };
  967. EB8E2CD9239666A900CDFBDA /* EMDemoOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2B88239666A800CDFBDA /* EMDemoOptions.m */; };
  968. EB8E2CDA239666A900CDFBDA /* EMEmoticonGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2B89239666A800CDFBDA /* EMEmoticonGroup.m */; };
  969. EB8E2CDB239666A900CDFBDA /* close_gray@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B8C239666A800CDFBDA /* close_gray@3x.png */; };
  970. EB8E2CDC239666A900CDFBDA /* uncheck@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B8D239666A800CDFBDA /* uncheck@3x.png */; };
  971. EB8E2CDD239666A900CDFBDA /* back_gary@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B8E239666A800CDFBDA /* back_gary@3x.png */; };
  972. EB8E2CDE239666A900CDFBDA /* user_avatar_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B8F239666A800CDFBDA /* user_avatar_blue@3x.png */; };
  973. EB8E2CDF239666A900CDFBDA /* user_avatar_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B90239666A800CDFBDA /* user_avatar_blue@2x.png */; };
  974. EB8E2CE0239666A900CDFBDA /* back_gary@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B91239666A800CDFBDA /* back_gary@2x.png */; };
  975. EB8E2CE1239666A900CDFBDA /* close_gray@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B92239666A800CDFBDA /* close_gray@2x.png */; };
  976. EB8E2CE2239666A900CDFBDA /* uncheck@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B93239666A800CDFBDA /* uncheck@2x.png */; };
  977. EB8E2CE3239666A900CDFBDA /* navbar_white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B94239666A800CDFBDA /* navbar_white@3x.png */; };
  978. EB8E2CE4239666A900CDFBDA /* close_white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B95239666A800CDFBDA /* close_white@2x.png */; };
  979. EB8E2CE5239666A900CDFBDA /* close_white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B96239666A800CDFBDA /* close_white@3x.png */; };
  980. EB8E2CE6239666A900CDFBDA /* group_avatar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B97239666A800CDFBDA /* group_avatar@2x.png */; };
  981. EB8E2CE7239666A900CDFBDA /* user_avatar_gray@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B98239666A800CDFBDA /* user_avatar_gray@3x.png */; };
  982. EB8E2CE8239666A900CDFBDA /* search_gray@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B99239666A800CDFBDA /* search_gray@3x.png */; };
  983. EB8E2CE9239666A900CDFBDA /* user_avatar_gray@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B9A239666A800CDFBDA /* user_avatar_gray@2x.png */; };
  984. EB8E2CEA239666A900CDFBDA /* search_gray@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B9B239666A800CDFBDA /* search_gray@2x.png */; };
  985. EB8E2CEB239666A900CDFBDA /* group_avatar@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B9C239666A800CDFBDA /* group_avatar@3x.png */; };
  986. EB8E2CEC239666A900CDFBDA /* checked@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B9D239666A800CDFBDA /* checked@3x.png */; };
  987. EB8E2CED239666A900CDFBDA /* user_avatar_me@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B9E239666A800CDFBDA /* user_avatar_me@3x.png */; };
  988. EB8E2CEE239666A900CDFBDA /* checked@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2B9F239666A800CDFBDA /* checked@2x.png */; };
  989. EB8E2CEF239666A900CDFBDA /* EMGlobalVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BA3239666A800CDFBDA /* EMGlobalVariables.m */; };
  990. EB8E2CF0239666A900CDFBDA /* EMBadgeLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BA6239666A800CDFBDA /* EMBadgeLabel.m */; };
  991. EB8E2CF1239666A900CDFBDA /* EMAvatarNameCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BA9239666A800CDFBDA /* EMAvatarNameCell.m */; };
  992. EB8E2CF2239666A900CDFBDA /* libopencore-amrwb.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EB8E2BB2239666A800CDFBDA /* libopencore-amrwb.a */; };
  993. EB8E2CF3239666A900CDFBDA /* libopencore-amrnb.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EB8E2BB3239666A800CDFBDA /* libopencore-amrnb.a */; };
  994. EB8E2CF4239666A900CDFBDA /* wav.mm in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BB8239666A800CDFBDA /* wav.mm */; };
  995. EB8E2CF5239666A900CDFBDA /* amrFileCodec.mm in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BB9239666A800CDFBDA /* amrFileCodec.mm */; };
  996. EB8E2CF6239666A900CDFBDA /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BC2239666A800CDFBDA /* MWPhotoBrowser.m */; };
  997. EB8E2CF7239666A900CDFBDA /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BC3239666A800CDFBDA /* MWCaptionView.m */; };
  998. EB8E2CF8239666A900CDFBDA /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BC6239666A800CDFBDA /* MWZoomingScrollView.m */; };
  999. EB8E2CF9239666A900CDFBDA /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BC7239666A800CDFBDA /* UIImage+MWPhotoBrowser.m */; };
  1000. EB8E2CFA239666A900CDFBDA /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BC9239666A800CDFBDA /* MWTapDetectingImageView.m */; };
  1001. EB8E2CFB239666A900CDFBDA /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BCA239666A800CDFBDA /* MWPhoto.m */; };
  1002. EB8E2CFC239666A900CDFBDA /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BCB239666A800CDFBDA /* MWTapDetectingView.m */; };
  1003. EB8E2CFD239666A900CDFBDA /* MWGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BCD239666A800CDFBDA /* MWGridViewController.m */; };
  1004. EB8E2CFE239666A900CDFBDA /* MWGridCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BD0239666A800CDFBDA /* MWGridCell.m */; };
  1005. EB8E2CFF239666A900CDFBDA /* DACircularProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BD5239666A800CDFBDA /* DACircularProgressView.m */; };
  1006. EB8E2D00239666A900CDFBDA /* PSTCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BDD239666A800CDFBDA /* PSTCollectionViewController.m */; };
  1007. EB8E2D01239666A900CDFBDA /* PSTCollectionViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BDF239666A800CDFBDA /* PSTCollectionViewFlowLayout.m */; };
  1008. EB8E2D02239666A900CDFBDA /* PSTCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BE2239666A800CDFBDA /* PSTCollectionViewCell.m */; };
  1009. EB8E2D03239666A900CDFBDA /* PSTGridLayoutInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BE5239666A800CDFBDA /* PSTGridLayoutInfo.m */; };
  1010. EB8E2D04239666A900CDFBDA /* PSTCollectionViewData.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BE6239666A800CDFBDA /* PSTCollectionViewData.m */; };
  1011. EB8E2D05239666A900CDFBDA /* NSIndexPath+PSTCollectionViewAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BE7239666A800CDFBDA /* NSIndexPath+PSTCollectionViewAdditions.m */; };
  1012. EB8E2D06239666A900CDFBDA /* PSTCollectionViewUpdateItem.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BE8239666A800CDFBDA /* PSTCollectionViewUpdateItem.m */; };
  1013. EB8E2D07239666A900CDFBDA /* PSTGridLayoutSection.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BE9239666A800CDFBDA /* PSTGridLayoutSection.m */; };
  1014. EB8E2D08239666A900CDFBDA /* PSTCollectionViewItemKey.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BEA239666A800CDFBDA /* PSTCollectionViewItemKey.m */; };
  1015. EB8E2D09239666A900CDFBDA /* PSTCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BEB239666A800CDFBDA /* PSTCollectionView.m */; };
  1016. EB8E2D0A239666A900CDFBDA /* PSTGridLayoutRow.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BED239666A800CDFBDA /* PSTGridLayoutRow.m */; };
  1017. EB8E2D0B239666A900CDFBDA /* PSTCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BF1239666A800CDFBDA /* PSTCollectionViewLayout.m */; };
  1018. EB8E2D0C239666A900CDFBDA /* PSTGridLayoutItem.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BF2239666A800CDFBDA /* PSTGridLayoutItem.m */; };
  1019. EB8E2D0D239666A900CDFBDA /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BF5239666A800CDFBDA /* SDWebImageDecoder.m */; };
  1020. EB8E2D0E239666A900CDFBDA /* MWPhotoBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2BF7239666A800CDFBDA /* MWPhotoBrowser.bundle */; };
  1021. EB8E2D0F239666A900CDFBDA /* EMMulticastDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BFA239666A800CDFBDA /* EMMulticastDelegate.m */; };
  1022. EB8E2D10239666A900CDFBDA /* EMTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2BFF239666A800CDFBDA /* EMTextView.m */; };
  1023. EB8E2D11239666A900CDFBDA /* EMRefreshTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C01239666A800CDFBDA /* EMRefreshTableViewController.m */; };
  1024. EB8E2D12239666A900CDFBDA /* EMRefreshViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C03239666A800CDFBDA /* EMRefreshViewController.m */; };
  1025. EB8E2D13239666A900CDFBDA /* EMTextFieldViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C06239666A800CDFBDA /* EMTextFieldViewController.m */; };
  1026. EB8E2D14239666A900CDFBDA /* alert_error@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C08239666A800CDFBDA /* alert_error@2x.png */; };
  1027. EB8E2D15239666A900CDFBDA /* alert_error@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C09239666A800CDFBDA /* alert_error@3x.png */; };
  1028. EB8E2D16239666A900CDFBDA /* alert_default@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C0A239666A800CDFBDA /* alert_default@3x.png */; };
  1029. EB8E2D17239666A900CDFBDA /* alert_success@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C0B239666A800CDFBDA /* alert_success@3x.png */; };
  1030. EB8E2D18239666A900CDFBDA /* EMAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C0C239666A800CDFBDA /* EMAlertController.m */; };
  1031. EB8E2D19239666A900CDFBDA /* alert_success@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C0D239666A800CDFBDA /* alert_success@2x.png */; };
  1032. EB8E2D1A239666A900CDFBDA /* alert_default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C0E239666A800CDFBDA /* alert_default@2x.png */; };
  1033. EB8E2D1B239666A900CDFBDA /* alert_info@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C0F239666A800CDFBDA /* alert_info@3x.png */; };
  1034. EB8E2D1C239666A900CDFBDA /* alert_info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C10239666A800CDFBDA /* alert_info@2x.png */; };
  1035. EB8E2D1D239666A900CDFBDA /* UIViewController+Search.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C13239666A800CDFBDA /* UIViewController+Search.m */; };
  1036. EB8E2D1E239666A900CDFBDA /* EMSearchResultController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C14239666A800CDFBDA /* EMSearchResultController.m */; };
  1037. EB8E2D1F239666A900CDFBDA /* EMSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C15239666A800CDFBDA /* EMSearchBar.m */; };
  1038. EB8E2D20239666A900CDFBDA /* EMSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C16239666A800CDFBDA /* EMSearchViewController.m */; };
  1039. EB8E2D21239666A900CDFBDA /* EMTextViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C1C239666A800CDFBDA /* EMTextViewController.m */; };
  1040. EB8E2D22239666A900CDFBDA /* EMRealtimeSearch.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C1E239666A800CDFBDA /* EMRealtimeSearch.m */; };
  1041. EB8E2D23239666A900CDFBDA /* EMDateHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C1F239666A800CDFBDA /* EMDateHelper.m */; };
  1042. EB8E2D24239666A900CDFBDA /* EMChineseToPinyin.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C20239666A800CDFBDA /* EMChineseToPinyin.m */; };
  1043. EB8E2D25239666A900CDFBDA /* EMRemindManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C21239666A800CDFBDA /* EMRemindManager.m */; };
  1044. EB8E2D26239666A900CDFBDA /* EMChatBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C2A239666A800CDFBDA /* EMChatBarItem.m */; };
  1045. EB8E2D27239666A900CDFBDA /* pin-red.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C2E239666A800CDFBDA /* pin-red.png */; };
  1046. EB8E2D28239666A900CDFBDA /* closed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C2F239666A800CDFBDA /* closed@2x.png */; };
  1047. EB8E2D29239666A900CDFBDA /* pin-white.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C30239666A800CDFBDA /* pin-white.png */; };
  1048. EB8E2D2A239666A900CDFBDA /* close@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C31239666A800CDFBDA /* close@3x.png */; };
  1049. EB8E2D2B239666A900CDFBDA /* close@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C32239666A800CDFBDA /* close@2x.png */; };
  1050. EB8E2D2C239666A900CDFBDA /* EMMoreFunctionView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C33239666A800CDFBDA /* EMMoreFunctionView.m */; };
  1051. EB8E2D2D239666A900CDFBDA /* EMReadReceiptMsgViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C34239666A800CDFBDA /* EMReadReceiptMsgViewController.m */; };
  1052. EB8E2D2E239666A900CDFBDA /* EMReadReceiptTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C35239666A800CDFBDA /* EMReadReceiptTableViewCell.m */; };
  1053. EB8E2D2F239666A900CDFBDA /* EMReadReceiptMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C36239666A800CDFBDA /* EMReadReceiptMemberModel.m */; };
  1054. EB8E2D30239666A900CDFBDA /* icon_010_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C3D239666A800CDFBDA /* icon_010_cover.png */; };
  1055. EB8E2D31239666A900CDFBDA /* icon_040_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C3E239666A800CDFBDA /* icon_040_cover.png */; };
  1056. EB8E2D32239666A900CDFBDA /* icon_002_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C3F239666A800CDFBDA /* icon_002_cover.png */; };
  1057. EB8E2D33239666A900CDFBDA /* icon_029_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C40239666A800CDFBDA /* icon_029_cover.png */; };
  1058. EB8E2D34239666A900CDFBDA /* icon_002.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C41239666A800CDFBDA /* icon_002.gif */; };
  1059. EB8E2D35239666A900CDFBDA /* icon_030_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C42239666A800CDFBDA /* icon_030_cover.png */; };
  1060. EB8E2D36239666A900CDFBDA /* icon_029.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C43239666A800CDFBDA /* icon_029.gif */; };
  1061. EB8E2D37239666A900CDFBDA /* icon_024_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C44239666A800CDFBDA /* icon_024_cover.png */; };
  1062. EB8E2D38239666A900CDFBDA /* icon_010.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C45239666A800CDFBDA /* icon_010.gif */; };
  1063. EB8E2D39239666A900CDFBDA /* icon_012.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C46239666A800CDFBDA /* icon_012.gif */; };
  1064. EB8E2D3A239666A900CDFBDA /* icon_022_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C47239666A800CDFBDA /* icon_022_cover.png */; };
  1065. EB8E2D3B239666A900CDFBDA /* icon_013.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C48239666A800CDFBDA /* icon_013.gif */; };
  1066. EB8E2D3C239666A900CDFBDA /* icon_007.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C49239666A800CDFBDA /* icon_007.gif */; };
  1067. EB8E2D3D239666A900CDFBDA /* icon_022.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C4A239666A800CDFBDA /* icon_022.gif */; };
  1068. EB8E2D3E239666A900CDFBDA /* icon_027_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C4B239666A800CDFBDA /* icon_027_cover.png */; };
  1069. EB8E2D3F239666A900CDFBDA /* icon_035.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C4C239666A800CDFBDA /* icon_035.gif */; };
  1070. EB8E2D40239666A900CDFBDA /* icon_021.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C4D239666A800CDFBDA /* icon_021.gif */; };
  1071. EB8E2D41239666A900CDFBDA /* icon_012_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C4E239666A800CDFBDA /* icon_012_cover.png */; };
  1072. EB8E2D42239666A900CDFBDA /* icon_020.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C4F239666A800CDFBDA /* icon_020.gif */; };
  1073. EB8E2D43239666A900CDFBDA /* icon_019_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C50239666A800CDFBDA /* icon_019_cover.png */; };
  1074. EB8E2D44239666A900CDFBDA /* icon_018.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C51239666A800CDFBDA /* icon_018.gif */; };
  1075. EB8E2D45239666A900CDFBDA /* icon_030.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C52239666A800CDFBDA /* icon_030.gif */; };
  1076. EB8E2D46239666A900CDFBDA /* icon_024.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C53239666A800CDFBDA /* icon_024.gif */; };
  1077. EB8E2D47239666A900CDFBDA /* icon_019.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C54239666A800CDFBDA /* icon_019.gif */; };
  1078. EB8E2D48239666A900CDFBDA /* icon_027.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C55239666A800CDFBDA /* icon_027.gif */; };
  1079. EB8E2D49239666A900CDFBDA /* icon_021_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C56239666A800CDFBDA /* icon_021_cover.png */; };
  1080. EB8E2D4A239666A900CDFBDA /* icon_035_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C57239666A800CDFBDA /* icon_035_cover.png */; };
  1081. EB8E2D4B239666A900CDFBDA /* icon_040.gif in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C58239666A800CDFBDA /* icon_040.gif */; };
  1082. EB8E2D4C239666A900CDFBDA /* icon_007_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C59239666A800CDFBDA /* icon_007_cover.png */; };
  1083. EB8E2D4D239666A900CDFBDA /* icon_013_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C5A239666A800CDFBDA /* icon_013_cover.png */; };
  1084. EB8E2D4E239666A900CDFBDA /* icon_018_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C5B239666A800CDFBDA /* icon_018_cover.png */; };
  1085. EB8E2D4F239666A900CDFBDA /* icon_020_cover.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C5C239666A800CDFBDA /* icon_020_cover.png */; };
  1086. EB8E2D50239666A900CDFBDA /* EaseEmotionEscape.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C5F239666A800CDFBDA /* EaseEmotionEscape.m */; };
  1087. EB8E2D51239666A900CDFBDA /* EMChatBarEmoticonView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C60239666A800CDFBDA /* EMChatBarEmoticonView.m */; };
  1088. EB8E2D52239666A900CDFBDA /* chat_audio_red@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C62239666A800CDFBDA /* chat_audio_red@2x.png */; };
  1089. EB8E2D53239666A900CDFBDA /* chat_audio_red@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C65239666A800CDFBDA /* chat_audio_red@3x.png */; };
  1090. EB8E2D54239666A900CDFBDA /* EMAudioRecordHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C66239666A800CDFBDA /* EMAudioRecordHelper.mm */; };
  1091. EB8E2D55239666A900CDFBDA /* EMChatBarRecordAudioView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C67239666A800CDFBDA /* EMChatBarRecordAudioView.m */; };
  1092. EB8E2D56239666A900CDFBDA /* chat_audio_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C68239666A800CDFBDA /* chat_audio_blue@2x.png */; };
  1093. EB8E2D57239666A900CDFBDA /* chat_audio_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C69239666A800CDFBDA /* chat_audio_blue@3x.png */; };
  1094. EB8E2D58239666A900CDFBDA /* chatbar_camera@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C6C239666A800CDFBDA /* chatbar_camera@2x.png */; };
  1095. EB8E2D59239666A900CDFBDA /* chatbar_photo@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C6D239666A800CDFBDA /* chatbar_photo@3x.png */; };
  1096. EB8E2D5A239666A900CDFBDA /* chatbar_map_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C6E239666A800CDFBDA /* chatbar_map_blue@2x.png */; };
  1097. EB8E2D5B239666A900CDFBDA /* chatbar_call_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C6F239666A800CDFBDA /* chatbar_call_blue@3x.png */; };
  1098. EB8E2D5C239666A900CDFBDA /* chatbar_call_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C70239666A800CDFBDA /* chatbar_call_blue@2x.png */; };
  1099. EB8E2D5D239666A900CDFBDA /* chatbar_map_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C71239666A800CDFBDA /* chatbar_map_blue@3x.png */; };
  1100. EB8E2D5E239666A900CDFBDA /* chatbar_photo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C72239666A800CDFBDA /* chatbar_photo@2x.png */; };
  1101. EB8E2D5F239666A900CDFBDA /* chatbar_camera@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C73239666A800CDFBDA /* chatbar_camera@3x.png */; };
  1102. EB8E2D60239666A900CDFBDA /* chatbar_face@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C74239666A800CDFBDA /* chatbar_face@2x.png */; };
  1103. EB8E2D61239666A900CDFBDA /* chatbar_face@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C75239666A800CDFBDA /* chatbar_face@3x.png */; };
  1104. EB8E2D62239666A900CDFBDA /* chatbar_extend_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C76239666A800CDFBDA /* chatbar_extend_blue@2x.png */; };
  1105. EB8E2D63239666A900CDFBDA /* chatbar_audio_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C77239666A800CDFBDA /* chatbar_audio_blue@2x.png */; };
  1106. EB8E2D64239666A900CDFBDA /* chatbar_extend@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C78239666A800CDFBDA /* chatbar_extend@2x.png */; };
  1107. EB8E2D65239666A900CDFBDA /* chatbar_photo_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C79239666A800CDFBDA /* chatbar_photo_blue@3x.png */; };
  1108. EB8E2D66239666A900CDFBDA /* chatbar_audio@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C7A239666A800CDFBDA /* chatbar_audio@3x.png */; };
  1109. EB8E2D67239666A900CDFBDA /* chatbar_audio@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C7B239666A800CDFBDA /* chatbar_audio@2x.png */; };
  1110. EB8E2D68239666A900CDFBDA /* chatbar_photo_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C7C239666A800CDFBDA /* chatbar_photo_blue@2x.png */; };
  1111. EB8E2D69239666A900CDFBDA /* chatbar_extend@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C7D239666A800CDFBDA /* chatbar_extend@3x.png */; };
  1112. EB8E2D6A239666A900CDFBDA /* chatbar_audio_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C7E239666A800CDFBDA /* chatbar_audio_blue@3x.png */; };
  1113. EB8E2D6B239666A900CDFBDA /* chatbar_extend_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C7F239666A800CDFBDA /* chatbar_extend_blue@3x.png */; };
  1114. EB8E2D6C239666A900CDFBDA /* chatbar_call@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C80239666A800CDFBDA /* chatbar_call@3x.png */; };
  1115. EB8E2D6D239666A900CDFBDA /* chatbar_face_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C81239666A800CDFBDA /* chatbar_face_blue@2x.png */; };
  1116. EB8E2D6E239666A900CDFBDA /* chatbar_camera_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C82239666A800CDFBDA /* chatbar_camera_blue@3x.png */; };
  1117. EB8E2D6F239666A900CDFBDA /* chatbar_map@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C83239666A800CDFBDA /* chatbar_map@3x.png */; };
  1118. EB8E2D70239666A900CDFBDA /* chatbar_map@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C84239666A800CDFBDA /* chatbar_map@2x.png */; };
  1119. EB8E2D71239666A900CDFBDA /* chatbar_camera_blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C85239666A800CDFBDA /* chatbar_camera_blue@2x.png */; };
  1120. EB8E2D72239666A900CDFBDA /* chatbar_face_blue@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C86239666A800CDFBDA /* chatbar_face_blue@3x.png */; };
  1121. EB8E2D73239666A900CDFBDA /* chatbar_call@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2C87239666A800CDFBDA /* chatbar_call@2x.png */; };
  1122. EB8E2D74239666A900CDFBDA /* EMChatBar.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C88239666A800CDFBDA /* EMChatBar.m */; };
  1123. EB8E2D75239666A900CDFBDA /* EMMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C8B239666A800CDFBDA /* EMMessageCell.m */; };
  1124. EB8E2D76239666A900CDFBDA /* EMMessageStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C8C239666A800CDFBDA /* EMMessageStatusView.m */; };
  1125. EB8E2D77239666A900CDFBDA /* EMMessageTimeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C8D239666A800CDFBDA /* EMMessageTimeCell.m */; };
  1126. EB8E2D78239666A900CDFBDA /* EMMsgRecallBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C8F239666A800CDFBDA /* EMMsgRecallBubbleView.m */; };
  1127. EB8E2D79239666A900CDFBDA /* EMMsgExtGifBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C91239666A800CDFBDA /* EMMsgExtGifBubbleView.m */; };
  1128. EB8E2D7A239666A900CDFBDA /* EMMsgAudioBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C94239666A800CDFBDA /* EMMsgAudioBubbleView.m */; };
  1129. EB8E2D7B239666A900CDFBDA /* EMMsgVideoBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C95239666A800CDFBDA /* EMMsgVideoBubbleView.m */; };
  1130. EB8E2D7C239666A900CDFBDA /* EMMsgFileBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C97239666A800CDFBDA /* EMMsgFileBubbleView.m */; };
  1131. EB8E2D7D239666A900CDFBDA /* EMMsgImageBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C99239666A800CDFBDA /* EMMsgImageBubbleView.m */; };
  1132. EB8E2D7E239666A900CDFBDA /* EMMsgTextBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C9C239666A800CDFBDA /* EMMsgTextBubbleView.m */; };
  1133. EB8E2D7F239666A900CDFBDA /* EMMessageBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C9D239666A800CDFBDA /* EMMessageBubbleView.m */; };
  1134. EB8E2D80239666A900CDFBDA /* EMMsgLocationBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2C9E239666A800CDFBDA /* EMMsgLocationBubbleView.m */; };
  1135. EB8E2D81239666A900CDFBDA /* msg_recv_audio02@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CA3239666A800CDFBDA /* msg_recv_audio02@2x.png */; };
  1136. EB8E2D82239666A900CDFBDA /* msg_location@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CA4239666A800CDFBDA /* msg_location@2x.png */; };
  1137. EB8E2D83239666A900CDFBDA /* msg_location_white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CA5239666A800CDFBDA /* msg_location_white@3x.png */; };
  1138. EB8E2D84239666A900CDFBDA /* msg_bg_send@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CA6239666A800CDFBDA /* msg_bg_send@3x.png */; };
  1139. EB8E2D85239666A900CDFBDA /* msg_send_audio02@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CA7239666A800CDFBDA /* msg_send_audio02@3x.png */; };
  1140. EB8E2D86239666A900CDFBDA /* msg_send_audio02@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CA8239666A800CDFBDA /* msg_send_audio02@2x.png */; };
  1141. EB8E2D87239666A900CDFBDA /* msg_bg_send@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CA9239666A800CDFBDA /* msg_bg_send@2x.png */; };
  1142. EB8E2D88239666A900CDFBDA /* msg_location_white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CAA239666A800CDFBDA /* msg_location_white@2x.png */; };
  1143. EB8E2D89239666A900CDFBDA /* msg_recv_audio02@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CAB239666A800CDFBDA /* msg_recv_audio02@3x.png */; };
  1144. EB8E2D8A239666A900CDFBDA /* msg_location@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CAC239666A800CDFBDA /* msg_location@3x.png */; };
  1145. EB8E2D8B239666A900CDFBDA /* msg_fail@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CAD239666A800CDFBDA /* msg_fail@2x.png */; };
  1146. EB8E2D8C239666A900CDFBDA /* msg_fail@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CAE239666A800CDFBDA /* msg_fail@3x.png */; };
  1147. EB8E2D8D239666A900CDFBDA /* msg_send_audio@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CAF239666A800CDFBDA /* msg_send_audio@3x.png */; };
  1148. EB8E2D8E239666A900CDFBDA /* msg_send_audio01@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB0239666A800CDFBDA /* msg_send_audio01@2x.png */; };
  1149. EB8E2D8F239666A900CDFBDA /* msg_recv_audio01@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB1239666A800CDFBDA /* msg_recv_audio01@3x.png */; };
  1150. EB8E2D90239666A900CDFBDA /* msg_recv_audio01@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB2239666A800CDFBDA /* msg_recv_audio01@2x.png */; };
  1151. EB8E2D91239666A900CDFBDA /* msg_send_audio01@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB3239666A800CDFBDA /* msg_send_audio01@3x.png */; };
  1152. EB8E2D92239666A900CDFBDA /* msg_send_audio@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB4239666A800CDFBDA /* msg_send_audio@2x.png */; };
  1153. EB8E2D93239666A900CDFBDA /* msg_recv_audio@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB5239666A800CDFBDA /* msg_recv_audio@3x.png */; };
  1154. EB8E2D94239666A900CDFBDA /* msg_file_white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB6239666A800CDFBDA /* msg_file_white@2x.png */; };
  1155. EB8E2D95239666A900CDFBDA /* msg_file@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB7239666A800CDFBDA /* msg_file@3x.png */; };
  1156. EB8E2D96239666A900CDFBDA /* msg_img_broken@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB8239666A800CDFBDA /* msg_img_broken@2x.png */; };
  1157. EB8E2D97239666A900CDFBDA /* msg_video_white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CB9239666A800CDFBDA /* msg_video_white@2x.png */; };
  1158. EB8E2D98239666A900CDFBDA /* msg_bg_recv@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CBA239666A800CDFBDA /* msg_bg_recv@3x.png */; };
  1159. EB8E2D99239666A900CDFBDA /* msg_bg_recv@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CBB239666A800CDFBDA /* msg_bg_recv@2x.png */; };
  1160. EB8E2D9A239666A900CDFBDA /* msg_video_white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CBC239666A800CDFBDA /* msg_video_white@3x.png */; };
  1161. EB8E2D9B239666A900CDFBDA /* msg_img_broken@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CBD239666A800CDFBDA /* msg_img_broken@3x.png */; };
  1162. EB8E2D9C239666A900CDFBDA /* msg_file@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CBE239666A800CDFBDA /* msg_file@2x.png */; };
  1163. EB8E2D9D239666A900CDFBDA /* msg_file_white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CBF239666A800CDFBDA /* msg_file_white@3x.png */; };
  1164. EB8E2D9E239666A900CDFBDA /* msg_recv_audio@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CC0239666A800CDFBDA /* msg_recv_audio@2x.png */; };
  1165. EB8E2D9F239666A900CDFBDA /* EMLocationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2CC3239666A800CDFBDA /* EMLocationViewController.m */; };
  1166. EB8E2DA0239666A900CDFBDA /* image@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CC5239666A800CDFBDA /* image@2x.png */; };
  1167. EB8E2DA1239666A900CDFBDA /* chat_info@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CC6239666A800CDFBDA /* chat_info@3x.png */; };
  1168. EB8E2DA2239666A900CDFBDA /* chat_info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CC7239666A800CDFBDA /* chat_info@2x.png */; };
  1169. EB8E2DA3239666A900CDFBDA /* chat_clear@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CC8239666A800CDFBDA /* chat_clear@3x.png */; };
  1170. EB8E2DA4239666A900CDFBDA /* chat_clear@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB8E2CC9239666A800CDFBDA /* chat_clear@2x.png */; };
  1171. EB8E2DA5239666A900CDFBDA /* EMChatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2CCA239666A800CDFBDA /* EMChatViewController.m */; };
  1172. EB8E2DA6239666A900CDFBDA /* EMMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2CCB239666A800CDFBDA /* EMMessageModel.m */; };
  1173. EB8E2DA7239666A900CDFBDA /* EMAtGroupMembersViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2CCC239666A800CDFBDA /* EMAtGroupMembersViewController.m */; };
  1174. EB8E2DA8239666A900CDFBDA /* EMImageBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2CCE239666A800CDFBDA /* EMImageBrowser.m */; };
  1175. EB8E2DA9239666A900CDFBDA /* EMAudioPlayerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2CD1239666A800CDFBDA /* EMAudioPlayerHelper.mm */; };
  1176. EB8E2DAA239666A900CDFBDA /* EMMsgTranspondViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2CD2239666A800CDFBDA /* EMMsgTranspondViewController.m */; };
  1177. EB8E2DB3239762C100CDFBDA /* AudioShowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2DB2239762C100CDFBDA /* AudioShowView.m */; };
  1178. EB8E2DB623989B1900CDFBDA /* chatInfoGroupChatModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2DB523989B1800CDFBDA /* chatInfoGroupChatModel.m */; };
  1179. EB8E2DB92398D23100CDFBDA /* ChatGroupDeleteVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2DB82398D23100CDFBDA /* ChatGroupDeleteVC.m */; };
  1180. EB8E2DBC2398DC6900CDFBDA /* ChatGroupAddVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E2DBB2398DC6900CDFBDA /* ChatGroupAddVC.m */; };
  1181. EB92E87523B061E8008E94CF /* WaitWorkLabelVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E87423B061E8008E94CF /* WaitWorkLabelVC.m */; };
  1182. EB92E87923B063AF008E94CF /* WaitWorkLabelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E87723B063AF008E94CF /* WaitWorkLabelCell.m */; };
  1183. EB92E87A23B063AF008E94CF /* WaitWorkLabelCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB92E87823B063AF008E94CF /* WaitWorkLabelCell.xib */; };
  1184. EB92E88A23B09AD4008E94CF /* GFCalendarScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E87E23B09AD4008E94CF /* GFCalendarScrollView.m */; };
  1185. EB92E88B23B09AD4008E94CF /* GFCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E88223B09AD4008E94CF /* GFCalendarCell.m */; };
  1186. EB92E88C23B09AD4008E94CF /* GFCalendarView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E88323B09AD4008E94CF /* GFCalendarView.m */; };
  1187. EB92E88D23B09AD5008E94CF /* NSDate+GFCalendar.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E88523B09AD4008E94CF /* NSDate+GFCalendar.m */; };
  1188. EB92E88E23B09AD5008E94CF /* GFCalendar.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E88723B09AD4008E94CF /* GFCalendar.m */; };
  1189. EB92E88F23B09AD5008E94CF /* GFCalendarMonth.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E88823B09AD4008E94CF /* GFCalendarMonth.m */; };
  1190. EB92E89223B0CC77008E94CF /* WaitTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92E89123B0CC77008E94CF /* WaitTimePicker.m */; };
  1191. EB95266C248A0A2A003EFCCE /* BookReadVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB95266B248A0A2A003EFCCE /* BookReadVC.m */; };
  1192. EB952680248A0BA6003EFCCE /* DCContentVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB952670248A0BA6003EFCCE /* DCContentVC.m */; };
  1193. EB952681248A0BA6003EFCCE /* DCPageBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB952674248A0BA6003EFCCE /* DCPageBottomView.m */; };
  1194. EB952682248A0BA6003EFCCE /* DCBookListView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB952675248A0BA6003EFCCE /* DCBookListView.m */; };
  1195. EB952683248A0BA6003EFCCE /* DCPageTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB952677248A0BA6003EFCCE /* DCPageTopView.m */; };
  1196. EB952685248A0BA6003EFCCE /* DCBookModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB95267E248A0BA6003EFCCE /* DCBookModel.m */; };
  1197. EB952689248A0CA5003EFCCE /* DCFileTool.m in Sources */ = {isa = PBXBuildFile; fileRef = EB952688248A0CA5003EFCCE /* DCFileTool.m */; };
  1198. EB95268B248A12F1003EFCCE /* 龙王传说.txt in Resources */ = {isa = PBXBuildFile; fileRef = EB95268A248A12F1003EFCCE /* 龙王传说.txt */; };
  1199. EB95268E248A4B41003EFCCE /* BookReadTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB95268D248A4B41003EFCCE /* BookReadTextView.m */; };
  1200. EB952692248A560E003EFCCE /* BookReadSearchAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB952690248A560E003EFCCE /* BookReadSearchAlert.xib */; };
  1201. EB952693248A560E003EFCCE /* BookReadSearchAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB952691248A560E003EFCCE /* BookReadSearchAlert.m */; };
  1202. EB96B89823BF56C800EE09D7 /* TDGroupInfoListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB96B89623BF56C800EE09D7 /* TDGroupInfoListCell.m */; };
  1203. EB96B89923BF56C900EE09D7 /* TDGroupInfoListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB96B89723BF56C800EE09D7 /* TDGroupInfoListCell.xib */; };
  1204. EB96B89D23BF573B00EE09D7 /* NoteBookDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB96B89B23BF573A00EE09D7 /* NoteBookDetailCell.m */; };
  1205. EB96B89E23BF573B00EE09D7 /* NoteBookDetailCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB96B89C23BF573A00EE09D7 /* NoteBookDetailCell.xib */; };
  1206. EB96B8A023BF584300EE09D7 /* TDInterLeterHome.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EB96B89F23BF584200EE09D7 /* TDInterLeterHome.storyboard */; };
  1207. EB96B8A323BF5ACB00EE09D7 /* MyTDTopic.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EB96B8A123BF5ACA00EE09D7 /* MyTDTopic.storyboard */; };
  1208. EB96B8A423BF5ACB00EE09D7 /* MyTDTopicExtent.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EB96B8A223BF5ACA00EE09D7 /* MyTDTopicExtent.storyboard */; };
  1209. EB96B8A723BF73AF00EE09D7 /* TopicListFolderResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB96B8A623BF73AF00EE09D7 /* TopicListFolderResultModel.m */; };
  1210. EB98E7B22405FF090087C4E2 /* MyUserIconVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB98E7B12405FF090087C4E2 /* MyUserIconVC.m */; };
  1211. EB98E7B524061CD00087C4E2 /* NoteBookSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB98E7B424061CD00087C4E2 /* NoteBookSearchVC.m */; };
  1212. EB9BBE4D23D1A5D400436A0E /* MailListMoveVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9BBE4C23D1A5D400436A0E /* MailListMoveVC.m */; };
  1213. EB9BBE5023D1BF1A00436A0E /* MailListSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9BBE4F23D1BF1A00436A0E /* MailListSearchVC.m */; };
  1214. EB9BCC0C24EBACD1005D7499 /* SelectSaveSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9BCC0B24EBACD1005D7499 /* SelectSaveSearchVC.m */; };
  1215. EB9BCC0F24EBD117005D7499 /* MyFavoriteEditSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9BCC0E24EBD117005D7499 /* MyFavoriteEditSearchVC.m */; };
  1216. EB9BCC1224EBDD92005D7499 /* NoteBookEditSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9BCC1024EBDD91005D7499 /* NoteBookEditSearchVC.m */; };
  1217. EB9D514424F62BDB00568932 /* GroupShowListView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9D514224F62BDB00568932 /* GroupShowListView.m */; };
  1218. EB9D514724F633E500568932 /* GroupShowModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9D514624F633E500568932 /* GroupShowModel.m */; };
  1219. EB9D6591248DE60600636BAC /* BookReadStlyeAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9D6588248DE60400636BAC /* BookReadStlyeAlert.m */; };
  1220. EB9D6595248DE60600636BAC /* BookReadStlyeAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB9D658F248DE60500636BAC /* BookReadStlyeAlert.xib */; };
  1221. EB9D6599248E003000636BAC /* BookReadStlyeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9D6597248E003000636BAC /* BookReadStlyeCell.m */; };
  1222. EB9D659A248E003000636BAC /* BookReadStlyeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB9D6598248E003000636BAC /* BookReadStlyeCell.xib */; };
  1223. EB9D659D248E032C00636BAC /* BookReadStlyeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9D659C248E032C00636BAC /* BookReadStlyeModel.m */; };
  1224. EB9D65A4248E358900636BAC /* BookReadListAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9D659F248E358800636BAC /* BookReadListAlert.m */; };
  1225. EB9D65A5248E358900636BAC /* BookReadFontNameAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9D65A0248E358900636BAC /* BookReadFontNameAlert.m */; };
  1226. EB9D65A6248E358900636BAC /* BookReadListAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB9D65A1248E358900636BAC /* BookReadListAlert.xib */; };
  1227. EB9D65A7248E358900636BAC /* BookReadFontNameAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB9D65A2248E358900636BAC /* BookReadFontNameAlert.xib */; };
  1228. EB9D65AB248E46FE00636BAC /* BookPlayAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB9D65A8248E46FE00636BAC /* BookPlayAlert.xib */; };
  1229. EB9D65AC248E46FE00636BAC /* BookPlayAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9D65AA248E46FE00636BAC /* BookPlayAlert.m */; };
  1230. EB9DA1222503330B0062FEB8 /* TTSConfigViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9DA1202503330B0062FEB8 /* TTSConfigViewController.m */; };
  1231. EB9DA130250333240062FEB8 /* SwitchTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9DA126250333240062FEB8 /* SwitchTableViewCell.m */; };
  1232. EB9DA131250333240062FEB8 /* NavigationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9DA127250333240062FEB8 /* NavigationTableViewCell.m */; };
  1233. EB9DA132250333240062FEB8 /* SelectionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9DA128250333240062FEB8 /* SelectionTableViewCell.m */; };
  1234. EB9DA133250333240062FEB8 /* SliderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9DA129250333240062FEB8 /* SliderTableViewCell.m */; };
  1235. EB9DA134250333240062FEB8 /* InputTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9DA12A250333240062FEB8 /* InputTableViewCell.m */; };
  1236. EB9E202D251F088000311E96 /* BookMingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9E202B251F088000311E96 /* BookMingCell.m */; };
  1237. EB9E202E251F088000311E96 /* BookMingCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB9E202C251F088000311E96 /* BookMingCell.xib */; };
  1238. EB9E2032251F0BBA00311E96 /* BookMingSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9E2030251F0BBA00311E96 /* BookMingSearchVC.m */; };
  1239. EB9F24DE2509CD0C0017479A /* PlayModelVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9F24DD2509CD0C0017479A /* PlayModelVC.m */; };
  1240. EB9F24E22509CDD90017479A /* PlayModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9F24E02509CDD90017479A /* PlayModelCell.m */; };
  1241. EB9F24E32509CDD90017479A /* PlayModelCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB9F24E12509CDD90017479A /* PlayModelCell.xib */; };
  1242. EB9F24E62509F3EF0017479A /* CusPopoverBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9F24E52509F3EF0017479A /* CusPopoverBackgroundView.m */; };
  1243. EB9F24EA250A0B3A0017479A /* qinkuai_Music.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = EB9F24E7250A0B390017479A /* qinkuai_Music.mp3 */; };
  1244. EB9F24EB250A0B3A0017479A /* rouhuo_Music.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = EB9F24E8250A0B390017479A /* rouhuo_Music.mp3 */; };
  1245. EB9F24EC250A0B3A0017479A /* shushi_Music.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = EB9F24E9250A0B3A0017479A /* shushi_Music.mp3 */; };
  1246. EBA0FA55249CC22C0022AFA3 /* SSScrollViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA0FA54249CC22C0022AFA3 /* SSScrollViewController.m */; };
  1247. EBA0FA5A249CC34C0022AFA3 /* UIGestureRecognizer+SSUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA0FA57249CC34B0022AFA3 /* UIGestureRecognizer+SSUtil.m */; };
  1248. EBA0FA5B249CC34C0022AFA3 /* UIView+LYLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA0FA59249CC34C0022AFA3 /* UIView+LYLayout.m */; };
  1249. EBA25D5024D7FA3800CBEBF2 /* ShowSysVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA25D4E24D7FA3800CBEBF2 /* ShowSysVC.m */; };
  1250. EBA25D5324D81BC200CBEBF2 /* ShowUserVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA25D5124D81BC200CBEBF2 /* ShowUserVC.m */; };
  1251. EBA25D5624D8255800CBEBF2 /* ShowDesVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA25D5524D8255700CBEBF2 /* ShowDesVC.m */; };
  1252. EBAA1F242463A4F200272F13 /* SourceGroupVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBAA1F232463A4F200272F13 /* SourceGroupVC.m */; };
  1253. EBAACA902406475100F44B67 /* ShowBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = EBAACA8F2406475100F44B67 /* ShowBtn.m */; };
  1254. EBAACA932406730C00F44B67 /* MyFavoriteSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBAACA922406730C00F44B67 /* MyFavoriteSearchVC.m */; };
  1255. EBAB7CCD2500FAC000923FBA /* .gitIgnore in Resources */ = {isa = PBXBuildFile; fileRef = EBAB7CB52500FAC000923FBA /* .gitIgnore */; };
  1256. EBAB7CCE2500FAC000923FBA /* libBaiduSpeechSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAB7CCB2500FAC000923FBA /* libBaiduSpeechSDK.a */; };
  1257. EBAB7CCF2500FAC000923FBA /* .gitignore in Resources */ = {isa = PBXBuildFile; fileRef = EBAB7CCC2500FAC000923FBA /* .gitignore */; };
  1258. EBAB7CD12500FB2600923FBA /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAB7CD02500FB2600923FBA /* GLKit.framework */; };
  1259. EBAB7CD22500FB3200923FBA /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBA9F906239287CD0013BDDA /* SystemConfiguration.framework */; };
  1260. EBAB7CD42500FB3E00923FBA /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAB7CD32500FB3E00923FBA /* AudioToolbox.framework */; };
  1261. EBAB7CD62500FB4600923FBA /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAB7CD52500FB4600923FBA /* AVFoundation.framework */; };
  1262. EBAB7CD72500FB4D00923FBA /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBA9F8ED2392872F0013BDDA /* CFNetwork.framework */; };
  1263. EBAB7CD82500FB5600923FBA /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBA9F8F1239287490013BDDA /* CoreLocation.framework */; };
  1264. EBAB7CD92500FB5D00923FBA /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBA9F8F52392875E0013BDDA /* CoreTelephony.framework */; };
  1265. EBAB7CDF2500FC1B00923FBA /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAB7CDE2500FC1B00923FBA /* Accelerate.framework */; };
  1266. EBAB7CE02500FD6400923FBA /* libiconv.2.4.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAB7CDB2500FB6E00923FBA /* libiconv.2.4.0.tbd */; };
  1267. EBABAC85248B2FDF0033B985 /* CLSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABAC84248B2FDF0033B985 /* CLSlider.m */; };
  1268. EBABAC89248B30E50033B985 /* BookReadFontAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABAC86248B30E50033B985 /* BookReadFontAlert.m */; };
  1269. EBABAC8A248B30E50033B985 /* BookReadFontAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBABAC87248B30E50033B985 /* BookReadFontAlert.xib */; };
  1270. EBABAC9F248B7A300033B985 /* HKTransitionPush.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABAC90248B7A300033B985 /* HKTransitionPush.m */; };
  1271. EBABACA0248B7A300033B985 /* HKTransitionPop.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABAC91248B7A300033B985 /* HKTransitionPop.m */; };
  1272. EBABACA1248B7A300033B985 /* NSObject+hkvc.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABAC95248B7A300033B985 /* NSObject+hkvc.m */; };
  1273. EBABACA2248B7A300033B985 /* HKFloatManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABAC98248B7A300033B985 /* HKFloatManager.m */; };
  1274. EBABACA3248B7A300033B985 /* HKFloatBall.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABAC9A248B7A300033B985 /* HKFloatBall.m */; };
  1275. EBABACA4248B7A300033B985 /* HKFloatAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABAC9C248B7A300033B985 /* HKFloatAreaView.m */; };
  1276. EBB2402D2480A79700EECD15 /* BookPeriodicaListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB2402C2480A79700EECD15 /* BookPeriodicaListVC.m */; };
  1277. EBB240312480B46A00EECD15 /* BookPeriodicaListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB2402F2480B46A00EECD15 /* BookPeriodicaListCell.m */; };
  1278. EBB240322480B46A00EECD15 /* BookPeriodicaListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBB240302480B46A00EECD15 /* BookPeriodicaListCell.xib */; };
  1279. EBB360BE250736FC0018C830 /* BookListenModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB360BD250736FC0018C830 /* BookListenModel.m */; };
  1280. EBB588CE252064B9005B3988 /* BookGongzhSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB588CD252064B9005B3988 /* BookGongzhSearchVC.m */; };
  1281. EBB588D225208A70005B3988 /* BookProblemModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB588D125208A70005B3988 /* BookProblemModel.m */; };
  1282. EBB6886A23C9C0C300E24DD9 /* MMDatabaseConn.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6883823C9C0C300E24DD9 /* MMDatabaseConn.m */; };
  1283. EBB6886B23C9C0C300E24DD9 /* MMDatabaseConn+Initial.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6883A23C9C0C300E24DD9 /* MMDatabaseConn+Initial.m */; };
  1284. EBB6886C23C9C0C300E24DD9 /* MMRichTextConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6883E23C9C0C300E24DD9 /* MMRichTextConfig.m */; };
  1285. EBB6886D23C9C0C300E24DD9 /* MMRichContentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6884223C9C0C300E24DD9 /* MMRichContentUtil.m */; };
  1286. EBB6886E23C9C0C300E24DD9 /* MMFileUploadUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6884423C9C0C300E24DD9 /* MMFileUploadUtil.m */; };
  1287. EBB6886F23C9C0C300E24DD9 /* MMDraftUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6884623C9C0C300E24DD9 /* MMDraftUtil.m */; };
  1288. EBB6887023C9C0C300E24DD9 /* MMRichImageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6884A23C9C0C300E24DD9 /* MMRichImageModel.m */; };
  1289. EBB6887123C9C0C300E24DD9 /* MMRichTitleModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6884C23C9C0C300E24DD9 /* MMRichTitleModel.m */; };
  1290. EBB6887223C9C0C300E24DD9 /* MMBaseRichContentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6884E23C9C0C300E24DD9 /* MMBaseRichContentModel.m */; };
  1291. EBB6887323C9C0C300E24DD9 /* MMDraftModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6885023C9C0C300E24DD9 /* MMDraftModel.m */; };
  1292. EBB6887423C9C0C300E24DD9 /* MMRichTextModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6885223C9C0C300E24DD9 /* MMRichTextModel.m */; };
  1293. EBB6887523C9C0C300E24DD9 /* MMTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6885623C9C0C300E24DD9 /* MMTextView.m */; };
  1294. EBB6887623C9C0C300E24DD9 /* MMRichTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6885723C9C0C300E24DD9 /* MMRichTitleCell.m */; };
  1295. EBB6887723C9C0C300E24DD9 /* MMRichEditAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6885A23C9C0C300E24DD9 /* MMRichEditAccessoryView.m */; };
  1296. EBB6887823C9C0C300E24DD9 /* MMPlaceHolderTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6885B23C9C0C300E24DD9 /* MMPlaceHolderTextView.m */; };
  1297. EBB6887923C9C0C300E24DD9 /* MMRichTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6885E23C9C0C300E24DD9 /* MMRichTextCell.m */; };
  1298. EBB6887A23C9C0C300E24DD9 /* MMBaseRichContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6885F23C9C0C300E24DD9 /* MMBaseRichContentCell.m */; };
  1299. EBB6887B23C9C0C300E24DD9 /* UITextView+RCSBackWord.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6886023C9C0C300E24DD9 /* UITextView+RCSBackWord.m */; };
  1300. EBB6887C23C9C0C300E24DD9 /* MMRichImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6886323C9C0C300E24DD9 /* MMRichImageCell.m */; };
  1301. EBB6887D23C9C0C300E24DD9 /* NSString+NSDate.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6886523C9C0C300E24DD9 /* NSString+NSDate.m */; };
  1302. EBB6887E23C9C0C300E24DD9 /* UIImage+Util.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6886823C9C0C300E24DD9 /* UIImage+Util.m */; };
  1303. EBB6888123C9C1C900E24DD9 /* RichTextEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6887F23C9C1C900E24DD9 /* RichTextEditViewController.m */; };
  1304. EBB6888423C9E4DD00E24DD9 /* RichModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB6888323C9E4DD00E24DD9 /* RichModel.m */; };
  1305. EBB83E4A23B358DD00A8C4BC /* ChangeTopicVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB83E4923B358DD00A8C4BC /* ChangeTopicVC.m */; };
  1306. EBB83E4E23B35FD300A8C4BC /* ChangeTopicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB83E4C23B35FD300A8C4BC /* ChangeTopicCell.m */; };
  1307. EBB83E4F23B35FD300A8C4BC /* ChangeTopicCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBB83E4D23B35FD300A8C4BC /* ChangeTopicCell.xib */; };
  1308. EBB83E5223B3668C00A8C4BC /* ChangeTopicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB83E5123B3668C00A8C4BC /* ChangeTopicModel.m */; };
  1309. EBB8D06C251D818B0051C897 /* BookLabelSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB8D06A251D818A0051C897 /* BookLabelSearchVC.m */; };
  1310. EBB8D070251E00600051C897 /* BookBillBoardSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB8D06E251E00600051C897 /* BookBillBoardSearchVC.m */; };
  1311. EBBC59D925315E4500AB12EF /* LoginPCVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBC59D825315E4500AB12EF /* LoginPCVC.m */; };
  1312. EBBC59DD25318F7A00AB12EF /* ShowImageVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBC59DC25318F7A00AB12EF /* ShowImageVC.m */; };
  1313. EBBD5E612519A2D8007B174E /* BookSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBD5E5F2519A2D8007B174E /* BookSearchVC.m */; };
  1314. EBBD5E662519A393007B174E /* BookSearchSubVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBD5E642519A392007B174E /* BookSearchSubVC.m */; };
  1315. EBBD5E6A2519CB4E007B174E /* BookLabelAllVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBD5E692519CB4E007B174E /* BookLabelAllVC.m */; };
  1316. EBBD5E6F2519D66A007B174E /* BookListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBD5E6D2519D66A007B174E /* BookListCell.m */; };
  1317. EBBD5E702519D66A007B174E /* BookListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBBD5E6E2519D66A007B174E /* BookListCell.xib */; };
  1318. EBBD5E752519D8BD007B174E /* BookListSubCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBD5E732519D8BD007B174E /* BookListSubCell.m */; };
  1319. EBBD5E762519D8BD007B174E /* BookListSubCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBBD5E742519D8BD007B174E /* BookListSubCell.xib */; };
  1320. EBBE1CB424E786F200041E04 /* GroupInfoVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBE1CB224E786F200041E04 /* GroupInfoVC.m */; };
  1321. EBBE1CB724E78CE000041E04 /* GroupEditerVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBE1CB624E78CE000041E04 /* GroupEditerVC.m */; };
  1322. EBBE1CBA24E7C7F100041E04 /* TDGroupDraftListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBE1CB924E7C7F100041E04 /* TDGroupDraftListVC.m */; };
  1323. EBBE1CBD24E7D4CC00041E04 /* TDGroupDraftSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBE1CBB24E7D4CC00041E04 /* TDGroupDraftSearchVC.m */; };
  1324. EBBEE55B2498599300B135E4 /* PNCircleChart.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBEE5592498599300B135E4 /* PNCircleChart.m */; };
  1325. EBBEE55E249859E600B135E4 /* UICountingLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBEE55D249859E600B135E4 /* UICountingLabel.m */; };
  1326. EBBEE5622498763600B135E4 /* SynopsisCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBEE5602498763600B135E4 /* SynopsisCollectCell.m */; };
  1327. EBBEE5632498763600B135E4 /* SynopsisCollectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBBEE5612498763600B135E4 /* SynopsisCollectCell.xib */; };
  1328. EBC2E143243C2DF30054E422 /* EMMsgExtSmartBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC2E142243C2DF30054E422 /* EMMsgExtSmartBubbleView.m */; };
  1329. EBC2E146243C70520054E422 /* msg_bg_app@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EBC2E144243C70520054E422 /* msg_bg_app@3x.png */; };
  1330. EBC2E147243C70520054E422 /* msg_bg_app@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = EBC2E145243C70520054E422 /* msg_bg_app@2x.png */; };
  1331. EBC34D802511B41E00A4F133 /* BookTeacherDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC34D7E2511B41E00A4F133 /* BookTeacherDetailVC.m */; };
  1332. EBC34D842511EABD00A4F133 /* BookTeacherHeadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC34D822511EABD00A4F133 /* BookTeacherHeadCell.m */; };
  1333. EBC34D852511EABD00A4F133 /* BookTeacherHeadCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBC34D832511EABD00A4F133 /* BookTeacherHeadCell.xib */; };
  1334. EBC34D8825121CD000A4F133 /* BookCustomListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC34D8725121CCF00A4F133 /* BookCustomListVC.m */; };
  1335. EBC4866424B301CC0013AEF7 /* QuickLook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBC4866324B301CC0013AEF7 /* QuickLook.framework */; };
  1336. EBC4866724B3128B0013AEF7 /* BookMeidaModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC4866624B3128B0013AEF7 /* BookMeidaModel.m */; };
  1337. EBC64DD123C6B78D00558368 /* SelectSaveVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC64DD023C6B78D00558368 /* SelectSaveVC.m */; };
  1338. EBC7BF9423ED2E5200678A66 /* UILabelCopy.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC7BF9323ED2E5200678A66 /* UILabelCopy.m */; };
  1339. EBC9BFA725343341000BD6F7 /* PushModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC9BFA625343341000BD6F7 /* PushModel.m */; };
  1340. EBCBA9942522DF8200D3E405 /* BookQiKanListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCBA9932522DF8100D3E405 /* BookQiKanListModel.m */; };
  1341. EBCBA9992522FCFF00D3E405 /* BookQiKanNavModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCBA9972522FCFF00D3E405 /* BookQiKanNavModel.m */; };
  1342. EBCC209124B6EC7F001BDCDC /* GroupSquareSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCC209024B6EC7F001BDCDC /* GroupSquareSubModel.m */; };
  1343. EBCC209424B726EC001BDCDC /* UILabel+YBAttributeTextTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCC209224B726EC001BDCDC /* UILabel+YBAttributeTextTapAction.m */; };
  1344. EBCC49C824EFC47500837F5F /* InterMailEditSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCC49C724EFC47500837F5F /* InterMailEditSearchVC.m */; };
  1345. EBCCD86424C2D7CD000D6689 /* MailGroupVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCCD86224C2D7CC000D6689 /* MailGroupVC.m */; };
  1346. EBCCD86A24C2DA55000D6689 /* MailChatModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCCD86924C2DA55000D6689 /* MailChatModel.m */; };
  1347. EBCCD86D24C2DC57000D6689 /* MailChatVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCCD86C24C2DC57000D6689 /* MailChatVC.m */; };
  1348. EBCCEC4E2508C3D800DC6B6F /* BookSetPlayTimeAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCCEC4C2508C3D700DC6B6F /* BookSetPlayTimeAlert.m */; };
  1349. EBCCEC4F2508C3D800DC6B6F /* BookSetPlayTimeAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBCCEC4D2508C3D800DC6B6F /* BookSetPlayTimeAlert.xib */; };
  1350. EBCCEC532508C6D400DC6B6F /* BookSetPlayTimeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCCEC512508C6D400DC6B6F /* BookSetPlayTimeCell.m */; };
  1351. EBCCEC542508C6D400DC6B6F /* BookSetPlayTimeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBCCEC522508C6D400DC6B6F /* BookSetPlayTimeCell.xib */; };
  1352. EBCCEC572508CAAE00DC6B6F /* BookSetPlayTimeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCCEC562508CAAE00DC6B6F /* BookSetPlayTimeModel.m */; };
  1353. EBCE636A24AEC7BB004C9B3B /* BookChanelModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCE636924AEC7BB004C9B3B /* BookChanelModel.m */; };
  1354. EBCE636D24AF2785004C9B3B /* BookChanelleftModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCE636C24AF2785004C9B3B /* BookChanelleftModel.m */; };
  1355. EBCE637024AF281A004C9B3B /* BookChanelRightModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCE636F24AF281A004C9B3B /* BookChanelRightModel.m */; };
  1356. EBCE637324AF388E004C9B3B /* BookChanelSubListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCE637124AF388D004C9B3B /* BookChanelSubListVC.m */; };
  1357. EBCFA0F723AC6CBC00A62645 /* MyTDTopicUserMoveVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCFA0F623AC6CBC00A62645 /* MyTDTopicUserMoveVC.m */; };
  1358. EBCFA0FA23ACEBE600A62645 /* MyTDTopicCreateVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCFA0F923ACEBE600A62645 /* MyTDTopicCreateVC.m */; };
  1359. EBCFA0FD23ACF06A00A62645 /* MyTDTopicSelectExtentVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCFA0FC23ACF06A00A62645 /* MyTDTopicSelectExtentVC.m */; };
  1360. EBCFCDE325184621002CD1B8 /* HomeSchoolContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCFCDE125184621002CD1B8 /* HomeSchoolContentCell.m */; };
  1361. EBCFCDE425184621002CD1B8 /* HomeSchoolContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBCFCDE225184621002CD1B8 /* HomeSchoolContentCell.xib */; };
  1362. EBCFCDE825185002002CD1B8 /* HomeSchollVideoVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCFCDE725185001002CD1B8 /* HomeSchollVideoVC.m */; };
  1363. EBD29F2825021AF400AEB04C /* BookListDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD29F2625021AF300AEB04C /* BookListDetailVC.m */; };
  1364. EBD29F2A25022A1600AEB04C /* BookDetail.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F2925022A1600AEB04C /* BookDetail.storyboard */; };
  1365. EBD29F2D25022B8C00AEB04C /* BookListenVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD29F2C25022B8C00AEB04C /* BookListenVC.m */; };
  1366. EBD29F302502420A00AEB04C /* BookListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD29F2F2502420A00AEB04C /* BookListModel.m */; };
  1367. EBD29FA225025A0700AEB04C /* bds_easr_wakeup_words.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F8125025A0200AEB04C /* bds_easr_wakeup_words.dat */; };
  1368. EBD29FA325025A0700AEB04C /* Chinese_Text.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F8225025A0200AEB04C /* Chinese_Text.dat */; };
  1369. EBD29FA425025A0700AEB04C /* Chinese_Speech_Male.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F8325025A0200AEB04C /* Chinese_Speech_Male.dat */; };
  1370. EBD29FA625025A0700AEB04C /* bds_easr_mfe_dnn.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F8525025A0200AEB04C /* bds_easr_mfe_dnn.dat */; };
  1371. EBD29FA725025A0700AEB04C /* bd_etts_common_text_txt_all_mand_eng_middle_big_v3.4.2_20190710.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F8625025A0200AEB04C /* bd_etts_common_text_txt_all_mand_eng_middle_big_v3.4.2_20190710.dat */; };
  1372. EBD29FAB25025A0700AEB04C /* bds_easr_input_model.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F8A25025A0300AEB04C /* bds_easr_input_model.dat */; };
  1373. EBD29FAF25025A0700AEB04C /* English_Speech_Female.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F8E25025A0400AEB04C /* English_Speech_Female.dat */; };
  1374. EBD29FB025025A0700AEB04C /* English_Speech_Male.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F8F25025A0400AEB04C /* English_Speech_Male.dat */; };
  1375. EBD29FB125025A0700AEB04C /* Chinese_And_English_Text.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9025025A0400AEB04C /* Chinese_And_English_Text.dat */; };
  1376. EBD29FB325025A0700AEB04C /* bds_easr_dnn_wakeup_model.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9225025A0400AEB04C /* bds_easr_dnn_wakeup_model.dat */; };
  1377. EBD29FB425025A0700AEB04C /* bds_easr_mfe_cmvn.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9325025A0400AEB04C /* bds_easr_mfe_cmvn.dat */; };
  1378. EBD29FB525025A0700AEB04C /* English_Text.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9425025A0400AEB04C /* English_Text.dat */; };
  1379. EBD29FB725025A0700AEB04C /* bds_license.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9625025A0500AEB04C /* bds_license.dat */; };
  1380. EBD29FB825025A0700AEB04C /* Chinese_And_English_Speech_Male.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9725025A0500AEB04C /* Chinese_And_English_Speech_Male.dat */; };
  1381. EBD29FB925025A0700AEB04C /* chinese_speech.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9825025A0500AEB04C /* chinese_speech.dat */; };
  1382. EBD29FBB25025A0700AEB04C /* bds_easr_gramm.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9A25025A0500AEB04C /* bds_easr_gramm.dat */; };
  1383. EBD29FBC25025A0700AEB04C /* bds_easr_basic_model.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9B25025A0600AEB04C /* bds_easr_basic_model.dat */; };
  1384. EBD29FC025025A0700AEB04C /* bd_etts_common_speech_m15_mand_eng_high_am-mgc_v3.6.0_20190117.dat in Resources */ = {isa = PBXBuildFile; fileRef = EBD29F9F25025A0600AEB04C /* bd_etts_common_speech_m15_mand_eng_high_am-mgc_v3.6.0_20190117.dat */; };
  1385. EBD4A1FA250B54FD0088D94F /* BookListenSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD4A1F9250B54FD0088D94F /* BookListenSubModel.m */; };
  1386. EBD4A1FD250B5B4D0088D94F /* BookRecommendModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD4A1FC250B5B4D0088D94F /* BookRecommendModel.m */; };
  1387. EBD537AD24908CD3000EDF2B /* HomeTeacherCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD537AB24908CD3000EDF2B /* HomeTeacherCell.m */; };
  1388. EBD537AE24908CD3000EDF2B /* HomeTeacherCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBD537AC24908CD3000EDF2B /* HomeTeacherCell.xib */; };
  1389. EBD537B12490A709000EDF2B /* BookTeacherListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD537B02490A709000EDF2B /* BookTeacherListVC.m */; };
  1390. EBD537B42490AE1D000EDF2B /* BookListenDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD537B32490AE1D000EDF2B /* BookListenDetailVC.m */; };
  1391. EBD6231125148231007FF6BC /* IndexGoodBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD6230F25148231007FF6BC /* IndexGoodBookCell.m */; };
  1392. EBD6231225148231007FF6BC /* IndexGoodBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBD6231025148231007FF6BC /* IndexGoodBookCell.xib */; };
  1393. EBD623152514A175007FF6BC /* home.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EBD623142514A174007FF6BC /* home.storyboard */; };
  1394. EBD623192514A21C007FF6BC /* IndexMoreVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623182514A21C007FF6BC /* IndexMoreVC.m */; };
  1395. EBD623BB25159A66007FF6BC /* WMZPageLoopView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623AB25159A66007FF6BC /* WMZPageLoopView.m */; };
  1396. EBD623BC25159A66007FF6BC /* WMZPageNaviBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623AC25159A66007FF6BC /* WMZPageNaviBtn.m */; };
  1397. EBD623BD25159A66007FF6BC /* NSObject+SafeKVO.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623B125159A66007FF6BC /* NSObject+SafeKVO.m */; };
  1398. EBD623BE25159A66007FF6BC /* WMZPageParam.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623B225159A66007FF6BC /* WMZPageParam.m */; };
  1399. EBD623BF25159A66007FF6BC /* WMZPageController.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623B525159A66007FF6BC /* WMZPageController.m */; };
  1400. EBD623C025159A66007FF6BC /* WMZPageScroller.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623B625159A66007FF6BC /* WMZPageScroller.m */; };
  1401. EBD623C125159A66007FF6BC /* UIView+PageRect.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623B925159A66007FF6BC /* UIView+PageRect.m */; };
  1402. EBD623C225159A66007FF6BC /* PageController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = EBD623BA25159A66007FF6BC /* PageController.bundle */; };
  1403. EBD623C62515A9BE007FF6BC /* HomeSchoolVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623C52515A9BE007FF6BC /* HomeSchoolVC.m */; };
  1404. EBD623DD2515CBA3007FF6BC /* SegmentHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623D72515CBA3007FF6BC /* SegmentHeaderView.m */; };
  1405. EBD623DE2515CBA3007FF6BC /* SecondViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623D82515CBA3007FF6BC /* SecondViewController.m */; };
  1406. EBD623DF2515CBA3007FF6BC /* ThirdViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623D92515CBA3007FF6BC /* ThirdViewController.m */; };
  1407. EBD623E02515CBA3007FF6BC /* SegmentView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623DB2515CBA3007FF6BC /* SegmentView.m */; };
  1408. EBD623E42515CC41007FF6BC /* FirstViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623E22515CC41007FF6BC /* FirstViewController.m */; };
  1409. EBD623E82515CE24007FF6BC /* HomeSchoolHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623E72515CE24007FF6BC /* HomeSchoolHeadView.m */; };
  1410. EBD623EC2515FF8F007FF6BC /* HomeSCDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623EA2515FF8F007FF6BC /* HomeSCDetailVC.m */; };
  1411. EBD623F0251603CD007FF6BC /* SegmentVController.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623EF251603CD007FF6BC /* SegmentVController.m */; };
  1412. EBD623F4251605F7007FF6BC /* CenterTouchTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD623F3251605F7007FF6BC /* CenterTouchTableView.m */; };
  1413. EBD627D52429DD6500D91C9E /* ChatQrcodeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBD627D42429DD6500D91C9E /* ChatQrcodeVC.m */; };
  1414. EBDD70BB23B4876F00AC0BF4 /* MyWorkCarVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDD70BA23B4876F00AC0BF4 /* MyWorkCarVC.m */; };
  1415. EBDE08B02458179B005D426C /* CommonHomeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDE08AF2458179B005D426C /* CommonHomeVC.m */; };
  1416. EBDE08B42458192C005D426C /* Common.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EBDE08B32458192C005D426C /* Common.storyboard */; };
  1417. EBDE08BB2458203A005D426C /* CommonBarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDE08B92458203A005D426C /* CommonBarCell.m */; };
  1418. EBDE08BC2458203A005D426C /* CommonBarCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBDE08BA2458203A005D426C /* CommonBarCell.xib */; };
  1419. EBDE08BF24582163005D426C /* CommonBarModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDE08BE24582163005D426C /* CommonBarModel.m */; };
  1420. EBDE08C324582BA6005D426C /* CommonListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDE08C124582BA6005D426C /* CommonListCell.m */; };
  1421. EBDE08C424582BA6005D426C /* CommonListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBDE08C224582BA6005D426C /* CommonListCell.xib */; };
  1422. EBDE08C7245837BF005D426C /* CommonListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDE08C6245837BF005D426C /* CommonListModel.m */; };
  1423. EBDE08CA24583D47005D426C /* CommonWorkVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDE08C924583D47005D426C /* CommonWorkVC.m */; };
  1424. EBDE08CD24583D6B005D426C /* CommonToolVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDE08CC24583D6B005D426C /* CommonToolVC.m */; };
  1425. EBDF42A324ADB91D00D5F0E4 /* BookSelectSubModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDF42A224ADB91D00D5F0E4 /* BookSelectSubModel.m */; };
  1426. EBE1E2A92494707B00DB80BF /* BookHotSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE1E2A82494707B00DB80BF /* BookHotSearchVC.m */; };
  1427. EBE1E2AD2494747300DB80BF /* BookHotSearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE1E2AB2494747300DB80BF /* BookHotSearchCell.m */; };
  1428. EBE1E2AE2494747300DB80BF /* BookHotSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE1E2AC2494747300DB80BF /* BookHotSearchCell.xib */; };
  1429. EBE1E2B224947C2800DB80BF /* HomeBigshotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE1E2B024947C2800DB80BF /* HomeBigshotCell.m */; };
  1430. EBE1E2B324947C2800DB80BF /* HomeBigshotCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE1E2B124947C2800DB80BF /* HomeBigshotCell.xib */; };
  1431. EBE1E2B724947E0800DB80BF /* HomeBigshotCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE1E2B524947E0700DB80BF /* HomeBigshotCollectCell.m */; };
  1432. EBE1E2B824947E0800DB80BF /* HomeBigshotCollectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE1E2B624947E0800DB80BF /* HomeBigshotCollectCell.xib */; };
  1433. EBE1E2BC2494A40200DB80BF /* HomeBigshotListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE1E2BA2494A40100DB80BF /* HomeBigshotListCell.xib */; };
  1434. EBE1E2BD2494A40200DB80BF /* HomeBigshotListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE1E2BB2494A40200DB80BF /* HomeBigshotListCell.m */; };
  1435. EBE1E2C02494AE2500DB80BF /* MailCourseVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE1E2BE2494AE2500DB80BF /* MailCourseVC.m */; };
  1436. EBE1E2C42494AF2B00DB80BF /* MailCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE1E2C22494AF2B00DB80BF /* MailCourseCell.m */; };
  1437. EBE1E2C52494AF2B00DB80BF /* MailCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE1E2C32494AF2B00DB80BF /* MailCourseCell.xib */; };
  1438. EBE1E2C92494BE7500DB80BF /* HFAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE1E2C62494BE7500DB80BF /* HFAlert.xib */; };
  1439. EBE1E2CA2494BE7500DB80BF /* HFAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE1E2C72494BE7500DB80BF /* HFAlert.m */; };
  1440. EBE36C3723A7208E002BE674 /* NewTopicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE36C3523A7208E002BE674 /* NewTopicCell.m */; };
  1441. EBE36C3823A7208E002BE674 /* NewTopicCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE36C3623A7208E002BE674 /* NewTopicCell.xib */; };
  1442. EBE36C3B23A72AFA002BE674 /* NewTopicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE36C3A23A72AFA002BE674 /* NewTopicModel.m */; };
  1443. EBE36C4423A791A9002BE674 /* ChatMsgWorkModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE36C4323A791A9002BE674 /* ChatMsgWorkModel.m */; };
  1444. EBE36C4723A863FC002BE674 /* NewTopicTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE36C4623A863FC002BE674 /* NewTopicTextView.m */; };
  1445. EBE36C4F23A8E413002BE674 /* TopicListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE36C4E23A8E413002BE674 /* TopicListModel.m */; };
  1446. EBE5EF192459478A00AD59C4 /* CommonToolMoveVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE5EF182459478A00AD59C4 /* CommonToolMoveVC.m */; };
  1447. EBE5EF1C2459645800AD59C4 /* CommonNoteVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE5EF1B2459645800AD59C4 /* CommonNoteVC.m */; };
  1448. EBE5EF1F2459841B00AD59C4 /* MyAccountVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE5EF1E2459841B00AD59C4 /* MyAccountVC.m */; };
  1449. EBE5EF232459853100AD59C4 /* MyAccountCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE5EF212459853100AD59C4 /* MyAccountCell.m */; };
  1450. EBE5EF242459853100AD59C4 /* MyAccountCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE5EF222459853100AD59C4 /* MyAccountCell.xib */; };
  1451. EBE5EF2724598F8600AD59C4 /* MyCardVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE5EF2624598F8600AD59C4 /* MyCardVC.m */; };
  1452. EBE96EC1245ABEB6008BDBA8 /* PayAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE96EC0245ABEB6008BDBA8 /* PayAlert.xib */; };
  1453. EBE96EC4245ABECB008BDBA8 /* PayAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE96EC3245ABECB008BDBA8 /* PayAlert.m */; };
  1454. EBE96EC8245AD77B008BDBA8 /* PayAlertCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE96EC6245AD77B008BDBA8 /* PayAlertCell.m */; };
  1455. EBE96EC9245AD77B008BDBA8 /* PayAlertCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBE96EC7245AD77B008BDBA8 /* PayAlertCell.xib */; };
  1456. EBEC966C23D69CC5001115FE /* MyFavoriteCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBEC966A23D69CC5001115FE /* MyFavoriteCell.m */; };
  1457. EBEC966D23D69CC5001115FE /* MyFavoriteCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBEC966B23D69CC5001115FE /* MyFavoriteCell.xib */; };
  1458. EBF1771B24826E5100C729DC /* BookPeriodicaCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF1771924826E5100C729DC /* BookPeriodicaCell.m */; };
  1459. EBF1771C24826E5100C729DC /* BookPeriodicaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBF1771A24826E5100C729DC /* BookPeriodicaCell.xib */; };
  1460. EBF1A8C823B1EF6700FA6F4B /* WaitWorkModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF1A8C723B1EF6700FA6F4B /* WaitWorkModel.m */; };
  1461. EBF1A8CA23B23A4100FA6F4B /* lock.caf in Resources */ = {isa = PBXBuildFile; fileRef = EBF1A8C923B23A4000FA6F4B /* lock.caf */; };
  1462. EBF2D54A23C2E76600EC35C4 /* MHTopicCommentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D54823C2E76600EC35C4 /* MHTopicCommentCell.m */; };
  1463. EBF2D54B23C2E76600EC35C4 /* MHTopicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D54923C2E76600EC35C4 /* MHTopicCell.m */; };
  1464. EBF2D55023C2E85600EC35C4 /* MHCommentFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D54C23C2E85600EC35C4 /* MHCommentFrame.m */; };
  1465. EBF2D55123C2E85600EC35C4 /* MHTopicFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D54E23C2E85600EC35C4 /* MHTopicFrame.m */; };
  1466. EBF2D55423C2E8A000EC35C4 /* MHComment.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D55223C2E89F00EC35C4 /* MHComment.m */; };
  1467. EBF2D55723C2E8F200EC35C4 /* MHUser.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D55523C2E8F200EC35C4 /* MHUser.m */; };
  1468. EBF2D55A23C2E92A00EC35C4 /* MHTopic.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D55923C2E92A00EC35C4 /* MHTopic.m */; };
  1469. EBF2D55D23C2E9AC00EC35C4 /* MHCommentReply.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D55B23C2E9AC00EC35C4 /* MHCommentReply.m */; };
  1470. EBF2D56023C2EC1800EC35C4 /* MHDivider.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D55F23C2EC1800EC35C4 /* MHDivider.m */; };
  1471. EBF2D56323C2FB8F00EC35C4 /* MHConstant.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2D56223C2FB8F00EC35C4 /* MHConstant.m */; };
  1472. EBF2FB0524A327330028EA09 /* HomeDayGoodBookVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2FB0424A327330028EA09 /* HomeDayGoodBookVC.m */; };
  1473. EBF2FB0824A32F880028EA09 /* HomeDayGoodArticeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2FB0624A32F880028EA09 /* HomeDayGoodArticeVC.m */; };
  1474. EBF2FB0B24A33B6A0028EA09 /* HomeSpeakVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2FB0A24A33B6A0028EA09 /* HomeSpeakVC.m */; };
  1475. EBF2FB0E24A3457A0028EA09 /* HomeWeiCousreVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2FB0C24A3457A0028EA09 /* HomeWeiCousreVC.m */; };
  1476. EBF2FB1124A3498C0028EA09 /* HomeMingShiVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2FB0F24A3498C0028EA09 /* HomeMingShiVC.m */; };
  1477. EBF2FB1424A34DD10028EA09 /* HomeUserVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF2FB1324A34DD10028EA09 /* HomeUserVC.m */; };
  1478. EBF3C5192513356400D40A66 /* IndexSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF3C5182513356400D40A66 /* IndexSearchVC.m */; };
  1479. EBF3C52725133D8200D40A66 /* SegmentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF3C52525133D8100D40A66 /* SegmentViewController.m */; };
  1480. EBF3C52E25133FB900D40A66 /* IndexAllVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF3C52D25133FB900D40A66 /* IndexAllVC.m */; };
  1481. EBF3C5322513446A00D40A66 /* IndexSubVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF3C5312513446A00D40A66 /* IndexSubVC.m */; };
  1482. EBF3C53725134DBB00D40A66 /* IndexAllCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF3C53525134DBB00D40A66 /* IndexAllCell.m */; };
  1483. EBF3C53825134DBB00D40A66 /* IndexAllCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBF3C53625134DBB00D40A66 /* IndexAllCell.xib */; };
  1484. EBF3C53F251353DB00D40A66 /* IndexAllModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF3C53C251353DA00D40A66 /* IndexAllModel.m */; };
  1485. EBF48A3124CFCD0300A91850 /* ChatSearchModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF48A3024CFCD0300A91850 /* ChatSearchModel.m */; };
  1486. EBF64A76241C73510074FD55 /* WorkFlowFecordSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF64A75241C73510074FD55 /* WorkFlowFecordSearchVC.m */; };
  1487. EBF64A79241C810A0074FD55 /* FecordSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF64A78241C810A0074FD55 /* FecordSearchVC.m */; };
  1488. EBF71753247229FB00ED1838 /* PayBookAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBF71750247229FA00ED1838 /* PayBookAlert.xib */; };
  1489. EBF71754247229FB00ED1838 /* PayBookAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF71752247229FB00ED1838 /* PayBookAlert.m */; };
  1490. EBF7175724722D4B00ED1838 /* BookWCDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF7175624722D4B00ED1838 /* BookWCDetailVC.m */; };
  1491. EBF7175B2472355700ED1838 /* PayBookAlertCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF717592472355700ED1838 /* PayBookAlertCell.m */; };
  1492. EBF7175C2472355700ED1838 /* PayBookAlertCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBF7175A2472355700ED1838 /* PayBookAlertCell.xib */; };
  1493. EBF7175F247237DF00ED1838 /* BookAlertModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF7175E247237DF00ED1838 /* BookAlertModel.m */; };
  1494. EBF7176724723CBA00ED1838 /* BookCardPayAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF7176224723CB900ED1838 /* BookCardPayAlert.m */; };
  1495. EBF7176824723CBA00ED1838 /* BookCardPayAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBF7176324723CB900ED1838 /* BookCardPayAlert.xib */; };
  1496. EBF7177224725B7A00ED1838 /* BookCardPayAlertCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF7177024725B7900ED1838 /* BookCardPayAlertCell.m */; };
  1497. EBF7177324725B7A00ED1838 /* BookCardPayAlertCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBF7177124725B7A00ED1838 /* BookCardPayAlertCell.xib */; };
  1498. EBF7177724725EDF00ED1838 /* BookLoginPayAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF7177524725EDE00ED1838 /* BookLoginPayAlert.m */; };
  1499. EBF7177824725EDF00ED1838 /* BookLoginPayAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBF7177624725EDE00ED1838 /* BookLoginPayAlert.xib */; };
  1500. EBF7177C24726A4500ED1838 /* HomeWeiCousreCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF7177A24726A4500ED1838 /* HomeWeiCousreCollectCell.m */; };
  1501. EBF7177D24726A4500ED1838 /* HomeWeiCousreCollectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBF7177B24726A4500ED1838 /* HomeWeiCousreCollectCell.xib */; };
  1502. EBFA3765240391A900A584FC /* WebDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFA3764240391A900A584FC /* WebDetailCell.m */; };
  1503. EBFA5EE32491D6F300AD38B0 /* ReplayMeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFA5EE22491D6F300AD38B0 /* ReplayMeVC.m */; };
  1504. EBFA5EE72491D8FA00AD38B0 /* ReplayMeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFA5EE52491D8FA00AD38B0 /* ReplayMeCell.m */; };
  1505. EBFA5EE82491D8FB00AD38B0 /* ReplayMeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBFA5EE62491D8FA00AD38B0 /* ReplayMeCell.xib */; };
  1506. EBFA5EEB2491F9B100AD38B0 /* ReplayMeLikeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFA5EEA2491F9B100AD38B0 /* ReplayMeLikeVC.m */; };
  1507. EBFA5EF4246E374A00915D5F /* HomeMusicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFA5EF2246E374A00915D5F /* HomeMusicCell.m */; };
  1508. EBFA5EF5246E374A00915D5F /* HomeMusicCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBFA5EF3246E374A00915D5F /* HomeMusicCell.xib */; };
  1509. EBFC605A23FE52DE00A6874B /* HomeCommentView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFC605923FE52DE00A6874B /* HomeCommentView.m */; };
  1510. EBFC605C23FE52EE00A6874B /* HomeCommentView.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBFC605B23FE52EE00A6874B /* HomeCommentView.xib */; };
  1511. EBFDDADA241B9DA100875D8A /* ReadSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFDDAD9241B9DA100875D8A /* ReadSearchVC.m */; };
  1512. EBFDFE472477610F0046E847 /* BookSelectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFDFE452477610F0046E847 /* BookSelectCell.m */; };
  1513. EBFDFE482477610F0046E847 /* BookSelectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBFDFE462477610F0046E847 /* BookSelectCell.xib */; };
  1514. EBFDFE4C247762280046E847 /* BookSelectCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFDFE4A247762280046E847 /* BookSelectCollectCell.m */; };
  1515. EBFDFE4D247762280046E847 /* BookSelectCollectCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = EBFDFE4B247762280046E847 /* BookSelectCollectCell.xib */; };
  1516. EBFDFE50247778CC0046E847 /* BookSelectModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFDFE4F247778CC0046E847 /* BookSelectModel.m */; };
  1517. EBFE261824D934CA00FC4A10 /* NoteDraftVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFE261724D934CA00FC4A10 /* NoteDraftVC.m */; };
  1518. EBFF89BC24CC102D00018E76 /* CommomSearchVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFF89BA24CC102D00018E76 /* CommomSearchVC.m */; };
  1519. EBFFE22924234238008D4312 /* OtherFavoriteVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EBFFE22824234238008D4312 /* OtherFavoriteVC.m */; };
  1520. /* End PBXBuildFile section */
  1521. /* Begin PBXFileReference section */
  1522. 08851DEDD839FAF399E8A0D5 /* Pods-smartRhino.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-smartRhino.debug.xcconfig"; path = "Target Support Files/Pods-smartRhino/Pods-smartRhino.debug.xcconfig"; sourceTree = "<group>"; };
  1523. 320FF48123A720C50009043B /* NoteBookVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBookVC.h; sourceTree = "<group>"; };
  1524. 320FF48223A720C50009043B /* NoteBookVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBookVC.m; sourceTree = "<group>"; };
  1525. 320FF48523A7283B0009043B /* MyNoteBookModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyNoteBookModel.h; sourceTree = "<group>"; };
  1526. 320FF48623A7283B0009043B /* MyNoteBookModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyNoteBookModel.m; sourceTree = "<group>"; };
  1527. 3220A0C023CC7F34005A347C /* shoujianrenResultView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = shoujianrenResultView.h; sourceTree = "<group>"; };
  1528. 3220A0C123CC7F34005A347C /* shoujianrenResultView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = shoujianrenResultView.m; sourceTree = "<group>"; };
  1529. 3220A0C323CC8F7C005A347C /* shoujianrenResultViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = shoujianrenResultViewCell.h; sourceTree = "<group>"; };
  1530. 3220A0C423CC8F7C005A347C /* shoujianrenResultViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = shoujianrenResultViewCell.m; sourceTree = "<group>"; };
  1531. 3220A0C523CC8F7C005A347C /* shoujianrenResultViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = shoujianrenResultViewCell.xib; sourceTree = "<group>"; };
  1532. 3237321623BC6B2700CC048D /* WZSendInfoCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WZSendInfoCell.h; sourceTree = "<group>"; };
  1533. 3237321723BC6B2700CC048D /* WZSendInfoCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WZSendInfoCell.m; sourceTree = "<group>"; };
  1534. 3237321823BC6B2700CC048D /* WZSendInfoCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WZSendInfoCell.xib; sourceTree = "<group>"; };
  1535. 324D960023A1139300C7D9E8 /* ChatMsgSearchModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatMsgSearchModel.m; sourceTree = "<group>"; };
  1536. 324D960123A1139300C7D9E8 /* ChatMsgSearchModelSub.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatMsgSearchModelSub.m; sourceTree = "<group>"; };
  1537. 324D960223A1139300C7D9E8 /* ChatMsgSearchModelSub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatMsgSearchModelSub.h; sourceTree = "<group>"; };
  1538. 324D960323A1139300C7D9E8 /* ChatMsgSearchModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatMsgSearchModel.h; sourceTree = "<group>"; };
  1539. 324D960623A204B300C7D9E8 /* ChatTestingVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatTestingVC.h; sourceTree = "<group>"; };
  1540. 324D960723A204B300C7D9E8 /* ChatTestingVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatTestingVC.m; sourceTree = "<group>"; };
  1541. 324D960923A2062700C7D9E8 /* TestinModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TestinModel.h; sourceTree = "<group>"; };
  1542. 324D960A23A2062700C7D9E8 /* TestinModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TestinModel.m; sourceTree = "<group>"; };
  1543. 324D960C23A206B900C7D9E8 /* TestinCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TestinCell.h; sourceTree = "<group>"; };
  1544. 324D960D23A206B900C7D9E8 /* TestinCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TestinCell.m; sourceTree = "<group>"; };
  1545. 324D960E23A206B900C7D9E8 /* TestinCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TestinCell.xib; sourceTree = "<group>"; };
  1546. 324D961223A232A200C7D9E8 /* Favorite.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Favorite.storyboard; sourceTree = "<group>"; };
  1547. 324D961723A233A300C7D9E8 /* MyFavoriteVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFavoriteVC.h; sourceTree = "<group>"; };
  1548. 324D961823A233A300C7D9E8 /* MyFavoriteVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteVC.m; sourceTree = "<group>"; };
  1549. 324D962223A245A100C7D9E8 /* MyFavoriteViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFavoriteViewCell.h; sourceTree = "<group>"; };
  1550. 324D962323A245A100C7D9E8 /* MyFavoriteViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteViewCell.m; sourceTree = "<group>"; };
  1551. 324D962423A245A100C7D9E8 /* MyFavoriteViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyFavoriteViewCell.xib; sourceTree = "<group>"; };
  1552. 324D962723A24C7F00C7D9E8 /* MyFavoriteNewFindVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFavoriteNewFindVC.h; sourceTree = "<group>"; };
  1553. 324D962823A24C7F00C7D9E8 /* MyFavoriteNewFindVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteNewFindVC.m; sourceTree = "<group>"; };
  1554. 324D962A23A24E3700C7D9E8 /* FindShareTypeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FindShareTypeCell.h; sourceTree = "<group>"; };
  1555. 324D962B23A24E3700C7D9E8 /* FindShareTypeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FindShareTypeCell.m; sourceTree = "<group>"; };
  1556. 324D962C23A24E3700C7D9E8 /* FindShareTypeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FindShareTypeCell.xib; sourceTree = "<group>"; };
  1557. 324D962F23A3887100C7D9E8 /* MyFavoriteModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFavoriteModel.h; sourceTree = "<group>"; };
  1558. 324D963023A3887100C7D9E8 /* MyFavoriteModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteModel.m; sourceTree = "<group>"; };
  1559. 324D963223A38A4A00C7D9E8 /* MyFavoriteSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFavoriteSubModel.h; sourceTree = "<group>"; };
  1560. 324D963323A38A4A00C7D9E8 /* MyFavoriteSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteSubModel.m; sourceTree = "<group>"; };
  1561. 324D963623A3BD1E00C7D9E8 /* MyCenterSearch.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MyCenterSearch.storyboard; sourceTree = "<group>"; };
  1562. 324D963923A3BD5700C7D9E8 /* MyCenterSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCenterSearchVC.h; sourceTree = "<group>"; };
  1563. 324D963A23A3BD5700C7D9E8 /* MyCenterSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCenterSearchVC.m; sourceTree = "<group>"; };
  1564. 324D963D23A4D47F00C7D9E8 /* NoteBook.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NoteBook.storyboard; sourceTree = "<group>"; };
  1565. 324F1767239B3B4D0025CAE7 /* NoticeSelectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeSelectCell.h; sourceTree = "<group>"; };
  1566. 324F1768239B3B4D0025CAE7 /* NoticeSelectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeSelectCell.m; sourceTree = "<group>"; };
  1567. 324F1769239B3B4D0025CAE7 /* NoticeSelectCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NoticeSelectCell.xib; sourceTree = "<group>"; };
  1568. 324F17F2239E57010025CAE7 /* HomeTestViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeTestViewController.h; sourceTree = "<group>"; };
  1569. 324F17F3239E57010025CAE7 /* HomeTestViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeTestViewController.m; sourceTree = "<group>"; };
  1570. 324F17F5239E5B540025CAE7 /* App.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = App.pdf; sourceTree = "<group>"; };
  1571. 32580E5123AB9976005DF500 /* NoteBookDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBookDetailVC.h; sourceTree = "<group>"; };
  1572. 32580E5223AB9976005DF500 /* NoteBookDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBookDetailVC.m; sourceTree = "<group>"; };
  1573. 32580E5923ACA98A005DF500 /* MyNoteBookDetailModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyNoteBookDetailModel.h; sourceTree = "<group>"; };
  1574. 32580E5A23ACA98A005DF500 /* MyNoteBookDetailModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyNoteBookDetailModel.m; sourceTree = "<group>"; };
  1575. 32580E5C23ADB3D2005DF500 /* NoteBookSelectFinderVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBookSelectFinderVC.h; sourceTree = "<group>"; };
  1576. 32580E5D23ADB3D2005DF500 /* NoteBookSelectFinderVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBookSelectFinderVC.m; sourceTree = "<group>"; };
  1577. 32580E5F23ADB814005DF500 /* NoteBookSelectFinderCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBookSelectFinderCell.h; sourceTree = "<group>"; };
  1578. 32580E6023ADB814005DF500 /* NoteBookSelectFinderCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBookSelectFinderCell.m; sourceTree = "<group>"; };
  1579. 32580E6123ADB814005DF500 /* NoteBookSelectFinderCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NoteBookSelectFinderCell.xib; sourceTree = "<group>"; };
  1580. 32580E6423ADCF35005DF500 /* NoteBooKSelectNoteBookVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBooKSelectNoteBookVC.h; sourceTree = "<group>"; };
  1581. 32580E6523ADCF35005DF500 /* NoteBooKSelectNoteBookVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBooKSelectNoteBookVC.m; sourceTree = "<group>"; };
  1582. 32580E6723ADF744005DF500 /* FWZGetNoteBookTool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FWZGetNoteBookTool.h; sourceTree = "<group>"; };
  1583. 32580E6823ADF744005DF500 /* FWZGetNoteBookTool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FWZGetNoteBookTool.m; sourceTree = "<group>"; };
  1584. 325BB82D23CEFB34006F3972 /* HomeTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeTableViewCell.xib; sourceTree = "<group>"; };
  1585. 3264781D23BDB47E00E0DC2D /* ChatMsgNoticeDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgNoticeDetailVC.h; sourceTree = "<group>"; };
  1586. 3264781E23BDB47E00E0DC2D /* ChatMsgNoticeDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgNoticeDetailVC.m; sourceTree = "<group>"; };
  1587. 3264782023BEF4C900E0DC2D /* UIAlertController+TapGesAlertController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+TapGesAlertController.h"; sourceTree = "<group>"; };
  1588. 3264782123BEF4C900E0DC2D /* UIAlertController+TapGesAlertController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+TapGesAlertController.m"; sourceTree = "<group>"; };
  1589. 3264782323BF0B9600E0DC2D /* ArtticleComentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArtticleComentCell.h; sourceTree = "<group>"; };
  1590. 3264782423BF0B9600E0DC2D /* ArtticleComentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ArtticleComentCell.m; sourceTree = "<group>"; };
  1591. 3264782523BF0B9600E0DC2D /* ArtticleComentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ArtticleComentCell.xib; sourceTree = "<group>"; };
  1592. 326B92D4239F4B35004230EB /* FWZFileGetTool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FWZFileGetTool.h; sourceTree = "<group>"; };
  1593. 326B92D5239F4B35004230EB /* FWZFileGetTool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FWZFileGetTool.m; sourceTree = "<group>"; };
  1594. 326B92D7239F78B8004230EB /* MoveViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MoveViewController.h; sourceTree = "<group>"; };
  1595. 326B92D8239F78B8004230EB /* MoveViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MoveViewController.m; sourceTree = "<group>"; };
  1596. 326B92DA239F8EFD004230EB /* NoticeFindModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeFindModel.h; sourceTree = "<group>"; };
  1597. 326B92DB239F8EFD004230EB /* NoticeFindModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeFindModel.m; sourceTree = "<group>"; };
  1598. 3274780123A87E97003B5F49 /* FileLookupVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileLookupVC.h; sourceTree = "<group>"; };
  1599. 3274780223A87E97003B5F49 /* FileLookupVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FileLookupVC.m; sourceTree = "<group>"; };
  1600. 327E375A23A9C86600842F47 /* NoteBookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBookCell.h; sourceTree = "<group>"; };
  1601. 327E375B23A9C86600842F47 /* NoteBookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBookCell.m; sourceTree = "<group>"; };
  1602. 327E375C23A9C86600842F47 /* NoteBookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NoteBookCell.xib; sourceTree = "<group>"; };
  1603. 327E375F23A9C90900842F47 /* CreateNoteBookVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CreateNoteBookVC.h; sourceTree = "<group>"; };
  1604. 327E376023A9C90900842F47 /* CreateNoteBookVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CreateNoteBookVC.m; sourceTree = "<group>"; };
  1605. 327E376223A9D9C900842F47 /* CreateNoteBookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CreateNoteBookCell.h; sourceTree = "<group>"; };
  1606. 327E376323A9D9C900842F47 /* CreateNoteBookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CreateNoteBookCell.m; sourceTree = "<group>"; };
  1607. 327E376423A9D9C900842F47 /* CreateNoteBookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CreateNoteBookCell.xib; sourceTree = "<group>"; };
  1608. 32A72DB123BA02510018BA9D /* WZContactModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WZContactModel.h; sourceTree = "<group>"; };
  1609. 32A72DB223BA02510018BA9D /* WZContactModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WZContactModel.m; sourceTree = "<group>"; };
  1610. 32AB488423A5036E00A1E9F7 /* MyFindModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFindModel.h; sourceTree = "<group>"; };
  1611. 32AB488523A5036E00A1E9F7 /* MyFindModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFindModel.m; sourceTree = "<group>"; };
  1612. 32C384C023B0E24B00BBC733 /* NoteBookShareVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBookShareVC.h; sourceTree = "<group>"; };
  1613. 32C384C123B0E24B00BBC733 /* NoteBookShareVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBookShareVC.m; sourceTree = "<group>"; };
  1614. 32C384C623B1AE9500BBC733 /* NoteBookCommentVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBookCommentVC.h; sourceTree = "<group>"; };
  1615. 32C384C723B1AE9500BBC733 /* NoteBookCommentVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBookCommentVC.m; sourceTree = "<group>"; };
  1616. 32C384C923B329E700BBC733 /* TDInterLeterTypeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDInterLeterTypeVC.h; sourceTree = "<group>"; };
  1617. 32C384CA23B329E700BBC733 /* TDInterLeterTypeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDInterLeterTypeVC.m; sourceTree = "<group>"; };
  1618. 32C384CD23B3416800BBC733 /* InterLeterModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InterLeterModel.h; sourceTree = "<group>"; };
  1619. 32C384CE23B3416800BBC733 /* InterLeterModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InterLeterModel.m; sourceTree = "<group>"; };
  1620. 32C384D023B3636100BBC733 /* CreateInterLeterVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CreateInterLeterVC.h; sourceTree = "<group>"; };
  1621. 32C384D123B3636100BBC733 /* CreateInterLeterVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CreateInterLeterVC.m; sourceTree = "<group>"; };
  1622. 32C384D323B4B84B00BBC733 /* TDInterLeterDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDInterLeterDetailVC.h; sourceTree = "<group>"; };
  1623. 32C384D423B4B84B00BBC733 /* TDInterLeterDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDInterLeterDetailVC.m; sourceTree = "<group>"; };
  1624. 8E51D21316DAB2F2BC17B146 /* Pods_smartRhino.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_smartRhino.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1625. A2ECBA5887EB2D678A3A928A /* Pods-smartRhino.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-smartRhino.release.xcconfig"; path = "Target Support Files/Pods-smartRhino/Pods-smartRhino.release.xcconfig"; sourceTree = "<group>"; };
  1626. C5598D1A23865E4500BC7185 /* DepartmentModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DepartmentModel.h; sourceTree = "<group>"; };
  1627. C5598D1B23865E4500BC7185 /* DepartmentModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DepartmentModel.m; sourceTree = "<group>"; };
  1628. C5598D1D23865E7400BC7185 /* AddressBookGroupsModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddressBookGroupsModel.h; sourceTree = "<group>"; };
  1629. C5598D1E23865E7400BC7185 /* AddressBookGroupsModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddressBookGroupsModel.m; sourceTree = "<group>"; };
  1630. C5598D2023869D1400BC7185 /* NoticeListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeListModel.h; sourceTree = "<group>"; };
  1631. C5598D2123869D1400BC7185 /* NoticeListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeListModel.m; sourceTree = "<group>"; };
  1632. C5598D2323869D2300BC7185 /* NoticeModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeModel.h; sourceTree = "<group>"; };
  1633. C5598D2423869D2300BC7185 /* NoticeModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeModel.m; sourceTree = "<group>"; };
  1634. C56AC6EE2384DB0D00D46052 /* EaseSDKHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EaseSDKHelper.h; sourceTree = "<group>"; };
  1635. C56AC7912384DB0F00D46052 /* EaseSDKHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EaseSDKHelper.m; sourceTree = "<group>"; };
  1636. C572647223828C5B0054EE66 /* NSArray+NilSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+NilSafe.h"; sourceTree = "<group>"; };
  1637. C572647323828C5C0054EE66 /* NSDictionary+NilSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+NilSafe.m"; sourceTree = "<group>"; };
  1638. C572647423828C5C0054EE66 /* NSArray+NilSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+NilSafe.m"; sourceTree = "<group>"; };
  1639. C572647523828C5C0054EE66 /* NSDictionary+NilSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+NilSafe.h"; sourceTree = "<group>"; };
  1640. C572647E2382A6370054EE66 /* ArticleImageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArticleImageCell.h; sourceTree = "<group>"; };
  1641. C572647F2382A6370054EE66 /* ArticleImageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ArticleImageCell.m; sourceTree = "<group>"; };
  1642. C57264802382A6370054EE66 /* ArticleImageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ArticleImageCell.xib; sourceTree = "<group>"; };
  1643. C57264832382A6520054EE66 /* ArticleTextCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArticleTextCell.h; sourceTree = "<group>"; };
  1644. C57264842382A6520054EE66 /* ArticleTextCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ArticleTextCell.m; sourceTree = "<group>"; };
  1645. C57264852382A6520054EE66 /* ArticleTextCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ArticleTextCell.xib; sourceTree = "<group>"; };
  1646. C58A667F238267F500C3D7C3 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  1647. C58A6681238267FD00C3D7C3 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  1648. C59D0A272382468A007D0760 /* NSArray+JSONModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+JSONModel.m"; sourceTree = "<group>"; };
  1649. C59D0A282382468A007D0760 /* NSArray+JSONModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+JSONModel.h"; sourceTree = "<group>"; };
  1650. C59D0A2A2382468A007D0760 /* JSONValueTransformer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONValueTransformer.m; sourceTree = "<group>"; };
  1651. C59D0A2B2382468A007D0760 /* JSONKeyMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONKeyMapper.h; sourceTree = "<group>"; };
  1652. C59D0A2C2382468A007D0760 /* JSONValueTransformer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONValueTransformer.h; sourceTree = "<group>"; };
  1653. C59D0A2D2382468A007D0760 /* JSONKeyMapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONKeyMapper.m; sourceTree = "<group>"; };
  1654. C59D0A2F2382468A007D0760 /* JSONModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONModel.m; sourceTree = "<group>"; };
  1655. C59D0A302382468A007D0760 /* JSONModelArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONModelArray.h; sourceTree = "<group>"; };
  1656. C59D0A312382468A007D0760 /* JSONModelError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONModelError.m; sourceTree = "<group>"; };
  1657. C59D0A322382468A007D0760 /* JSONModelClassProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONModelClassProperty.h; sourceTree = "<group>"; };
  1658. C59D0A332382468A007D0760 /* JSONModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONModel.h; sourceTree = "<group>"; };
  1659. C59D0A342382468A007D0760 /* JSONModelArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONModelArray.m; sourceTree = "<group>"; };
  1660. C59D0A352382468A007D0760 /* JSONModelClassProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONModelClassProperty.m; sourceTree = "<group>"; };
  1661. C59D0A362382468A007D0760 /* JSONModelError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONModelError.h; sourceTree = "<group>"; };
  1662. C59D0A372382468A007D0760 /* JSONModelLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONModelLib.h; sourceTree = "<group>"; };
  1663. C59D0A392382468A007D0760 /* JSONHTTPClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONHTTPClient.m; sourceTree = "<group>"; };
  1664. C59D0A3A2382468A007D0760 /* JSONAPI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONAPI.m; sourceTree = "<group>"; };
  1665. C59D0A3B2382468A007D0760 /* JSONModel+networking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "JSONModel+networking.h"; sourceTree = "<group>"; };
  1666. C59D0A3C2382468A007D0760 /* JSONHTTPClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONHTTPClient.h; sourceTree = "<group>"; };
  1667. C59D0A3D2382468A007D0760 /* JSONAPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONAPI.h; sourceTree = "<group>"; };
  1668. C59D0A3E2382468A007D0760 /* JSONModel+networking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "JSONModel+networking.m"; sourceTree = "<group>"; };
  1669. C59D0A4923824E80007D0760 /* PhbAppConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PhbAppConfig.h; sourceTree = "<group>"; };
  1670. C59D0B4E23825DE0007D0760 /* YYDiskCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYDiskCache.m; sourceTree = "<group>"; };
  1671. C59D0B4F23825DE0007D0760 /* YYKVStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYKVStorage.h; sourceTree = "<group>"; };
  1672. C59D0B5023825DE0007D0760 /* YYCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYCache.m; sourceTree = "<group>"; };
  1673. C59D0B5123825DE0007D0760 /* YYMemoryCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYMemoryCache.h; sourceTree = "<group>"; };
  1674. C59D0B5223825DE0007D0760 /* YYDiskCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYDiskCache.h; sourceTree = "<group>"; };
  1675. C59D0B5323825DE0007D0760 /* YYCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYCache.h; sourceTree = "<group>"; };
  1676. C59D0B5423825DE0007D0760 /* YYKVStorage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYKVStorage.m; sourceTree = "<group>"; };
  1677. C59D0B5523825DE0007D0760 /* YYMemoryCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYMemoryCache.m; sourceTree = "<group>"; };
  1678. C59D0B5723825DE0007D0760 /* YYImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYImageCache.m; sourceTree = "<group>"; };
  1679. C59D0B5823825DE0007D0760 /* YYImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYImage.h; sourceTree = "<group>"; };
  1680. C59D0B5923825DE0007D0760 /* YYWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYWebImageManager.m; sourceTree = "<group>"; };
  1681. C59D0B5A23825DE0007D0760 /* YYImageCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYImageCoder.h; sourceTree = "<group>"; };
  1682. C59D0B5B23825DE0007D0760 /* YYFrameImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYFrameImage.h; sourceTree = "<group>"; };
  1683. C59D0B5C23825DE0007D0760 /* YYSpriteSheetImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYSpriteSheetImage.m; sourceTree = "<group>"; };
  1684. C59D0B5D23825DE0007D0760 /* YYWebImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYWebImageOperation.h; sourceTree = "<group>"; };
  1685. C59D0B5E23825DE0007D0760 /* YYAnimatedImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYAnimatedImageView.h; sourceTree = "<group>"; };
  1686. C59D0B5F23825DE0007D0760 /* YYImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYImage.m; sourceTree = "<group>"; };
  1687. C59D0B6023825DE0007D0760 /* YYImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYImageCache.h; sourceTree = "<group>"; };
  1688. C59D0B6123825DE0007D0760 /* YYImageCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYImageCoder.m; sourceTree = "<group>"; };
  1689. C59D0B6223825DE0007D0760 /* YYWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYWebImageManager.h; sourceTree = "<group>"; };
  1690. C59D0B6323825DE0007D0760 /* YYFrameImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYFrameImage.m; sourceTree = "<group>"; };
  1691. C59D0B6523825DE0007D0760 /* _YYWebImageSetter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = _YYWebImageSetter.m; sourceTree = "<group>"; };
  1692. C59D0B6623825DE0007D0760 /* UIButton+YYWebImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+YYWebImage.h"; sourceTree = "<group>"; };
  1693. C59D0B6723825DE0007D0760 /* UIImageView+YYWebImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+YYWebImage.h"; sourceTree = "<group>"; };
  1694. C59D0B6823825DE0007D0760 /* CALayer+YYWebImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+YYWebImage.h"; sourceTree = "<group>"; };
  1695. C59D0B6923825DE0007D0760 /* MKAnnotationView+YYWebImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MKAnnotationView+YYWebImage.h"; sourceTree = "<group>"; };
  1696. C59D0B6A23825DE0007D0760 /* _YYWebImageSetter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _YYWebImageSetter.h; sourceTree = "<group>"; };
  1697. C59D0B6B23825DE0007D0760 /* UIButton+YYWebImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+YYWebImage.m"; sourceTree = "<group>"; };
  1698. C59D0B6C23825DE0007D0760 /* UIImageView+YYWebImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+YYWebImage.m"; sourceTree = "<group>"; };
  1699. C59D0B6D23825DE0007D0760 /* MKAnnotationView+YYWebImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MKAnnotationView+YYWebImage.m"; sourceTree = "<group>"; };
  1700. C59D0B6E23825DE0007D0760 /* CALayer+YYWebImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+YYWebImage.m"; sourceTree = "<group>"; };
  1701. C59D0B6F23825DE0007D0760 /* YYAnimatedImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYAnimatedImageView.m; sourceTree = "<group>"; };
  1702. C59D0B7023825DE0007D0760 /* YYWebImageOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYWebImageOperation.m; sourceTree = "<group>"; };
  1703. C59D0B7123825DE0007D0760 /* YYSpriteSheetImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYSpriteSheetImage.h; sourceTree = "<group>"; };
  1704. C59D0B7323825DE0007D0760 /* YYClassInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYClassInfo.h; sourceTree = "<group>"; };
  1705. C59D0B7423825DE0007D0760 /* NSObject+YYModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+YYModel.m"; sourceTree = "<group>"; };
  1706. C59D0B7523825DE0007D0760 /* YYClassInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYClassInfo.m; sourceTree = "<group>"; };
  1707. C59D0B7623825DE0007D0760 /* NSObject+YYModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+YYModel.h"; sourceTree = "<group>"; };
  1708. C59D0B7723825DE0007D0760 /* YYKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYKit.h; sourceTree = "<group>"; };
  1709. C59D0B7923825DE0007D0760 /* YYTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextView.m; sourceTree = "<group>"; };
  1710. C59D0B7B23825DE0007D0760 /* YYTextSelectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextSelectionView.h; sourceTree = "<group>"; };
  1711. C59D0B7C23825DE0007D0760 /* YYTextLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextLine.h; sourceTree = "<group>"; };
  1712. C59D0B7D23825DE0007D0760 /* YYTextMagnifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextMagnifier.m; sourceTree = "<group>"; };
  1713. C59D0B7E23825DE0007D0760 /* YYTextLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextLayout.h; sourceTree = "<group>"; };
  1714. C59D0B7F23825DE0007D0760 /* YYTextKeyboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextKeyboardManager.h; sourceTree = "<group>"; };
  1715. C59D0B8023825DE0007D0760 /* YYTextContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextContainerView.m; sourceTree = "<group>"; };
  1716. C59D0B8123825DE1007D0760 /* YYTextEffectWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextEffectWindow.m; sourceTree = "<group>"; };
  1717. C59D0B8223825DE1007D0760 /* YYTextDebugOption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextDebugOption.h; sourceTree = "<group>"; };
  1718. C59D0B8323825DE1007D0760 /* YYTextInput.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextInput.m; sourceTree = "<group>"; };
  1719. C59D0B8423825DE1007D0760 /* YYTextLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextLayout.m; sourceTree = "<group>"; };
  1720. C59D0B8523825DE1007D0760 /* YYTextMagnifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextMagnifier.h; sourceTree = "<group>"; };
  1721. C59D0B8623825DE1007D0760 /* YYTextLine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextLine.m; sourceTree = "<group>"; };
  1722. C59D0B8723825DE1007D0760 /* YYTextSelectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextSelectionView.m; sourceTree = "<group>"; };
  1723. C59D0B8823825DE1007D0760 /* YYTextEffectWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextEffectWindow.h; sourceTree = "<group>"; };
  1724. C59D0B8923825DE1007D0760 /* YYTextContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextContainerView.h; sourceTree = "<group>"; };
  1725. C59D0B8A23825DE1007D0760 /* YYTextKeyboardManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextKeyboardManager.m; sourceTree = "<group>"; };
  1726. C59D0B8B23825DE1007D0760 /* YYTextInput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextInput.h; sourceTree = "<group>"; };
  1727. C59D0B8C23825DE1007D0760 /* YYTextDebugOption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextDebugOption.m; sourceTree = "<group>"; };
  1728. C59D0B8D23825DE1007D0760 /* YYLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYLabel.m; sourceTree = "<group>"; };
  1729. C59D0B8E23825DE1007D0760 /* YYTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextView.h; sourceTree = "<group>"; };
  1730. C59D0B9023825DE1007D0760 /* YYTextAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextAttribute.h; sourceTree = "<group>"; };
  1731. C59D0B9123825DE1007D0760 /* YYTextRunDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextRunDelegate.m; sourceTree = "<group>"; };
  1732. C59D0B9223825DE1007D0760 /* YYTextUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextUtilities.m; sourceTree = "<group>"; };
  1733. C59D0B9323825DE1007D0760 /* NSParagraphStyle+YYText.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSParagraphStyle+YYText.m"; sourceTree = "<group>"; };
  1734. C59D0B9423825DE1007D0760 /* YYTextParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextParser.m; sourceTree = "<group>"; };
  1735. C59D0B9523825DE1007D0760 /* NSAttributedString+YYText.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSAttributedString+YYText.m"; sourceTree = "<group>"; };
  1736. C59D0B9623825DE1007D0760 /* UIPasteboard+YYText.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIPasteboard+YYText.m"; sourceTree = "<group>"; };
  1737. C59D0B9723825DE1007D0760 /* YYTextRubyAnnotation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextRubyAnnotation.h; sourceTree = "<group>"; };
  1738. C59D0B9823825DE1007D0760 /* YYTextArchiver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextArchiver.h; sourceTree = "<group>"; };
  1739. C59D0B9923825DE1007D0760 /* YYTextUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextUtilities.h; sourceTree = "<group>"; };
  1740. C59D0B9A23825DE1007D0760 /* YYTextRunDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextRunDelegate.h; sourceTree = "<group>"; };
  1741. C59D0B9B23825DE1007D0760 /* YYTextAttribute.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextAttribute.m; sourceTree = "<group>"; };
  1742. C59D0B9C23825DE1007D0760 /* NSAttributedString+YYText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSAttributedString+YYText.h"; sourceTree = "<group>"; };
  1743. C59D0B9D23825DE1007D0760 /* YYTextParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTextParser.h; sourceTree = "<group>"; };
  1744. C59D0B9E23825DE1007D0760 /* NSParagraphStyle+YYText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSParagraphStyle+YYText.h"; sourceTree = "<group>"; };
  1745. C59D0B9F23825DE1007D0760 /* YYTextArchiver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextArchiver.m; sourceTree = "<group>"; };
  1746. C59D0BA023825DE1007D0760 /* YYTextRubyAnnotation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTextRubyAnnotation.m; sourceTree = "<group>"; };
  1747. C59D0BA123825DE1007D0760 /* UIPasteboard+YYText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIPasteboard+YYText.h"; sourceTree = "<group>"; };
  1748. C59D0BA223825DE1007D0760 /* YYLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYLabel.h; sourceTree = "<group>"; };
  1749. C59D0BA423825DE1007D0760 /* YYKitMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYKitMacro.h; sourceTree = "<group>"; };
  1750. C59D0BA623825DE1007D0760 /* UITextField+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextField+YYAdd.m"; sourceTree = "<group>"; };
  1751. C59D0BA723825DE1007D0760 /* UIBezierPath+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBezierPath+YYAdd.m"; sourceTree = "<group>"; };
  1752. C59D0BA823825DE1007D0760 /* UIColor+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+YYAdd.m"; sourceTree = "<group>"; };
  1753. C59D0BA923825DE1007D0760 /* UIControl+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+YYAdd.h"; sourceTree = "<group>"; };
  1754. C59D0BAA23825DE1007D0760 /* UIDevice+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+YYAdd.m"; sourceTree = "<group>"; };
  1755. C59D0BAB23825DE1007D0760 /* UIApplication+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIApplication+YYAdd.m"; sourceTree = "<group>"; };
  1756. C59D0BAC23825DE1007D0760 /* UITableView+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+YYAdd.m"; sourceTree = "<group>"; };
  1757. C59D0BAD23825DE1007D0760 /* UIImage+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+YYAdd.h"; sourceTree = "<group>"; };
  1758. C59D0BAE23825DE1007D0760 /* UIScrollView+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+YYAdd.m"; sourceTree = "<group>"; };
  1759. C59D0BAF23825DE1007D0760 /* UIScreen+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+YYAdd.m"; sourceTree = "<group>"; };
  1760. C59D0BB023825DE1007D0760 /* UIView+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+YYAdd.m"; sourceTree = "<group>"; };
  1761. C59D0BB123825DE1007D0760 /* UIFont+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+YYAdd.h"; sourceTree = "<group>"; };
  1762. C59D0BB223825DE1007D0760 /* UIBarButtonItem+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+YYAdd.m"; sourceTree = "<group>"; };
  1763. C59D0BB323825DE1007D0760 /* UIGestureRecognizer+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIGestureRecognizer+YYAdd.m"; sourceTree = "<group>"; };
  1764. C59D0BB423825DE1007D0760 /* UITextField+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextField+YYAdd.h"; sourceTree = "<group>"; };
  1765. C59D0BB523825DE1007D0760 /* UIColor+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+YYAdd.h"; sourceTree = "<group>"; };
  1766. C59D0BB623825DE1007D0760 /* UIBezierPath+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBezierPath+YYAdd.h"; sourceTree = "<group>"; };
  1767. C59D0BB723825DE1007D0760 /* UIScreen+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+YYAdd.h"; sourceTree = "<group>"; };
  1768. C59D0BB823825DE1007D0760 /* UIScrollView+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+YYAdd.h"; sourceTree = "<group>"; };
  1769. C59D0BB923825DE1007D0760 /* UITableView+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+YYAdd.h"; sourceTree = "<group>"; };
  1770. C59D0BBA23825DE1007D0760 /* UIImage+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+YYAdd.m"; sourceTree = "<group>"; };
  1771. C59D0BBB23825DE1007D0760 /* UIDevice+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+YYAdd.h"; sourceTree = "<group>"; };
  1772. C59D0BBC23825DE1007D0760 /* UIApplication+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIApplication+YYAdd.h"; sourceTree = "<group>"; };
  1773. C59D0BBD23825DE1007D0760 /* UIControl+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+YYAdd.m"; sourceTree = "<group>"; };
  1774. C59D0BBE23825DE1007D0760 /* UIGestureRecognizer+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIGestureRecognizer+YYAdd.h"; sourceTree = "<group>"; };
  1775. C59D0BBF23825DE1007D0760 /* UIBarButtonItem+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+YYAdd.h"; sourceTree = "<group>"; };
  1776. C59D0BC023825DE1007D0760 /* UIFont+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+YYAdd.m"; sourceTree = "<group>"; };
  1777. C59D0BC123825DE1007D0760 /* UIView+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+YYAdd.h"; sourceTree = "<group>"; };
  1778. C59D0BC323825DE1007D0760 /* NSArray+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+YYAdd.m"; sourceTree = "<group>"; };
  1779. C59D0BC423825DE1007D0760 /* NSNumber+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumber+YYAdd.m"; sourceTree = "<group>"; };
  1780. C59D0BC523825DE1007D0760 /* NSTimer+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSTimer+YYAdd.h"; sourceTree = "<group>"; };
  1781. C59D0BC623825DE1007D0760 /* NSDate+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+YYAdd.h"; sourceTree = "<group>"; };
  1782. C59D0BC723825DE1007D0760 /* NSObject+YYAddForARC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+YYAddForARC.h"; sourceTree = "<group>"; };
  1783. C59D0BC823825DE1007D0760 /* NSNotificationCenter+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+YYAdd.h"; sourceTree = "<group>"; };
  1784. C59D0BC923825DE1007D0760 /* NSBundle+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+YYAdd.m"; sourceTree = "<group>"; };
  1785. C59D0BCA23825DE1007D0760 /* NSObject+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+YYAdd.m"; sourceTree = "<group>"; };
  1786. C59D0BCB23825DE1007D0760 /* NSString+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+YYAdd.h"; sourceTree = "<group>"; };
  1787. C59D0BCC23825DE1007D0760 /* NSObject+YYAddForKVO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+YYAddForKVO.h"; sourceTree = "<group>"; };
  1788. C59D0BCD23825DE1007D0760 /* NSData+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+YYAdd.m"; sourceTree = "<group>"; };
  1789. C59D0BCE23825DE1007D0760 /* NSThread+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSThread+YYAdd.m"; sourceTree = "<group>"; };
  1790. C59D0BCF23825DE1007D0760 /* NSDictionary+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+YYAdd.h"; sourceTree = "<group>"; };
  1791. C59D0BD023825DE1007D0760 /* NSKeyedUnarchiver+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSKeyedUnarchiver+YYAdd.m"; sourceTree = "<group>"; };
  1792. C59D0BD123825DE1007D0760 /* NSTimer+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSTimer+YYAdd.m"; sourceTree = "<group>"; };
  1793. C59D0BD223825DE1007D0760 /* NSNumber+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+YYAdd.h"; sourceTree = "<group>"; };
  1794. C59D0BD323825DE1007D0760 /* NSArray+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+YYAdd.h"; sourceTree = "<group>"; };
  1795. C59D0BD423825DE1007D0760 /* NSObject+YYAddForARC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+YYAddForARC.m"; sourceTree = "<group>"; };
  1796. C59D0BD523825DE1007D0760 /* NSDate+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+YYAdd.m"; sourceTree = "<group>"; };
  1797. C59D0BD623825DE1007D0760 /* NSObject+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+YYAdd.h"; sourceTree = "<group>"; };
  1798. C59D0BD723825DE1007D0760 /* NSString+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+YYAdd.m"; sourceTree = "<group>"; };
  1799. C59D0BD823825DE1007D0760 /* NSBundle+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+YYAdd.h"; sourceTree = "<group>"; };
  1800. C59D0BD923825DE1007D0760 /* NSNotificationCenter+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+YYAdd.m"; sourceTree = "<group>"; };
  1801. C59D0BDA23825DE1007D0760 /* NSKeyedUnarchiver+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSKeyedUnarchiver+YYAdd.h"; sourceTree = "<group>"; };
  1802. C59D0BDB23825DE1007D0760 /* NSDictionary+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+YYAdd.m"; sourceTree = "<group>"; };
  1803. C59D0BDC23825DE1007D0760 /* NSThread+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSThread+YYAdd.h"; sourceTree = "<group>"; };
  1804. C59D0BDD23825DE1007D0760 /* NSData+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+YYAdd.h"; sourceTree = "<group>"; };
  1805. C59D0BDE23825DE1007D0760 /* NSObject+YYAddForKVO.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+YYAddForKVO.m"; sourceTree = "<group>"; };
  1806. C59D0BE023825DE1007D0760 /* YYCGUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYCGUtilities.m; sourceTree = "<group>"; };
  1807. C59D0BE123825DE1007D0760 /* CALayer+YYAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+YYAdd.m"; sourceTree = "<group>"; };
  1808. C59D0BE223825DE1007D0760 /* CALayer+YYAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+YYAdd.h"; sourceTree = "<group>"; };
  1809. C59D0BE323825DE1007D0760 /* YYCGUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYCGUtilities.h; sourceTree = "<group>"; };
  1810. C59D0BE523825DE1007D0760 /* YYWeakProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYWeakProxy.m; sourceTree = "<group>"; };
  1811. C59D0BE623825DE1007D0760 /* YYAsyncLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYAsyncLayer.m; sourceTree = "<group>"; };
  1812. C59D0BE723825DE1007D0760 /* YYKeychain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYKeychain.h; sourceTree = "<group>"; };
  1813. C59D0BE823825DE1007D0760 /* YYDispatchQueuePool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYDispatchQueuePool.h; sourceTree = "<group>"; };
  1814. C59D0BE923825DE1007D0760 /* YYTransaction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTransaction.h; sourceTree = "<group>"; };
  1815. C59D0BEA23825DE1007D0760 /* YYThreadSafeDictionary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYThreadSafeDictionary.m; sourceTree = "<group>"; };
  1816. C59D0BEB23825DE1007D0760 /* YYFileHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYFileHash.h; sourceTree = "<group>"; };
  1817. C59D0BEC23825DE1007D0760 /* YYGestureRecognizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYGestureRecognizer.h; sourceTree = "<group>"; };
  1818. C59D0BED23825DE1007D0760 /* YYSentinel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYSentinel.m; sourceTree = "<group>"; };
  1819. C59D0BEE23825DE1007D0760 /* YYReachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYReachability.h; sourceTree = "<group>"; };
  1820. C59D0BEF23825DE1007D0760 /* YYThreadSafeArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYThreadSafeArray.h; sourceTree = "<group>"; };
  1821. C59D0BF023825DE1007D0760 /* YYTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYTimer.h; sourceTree = "<group>"; };
  1822. C59D0BF123825DE1007D0760 /* YYAsyncLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYAsyncLayer.h; sourceTree = "<group>"; };
  1823. C59D0BF223825DE1007D0760 /* YYWeakProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYWeakProxy.h; sourceTree = "<group>"; };
  1824. C59D0BF323825DE1007D0760 /* YYThreadSafeDictionary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYThreadSafeDictionary.h; sourceTree = "<group>"; };
  1825. C59D0BF423825DE1007D0760 /* YYTransaction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTransaction.m; sourceTree = "<group>"; };
  1826. C59D0BF523825DE1007D0760 /* YYDispatchQueuePool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYDispatchQueuePool.m; sourceTree = "<group>"; };
  1827. C59D0BF623825DE1007D0760 /* YYKeychain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYKeychain.m; sourceTree = "<group>"; };
  1828. C59D0BF723825DE1007D0760 /* YYGestureRecognizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYGestureRecognizer.m; sourceTree = "<group>"; };
  1829. C59D0BF823825DE1007D0760 /* YYFileHash.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYFileHash.m; sourceTree = "<group>"; };
  1830. C59D0BF923825DE1007D0760 /* YYTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYTimer.m; sourceTree = "<group>"; };
  1831. C59D0BFA23825DE1007D0760 /* YYThreadSafeArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYThreadSafeArray.m; sourceTree = "<group>"; };
  1832. C59D0BFB23825DE1007D0760 /* YYReachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYReachability.m; sourceTree = "<group>"; };
  1833. C59D0BFC23825DE1007D0760 /* YYSentinel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYSentinel.h; sourceTree = "<group>"; };
  1834. C62215612371057F006F5D7F /* MoreAppModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MoreAppModel.h; sourceTree = "<group>"; };
  1835. C62215622371057F006F5D7F /* MoreAppModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MoreAppModel.m; sourceTree = "<group>"; };
  1836. C62215642371147A006F5D7F /* MoreAppCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MoreAppCell.h; sourceTree = "<group>"; };
  1837. C62215652371147A006F5D7F /* MoreAppCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MoreAppCell.m; sourceTree = "<group>"; };
  1838. C62215662371147A006F5D7F /* MoreAppCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MoreAppCell.xib; sourceTree = "<group>"; };
  1839. C622156A23714B00006F5D7F /* ChatMsgListImModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgListImModel.h; sourceTree = "<group>"; };
  1840. C622156B23714B00006F5D7F /* ChatMsgListImModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgListImModel.m; sourceTree = "<group>"; };
  1841. C622156D2371501E006F5D7F /* ChatNewGroupVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatNewGroupVC.h; sourceTree = "<group>"; };
  1842. C622156E2371501E006F5D7F /* ChatNewGroupVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatNewGroupVC.m; sourceTree = "<group>"; };
  1843. C6221570237157B8006F5D7F /* NoticeNewGroupVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeNewGroupVC.h; sourceTree = "<group>"; };
  1844. C6221571237157B8006F5D7F /* NoticeNewGroupVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeNewGroupVC.m; sourceTree = "<group>"; };
  1845. C622157323716492006F5D7F /* NoticeNewGroupMenuVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeNewGroupMenuVC.h; sourceTree = "<group>"; };
  1846. C622157423716492006F5D7F /* NoticeNewGroupMenuVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeNewGroupMenuVC.m; sourceTree = "<group>"; };
  1847. C62215762371688C006F5D7F /* NoticeNewGroupMenuModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeNewGroupMenuModel.h; sourceTree = "<group>"; };
  1848. C62215772371688C006F5D7F /* NoticeNewGroupMenuModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeNewGroupMenuModel.m; sourceTree = "<group>"; };
  1849. C6221579237169E3006F5D7F /* NoticeNewGroupMenuCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeNewGroupMenuCell.h; sourceTree = "<group>"; };
  1850. C622157A237169E3006F5D7F /* NoticeNewGroupMenuCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeNewGroupMenuCell.m; sourceTree = "<group>"; };
  1851. C622157B237169E3006F5D7F /* NoticeNewGroupMenuCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NoticeNewGroupMenuCell.xib; sourceTree = "<group>"; };
  1852. C622158023719C84006F5D7F /* LoginVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginVC.m; sourceTree = "<group>"; };
  1853. C622158123719C84006F5D7F /* LoginVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginVC.h; sourceTree = "<group>"; };
  1854. C622158223719C84006F5D7F /* Login.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Login.storyboard; sourceTree = "<group>"; };
  1855. C6221587237278A8006F5D7F /* ShowKeepNoticeAlert.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShowKeepNoticeAlert.h; sourceTree = "<group>"; };
  1856. C6221588237278A8006F5D7F /* ShowKeepNoticeAlert.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShowKeepNoticeAlert.m; sourceTree = "<group>"; };
  1857. C622158A237278BD006F5D7F /* ShowKeepNoticeAlert.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShowKeepNoticeAlert.xib; sourceTree = "<group>"; };
  1858. C622158C2372A179006F5D7F /* NoticeUnreadVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeUnreadVC.h; sourceTree = "<group>"; };
  1859. C622158D2372A179006F5D7F /* NoticeUnreadVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeUnreadVC.m; sourceTree = "<group>"; };
  1860. C622158F2372A32B006F5D7F /* NoticeUnreadCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeUnreadCell.h; sourceTree = "<group>"; };
  1861. C62215902372A32B006F5D7F /* NoticeUnreadCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeUnreadCell.m; sourceTree = "<group>"; };
  1862. C62215912372A32B006F5D7F /* NoticeUnreadCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NoticeUnreadCell.xib; sourceTree = "<group>"; };
  1863. C62215952372C0CC006F5D7F /* MailList.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = MailList.storyboard; sourceTree = "<group>"; };
  1864. C622159A2372C0F9006F5D7F /* MailListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListVC.h; sourceTree = "<group>"; };
  1865. C622159B2372C0F9006F5D7F /* MailListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListVC.m; sourceTree = "<group>"; };
  1866. C622159D2372C27B006F5D7F /* MailListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListCell.h; sourceTree = "<group>"; };
  1867. C622159E2372C27B006F5D7F /* MailListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListCell.m; sourceTree = "<group>"; };
  1868. C622159F2372C27B006F5D7F /* MailListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MailListCell.xib; sourceTree = "<group>"; };
  1869. C62215A22372CC89006F5D7F /* MailListByZuVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListByZuVC.h; sourceTree = "<group>"; };
  1870. C62215A32372CC89006F5D7F /* MailListByZuVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListByZuVC.m; sourceTree = "<group>"; };
  1871. C6226FDB236C08F700E2E3BF /* My_Center.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = My_Center.storyboard; sourceTree = "<group>"; };
  1872. C6227049236C09FB00E2E3BF /* GHRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHRefreshFooter.h; sourceTree = "<group>"; };
  1873. C622704A236C09FB00E2E3BF /* GHRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHRefreshHeader.h; sourceTree = "<group>"; };
  1874. C622704C236C09FB00E2E3BF /* mj_house@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_house@3x.png"; sourceTree = "<group>"; };
  1875. C622704D236C09FB00E2E3BF /* mj_house_black@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_house_black@3x.png"; sourceTree = "<group>"; };
  1876. C622704E236C09FB00E2E3BF /* mj_sun_black@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_sun_black@3x.png"; sourceTree = "<group>"; };
  1877. C622704F236C09FB00E2E3BF /* mj_sun@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_sun@2x.png"; sourceTree = "<group>"; };
  1878. C6227050236C09FB00E2E3BF /* mj_air@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_air@3x.png"; sourceTree = "<group>"; };
  1879. C6227051236C09FB00E2E3BF /* mj_air@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_air@2x.png"; sourceTree = "<group>"; };
  1880. C6227052236C09FB00E2E3BF /* mj_sun@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_sun@3x.png"; sourceTree = "<group>"; };
  1881. C6227053236C09FB00E2E3BF /* mj_sun_black@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_sun_black@2x.png"; sourceTree = "<group>"; };
  1882. C6227054236C09FB00E2E3BF /* mj_house_black@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_house_black@2x.png"; sourceTree = "<group>"; };
  1883. C6227055236C09FB00E2E3BF /* mj_house@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_house@2x.png"; sourceTree = "<group>"; };
  1884. C6227056236C09FB00E2E3BF /* mj_air_black@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_air_black@3x.png"; sourceTree = "<group>"; };
  1885. C6227057236C09FB00E2E3BF /* mj_air_black@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_air_black@2x.png"; sourceTree = "<group>"; };
  1886. C6227058236C09FB00E2E3BF /* mj_car@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_car@3x.png"; sourceTree = "<group>"; };
  1887. C6227059236C09FB00E2E3BF /* mj_car@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_car@2x.png"; sourceTree = "<group>"; };
  1888. C622705A236C09FB00E2E3BF /* mj_shoe@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_shoe@2x.png"; sourceTree = "<group>"; };
  1889. C622705B236C09FB00E2E3BF /* mj_shoe@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mj_shoe@3x.png"; sourceTree = "<group>"; };
  1890. C622705C236C09FB00E2E3BF /* CarRefreshHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CarRefreshHeadView.m; sourceTree = "<group>"; };
  1891. C622705D236C09FB00E2E3BF /* GHRefreshTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHRefreshTableView.h; sourceTree = "<group>"; };
  1892. C622705E236C09FB00E2E3BF /* GHRefreshCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHRefreshCollectionView.h; sourceTree = "<group>"; };
  1893. C622705F236C09FB00E2E3BF /* GHRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHRefreshHeader.m; sourceTree = "<group>"; };
  1894. C6227060236C09FB00E2E3BF /* GHRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHRefreshFooter.m; sourceTree = "<group>"; };
  1895. C6227061236C09FB00E2E3BF /* CarRefreshHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CarRefreshHeadView.h; sourceTree = "<group>"; };
  1896. C6227063236C09FB00E2E3BF /* XLDot.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLDot.m; sourceTree = "<group>"; };
  1897. C6227064236C09FB00E2E3BF /* XLDotLoading.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLDotLoading.h; sourceTree = "<group>"; };
  1898. C6227065236C09FB00E2E3BF /* XLDot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLDot.h; sourceTree = "<group>"; };
  1899. C6227066236C09FB00E2E3BF /* XLDotLoading.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLDotLoading.m; sourceTree = "<group>"; };
  1900. C6227067236C09FB00E2E3BF /* GHRefreshCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHRefreshCollectionView.m; sourceTree = "<group>"; };
  1901. C6227068236C09FB00E2E3BF /* CarRefreshHeadView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CarRefreshHeadView.xib; sourceTree = "<group>"; };
  1902. C6227069236C09FB00E2E3BF /* GHRefreshTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHRefreshTableView.m; sourceTree = "<group>"; };
  1903. C622706B236C09FB00E2E3BF /* WQNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WQNavigationBar.m; sourceTree = "<group>"; };
  1904. C622706C236C09FB00E2E3BF /* WQNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WQNavigationBar.h; sourceTree = "<group>"; };
  1905. C622706E236C09FB00E2E3BF /* DGThumbUpButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DGThumbUpButton.m; sourceTree = "<group>"; };
  1906. C622706F236C09FB00E2E3BF /* DGExplodeAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DGExplodeAnimationView.m; sourceTree = "<group>"; };
  1907. C6227070236C09FB00E2E3BF /* DGExplodeAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DGExplodeAnimationView.h; sourceTree = "<group>"; };
  1908. C6227071236C09FB00E2E3BF /* DGThumbUpButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DGThumbUpButton.h; sourceTree = "<group>"; };
  1909. C6227073236C09FB00E2E3BF /* StoryboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoryboardManager.h; sourceTree = "<group>"; };
  1910. C6227074236C09FB00E2E3BF /* StoryboardManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoryboardManager.m; sourceTree = "<group>"; };
  1911. C6227076236C09FB00E2E3BF /* GHBlankView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHBlankView.m; sourceTree = "<group>"; };
  1912. C6227077236C09FB00E2E3BF /* UIView+GHBlank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+GHBlank.h"; sourceTree = "<group>"; };
  1913. C6227078236C09FB00E2E3BF /* UIView+GHBlank.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+GHBlank.m"; sourceTree = "<group>"; };
  1914. C6227079236C09FB00E2E3BF /* GHBlankView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHBlankView.h; sourceTree = "<group>"; };
  1915. C622707B236C09FB00E2E3BF /* DatePikerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DatePikerView.m; sourceTree = "<group>"; };
  1916. C622707C236C09FB00E2E3BF /* BSAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BSAlertView.m; sourceTree = "<group>"; };
  1917. C622707D236C09FB00E2E3BF /* DatePikerView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DatePikerView.xib; sourceTree = "<group>"; };
  1918. C622707E236C09FB00E2E3BF /* DatePikerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DatePikerView.h; sourceTree = "<group>"; };
  1919. C622707F236C09FB00E2E3BF /* BSAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BSAlertView.h; sourceTree = "<group>"; };
  1920. C6227081236C09FB00E2E3BF /* DeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceInfo.h; sourceTree = "<group>"; };
  1921. C6227082236C09FB00E2E3BF /* DeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceInfo.m; sourceTree = "<group>"; };
  1922. C6227085236C09FB00E2E3BF /* LeeTagItemViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeeTagItemViewModel.h; sourceTree = "<group>"; };
  1923. C6227086236C09FB00E2E3BF /* LeeTagItemViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeeTagItemViewModel.m; sourceTree = "<group>"; };
  1924. C6227088236C09FB00E2E3BF /* LeeTagItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeeTagItem.m; sourceTree = "<group>"; };
  1925. C6227089236C09FB00E2E3BF /* LeeTagView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeeTagView.m; sourceTree = "<group>"; };
  1926. C622708A236C09FB00E2E3BF /* LeeTagItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeeTagItem.h; sourceTree = "<group>"; };
  1927. C622708B236C09FB00E2E3BF /* LeeTagView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeeTagView.h; sourceTree = "<group>"; };
  1928. C622711D236C0BBC00E2E3BF /* ShowtipTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShowtipTool.m; sourceTree = "<group>"; };
  1929. C622711E236C0BBC00E2E3BF /* ShowtipTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShowtipTool.h; sourceTree = "<group>"; };
  1930. C6227121236C11A800E2E3BF /* UIViewController+GHTheme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+GHTheme.m"; sourceTree = "<group>"; };
  1931. C6227122236C11A800E2E3BF /* UIView+GHTheme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+GHTheme.m"; sourceTree = "<group>"; };
  1932. C6227123236C11A800E2E3BF /* GHThemeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHThemeManager.m; sourceTree = "<group>"; };
  1933. C6227124236C11A800E2E3BF /* UIViewController+GHTheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+GHTheme.h"; sourceTree = "<group>"; };
  1934. C6227125236C11A800E2E3BF /* UIView+GHTheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+GHTheme.h"; sourceTree = "<group>"; };
  1935. C6227126236C11A800E2E3BF /* GHThemeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHThemeManager.h; sourceTree = "<group>"; };
  1936. C622712F236C122500E2E3BF /* My_CenterVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = My_CenterVC.m; sourceTree = "<group>"; };
  1937. C6227130236C122500E2E3BF /* My_CenterVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = My_CenterVC.h; sourceTree = "<group>"; };
  1938. C625AA5F236D98CE0010E967 /* ChatMsg.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ChatMsg.storyboard; sourceTree = "<group>"; };
  1939. C625AA64236D99170010E967 /* ChatMsgListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgListVC.h; sourceTree = "<group>"; };
  1940. C625AA65236D99170010E967 /* ChatMsgListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgListVC.m; sourceTree = "<group>"; };
  1941. C625AA67236D9D990010E967 /* ChatMsgListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgListCell.h; sourceTree = "<group>"; };
  1942. C625AA68236D9D990010E967 /* ChatMsgListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgListCell.m; sourceTree = "<group>"; };
  1943. C625AA69236D9D990010E967 /* ChatMsgListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatMsgListCell.xib; sourceTree = "<group>"; };
  1944. C625AA6F236FB2930010E967 /* ChatMsgCollectionModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgCollectionModel.h; sourceTree = "<group>"; };
  1945. C625AA70236FB2930010E967 /* ChatMsgCollectionModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgCollectionModel.m; sourceTree = "<group>"; };
  1946. C625AA76236FB3190010E967 /* ModelAPI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ModelAPI.h; sourceTree = "<group>"; };
  1947. C625AA77236FB5A40010E967 /* ChatMsgCollectionCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgCollectionCell.h; sourceTree = "<group>"; };
  1948. C625AA78236FB5A40010E967 /* ChatMsgCollectionCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgCollectionCell.m; sourceTree = "<group>"; };
  1949. C625AA79236FB5A40010E967 /* ChatMsgCollectionCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatMsgCollectionCell.xib; sourceTree = "<group>"; };
  1950. C625AA7C236FB9070010E967 /* UIView+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Extension.h"; sourceTree = "<group>"; };
  1951. C625AA7D236FB9080010E967 /* UIView+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Extension.m"; sourceTree = "<group>"; };
  1952. C625AA80236FBF660010E967 /* YCMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YCMenuView.h; sourceTree = "<group>"; };
  1953. C625AA81236FBF660010E967 /* YCMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YCMenuView.m; sourceTree = "<group>"; };
  1954. C625AA84236FCD680010E967 /* ChatMsgSearch.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ChatMsgSearch.storyboard; sourceTree = "<group>"; };
  1955. C625AA8C236FCDD30010E967 /* ChatMsgSearchHistoryVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgSearchHistoryVC.h; sourceTree = "<group>"; };
  1956. C625AA8D236FCDD30010E967 /* ChatMsgSearchHistoryVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgSearchHistoryVC.m; sourceTree = "<group>"; };
  1957. C625AA8F236FCDEE0010E967 /* ChatMsgSearchResultVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgSearchResultVC.h; sourceTree = "<group>"; };
  1958. C625AA90236FCDEE0010E967 /* ChatMsgSearchResultVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgSearchResultVC.m; sourceTree = "<group>"; };
  1959. C625AA92236FD1A90010E967 /* ChatMsgSearchHistoryCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgSearchHistoryCell.h; sourceTree = "<group>"; };
  1960. C625AA93236FD1A90010E967 /* ChatMsgSearchHistoryCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgSearchHistoryCell.m; sourceTree = "<group>"; };
  1961. C625AA94236FD1A90010E967 /* ChatMsgSearchHistoryCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatMsgSearchHistoryCell.xib; sourceTree = "<group>"; };
  1962. C625AA98236FEF130010E967 /* ZLCollectionViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLCollectionViewFlowLayout.m; sourceTree = "<group>"; };
  1963. C625AA99236FEF130010E967 /* ZLCellFakeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLCellFakeView.m; sourceTree = "<group>"; };
  1964. C625AA9A236FEF130010E967 /* ZLCollectionViewLayoutAttributes.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLCollectionViewLayoutAttributes.m; sourceTree = "<group>"; };
  1965. C625AA9B236FEF130010E967 /* ZLCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLCollectionReusableView.m; sourceTree = "<group>"; };
  1966. C625AA9C236FEF130010E967 /* ZLCollectionViewLayoutAttributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLCollectionViewLayoutAttributes.h; sourceTree = "<group>"; };
  1967. C625AA9D236FEF130010E967 /* ZLCellFakeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLCellFakeView.h; sourceTree = "<group>"; };
  1968. C625AA9E236FEF130010E967 /* ZLCollectionViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLCollectionViewFlowLayout.h; sourceTree = "<group>"; };
  1969. C625AA9F236FEF130010E967 /* ZLCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLCollectionReusableView.h; sourceTree = "<group>"; };
  1970. C625AAA1236FEF130010E967 /* SPPageMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPPageMenu.m; sourceTree = "<group>"; };
  1971. C625AAA2236FEF130010E967 /* SPPageMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPPageMenu.h; sourceTree = "<group>"; };
  1972. C625AAA8236FF23E0010E967 /* ChatMsgSearchReseltContentVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgSearchReseltContentVC.h; sourceTree = "<group>"; };
  1973. C625AAA9236FF23E0010E967 /* ChatMsgSearchReseltContentVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgSearchReseltContentVC.m; sourceTree = "<group>"; };
  1974. C625AAAB236FF35B0010E967 /* ChatMsgSearchReseltContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgSearchReseltContentCell.h; sourceTree = "<group>"; };
  1975. C625AAAC236FF35B0010E967 /* ChatMsgSearchReseltContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgSearchReseltContentCell.m; sourceTree = "<group>"; };
  1976. C625AAAD236FF35B0010E967 /* ChatMsgSearchReseltContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatMsgSearchReseltContentCell.xib; sourceTree = "<group>"; };
  1977. C625AAB0236FFCC60010E967 /* ChatMsgSerchReseltByIMVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgSerchReseltByIMVC.h; sourceTree = "<group>"; };
  1978. C625AAB1236FFCC60010E967 /* ChatMsgSerchReseltByIMVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgSerchReseltByIMVC.m; sourceTree = "<group>"; };
  1979. C625AAB4236FFFAA0010E967 /* WorkingGroup.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = WorkingGroup.storyboard; sourceTree = "<group>"; };
  1980. C625AABA237000010010E967 /* WorkingGroupMainVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkingGroupMainVC.h; sourceTree = "<group>"; };
  1981. C625AABB237000010010E967 /* WorkingGroupMainVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WorkingGroupMainVC.m; sourceTree = "<group>"; };
  1982. C625AABF237003EE0010E967 /* ShowNewGroupAlert.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShowNewGroupAlert.h; sourceTree = "<group>"; };
  1983. C625AAC0237003EE0010E967 /* ShowNewGroupAlert.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShowNewGroupAlert.m; sourceTree = "<group>"; };
  1984. C625AAC2237003F80010E967 /* ShowNewGroupAlert.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShowNewGroupAlert.xib; sourceTree = "<group>"; };
  1985. C625AAC5237011D50010E967 /* ChatMsgNotice.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ChatMsgNotice.storyboard; sourceTree = "<group>"; };
  1986. C625AACB2370125D0010E967 /* ChatMsgNoticeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatMsgNoticeVC.h; sourceTree = "<group>"; };
  1987. C625AACC2370125D0010E967 /* ChatMsgNoticeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatMsgNoticeVC.m; sourceTree = "<group>"; };
  1988. C625AAD0237017650010E967 /* ChatMsgNoticeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgNoticeCell.h; sourceTree = "<group>"; };
  1989. C625AAD1237017650010E967 /* ChatMsgNoticeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgNoticeCell.m; sourceTree = "<group>"; };
  1990. C625AAD2237017650010E967 /* ChatMsgNoticeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatMsgNoticeCell.xib; sourceTree = "<group>"; };
  1991. C625AAD523701ECE0010E967 /* ChatMsgNoticeTypeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgNoticeTypeVC.h; sourceTree = "<group>"; };
  1992. C625AAD623701ECE0010E967 /* ChatMsgNoticeTypeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgNoticeTypeVC.m; sourceTree = "<group>"; };
  1993. C625AADB2371029A0010E967 /* MoreAppVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MoreAppVC.h; sourceTree = "<group>"; };
  1994. C625AADC2371029A0010E967 /* MoreAppVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MoreAppVC.m; sourceTree = "<group>"; };
  1995. C69A8DBA2372CFE70098FA26 /* pinyin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pinyin.h; sourceTree = "<group>"; };
  1996. C69A8DBB2372CFE70098FA26 /* ChineseString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChineseString.h; sourceTree = "<group>"; };
  1997. C69A8DBC2372CFE70098FA26 /* pinyin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = pinyin.m; sourceTree = "<group>"; };
  1998. C69A8DBD2372CFE70098FA26 /* ChineseString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChineseString.m; sourceTree = "<group>"; };
  1999. C69A8DC02372D45F0098FA26 /* MailListByZuCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListByZuCell.h; sourceTree = "<group>"; };
  2000. C69A8DC12372D45F0098FA26 /* MailListByZuCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListByZuCell.m; sourceTree = "<group>"; };
  2001. C69A8DC22372D45F0098FA26 /* MailListByZuCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MailListByZuCell.xib; sourceTree = "<group>"; };
  2002. C69A8DC52373AB470098FA26 /* MailListDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListDetailVC.h; sourceTree = "<group>"; };
  2003. C69A8DC62373AB470098FA26 /* MailListDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListDetailVC.m; sourceTree = "<group>"; };
  2004. C69A8DC82373AFB50098FA26 /* MailListDetailCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListDetailCell.h; sourceTree = "<group>"; };
  2005. C69A8DC92373AFB50098FA26 /* MailListDetailCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListDetailCell.m; sourceTree = "<group>"; };
  2006. C69A8DCA2373AFB50098FA26 /* MailListDetailCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MailListDetailCell.xib; sourceTree = "<group>"; };
  2007. C69A8DD12373C2BF0098FA26 /* SearchBarDisplayCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchBarDisplayCenter.m; sourceTree = "<group>"; };
  2008. C69A8DD22373C2C00098FA26 /* SearchBarDisplayCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchBarDisplayCenter.h; sourceTree = "<group>"; };
  2009. C69A8DD62374047E0098FA26 /* ChatMsgDetail.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ChatMsgDetail.storyboard; sourceTree = "<group>"; };
  2010. C69A8DDD2374050D0098FA26 /* ChatMsgDetailChatVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatMsgDetailChatVC.h; sourceTree = "<group>"; };
  2011. C69A8DDE2374050D0098FA26 /* ChatMsgDetailChatVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatMsgDetailChatVC.m; sourceTree = "<group>"; };
  2012. C69A8DE123740AB80098FA26 /* ChatMsgDetailChatCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgDetailChatCell.h; sourceTree = "<group>"; };
  2013. C69A8DE223740AB80098FA26 /* ChatMsgDetailChatCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgDetailChatCell.m; sourceTree = "<group>"; };
  2014. C69A8DE323740AB80098FA26 /* ChatMsgDetailChatCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatMsgDetailChatCell.xib; sourceTree = "<group>"; };
  2015. C69A8DE623741AD90098FA26 /* ChatMsgDetailChatModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgDetailChatModel.h; sourceTree = "<group>"; };
  2016. C69A8DE723741AD90098FA26 /* ChatMsgDetailChatModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgDetailChatModel.m; sourceTree = "<group>"; };
  2017. C69A8DE923743AC80098FA26 /* ChatMsgDetailChatInfoVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgDetailChatInfoVC.h; sourceTree = "<group>"; };
  2018. C69A8DEA23743AC80098FA26 /* ChatMsgDetailChatInfoVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgDetailChatInfoVC.m; sourceTree = "<group>"; };
  2019. C69A8DEC23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgDetailChatInfoCell.h; sourceTree = "<group>"; };
  2020. C69A8DED23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgDetailChatInfoCell.m; sourceTree = "<group>"; };
  2021. C69A8DEE23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatMsgDetailChatInfoCell.xib; sourceTree = "<group>"; };
  2022. C69A8DF12374455C0098FA26 /* ChatInfoUserModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatInfoUserModel.h; sourceTree = "<group>"; };
  2023. C69A8DF22374455C0098FA26 /* ChatInfoUserModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatInfoUserModel.m; sourceTree = "<group>"; };
  2024. C69A8DF4237446670098FA26 /* ChatInfoUserCollectionCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatInfoUserCollectionCell.h; sourceTree = "<group>"; };
  2025. C69A8DF5237446670098FA26 /* ChatInfoUserCollectionCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatInfoUserCollectionCell.m; sourceTree = "<group>"; };
  2026. C69A8DF6237446670098FA26 /* ChatInfoUserCollectionCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatInfoUserCollectionCell.xib; sourceTree = "<group>"; };
  2027. C69A8DF92374FBBE0098FA26 /* DetailChatInfoAllUserVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailChatInfoAllUserVC.h; sourceTree = "<group>"; };
  2028. C69A8DFA2374FBBE0098FA26 /* DetailChatInfoAllUserVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailChatInfoAllUserVC.m; sourceTree = "<group>"; };
  2029. C69A8DFC237506C30098FA26 /* ChatInfoUserSearchCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatInfoUserSearchCell.h; sourceTree = "<group>"; };
  2030. C69A8DFD237506C30098FA26 /* ChatInfoUserSearchCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatInfoUserSearchCell.m; sourceTree = "<group>"; };
  2031. C69A8DFE237506C30098FA26 /* ChatInfoUserSearchCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatInfoUserSearchCell.xib; sourceTree = "<group>"; };
  2032. C69A8E0123750D770098FA26 /* ChatImNameUpdateVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatImNameUpdateVC.h; sourceTree = "<group>"; };
  2033. C69A8E0223750D770098FA26 /* ChatImNameUpdateVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatImNameUpdateVC.m; sourceTree = "<group>"; };
  2034. C69A8E04237513330098FA26 /* GroupManagementVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupManagementVC.h; sourceTree = "<group>"; };
  2035. C69A8E05237513330098FA26 /* GroupManagementVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupManagementVC.m; sourceTree = "<group>"; };
  2036. C69A8E0723751B490098FA26 /* ChatSearchCenterVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatSearchCenterVC.h; sourceTree = "<group>"; };
  2037. C69A8E0823751B490098FA26 /* ChatSearchCenterVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatSearchCenterVC.m; sourceTree = "<group>"; };
  2038. C69A8E0B23753A150098FA26 /* CalenderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CalenderView.m; sourceTree = "<group>"; };
  2039. C69A8E0C23753A150098FA26 /* CalenderCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CalenderCollectionCell.m; sourceTree = "<group>"; };
  2040. C69A8E0D23753A150098FA26 /* UIColor+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extension.h"; sourceTree = "<group>"; };
  2041. C69A8E0E23753A150098FA26 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
  2042. C69A8E0F23753A150098FA26 /* CalenderModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CalenderModel.m; sourceTree = "<group>"; };
  2043. C69A8E1023753A150098FA26 /* CalenderHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CalenderHeaderView.m; sourceTree = "<group>"; };
  2044. C69A8E1123753A150098FA26 /* CalenderWeekView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CalenderWeekView.m; sourceTree = "<group>"; };
  2045. C69A8E1223753A150098FA26 /* CalenderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CalenderView.h; sourceTree = "<group>"; };
  2046. C69A8E1323753A150098FA26 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
  2047. C69A8E1423753A150098FA26 /* UIColor+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extension.m"; sourceTree = "<group>"; };
  2048. C69A8E1523753A150098FA26 /* CalenderCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CalenderCollectionCell.h; sourceTree = "<group>"; };
  2049. C69A8E1623753A150098FA26 /* CalenderModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CalenderModel.h; sourceTree = "<group>"; };
  2050. C69A8E1723753A150098FA26 /* CalenderWeekView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CalenderWeekView.h; sourceTree = "<group>"; };
  2051. C69A8E1823753A150098FA26 /* CalenderHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CalenderHeaderView.h; sourceTree = "<group>"; };
  2052. C69A8E2023753A6F0098FA26 /* ChatSearchFindbyDateVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatSearchFindbyDateVC.h; sourceTree = "<group>"; };
  2053. C69A8E2123753A6F0098FA26 /* ChatSearchFindbyDateVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatSearchFindbyDateVC.m; sourceTree = "<group>"; };
  2054. C69A8E2323753A890098FA26 /* ChatSearchFindbyPhotoVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatSearchFindbyPhotoVC.h; sourceTree = "<group>"; };
  2055. C69A8E2423753A890098FA26 /* ChatSearchFindbyPhotoVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatSearchFindbyPhotoVC.m; sourceTree = "<group>"; };
  2056. C69A8E2F23753AD60098FA26 /* ChatSearchFindbyFuJVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatSearchFindbyFuJVC.h; sourceTree = "<group>"; };
  2057. C69A8E3023753AD60098FA26 /* ChatSearchFindbyFuJVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatSearchFindbyFuJVC.m; sourceTree = "<group>"; };
  2058. C69A8E35237546310098FA26 /* ChatSearchFindbyPhotoCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatSearchFindbyPhotoCell.h; sourceTree = "<group>"; };
  2059. C69A8E36237546310098FA26 /* ChatSearchFindbyPhotoCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatSearchFindbyPhotoCell.m; sourceTree = "<group>"; };
  2060. C69A8E37237546310098FA26 /* ChatSearchFindbyPhotoCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatSearchFindbyPhotoCell.xib; sourceTree = "<group>"; };
  2061. C69A8E3A23754A660098FA26 /* FindPhotoOrVideoHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FindPhotoOrVideoHeaderView.h; sourceTree = "<group>"; };
  2062. C69A8E3B23754A660098FA26 /* FindPhotoOrVideoHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FindPhotoOrVideoHeaderView.m; sourceTree = "<group>"; };
  2063. C69A8E3C23754A660098FA26 /* FindPhotoOrVideoHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FindPhotoOrVideoHeaderView.xib; sourceTree = "<group>"; };
  2064. C69A8E3F23754F7A0098FA26 /* ChatSearchFindbyFuJCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatSearchFindbyFuJCell.h; sourceTree = "<group>"; };
  2065. C69A8E4023754F7A0098FA26 /* ChatSearchFindbyFuJCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatSearchFindbyFuJCell.m; sourceTree = "<group>"; };
  2066. C69A8E4123754F7A0098FA26 /* ChatSearchFindbyFuJCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatSearchFindbyFuJCell.xib; sourceTree = "<group>"; };
  2067. C6F2E17B236C14B0009E6903 /* My_CenterCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = My_CenterCell.h; sourceTree = "<group>"; };
  2068. C6F2E17C236C14B0009E6903 /* My_CenterCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = My_CenterCell.m; sourceTree = "<group>"; };
  2069. C6F2E17D236C14B0009E6903 /* My_CenterCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = My_CenterCell.xib; sourceTree = "<group>"; };
  2070. C6F2E180236C266F009E6903 /* MyInfoVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyInfoVC.h; sourceTree = "<group>"; };
  2071. C6F2E181236C266F009E6903 /* MyInfoVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyInfoVC.m; sourceTree = "<group>"; };
  2072. C6F2E183236C26EC009E6903 /* MyInfoCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyInfoCell.h; sourceTree = "<group>"; };
  2073. C6F2E184236C26EC009E6903 /* MyInfoCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyInfoCell.m; sourceTree = "<group>"; };
  2074. C6F2E185236C26EC009E6903 /* MyInfoCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyInfoCell.xib; sourceTree = "<group>"; };
  2075. C6F2E188236C2D7A009E6903 /* ShowPhotoCameraAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShowPhotoCameraAlertView.h; sourceTree = "<group>"; };
  2076. C6F2E189236C2D7A009E6903 /* ShowPhotoCameraAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShowPhotoCameraAlertView.m; sourceTree = "<group>"; };
  2077. C6F2E18B236C2EE3009E6903 /* ShowPhotoCameraAlertView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShowPhotoCameraAlertView.xib; sourceTree = "<group>"; };
  2078. C6F2E18F236C334A009E6903 /* LYLPhotoTailoringTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LYLPhotoTailoringTool.m; sourceTree = "<group>"; };
  2079. C6F2E190236C334A009E6903 /* UIImage+Crop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Crop.h"; sourceTree = "<group>"; };
  2080. C6F2E191236C334A009E6903 /* PhotoMaskView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoMaskView.m; sourceTree = "<group>"; };
  2081. C6F2E192236C334A009E6903 /* LYLPhotoTailoringViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LYLPhotoTailoringViewController.m; sourceTree = "<group>"; };
  2082. C6F2E193236C334A009E6903 /* PhotoMaskView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoMaskView.h; sourceTree = "<group>"; };
  2083. C6F2E194236C334A009E6903 /* UIImage+Crop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Crop.m"; sourceTree = "<group>"; };
  2084. C6F2E195236C334A009E6903 /* LYLPhotoTailoringTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LYLPhotoTailoringTool.h; sourceTree = "<group>"; };
  2085. C6F2E196236C334A009E6903 /* LYLPhotoTailoringViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LYLPhotoTailoringViewController.h; sourceTree = "<group>"; };
  2086. C6F2E19B236C3444009E6903 /* UtilsTools.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UtilsTools.h; sourceTree = "<group>"; };
  2087. C6F2E19C236C3444009E6903 /* UtilsTools.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UtilsTools.m; sourceTree = "<group>"; };
  2088. C6F2E19E236C3C32009E6903 /* EditUserNickVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EditUserNickVC.h; sourceTree = "<group>"; };
  2089. C6F2E19F236C3C32009E6903 /* EditUserNickVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EditUserNickVC.m; sourceTree = "<group>"; };
  2090. C6F2E1A1236C44D8009E6903 /* ShowGenderAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShowGenderAlertView.h; sourceTree = "<group>"; };
  2091. C6F2E1A2236C44D8009E6903 /* ShowGenderAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShowGenderAlertView.m; sourceTree = "<group>"; };
  2092. C6F2E1A4236C4554009E6903 /* ShowGenderAlertView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShowGenderAlertView.xib; sourceTree = "<group>"; };
  2093. C6F2E1A6236C4CB7009E6903 /* EditMySignOrBriefVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EditMySignOrBriefVC.h; sourceTree = "<group>"; };
  2094. C6F2E1A7236C4CB7009E6903 /* EditMySignOrBriefVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EditMySignOrBriefVC.m; sourceTree = "<group>"; };
  2095. C6F2E1A9236C528E009E6903 /* MyQRCodeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyQRCodeVC.h; sourceTree = "<group>"; };
  2096. C6F2E1AA236C528E009E6903 /* MyQRCodeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyQRCodeVC.m; sourceTree = "<group>"; };
  2097. C6F2E1AC236C594A009E6903 /* EditPhoneOrEmailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EditPhoneOrEmailVC.h; sourceTree = "<group>"; };
  2098. C6F2E1AD236C594A009E6903 /* EditPhoneOrEmailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EditPhoneOrEmailVC.m; sourceTree = "<group>"; };
  2099. C6F2E1AF236D1214009E6903 /* ToolFoundation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToolFoundation.h; sourceTree = "<group>"; };
  2100. C6F2E1B0236D1214009E6903 /* ToolFoundation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToolFoundation.m; sourceTree = "<group>"; };
  2101. C6F2E1B3236D1268009E6903 /* UILabel+GHConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+GHConfig.m"; sourceTree = "<group>"; };
  2102. C6F2E1B4236D1268009E6903 /* NSObject+XTExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XTExtension.h"; sourceTree = "<group>"; };
  2103. C6F2E1B6236D1268009E6903 /* NSString+XTExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XTExtension.m"; sourceTree = "<group>"; };
  2104. C6F2E1B7236D1269009E6903 /* UIButton+XTExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+XTExtension.h"; sourceTree = "<group>"; };
  2105. C6F2E1B8236D1269009E6903 /* UIView+GH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+GH.h"; sourceTree = "<group>"; };
  2106. C6F2E1B9236D1269009E6903 /* NSString+Tools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Tools.m"; sourceTree = "<group>"; };
  2107. C6F2E1BA236D1269009E6903 /* UIViewController+GH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+GH.h"; sourceTree = "<group>"; };
  2108. C6F2E1BB236D1269009E6903 /* UIViewController+GH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+GH.m"; sourceTree = "<group>"; };
  2109. C6F2E1BD236D1269009E6903 /* NSNumber+Formatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumber+Formatter.m"; sourceTree = "<group>"; };
  2110. C6F2E1BE236D1269009E6903 /* UIButton+XTExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+XTExtension.m"; sourceTree = "<group>"; };
  2111. C6F2E1BF236D1269009E6903 /* UIView+XTExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XTExtension.h"; sourceTree = "<group>"; };
  2112. C6F2E1C0236D1269009E6903 /* NSString+XTExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XTExtension.h"; sourceTree = "<group>"; };
  2113. C6F2E1C1236D1269009E6903 /* UIView+GH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+GH.m"; sourceTree = "<group>"; };
  2114. C6F2E1C2236D126A009E6903 /* XTSystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XTSystem.m; sourceTree = "<group>"; };
  2115. C6F2E1C4236D126A009E6903 /* UILabel+GHConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+GHConfig.h"; sourceTree = "<group>"; };
  2116. C6F2E1C6236D126A009E6903 /* UIColor+XTExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+XTExtension.h"; sourceTree = "<group>"; };
  2117. C6F2E1C7236D126A009E6903 /* UIImage+GH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GH.h"; sourceTree = "<group>"; };
  2118. C6F2E1C8236D126A009E6903 /* NSNumber+Formatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+Formatter.h"; sourceTree = "<group>"; };
  2119. C6F2E1C9236D126A009E6903 /* UIColor+XTExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+XTExtension.m"; sourceTree = "<group>"; };
  2120. C6F2E1CA236D126A009E6903 /* UIViewController+NavBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+NavBar.m"; sourceTree = "<group>"; };
  2121. C6F2E1CB236D126A009E6903 /* NSObject+XTExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XTExtension.m"; sourceTree = "<group>"; };
  2122. C6F2E1CD236D126A009E6903 /* NSDate+XTExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+XTExtension.m"; sourceTree = "<group>"; };
  2123. C6F2E1CF236D126B009E6903 /* UIViewController+NavBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+NavBar.h"; sourceTree = "<group>"; };
  2124. C6F2E1D0236D126B009E6903 /* NSDate+XTExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+XTExtension.h"; sourceTree = "<group>"; };
  2125. C6F2E1D2236D126B009E6903 /* UIView+XTExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XTExtension.m"; sourceTree = "<group>"; };
  2126. C6F2E1D3236D126B009E6903 /* XTSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XTSystem.h; sourceTree = "<group>"; };
  2127. C6F2E1D4236D126B009E6903 /* NSString+Tools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Tools.h"; sourceTree = "<group>"; };
  2128. C6F2E1D5236D126B009E6903 /* UIImage+GH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GH.m"; sourceTree = "<group>"; };
  2129. C6F2E1E8236D1352009E6903 /* UITableView+HeadSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+HeadSet.m"; sourceTree = "<group>"; };
  2130. C6F2E1E9236D1353009E6903 /* UITableView+HeadSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+HeadSet.h"; sourceTree = "<group>"; };
  2131. C6F2E1EB236D1401009E6903 /* UILabel+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extension.m"; sourceTree = "<group>"; };
  2132. C6F2E1EC236D1401009E6903 /* UILabel+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extension.h"; sourceTree = "<group>"; };
  2133. C6F2E1F1236D1794009E6903 /* WclAppConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WclAppConfig.h; sourceTree = "<group>"; };
  2134. C701EE4723C2D97800082463 /* InPutGongWenImageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InPutGongWenImageCell.h; sourceTree = "<group>"; };
  2135. C701EE4823C2D97800082463 /* InPutGongWenImageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InPutGongWenImageCell.m; sourceTree = "<group>"; };
  2136. C701EE4923C2D97800082463 /* InPutGongWenImageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InPutGongWenImageCell.xib; sourceTree = "<group>"; };
  2137. C7037FE8236FB65A008EA3E4 /* SendInfoGroupVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SendInfoGroupVC.h; sourceTree = "<group>"; };
  2138. C7037FE9236FB65A008EA3E4 /* SendInfoGroupVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SendInfoGroupVC.m; sourceTree = "<group>"; };
  2139. C7037FEB236FC1E6008EA3E4 /* SendInfoGroupModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SendInfoGroupModel.h; sourceTree = "<group>"; };
  2140. C7037FEC236FC1E6008EA3E4 /* SendInfoGroupModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SendInfoGroupModel.m; sourceTree = "<group>"; };
  2141. C7037FEE236FC317008EA3E4 /* SendInfoGroupSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SendInfoGroupSubModel.h; sourceTree = "<group>"; };
  2142. C7037FEF236FC317008EA3E4 /* SendInfoGroupSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SendInfoGroupSubModel.m; sourceTree = "<group>"; };
  2143. C7037FF1236FC3DC008EA3E4 /* SendInfoGroupSubTwoModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SendInfoGroupSubTwoModel.h; sourceTree = "<group>"; };
  2144. C7037FF2236FC3DC008EA3E4 /* SendInfoGroupSubTwoModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SendInfoGroupSubTwoModel.m; sourceTree = "<group>"; };
  2145. C7037FF4236FC847008EA3E4 /* SendInfoGroupCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SendInfoGroupCell.h; sourceTree = "<group>"; };
  2146. C7037FF5236FC847008EA3E4 /* SendInfoGroupCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SendInfoGroupCell.m; sourceTree = "<group>"; };
  2147. C7037FF6236FC847008EA3E4 /* SendInfoGroupCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SendInfoGroupCell.xib; sourceTree = "<group>"; };
  2148. C7037FF9236FD33F008EA3E4 /* SendGroupBCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SendGroupBCell.h; sourceTree = "<group>"; };
  2149. C7037FFA236FD33F008EA3E4 /* SendGroupBCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SendGroupBCell.m; sourceTree = "<group>"; };
  2150. C7037FFB236FD33F008EA3E4 /* SendGroupBCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SendGroupBCell.xib; sourceTree = "<group>"; };
  2151. C703800923700CA7008EA3E4 /* MyApprovalPageDetail.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyApprovalPageDetail.h; sourceTree = "<group>"; };
  2152. C703800A23700CA7008EA3E4 /* MyApprovalPageDetail.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyApprovalPageDetail.m; sourceTree = "<group>"; };
  2153. C703800E23701018008EA3E4 /* MyApprovalDetailCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyApprovalDetailCell.h; sourceTree = "<group>"; };
  2154. C703800F23701018008EA3E4 /* MyApprovalDetailCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyApprovalDetailCell.m; sourceTree = "<group>"; };
  2155. C703801023701018008EA3E4 /* MyApprovalDetailCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyApprovalDetailCell.xib; sourceTree = "<group>"; };
  2156. C7038013237044B8008EA3E4 /* MyApprovalDetailModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyApprovalDetailModel.h; sourceTree = "<group>"; };
  2157. C7038014237044B8008EA3E4 /* MyApprovalDetailModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyApprovalDetailModel.m; sourceTree = "<group>"; };
  2158. C708DC042371A46D005CC822 /* WorkFlowSearchView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowSearchView.h; sourceTree = "<group>"; };
  2159. C708DC052371A46D005CC822 /* WorkFlowSearchView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowSearchView.m; sourceTree = "<group>"; };
  2160. C708DC082371BE36005CC822 /* WorkFlowSearchDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowSearchDetailVC.h; sourceTree = "<group>"; };
  2161. C708DC092371BE36005CC822 /* WorkFlowSearchDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowSearchDetailVC.m; sourceTree = "<group>"; };
  2162. C70B6D6423CEBB6A008D5C48 /* ZFReOrderTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFReOrderTableView.m; sourceTree = "<group>"; };
  2163. C70B6D6523CEBB6A008D5C48 /* ZFReOrderTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFReOrderTableView.h; sourceTree = "<group>"; };
  2164. C7235181238244B20037E4F6 /* DatasModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DatasModel.m; sourceTree = "<group>"; };
  2165. C7235182238244B20037E4F6 /* DatasModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DatasModel.h; sourceTree = "<group>"; };
  2166. C7235183238244B20037E4F6 /* ArticleBlocks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArticleBlocks.m; sourceTree = "<group>"; };
  2167. C7235184238244B20037E4F6 /* ArticleBlocks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArticleBlocks.h; sourceTree = "<group>"; };
  2168. C723518723824ED50037E4F6 /* ArticleZanModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArticleZanModel.h; sourceTree = "<group>"; };
  2169. C723518823824EDA0037E4F6 /* ArticleZanModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArticleZanModel.m; sourceTree = "<group>"; };
  2170. C72351BF2382907A0037E4F6 /* NSImage+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSImage+WebCache.m"; sourceTree = "<group>"; };
  2171. C72351C02382907B0037E4F6 /* NSImage+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSImage+WebCache.h"; sourceTree = "<group>"; };
  2172. C72F2A55236D829D00F6ADE2 /* AddFileTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddFileTableViewCell.h; sourceTree = "<group>"; };
  2173. C72F2A56236D829D00F6ADE2 /* AddFileTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddFileTableViewCell.m; sourceTree = "<group>"; };
  2174. C72F2A57236D829D00F6ADE2 /* AddFileTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AddFileTableViewCell.xib; sourceTree = "<group>"; };
  2175. C72F38E4236DADDC00933828 /* Setting.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Setting.storyboard; sourceTree = "<group>"; };
  2176. C72F38E6236DADDC00933828 /* DisplaySettingsVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DisplaySettingsVC.m; sourceTree = "<group>"; };
  2177. C72F38E7236DADDC00933828 /* MyAboutVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAboutVC.h; sourceTree = "<group>"; };
  2178. C72F38E8236DADDC00933828 /* BlacklistVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlacklistVC.m; sourceTree = "<group>"; };
  2179. C72F38E9236DADDC00933828 /* AccountSecurityVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccountSecurityVC.m; sourceTree = "<group>"; };
  2180. C72F38EA236DADDC00933828 /* NewMsgAlertVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewMsgAlertVC.m; sourceTree = "<group>"; };
  2181. C72F38EB236DADDC00933828 /* FeedBackVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedBackVC.h; sourceTree = "<group>"; };
  2182. C72F38EC236DADDC00933828 /* SettingVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingVC.h; sourceTree = "<group>"; };
  2183. C72F38ED236DADDC00933828 /* DisplaySettingsVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisplaySettingsVC.h; sourceTree = "<group>"; };
  2184. C72F38EE236DADDC00933828 /* MyAboutVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAboutVC.m; sourceTree = "<group>"; };
  2185. C72F38EF236DADDC00933828 /* AccountSecurityVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccountSecurityVC.h; sourceTree = "<group>"; };
  2186. C72F38F0236DADDC00933828 /* BlacklistVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlacklistVC.h; sourceTree = "<group>"; };
  2187. C72F38F1236DADDC00933828 /* SettingVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingVC.m; sourceTree = "<group>"; };
  2188. C72F38F2236DADDC00933828 /* FeedBackVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedBackVC.m; sourceTree = "<group>"; };
  2189. C72F38F3236DADDC00933828 /* NewMsgAlertVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewMsgAlertVC.h; sourceTree = "<group>"; };
  2190. C72F38F5236DADDC00933828 /* SettingCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SettingCell.xib; sourceTree = "<group>"; };
  2191. C72F38F6236DADDC00933828 /* SettingCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingCell.h; sourceTree = "<group>"; };
  2192. C72F38F7236DADDC00933828 /* BlacklistCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlacklistCell.m; sourceTree = "<group>"; };
  2193. C72F38F8236DADDC00933828 /* BlacklistCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BlacklistCell.xib; sourceTree = "<group>"; };
  2194. C72F38F9236DADDC00933828 /* BlacklistCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlacklistCell.h; sourceTree = "<group>"; };
  2195. C72F38FA236DADDC00933828 /* SettingCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingCell.m; sourceTree = "<group>"; };
  2196. C72F3908236DAE1D00933828 /* UIPlaceHolderTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIPlaceHolderTextView.h; sourceTree = "<group>"; };
  2197. C72F3909236DAE1D00933828 /* UIPlaceHolderTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIPlaceHolderTextView.m; sourceTree = "<group>"; };
  2198. C732D3A42394B3BE0097A059 /* ScanResultModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanResultModel.h; sourceTree = "<group>"; };
  2199. C732D3A52394B3BE0097A059 /* ScanResultModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanResultModel.m; sourceTree = "<group>"; };
  2200. C732D3A72394E8C20097A059 /* WorkFlowFileModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowFileModel.h; sourceTree = "<group>"; };
  2201. C732D3A82394E8C20097A059 /* WorkFlowFileModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowFileModel.m; sourceTree = "<group>"; };
  2202. C7404E6C238D23A600DB19AC /* AddPictureCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddPictureCell.h; sourceTree = "<group>"; };
  2203. C7404E6D238D23A600DB19AC /* AddPictureCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddPictureCell.m; sourceTree = "<group>"; };
  2204. C7404E6E238D23A600DB19AC /* AddPictureCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AddPictureCell.xib; sourceTree = "<group>"; };
  2205. C7404E71238D2FA700DB19AC /* SelectImageModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectImageModel.h; sourceTree = "<group>"; };
  2206. C7404E72238D2FA700DB19AC /* SelectImageModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectImageModel.m; sourceTree = "<group>"; };
  2207. C7404E74238E1BCF00DB19AC /* MyApprovalFileCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyApprovalFileCell.h; sourceTree = "<group>"; };
  2208. C7404E75238E1BCF00DB19AC /* MyApprovalFileCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyApprovalFileCell.m; sourceTree = "<group>"; };
  2209. C7404E76238E1BCF00DB19AC /* MyApprovalFileCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyApprovalFileCell.xib; sourceTree = "<group>"; };
  2210. C744D23D2369AABE00D51EDD /* MyFavoriteFindCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFavoriteFindCell.h; sourceTree = "<group>"; };
  2211. C744D23E2369AABE00D51EDD /* MyFavoriteFindCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteFindCell.m; sourceTree = "<group>"; };
  2212. C744D2402369B97E00D51EDD /* FavoriteHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FavoriteHeaderView.h; sourceTree = "<group>"; };
  2213. C744D2412369B97E00D51EDD /* FavoriteHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FavoriteHeaderView.m; sourceTree = "<group>"; };
  2214. C74648592376E7F200876BA2 /* TDInterLeterHomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDInterLeterHomeViewController.h; sourceTree = "<group>"; };
  2215. C746485A2376E7F200876BA2 /* TDInterLeterHomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDInterLeterHomeViewController.m; sourceTree = "<group>"; };
  2216. C7473D67237105F30037DC39 /* WorkFlowSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowSearchVC.h; sourceTree = "<group>"; };
  2217. C7473D68237105F30037DC39 /* WorkFlowSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowSearchVC.m; sourceTree = "<group>"; };
  2218. C74BCC6D238F611700169982 /* AddChannelController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddChannelController.h; sourceTree = "<group>"; };
  2219. C74BCC6E238F611700169982 /* AddChannelController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddChannelController.m; sourceTree = "<group>"; };
  2220. C74BCC74238F88A200169982 /* VersionData.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = VersionData.storyboard; sourceTree = "<group>"; };
  2221. C74BCC7A238FA1FF00169982 /* UILabel+RightAndLeft.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UILabel+RightAndLeft.h"; sourceTree = "<group>"; };
  2222. C74BCC7B238FA1FF00169982 /* UILabel+RightAndLeft.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UILabel+RightAndLeft.m"; sourceTree = "<group>"; };
  2223. C74BCC7E238FB69B00169982 /* VersionDataModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VersionDataModel.h; sourceTree = "<group>"; };
  2224. C74BCC7F238FB69B00169982 /* VersionDataModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VersionDataModel.m; sourceTree = "<group>"; };
  2225. C74BCC81238FB6C900169982 /* VersionDataSub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VersionDataSub.h; sourceTree = "<group>"; };
  2226. C74BCC82238FB6C900169982 /* VersionDataSub.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VersionDataSub.m; sourceTree = "<group>"; };
  2227. C74BCC84238FC39000169982 /* smartRhino-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "smartRhino-Bridging-Header.h"; sourceTree = "<group>"; };
  2228. C74E72E723D2FF2B00BD1271 /* DepartureController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DepartureController.h; sourceTree = "<group>"; };
  2229. C74E72E823D2FF2B00BD1271 /* DepartureController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DepartureController.m; sourceTree = "<group>"; };
  2230. C74E72E923D2FF2B00BD1271 /* DepartureController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DepartureController.xib; sourceTree = "<group>"; };
  2231. C75049EF236027DA0096B15B /* HomeContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeContentCell.h; sourceTree = "<group>"; };
  2232. C75049F0236027DA0096B15B /* HomeContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeContentCell.m; sourceTree = "<group>"; };
  2233. C75049F1236027DA0096B15B /* HomeContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeContentCell.xib; sourceTree = "<group>"; };
  2234. C751012523837FB100E4429B /* MyZanCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyZanCell.h; sourceTree = "<group>"; };
  2235. C751012623837FB100E4429B /* MyZanCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyZanCell.m; sourceTree = "<group>"; };
  2236. C751012723837FB100E4429B /* MyZanCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyZanCell.xib; sourceTree = "<group>"; };
  2237. C751012A2383A02F00E4429B /* FormFields.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormFields.h; sourceTree = "<group>"; };
  2238. C751012B2383A02F00E4429B /* FormFields.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FormFields.m; sourceTree = "<group>"; };
  2239. C751012D2383BEA200E4429B /* FormFieldsModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormFieldsModel.h; sourceTree = "<group>"; };
  2240. C751012E2383BEA200E4429B /* FormFieldsModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FormFieldsModel.m; sourceTree = "<group>"; };
  2241. C7525DDF2388DC9D004B9D71 /* LMJHorizontalScrollText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJHorizontalScrollText.h; sourceTree = "<group>"; };
  2242. C7525DE02388DC9E004B9D71 /* LMJHorizontalScrollText.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJHorizontalScrollText.m; sourceTree = "<group>"; };
  2243. C7525DE22388F25F004B9D71 /* MyWordCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWordCell.h; sourceTree = "<group>"; };
  2244. C7525DE32388F25F004B9D71 /* MyWordCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWordCell.m; sourceTree = "<group>"; };
  2245. C7525DE42388F25F004B9D71 /* MyWordCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyWordCell.xib; sourceTree = "<group>"; };
  2246. C7525DE7238907D6004B9D71 /* MyWorkAppApprovalCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkAppApprovalCell.h; sourceTree = "<group>"; };
  2247. C7525DE8238907D6004B9D71 /* MyWorkAppApprovalCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkAppApprovalCell.m; sourceTree = "<group>"; };
  2248. C7525DE9238907D6004B9D71 /* MyWorkAppApprovalCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyWorkAppApprovalCell.xib; sourceTree = "<group>"; };
  2249. C7525DEC23890A8B004B9D71 /* MyWorkSpaceCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkSpaceCell.h; sourceTree = "<group>"; };
  2250. C7525DED23890A8B004B9D71 /* MyWorkSpaceCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkSpaceCell.m; sourceTree = "<group>"; };
  2251. C7525DEE23890A8B004B9D71 /* MyWorkSpaceCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyWorkSpaceCell.xib; sourceTree = "<group>"; };
  2252. C7525DF723895918004B9D71 /* SelectModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectModel.h; sourceTree = "<group>"; };
  2253. C7525DF823895918004B9D71 /* SelectModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectModel.m; sourceTree = "<group>"; };
  2254. C752D20C2375118700913F97 /* AgreeApprovalViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AgreeApprovalViewController.h; sourceTree = "<group>"; };
  2255. C752D20D2375118700913F97 /* AgreeApprovalViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AgreeApprovalViewController.m; sourceTree = "<group>"; };
  2256. C752D20F23751F1600913F97 /* DownFileViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DownFileViewController.h; sourceTree = "<group>"; };
  2257. C752D21023751F1600913F97 /* DownFileViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DownFileViewController.m; sourceTree = "<group>"; };
  2258. C752D21223751FB200913F97 /* NextApprovalViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NextApprovalViewController.h; sourceTree = "<group>"; };
  2259. C752D21323751FB200913F97 /* NextApprovalViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NextApprovalViewController.m; sourceTree = "<group>"; };
  2260. C752D21423751FB200913F97 /* NextApprovalViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NextApprovalViewController.xib; sourceTree = "<group>"; };
  2261. C752D2172375337E00913F97 /* AgreeApprovalViewControllerSub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AgreeApprovalViewControllerSub.h; sourceTree = "<group>"; };
  2262. C752D2182375337E00913F97 /* AgreeApprovalViewControllerSub.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AgreeApprovalViewControllerSub.m; sourceTree = "<group>"; };
  2263. C752D21A23755B4400913F97 /* FWZViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FWZViewController.h; sourceTree = "<group>"; };
  2264. C752D21B23755B4400913F97 /* FWZViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FWZViewController.m; sourceTree = "<group>"; };
  2265. C759589E237FF2BE00AE85C0 /* HomeTopImageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeTopImageModel.h; sourceTree = "<group>"; };
  2266. C759589F237FF2BE00AE85C0 /* HomeTopImageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeTopImageModel.m; sourceTree = "<group>"; };
  2267. C75958A1237FFC9700AE85C0 /* HomeArticleModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeArticleModel.m; sourceTree = "<group>"; };
  2268. C75958A2237FFC9700AE85C0 /* HomeArticleModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeArticleModel.h; sourceTree = "<group>"; };
  2269. C75958A4237FFCC200AE85C0 /* Item.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Item.m; sourceTree = "<group>"; };
  2270. C75958A5237FFCC200AE85C0 /* Item.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Item.h; sourceTree = "<group>"; };
  2271. C75958A82380223B00AE85C0 /* ThesaurusName.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThesaurusName.m; sourceTree = "<group>"; };
  2272. C75958A92380223B00AE85C0 /* ThesaurusName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThesaurusName.h; sourceTree = "<group>"; };
  2273. C75ACED0236A842400CB6374 /* TDShareButtonView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDShareButtonView.h; sourceTree = "<group>"; };
  2274. C75ACED1236A842400CB6374 /* TDShareButtonView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDShareButtonView.m; sourceTree = "<group>"; };
  2275. C75ACED8236AAE5F00CB6374 /* MyTDGroupViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDGroupViewController.h; sourceTree = "<group>"; };
  2276. C75ACED9236AAE5F00CB6374 /* MyTDGroupViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDGroupViewController.m; sourceTree = "<group>"; };
  2277. C75ACEDB236AAE7800CB6374 /* MyTDGroupModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDGroupModel.h; sourceTree = "<group>"; };
  2278. C75ACEDC236AAE7800CB6374 /* MyTDGroupModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDGroupModel.m; sourceTree = "<group>"; };
  2279. C75ACEDE236AAE8A00CB6374 /* MyTDGroupCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDGroupCell.h; sourceTree = "<group>"; };
  2280. C75ACEDF236AAE8A00CB6374 /* MyTDGroupCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDGroupCell.m; sourceTree = "<group>"; };
  2281. C75ACEE1236AAE9300CB6374 /* MyTDGroupView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDGroupView.h; sourceTree = "<group>"; };
  2282. C75ACEE2236AAE9300CB6374 /* MyTDGroupView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDGroupView.m; sourceTree = "<group>"; };
  2283. C75F9F202367FAD3002867A2 /* DetailContentView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailContentView.h; sourceTree = "<group>"; };
  2284. C75F9F212367FAD3002867A2 /* DetailContentView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailContentView.m; sourceTree = "<group>"; };
  2285. C75F9F2323681DD8002867A2 /* ClickOKView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ClickOKView.h; sourceTree = "<group>"; };
  2286. C75F9F2423681DD8002867A2 /* ClickOKView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ClickOKView.m; sourceTree = "<group>"; };
  2287. C75F9F26236861A9002867A2 /* CommentSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommentSubModel.h; sourceTree = "<group>"; };
  2288. C75F9F27236861A9002867A2 /* CommentSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommentSubModel.m; sourceTree = "<group>"; };
  2289. C75F9F29236875CB002867A2 /* ComentSubCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComentSubCell.h; sourceTree = "<group>"; };
  2290. C75F9F2A236875CB002867A2 /* ComentSubCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ComentSubCell.m; sourceTree = "<group>"; };
  2291. C7602274239249270069414C /* TDWaitWorkModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDWaitWorkModel.h; sourceTree = "<group>"; };
  2292. C7602275239249270069414C /* TDWaitWorkModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDWaitWorkModel.m; sourceTree = "<group>"; };
  2293. C767450B2373A6C2001675FA /* SKUCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SKUCollectionCell.h; sourceTree = "<group>"; };
  2294. C767450C2373A6C3001675FA /* BYHLabelsLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BYHLabelsLayout.h; sourceTree = "<group>"; };
  2295. C767450D2373A6C3001675FA /* SKUCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SKUCollectionCell.m; sourceTree = "<group>"; };
  2296. C767450F2373A6C3001675FA /* BYHLabelsLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BYHLabelsLayout.m; sourceTree = "<group>"; };
  2297. C76745102373A6C3001675FA /* WorkFLowCollectionSelectView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkFLowCollectionSelectView.h; sourceTree = "<group>"; };
  2298. C76745112373A6C3001675FA /* WorkFLowCollectionSelectView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WorkFLowCollectionSelectView.m; sourceTree = "<group>"; };
  2299. C768AFAE23796C0B00E0A066 /* IgnoreHeaderTouchAndRecognizeSimultaneousTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IgnoreHeaderTouchAndRecognizeSimultaneousTableView.m; sourceTree = "<group>"; };
  2300. C768AFAF23796C0B00E0A066 /* IgnoreHeaderTouchTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IgnoreHeaderTouchTableView.h; sourceTree = "<group>"; };
  2301. C768AFB023796C0C00E0A066 /* IgnoreHeaderTouchTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IgnoreHeaderTouchTableView.m; sourceTree = "<group>"; };
  2302. C768AFB123796C0C00E0A066 /* IgnoreHeaderTouchAndRecognizeSimultaneousTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IgnoreHeaderTouchAndRecognizeSimultaneousTableView.h; sourceTree = "<group>"; };
  2303. C768AFB42379778F00E0A066 /* MyTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyTableView.m; sourceTree = "<group>"; };
  2304. C768AFB52379778F00E0A066 /* MyTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyTableView.h; sourceTree = "<group>"; };
  2305. C76B01232387B0C500AD6E28 /* WorkNumberModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkNumberModel.h; sourceTree = "<group>"; };
  2306. C76B01242387B0C500AD6E28 /* WorkNumberModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkNumberModel.m; sourceTree = "<group>"; };
  2307. C76B01262387B9C400AD6E28 /* WorkFilterModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFilterModel.h; sourceTree = "<group>"; };
  2308. C76B01272387B9C400AD6E28 /* WorkFilterModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFilterModel.m; sourceTree = "<group>"; };
  2309. C76CC9D423BC9C7A003B23DC /* MeetingRecordJoinCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingRecordJoinCell.h; sourceTree = "<group>"; };
  2310. C76CC9D523BC9C7A003B23DC /* MeetingRecordJoinCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingRecordJoinCell.m; sourceTree = "<group>"; };
  2311. C76CC9D623BC9C7A003B23DC /* MeetingRecordJoinCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MeetingRecordJoinCell.xib; sourceTree = "<group>"; };
  2312. C76CC9D923BC9E25003B23DC /* MeetingRecordUserCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingRecordUserCell.h; sourceTree = "<group>"; };
  2313. C76CC9DA23BC9E25003B23DC /* MeetingRecordUserCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingRecordUserCell.m; sourceTree = "<group>"; };
  2314. C76CC9DB23BC9E25003B23DC /* MeetingRecordUserCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MeetingRecordUserCell.xib; sourceTree = "<group>"; };
  2315. C76CC9DE23BCA03D003B23DC /* MeetingRecordTitleCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingRecordTitleCell.h; sourceTree = "<group>"; };
  2316. C76CC9DF23BCA03D003B23DC /* MeetingRecordTitleCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingRecordTitleCell.m; sourceTree = "<group>"; };
  2317. C76CC9E023BCA03D003B23DC /* MeetingRecordTitleCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MeetingRecordTitleCell.xib; sourceTree = "<group>"; };
  2318. C76CC9E323BCA6B6003B23DC /* MeetingRecordContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingRecordContentCell.h; sourceTree = "<group>"; };
  2319. C76CC9E423BCA6B6003B23DC /* MeetingRecordContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingRecordContentCell.m; sourceTree = "<group>"; };
  2320. C76CC9E523BCA6B6003B23DC /* MeetingRecordContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MeetingRecordContentCell.xib; sourceTree = "<group>"; };
  2321. C76DB42D236ACB4B00369F5C /* MyTDTopicViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicViewController.h; sourceTree = "<group>"; };
  2322. C76DB42E236ACB4B00369F5C /* MyTDTopicViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicViewController.m; sourceTree = "<group>"; };
  2323. C76DB430236ACC1200369F5C /* MyTDTopicModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicModel.h; sourceTree = "<group>"; };
  2324. C76DB431236ACC1200369F5C /* MyTDTopicModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicModel.m; sourceTree = "<group>"; };
  2325. C76DB433236ACC8100369F5C /* MyTDTopicSelectGroupVIew.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicSelectGroupVIew.h; sourceTree = "<group>"; };
  2326. C76DB434236ACC8100369F5C /* MyTDTopicSelectGroupVIew.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicSelectGroupVIew.m; sourceTree = "<group>"; };
  2327. C76DB436236ACCC400369F5C /* MyTDTopicTitleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicTitleView.h; sourceTree = "<group>"; };
  2328. C76DB437236ACCC400369F5C /* MyTDTopicTitleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicTitleView.m; sourceTree = "<group>"; };
  2329. C76DB439236ACCF500369F5C /* MyTDTopicCellView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicCellView.h; sourceTree = "<group>"; };
  2330. C76DB43A236ACCF500369F5C /* MyTDTopicCellView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicCellView.m; sourceTree = "<group>"; };
  2331. C76DB43C236ACF5700369F5C /* MyTDTopicModelSub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicModelSub.h; sourceTree = "<group>"; };
  2332. C76DB43D236ACF5700369F5C /* MyTDTopicModelSub.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicModelSub.m; sourceTree = "<group>"; };
  2333. C76FD29A238506E100E858F6 /* NodesModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NodesModel.h; sourceTree = "<group>"; };
  2334. C76FD29B238506E100E858F6 /* NodesModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NodesModel.m; sourceTree = "<group>"; };
  2335. C770405923AC655700BFF1B0 /* UIView+BYIBInspectable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+BYIBInspectable.m"; sourceTree = "<group>"; };
  2336. C770405A23AC655700BFF1B0 /* UIView+BYIBInspectable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+BYIBInspectable.h"; sourceTree = "<group>"; };
  2337. C770406623AC9BC900BFF1B0 /* RefreshBaseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RefreshBaseViewController.h; sourceTree = "<group>"; };
  2338. C770406723AC9BC900BFF1B0 /* RefreshBaseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RefreshBaseViewController.m; sourceTree = "<group>"; };
  2339. C770406B23AC9F7300BFF1B0 /* MeetingListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingListModel.h; sourceTree = "<group>"; };
  2340. C770406C23AC9F7300BFF1B0 /* MeetingListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingListModel.m; sourceTree = "<group>"; };
  2341. C7716AF723B3435C00D6D45D /* MeetingSummaryListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingSummaryListModel.h; sourceTree = "<group>"; };
  2342. C7716AF823B3435C00D6D45D /* MeetingSummaryListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingSummaryListModel.m; sourceTree = "<group>"; };
  2343. C772299923B5A7A700007B21 /* MyMeetingListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyMeetingListModel.h; sourceTree = "<group>"; };
  2344. C772299A23B5A7A700007B21 /* MyMeetingListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyMeetingListModel.m; sourceTree = "<group>"; };
  2345. C772299C23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HistoricalWorkFlowDetailsMessageCell.h; sourceTree = "<group>"; };
  2346. C772299D23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HistoricalWorkFlowDetailsMessageCell.m; sourceTree = "<group>"; };
  2347. C772299E23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HistoricalWorkFlowDetailsMessageCell.xib; sourceTree = "<group>"; };
  2348. C77229A123B63B3500007B21 /* WorkFlowPersonnelListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowPersonnelListModel.h; sourceTree = "<group>"; };
  2349. C77229A223B63B3500007B21 /* WorkFlowPersonnelListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowPersonnelListModel.m; sourceTree = "<group>"; };
  2350. C7743F8423A86A8600973D70 /* WorkFlowHomeListController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowHomeListController.h; sourceTree = "<group>"; };
  2351. C7743F8523A86A8600973D70 /* WorkFlowHomeListController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowHomeListController.m; sourceTree = "<group>"; };
  2352. C7743F8623A86A8600973D70 /* WorkFlowHomeListController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowHomeListController.xib; sourceTree = "<group>"; };
  2353. C7743F8923A86BD300973D70 /* WorkFlowTabbarController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowTabbarController.h; sourceTree = "<group>"; };
  2354. C7743F8A23A86BD300973D70 /* WorkFlowTabbarController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowTabbarController.m; sourceTree = "<group>"; };
  2355. C7743F8E23A86D7000973D70 /* MyWorkFlowListController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkFlowListController.h; sourceTree = "<group>"; };
  2356. C7743F8F23A86D7000973D70 /* MyWorkFlowListController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkFlowListController.m; sourceTree = "<group>"; };
  2357. C7743F9023A86D7000973D70 /* MyWorkFlowListController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyWorkFlowListController.xib; sourceTree = "<group>"; };
  2358. C7743F9523A86DAE00973D70 /* WorkFlowFecordController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowFecordController.h; sourceTree = "<group>"; };
  2359. C7743F9623A86DAE00973D70 /* WorkFlowFecordController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowFecordController.m; sourceTree = "<group>"; };
  2360. C7743F9723A86DAE00973D70 /* WorkFlowFecordController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowFecordController.xib; sourceTree = "<group>"; };
  2361. C7743F9A23A8B2D800973D70 /* WorkFlowHomeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowHomeCell.h; sourceTree = "<group>"; };
  2362. C7743F9B23A8B2D800973D70 /* WorkFlowHomeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowHomeCell.m; sourceTree = "<group>"; };
  2363. C7743F9C23A8B2D800973D70 /* WorkFlowHomeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowHomeCell.xib; sourceTree = "<group>"; };
  2364. C7743F9F23A8C03D00973D70 /* WorkFlowSearchItemCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowSearchItemCell.h; sourceTree = "<group>"; };
  2365. C7743FA023A8C03D00973D70 /* WorkFlowSearchItemCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowSearchItemCell.m; sourceTree = "<group>"; };
  2366. C7743FA123A8C03D00973D70 /* WorkFlowSearchItemCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowSearchItemCell.xib; sourceTree = "<group>"; };
  2367. C7743FA423A8CAA500973D70 /* CollectionViewSpaceLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CollectionViewSpaceLayout.m; sourceTree = "<group>"; };
  2368. C7743FA523A8CAA500973D70 /* CollectionViewSpaceLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CollectionViewSpaceLayout.h; sourceTree = "<group>"; };
  2369. C7743FAA23A9018200973D70 /* MyWorkFlowListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkFlowListCell.h; sourceTree = "<group>"; };
  2370. C7743FAB23A9018200973D70 /* MyWorkFlowListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkFlowListCell.m; sourceTree = "<group>"; };
  2371. C7743FAC23A9018200973D70 /* MyWorkFlowListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyWorkFlowListCell.xib; sourceTree = "<group>"; };
  2372. C7743FAF23A9078100973D70 /* historicalRecordCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = historicalRecordCell.h; sourceTree = "<group>"; };
  2373. C7743FB023A9078100973D70 /* historicalRecordCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = historicalRecordCell.m; sourceTree = "<group>"; };
  2374. C7743FB123A9078100973D70 /* historicalRecordCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = historicalRecordCell.xib; sourceTree = "<group>"; };
  2375. C7799EF123AB19EA00270988 /* WorkFlowOrderTopCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowOrderTopCell.h; sourceTree = "<group>"; };
  2376. C7799EF223AB19EA00270988 /* WorkFlowOrderTopCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowOrderTopCell.m; sourceTree = "<group>"; };
  2377. C7799EF323AB19EA00270988 /* WorkFlowOrderTopCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowOrderTopCell.xib; sourceTree = "<group>"; };
  2378. C7799EF623AB1DF100270988 /* WorkFlowOrderCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowOrderCell.h; sourceTree = "<group>"; };
  2379. C7799EF723AB1DF100270988 /* WorkFlowOrderCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowOrderCell.m; sourceTree = "<group>"; };
  2380. C7799EF823AB1DF100270988 /* WorkFlowOrderCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowOrderCell.xib; sourceTree = "<group>"; };
  2381. C7799EFB23AB2A1600270988 /* WorkFlowOrderItemCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowOrderItemCell.h; sourceTree = "<group>"; };
  2382. C7799EFC23AB2A1600270988 /* WorkFlowOrderItemCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowOrderItemCell.m; sourceTree = "<group>"; };
  2383. C7799EFD23AB2A1600270988 /* WorkFlowOrderItemCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowOrderItemCell.xib; sourceTree = "<group>"; };
  2384. C7799F0023AB2C6E00270988 /* WorkFlowOrderController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowOrderController.h; sourceTree = "<group>"; };
  2385. C7799F0123AB2C6E00270988 /* WorkFlowOrderController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowOrderController.m; sourceTree = "<group>"; };
  2386. C7799F0223AB2C6E00270988 /* WorkFlowOrderController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowOrderController.xib; sourceTree = "<group>"; };
  2387. C7799F0523AB5C5A00270988 /* WorkFlowOrderInputCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowOrderInputCell.h; sourceTree = "<group>"; };
  2388. C7799F0623AB5C5A00270988 /* WorkFlowOrderInputCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowOrderInputCell.m; sourceTree = "<group>"; };
  2389. C7799F0723AB5C5A00270988 /* WorkFlowOrderInputCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowOrderInputCell.xib; sourceTree = "<group>"; };
  2390. C7799F0F23AB7E6500270988 /* WorkFlowPersonnelListController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowPersonnelListController.h; sourceTree = "<group>"; };
  2391. C7799F1023AB7E6500270988 /* WorkFlowPersonnelListController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowPersonnelListController.m; sourceTree = "<group>"; };
  2392. C7799F1123AB7E6500270988 /* WorkFlowPersonnelListController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowPersonnelListController.xib; sourceTree = "<group>"; };
  2393. C7799F1423AB849F00270988 /* WorkFlowPersonnelListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowPersonnelListCell.h; sourceTree = "<group>"; };
  2394. C7799F1523AB849F00270988 /* WorkFlowPersonnelListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowPersonnelListCell.m; sourceTree = "<group>"; };
  2395. C7799F1623AB849F00270988 /* WorkFlowPersonnelListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowPersonnelListCell.xib; sourceTree = "<group>"; };
  2396. C7799F1923AB991100270988 /* WorkFlowPersonnelListHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowPersonnelListHeadView.h; sourceTree = "<group>"; };
  2397. C7799F1A23AB991100270988 /* WorkFlowPersonnelListHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowPersonnelListHeadView.m; sourceTree = "<group>"; };
  2398. C7799F1C23AB99C500270988 /* WorkFlowPersonnelListHeadView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowPersonnelListHeadView.xib; sourceTree = "<group>"; };
  2399. C77E217C23ADEE51009A230C /* WorkFlowOrderSelectedCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowOrderSelectedCell.h; sourceTree = "<group>"; };
  2400. C77E217D23ADEE51009A230C /* WorkFlowOrderSelectedCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowOrderSelectedCell.m; sourceTree = "<group>"; };
  2401. C77E217E23ADEE51009A230C /* WorkFlowOrderSelectedCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowOrderSelectedCell.xib; sourceTree = "<group>"; };
  2402. C77E218123ADF55F009A230C /* SelectedTimeModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectedTimeModel.h; sourceTree = "<group>"; };
  2403. C77E218223ADF55F009A230C /* SelectedTimeModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectedTimeModel.m; sourceTree = "<group>"; };
  2404. C77E218423AE0ED5009A230C /* SelectedTimeSourceModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectedTimeSourceModel.h; sourceTree = "<group>"; };
  2405. C77E218523AE0ED5009A230C /* SelectedTimeSourceModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectedTimeSourceModel.m; sourceTree = "<group>"; };
  2406. C77E218723AE3776009A230C /* WorkFlowOrderSelectedTimeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowOrderSelectedTimeCell.h; sourceTree = "<group>"; };
  2407. C77E218823AE3776009A230C /* WorkFlowOrderSelectedTimeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowOrderSelectedTimeCell.m; sourceTree = "<group>"; };
  2408. C77E218923AE3776009A230C /* WorkFlowOrderSelectedTimeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowOrderSelectedTimeCell.xib; sourceTree = "<group>"; };
  2409. C77E218C23AE4CC2009A230C /* WorkFlowOrderModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowOrderModel.h; sourceTree = "<group>"; };
  2410. C77E218D23AE4CC2009A230C /* WorkFlowOrderModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowOrderModel.m; sourceTree = "<group>"; };
  2411. C77F3E56236D55D10015C412 /* AutoLayoutScrollView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AutoLayoutScrollView.h; sourceTree = "<group>"; };
  2412. C77F3E57236D55D10015C412 /* AutoLayoutScrollView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AutoLayoutScrollView.m; sourceTree = "<group>"; };
  2413. C7819D5823B0549300300297 /* NSDate+JKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+JKExtension.m"; sourceTree = "<group>"; };
  2414. C7819D5923B0549300300297 /* NSDate+JKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+JKExtension.h"; sourceTree = "<group>"; };
  2415. C7819D5B23B0597500300297 /* TimeSourceModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TimeSourceModel.h; sourceTree = "<group>"; };
  2416. C7819D5C23B0597500300297 /* TimeSourceModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TimeSourceModel.m; sourceTree = "<group>"; };
  2417. C78373ED23A9D82E0096AFE2 /* HistoricalWorkFlowListController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HistoricalWorkFlowListController.h; sourceTree = "<group>"; };
  2418. C78373EE23A9D82E0096AFE2 /* HistoricalWorkFlowListController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HistoricalWorkFlowListController.m; sourceTree = "<group>"; };
  2419. C78373EF23A9D82E0096AFE2 /* HistoricalWorkFlowListController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HistoricalWorkFlowListController.xib; sourceTree = "<group>"; };
  2420. C78373F323A9F5430096AFE2 /* HistoricalWorkFlowListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HistoricalWorkFlowListCell.h; sourceTree = "<group>"; };
  2421. C78373F423A9F5430096AFE2 /* HistoricalWorkFlowListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HistoricalWorkFlowListCell.m; sourceTree = "<group>"; };
  2422. C78373F523A9F5430096AFE2 /* HistoricalWorkFlowListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HistoricalWorkFlowListCell.xib; sourceTree = "<group>"; };
  2423. C78373F823AA287C0096AFE2 /* FecordJoinWorkFlowListController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FecordJoinWorkFlowListController.h; sourceTree = "<group>"; };
  2424. C78373F923AA287C0096AFE2 /* FecordJoinWorkFlowListController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FecordJoinWorkFlowListController.m; sourceTree = "<group>"; };
  2425. C78373FA23AA287C0096AFE2 /* FecordJoinWorkFlowListController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FecordJoinWorkFlowListController.xib; sourceTree = "<group>"; };
  2426. C783740023AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JoinHistoricalWorkFlowListCell.h; sourceTree = "<group>"; };
  2427. C783740123AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JoinHistoricalWorkFlowListCell.m; sourceTree = "<group>"; };
  2428. C783740223AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = JoinHistoricalWorkFlowListCell.xib; sourceTree = "<group>"; };
  2429. C783740523AA42C00096AFE2 /* WorkFlowDetailsController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowDetailsController.h; sourceTree = "<group>"; };
  2430. C783740623AA42C00096AFE2 /* WorkFlowDetailsController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowDetailsController.m; sourceTree = "<group>"; };
  2431. C783740723AA42C00096AFE2 /* WorkFlowDetailsController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowDetailsController.xib; sourceTree = "<group>"; };
  2432. C783740A23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HistoricalWorkFlowDetailsTitleCell.h; sourceTree = "<group>"; };
  2433. C783740B23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HistoricalWorkFlowDetailsTitleCell.m; sourceTree = "<group>"; };
  2434. C783740C23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HistoricalWorkFlowDetailsTitleCell.xib; sourceTree = "<group>"; };
  2435. C783740F23AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HistoricalWorkFlowDetailsContentCell.h; sourceTree = "<group>"; };
  2436. C783741023AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HistoricalWorkFlowDetailsContentCell.m; sourceTree = "<group>"; };
  2437. C783741123AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HistoricalWorkFlowDetailsContentCell.xib; sourceTree = "<group>"; };
  2438. C783741423AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HistoricalWorkFlowDetailsMoreCell.h; sourceTree = "<group>"; };
  2439. C783741523AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HistoricalWorkFlowDetailsMoreCell.m; sourceTree = "<group>"; };
  2440. C783741623AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HistoricalWorkFlowDetailsMoreCell.xib; sourceTree = "<group>"; };
  2441. C783741923AA48F50096AFE2 /* HistoricalWorkFlowDetailsBaseCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HistoricalWorkFlowDetailsBaseCell.h; sourceTree = "<group>"; };
  2442. C783741A23AA48F50096AFE2 /* HistoricalWorkFlowDetailsBaseCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HistoricalWorkFlowDetailsBaseCell.m; sourceTree = "<group>"; };
  2443. C788F1852369451A0070A6B3 /* FavoritesViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FavoritesViewController.h; sourceTree = "<group>"; };
  2444. C788F1862369451A0070A6B3 /* FavoritesViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FavoritesViewController.m; sourceTree = "<group>"; };
  2445. C788F1872369451A0070A6B3 /* FavoritesViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FavoritesViewController.xib; sourceTree = "<group>"; };
  2446. C788F18A236957890070A6B3 /* FavoriteFindModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FavoriteFindModel.h; sourceTree = "<group>"; };
  2447. C788F18B236957890070A6B3 /* FavoriteFindModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FavoriteFindModel.m; sourceTree = "<group>"; };
  2448. C788F18D236957E70070A6B3 /* FavoriteTextModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FavoriteTextModel.h; sourceTree = "<group>"; };
  2449. C788F18E236957E70070A6B3 /* FavoriteTextModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FavoriteTextModel.m; sourceTree = "<group>"; };
  2450. C788F198236963980070A6B3 /* FavoriteTextCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FavoriteTextCell.h; sourceTree = "<group>"; };
  2451. C788F199236963980070A6B3 /* FavoriteTextCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FavoriteTextCell.m; sourceTree = "<group>"; };
  2452. C7914DCA236D8573000CD5CA /* AddPeopleToGongWenCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddPeopleToGongWenCell.h; sourceTree = "<group>"; };
  2453. C7914DCB236D8573000CD5CA /* AddPeopleToGongWenCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddPeopleToGongWenCell.m; sourceTree = "<group>"; };
  2454. C7914DCC236D8573000CD5CA /* AddPeopleToGongWenCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AddPeopleToGongWenCell.xib; sourceTree = "<group>"; };
  2455. C7938E4E236443AA00746248 /* ClickOKViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ClickOKViewController.h; sourceTree = "<group>"; };
  2456. C7938E4F236443AA00746248 /* ClickOKViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ClickOKViewController.m; sourceTree = "<group>"; };
  2457. C7938E532364446B00746248 /* ClickOKCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ClickOKCell.h; sourceTree = "<group>"; };
  2458. C7938E542364446B00746248 /* ClickOKCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ClickOKCell.m; sourceTree = "<group>"; };
  2459. C7938E552364446B00746248 /* ClickOKCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ClickOKCell.xib; sourceTree = "<group>"; };
  2460. C7954B44237E799100EDC479 /* AddressBookGroupModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressBookGroupModel.m; sourceTree = "<group>"; };
  2461. C7954B45237E799100EDC479 /* Addressbookgroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Addressbookgroup.m; sourceTree = "<group>"; };
  2462. C7954B46237E799200EDC479 /* Department.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Department.h; sourceTree = "<group>"; };
  2463. C7954B47237E799200EDC479 /* Department.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Department.m; sourceTree = "<group>"; };
  2464. C7954B48237E799200EDC479 /* AddressBookGroupModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressBookGroupModel.h; sourceTree = "<group>"; };
  2465. C7954B49237E799200EDC479 /* Addressbookgroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Addressbookgroup.h; sourceTree = "<group>"; };
  2466. C7954B4D237EAD0A00EDC479 /* AddressUserModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddressUserModel.h; sourceTree = "<group>"; };
  2467. C7954B4E237EAD0A00EDC479 /* AddressUserModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddressUserModel.m; sourceTree = "<group>"; };
  2468. C795C62A2374348E0042300F /* MyWorkFlowFooterView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkFlowFooterView.h; sourceTree = "<group>"; };
  2469. C795C62B2374348E0042300F /* MyWorkFlowFooterView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkFlowFooterView.m; sourceTree = "<group>"; };
  2470. C795C62D23744CD00042300F /* GoDisscussView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoDisscussView.h; sourceTree = "<group>"; };
  2471. C795C62E23744CD00042300F /* GoDisscussView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoDisscussView.m; sourceTree = "<group>"; };
  2472. C7973956237BB5AB008BA2DF /* APIPOPOPO.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = APIPOPOPO.h; sourceTree = "<group>"; };
  2473. C7973957237BB5AB008BA2DF /* APIPOPOPO.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = APIPOPOPO.m; sourceTree = "<group>"; };
  2474. C7974A19236BE250004D5470 /* WorkFLowModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFLowModel.h; sourceTree = "<group>"; };
  2475. C7974A1A236BE250004D5470 /* WorkFLowModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFLowModel.m; sourceTree = "<group>"; };
  2476. C7974A1C236BFBD0004D5470 /* WorkFLowCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFLowCell.h; sourceTree = "<group>"; };
  2477. C7974A1D236BFBD0004D5470 /* WorkFLowCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFLowCell.m; sourceTree = "<group>"; };
  2478. C7974A1E236BFBD0004D5470 /* WorkFLowCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFLowCell.xib; sourceTree = "<group>"; };
  2479. C7974A27236C2617004D5470 /* MyApprovalPageVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyApprovalPageVC.h; sourceTree = "<group>"; };
  2480. C7974A28236C2617004D5470 /* MyApprovalPageVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyApprovalPageVC.m; sourceTree = "<group>"; };
  2481. C7974A2D236C2A2C004D5470 /* MyApprovalModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyApprovalModel.h; sourceTree = "<group>"; };
  2482. C7974A2E236C2A2C004D5470 /* MyApprovalModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyApprovalModel.m; sourceTree = "<group>"; };
  2483. C7974A34236C3198004D5470 /* MyApprovalBCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyApprovalBCell.h; sourceTree = "<group>"; };
  2484. C7974A35236C3198004D5470 /* MyApprovalBCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyApprovalBCell.m; sourceTree = "<group>"; };
  2485. C7974A36236C3199004D5470 /* MyApprovalBCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyApprovalBCell.xib; sourceTree = "<group>"; };
  2486. C7974A3E236C4CC0004D5470 /* MyWorkWordVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkWordVC.h; sourceTree = "<group>"; };
  2487. C7974A3F236C4CC0004D5470 /* MyWorkWordVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkWordVC.m; sourceTree = "<group>"; };
  2488. C7974A41236C4CD5004D5470 /* MyWorkWordView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkWordView.h; sourceTree = "<group>"; };
  2489. C7974A42236C4CD5004D5470 /* MyWorkWordView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkWordView.m; sourceTree = "<group>"; };
  2490. C7974A44236C4CFA004D5470 /* MyWorkWordModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkWordModel.h; sourceTree = "<group>"; };
  2491. C7974A45236C4CFA004D5470 /* MyWorkWordModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkWordModel.m; sourceTree = "<group>"; };
  2492. C7974A47236C4D2A004D5470 /* MyWorkWordCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkWordCell.h; sourceTree = "<group>"; };
  2493. C7974A48236C4D2A004D5470 /* MyWorkWordCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkWordCell.m; sourceTree = "<group>"; };
  2494. C7974A49236C4D2A004D5470 /* MyWorkWordCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyWorkWordCell.xib; sourceTree = "<group>"; };
  2495. C79C6D3323BF0A5500BE4156 /* MyMeetingTimeView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyMeetingTimeView.h; sourceTree = "<group>"; };
  2496. C79C6D3423BF0A5500BE4156 /* MyMeetingTimeView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyMeetingTimeView.m; sourceTree = "<group>"; };
  2497. C79C6D3623BF0A6100BE4156 /* MyMeetingTimeView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyMeetingTimeView.xib; sourceTree = "<group>"; };
  2498. C79C6D3823BF16C500BE4156 /* MeetingDetailsTimeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingDetailsTimeCell.h; sourceTree = "<group>"; };
  2499. C79C6D3923BF16C500BE4156 /* MeetingDetailsTimeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingDetailsTimeCell.m; sourceTree = "<group>"; };
  2500. C79C6D3A23BF16C500BE4156 /* MeetingDetailsTimeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MeetingDetailsTimeCell.xib; sourceTree = "<group>"; };
  2501. C7A84AFB2386374000FB0F82 /* HomeWaitWorkModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeWaitWorkModel.h; sourceTree = "<group>"; };
  2502. C7A84AFC2386374000FB0F82 /* HomeWaitWorkModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeWaitWorkModel.m; sourceTree = "<group>"; };
  2503. C7AB8429235EA93B00F2363F /* SWQRCodeConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SWQRCodeConfig.m; sourceTree = "<group>"; };
  2504. C7AB842A235EA93B00F2363F /* SWQRCodeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SWQRCodeManager.m; sourceTree = "<group>"; };
  2505. C7AB842B235EA93B00F2363F /* SWQRCodeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SWQRCodeConfig.h; sourceTree = "<group>"; };
  2506. C7AB842C235EA93B00F2363F /* SWQRCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SWQRCode.h; sourceTree = "<group>"; };
  2507. C7AB842D235EA93B00F2363F /* SWQRCodeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SWQRCodeManager.h; sourceTree = "<group>"; };
  2508. C7AB842E235EA93B00F2363F /* SWQRCodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SWQRCodeViewController.m; sourceTree = "<group>"; };
  2509. C7AB842F235EA93B00F2363F /* SWQRCode.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = SWQRCode.bundle; sourceTree = "<group>"; };
  2510. C7AB8431235EA93B00F2363F /* SWScannerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SWScannerView.m; sourceTree = "<group>"; };
  2511. C7AB8432235EA93B00F2363F /* SWScannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SWScannerView.h; sourceTree = "<group>"; };
  2512. C7AB8433235EA93B00F2363F /* SWQRCodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SWQRCodeViewController.h; sourceTree = "<group>"; };
  2513. C7AB8439235EBA0700F2363F /* UIViewController+TD.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIViewController+TD.h"; sourceTree = "<group>"; };
  2514. C7AB843A235EBA0700F2363F /* UIViewController+TD.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+TD.m"; sourceTree = "<group>"; };
  2515. C7AB843F235EE65600F2363F /* WorkListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkListCell.h; sourceTree = "<group>"; };
  2516. C7AB8440235EE65600F2363F /* WorkListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkListCell.m; sourceTree = "<group>"; };
  2517. C7AB8446235EFC6700F2363F /* UILabel+TD.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UILabel+TD.h"; sourceTree = "<group>"; };
  2518. C7AB8447235EFC6700F2363F /* UILabel+TD.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UILabel+TD.m"; sourceTree = "<group>"; };
  2519. C7B8646523C9CE800090F2A3 /* SwipeTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SwipeTableCell.m; sourceTree = "<group>"; };
  2520. C7B8646623C9CE800090F2A3 /* SwipeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SwipeView.m; sourceTree = "<group>"; };
  2521. C7B8646723C9CE800090F2A3 /* SwipeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SwipeButton.h; sourceTree = "<group>"; };
  2522. C7B8646823C9CE800090F2A3 /* SwipeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SwipeView.h; sourceTree = "<group>"; };
  2523. C7B8646923C9CE800090F2A3 /* SwipeTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SwipeTableCell.h; sourceTree = "<group>"; };
  2524. C7B8646A23C9CE800090F2A3 /* SwipeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SwipeButton.m; sourceTree = "<group>"; };
  2525. C7C06734236D70700049C50C /* SelectTextCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectTextCell.h; sourceTree = "<group>"; };
  2526. C7C06735236D70700049C50C /* SelectTextCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectTextCell.m; sourceTree = "<group>"; };
  2527. C7C06736236D70700049C50C /* SelectTextCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SelectTextCell.xib; sourceTree = "<group>"; };
  2528. C7C06739236D7BC50049C50C /* InPutTextCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InPutTextCell.h; sourceTree = "<group>"; };
  2529. C7C0673A236D7BC50049C50C /* InPutTextCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InPutTextCell.m; sourceTree = "<group>"; };
  2530. C7C0673B236D7BC50049C50C /* InPutTextCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InPutTextCell.xib; sourceTree = "<group>"; };
  2531. C7CA60A8237310010062B8B8 /* FwzAppConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FwzAppConfig.h; sourceTree = "<group>"; };
  2532. C7CA60AB237312680062B8B8 /* WorkFlowSelectView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowSelectView.h; sourceTree = "<group>"; };
  2533. C7CA60AC237312680062B8B8 /* WorkFlowSelectView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowSelectView.m; sourceTree = "<group>"; };
  2534. C7CA60AE237312A50062B8B8 /* WorkFlowSelectCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowSelectCollectCell.h; sourceTree = "<group>"; };
  2535. C7CA60AF237312A50062B8B8 /* WorkFlowSelectCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowSelectCollectCell.m; sourceTree = "<group>"; };
  2536. C7CA60B0237312A50062B8B8 /* WorkFlowSelectCollectCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WorkFlowSelectCollectCell.xib; sourceTree = "<group>"; };
  2537. C7D6B9C7235D7D7200770E7C /* 泰德信源.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "泰德信源.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  2538. C7D6B9CA235D7D7200770E7C /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  2539. C7D6B9CB235D7D7200770E7C /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  2540. C7D6B9D6235D7D7600770E7C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  2541. C7D6B9D9235D7D7600770E7C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  2542. C7D6B9DB235D7D7600770E7C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  2543. C7D6B9DC235D7D7600770E7C /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  2544. C7D6B9E3235DA18600770E7C /* AppConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppConfig.h; sourceTree = "<group>"; };
  2545. C7D6B9FD235DA18700770E7C /* MyChanelCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyChanelCollectionViewCell.xib; sourceTree = "<group>"; };
  2546. C7D6B9FE235DA18700770E7C /* MyChanelCollectionReusableViewTop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyChanelCollectionReusableViewTop.h; sourceTree = "<group>"; };
  2547. C7D6B9FF235DA18700770E7C /* MyChanelCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyChanelCollectionViewCell.m; sourceTree = "<group>"; };
  2548. C7D6BA00235DA18700770E7C /* MyChanelCollectionReusableViewTop.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyChanelCollectionReusableViewTop.xib; sourceTree = "<group>"; };
  2549. C7D6BA01235DA18700770E7C /* MyChanelCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyChanelCollectionViewCell.h; sourceTree = "<group>"; };
  2550. C7D6BA02235DA18700770E7C /* MyChanelCollectionReusableViewTop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyChanelCollectionReusableViewTop.m; sourceTree = "<group>"; };
  2551. C7D6BA04235DA18700770E7C /* HomeSearchController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeSearchController.m; sourceTree = "<group>"; };
  2552. C7D6BA08235DA18700770E7C /* HomeSearchController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeSearchController.h; sourceTree = "<group>"; };
  2553. C7D6BA0A235DA18700770E7C /* SearchTypeSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchTypeSection.h; sourceTree = "<group>"; };
  2554. C7D6BA0B235DA18700770E7C /* SearchHistoryCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchHistoryCell.h; sourceTree = "<group>"; };
  2555. C7D6BA0C235DA18700770E7C /* SearchTypeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchTypeCell.h; sourceTree = "<group>"; };
  2556. C7D6BA0D235DA18700770E7C /* SearchHistoryCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchHistoryCell.m; sourceTree = "<group>"; };
  2557. C7D6BA0E235DA18700770E7C /* SearchTypeSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchTypeSection.m; sourceTree = "<group>"; };
  2558. C7D6BA0F235DA18700770E7C /* SearchTypeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchTypeCell.m; sourceTree = "<group>"; };
  2559. C7D6BA11235DA18700770E7C /* HomeDetailController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeDetailController.m; sourceTree = "<group>"; };
  2560. C7D6BA13235DA18700770E7C /* ReplyDetailController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReplyDetailController.h; sourceTree = "<group>"; };
  2561. C7D6BA14235DA18700770E7C /* ReplyDetailController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReplyDetailController.m; sourceTree = "<group>"; };
  2562. C7D6BA15235DA18700770E7C /* HomeDetailController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeDetailController.h; sourceTree = "<group>"; };
  2563. C7D6BA17235DA18700770E7C /* CommentModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentModel.h; sourceTree = "<group>"; };
  2564. C7D6BA18235DA18700770E7C /* CommentModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentModel.m; sourceTree = "<group>"; };
  2565. C7D6BA1A235DA18700770E7C /* CommentSetView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentSetView.h; sourceTree = "<group>"; };
  2566. C7D6BA1B235DA18700770E7C /* ThirdSharedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThirdSharedView.h; sourceTree = "<group>"; };
  2567. C7D6BA1C235DA18700770E7C /* HomeDetailCommentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeDetailCommentCell.h; sourceTree = "<group>"; };
  2568. C7D6BA1D235DA18700770E7C /* DetailTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailTitleView.h; sourceTree = "<group>"; };
  2569. C7D6BA1E235DA18700770E7C /* TextInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextInputView.h; sourceTree = "<group>"; };
  2570. C7D6BA1F235DA18700770E7C /* ThirdSharedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThirdSharedView.m; sourceTree = "<group>"; };
  2571. C7D6BA20235DA18700770E7C /* CommentSetView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentSetView.m; sourceTree = "<group>"; };
  2572. C7D6BA21235DA18700770E7C /* HomeDetailCommentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeDetailCommentCell.m; sourceTree = "<group>"; };
  2573. C7D6BA22235DA18700770E7C /* DetailTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailTitleView.m; sourceTree = "<group>"; };
  2574. C7D6BA23235DA18700770E7C /* TextInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextInputView.m; sourceTree = "<group>"; };
  2575. C7D6BA25235DA18700770E7C /* DocumentModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DocumentModel.h; sourceTree = "<group>"; };
  2576. C7D6BA26235DA18700770E7C /* ChannelModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChannelModel.m; sourceTree = "<group>"; };
  2577. C7D6BA27235DA18700770E7C /* DocumentModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DocumentModel.m; sourceTree = "<group>"; };
  2578. C7D6BA28235DA18700770E7C /* ChannelModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelModel.h; sourceTree = "<group>"; };
  2579. C7D6BA2A235DA18700770E7C /* HorizonScroll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HorizonScroll.h; sourceTree = "<group>"; };
  2580. C7D6BA2B235DA18700770E7C /* HomeTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeTableViewCell.m; sourceTree = "<group>"; };
  2581. C7D6BA2C235DA18700770E7C /* HorizonScroll.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HorizonScroll.m; sourceTree = "<group>"; };
  2582. C7D6BA2E235DA18700770E7C /* HomeTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeTableViewCell.h; sourceTree = "<group>"; };
  2583. C7D6BAD7235DA18800770E7C /* SmartRhino-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SmartRhino-Prefix.pch"; sourceTree = "<group>"; };
  2584. C7D6BADA235DA18900770E7C /* H5ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = H5ViewController.m; sourceTree = "<group>"; };
  2585. C7D6BADC235DA18900770E7C /* TDFileStorage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDFileStorage.m; sourceTree = "<group>"; };
  2586. C7D6BADD235DA18900770E7C /* TDFileStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDFileStorage.h; sourceTree = "<group>"; };
  2587. C7D6BADE235DA18900770E7C /* UIControl+Blocks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+Blocks.m"; sourceTree = "<group>"; };
  2588. C7D6BADF235DA18900770E7C /* NSString+RegexCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+RegexCategory.m"; sourceTree = "<group>"; };
  2589. C7D6BAE0235DA18900770E7C /* ZYCTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZYCTool.m; sourceTree = "<group>"; };
  2590. C7D6BAE2235DA18900770E7C /* ZDChatroomAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZDChatroomAlertView.h; sourceTree = "<group>"; };
  2591. C7D6BAE3235DA18900770E7C /* ZDTostView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZDTostView.h; sourceTree = "<group>"; };
  2592. C7D6BAE4235DA18900770E7C /* ZDTostView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZDTostView.m; sourceTree = "<group>"; };
  2593. C7D6BAE5235DA18900770E7C /* ZDChatroomAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZDChatroomAlertView.m; sourceTree = "<group>"; };
  2594. C7D6BAE6235DA18900770E7C /* UITableViewCell+XL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewCell+XL.m"; sourceTree = "<group>"; };
  2595. C7D6BAE7235DA18900770E7C /* UIView+Frame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Frame.m"; sourceTree = "<group>"; };
  2596. C7D6BAE8235DA18900770E7C /* UIImage+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Extension.m"; sourceTree = "<group>"; };
  2597. C7D6BAE9235DA18900770E7C /* UIView+Corner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Corner.m"; sourceTree = "<group>"; };
  2598. C7D6BAEA235DA18900770E7C /* NSString+CGSize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+CGSize.m"; sourceTree = "<group>"; };
  2599. C7D6BAEB235DA18900770E7C /* UIColor+HexCustomer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+HexCustomer.h"; sourceTree = "<group>"; };
  2600. C7D6BAEC235DA18900770E7C /* H5ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = H5ViewController.h; sourceTree = "<group>"; };
  2601. C7D6BAEE235DA18900770E7C /* NSString+HTML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+HTML.h"; sourceTree = "<group>"; };
  2602. C7D6BAEF235DA18900770E7C /* GTMNSString+HTML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GTMNSString+HTML.h"; sourceTree = "<group>"; };
  2603. C7D6BAF0235DA18900770E7C /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
  2604. C7D6BAF1235DA18900770E7C /* NSString+HTML.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+HTML.m"; sourceTree = "<group>"; };
  2605. C7D6BAF2235DA18900770E7C /* GTMNSString+HTML.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTMNSString+HTML.m"; sourceTree = "<group>"; };
  2606. C7D6BAF3235DA18900770E7C /* UITableViewCell+XL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewCell+XL.h"; sourceTree = "<group>"; };
  2607. C7D6BAF5235DA18900770E7C /* HttpManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpManager.h; sourceTree = "<group>"; };
  2608. C7D6BAF6235DA18900770E7C /* HttpManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HttpManager.m; sourceTree = "<group>"; };
  2609. C7D6BAF7235DA18900770E7C /* ZYCTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZYCTool.h; sourceTree = "<group>"; };
  2610. C7D6BAF8235DA18900770E7C /* NSString+RegexCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+RegexCategory.h"; sourceTree = "<group>"; };
  2611. C7D6BAF9235DA18900770E7C /* UIControl+Blocks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+Blocks.h"; sourceTree = "<group>"; };
  2612. C7D6BAFA235DA18900770E7C /* UIImage+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Extension.h"; sourceTree = "<group>"; };
  2613. C7D6BAFB235DA18900770E7C /* UIView+Frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Frame.h"; sourceTree = "<group>"; };
  2614. C7D6BAFC235DA18900770E7C /* UIColor+HexCustomer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+HexCustomer.m"; sourceTree = "<group>"; };
  2615. C7D6BAFD235DA18900770E7C /* NSString+CGSize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+CGSize.h"; sourceTree = "<group>"; };
  2616. C7D6BAFE235DA18900770E7C /* UIView+Corner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Corner.h"; sourceTree = "<group>"; };
  2617. C7D6BB02235DA18A00770E7C /* TDSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDSearchBar.m; sourceTree = "<group>"; };
  2618. C7D6BB03235DA18A00770E7C /* TDSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDSearchBar.h; sourceTree = "<group>"; };
  2619. C7D6BB05235DA18A00770E7C /* TDTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDTableView.h; sourceTree = "<group>"; };
  2620. C7D6BB06235DA18A00770E7C /* TDTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDTableView.m; sourceTree = "<group>"; };
  2621. C7D6BB08235DA18A00770E7C /* TDTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDTextView.h; sourceTree = "<group>"; };
  2622. C7D6BB09235DA18A00770E7C /* TDTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDTextView.m; sourceTree = "<group>"; };
  2623. C7D6BB0B235DA18A00770E7C /* NavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NavigationBar.m; sourceTree = "<group>"; };
  2624. C7D6BB0C235DA18A00770E7C /* NavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigationController.h; sourceTree = "<group>"; };
  2625. C7D6BB0D235DA18A00770E7C /* NavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NavigationController.m; sourceTree = "<group>"; };
  2626. C7D6BB0E235DA18A00770E7C /* NavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigationBar.h; sourceTree = "<group>"; };
  2627. C7D6BB10235DA18A00770E7C /* TDHorizontalWaterFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDHorizontalWaterFlowLayout.m; sourceTree = "<group>"; };
  2628. C7D6BB11235DA18A00770E7C /* TDHorizontalWaterFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDHorizontalWaterFlowLayout.h; sourceTree = "<group>"; };
  2629. C7D6BB13235DA18A00770E7C /* PickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PickerView.h; sourceTree = "<group>"; };
  2630. C7D6BB14235DA18A00770E7C /* PickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PickerView.m; sourceTree = "<group>"; };
  2631. C7D6BB16235DA18A00770E7C /* TDNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDNavigationBar.m; sourceTree = "<group>"; };
  2632. C7D6BB17235DA18A00770E7C /* TDNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDNavigationBar.h; sourceTree = "<group>"; };
  2633. C7D6BB19235DA18A00770E7C /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
  2634. C7D6BB1A235DA18A00770E7C /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
  2635. C7D6BB1C235DA18A00770E7C /* InfoSearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InfoSearchView.h; sourceTree = "<group>"; };
  2636. C7D6BB1D235DA18A00770E7C /* SurfaceSearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SurfaceSearchView.m; sourceTree = "<group>"; };
  2637. C7D6BB1E235DA18A00770E7C /* InfoSearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InfoSearchView.m; sourceTree = "<group>"; };
  2638. C7D6BB1F235DA18A00770E7C /* SurfaceSearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SurfaceSearchView.h; sourceTree = "<group>"; };
  2639. C7D6BB21235DA18A00770E7C /* TDButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDButton.h; sourceTree = "<group>"; };
  2640. C7D6BB22235DA18A00770E7C /* TDButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDButton.m; sourceTree = "<group>"; };
  2641. C7D6BB24235DA18A00770E7C /* BaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseModel.m; sourceTree = "<group>"; };
  2642. C7D6BB25235DA18A00770E7C /* BaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseModel.h; sourceTree = "<group>"; };
  2643. C7D6BB27235DA18A00770E7C /* TDTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDTableViewCell.m; sourceTree = "<group>"; };
  2644. C7D6BB28235DA18A00770E7C /* TDTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDTableViewCell.h; sourceTree = "<group>"; };
  2645. C7D6BB2A235DA18A00770E7C /* XLTextCalculateHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLTextCalculateHelper.h; sourceTree = "<group>"; };
  2646. C7D6BB2B235DA18A00770E7C /* XLTextCalculateHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLTextCalculateHelper.m; sourceTree = "<group>"; };
  2647. C7D6BB2D235DA18A00770E7C /* TabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TabBarController.m; sourceTree = "<group>"; };
  2648. C7D6BB2E235DA18A00770E7C /* TabBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TabBar.m; sourceTree = "<group>"; };
  2649. C7D6BB2F235DA18A00770E7C /* TabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TabBarController.h; sourceTree = "<group>"; };
  2650. C7D6BB30235DA18A00770E7C /* TabBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TabBar.h; sourceTree = "<group>"; };
  2651. C7D6BBD8235DA1CD00770E7C /* MyOrderViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyOrderViewController.xib; sourceTree = "<group>"; };
  2652. C7D6BBD9235DA1CD00770E7C /* MyOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyOrderViewController.m; sourceTree = "<group>"; };
  2653. C7D6BBDA235DA1CD00770E7C /* MyOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyOrderViewController.h; sourceTree = "<group>"; };
  2654. C7D6BBDC235DA1CD00770E7C /* MyOrderModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyOrderModel.m; sourceTree = "<group>"; };
  2655. C7D6BBDD235DA1CD00770E7C /* MyOrderModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyOrderModel.h; sourceTree = "<group>"; };
  2656. C7D6BBDF235DA1CD00770E7C /* MyOrderTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyOrderTableViewCell.xib; sourceTree = "<group>"; };
  2657. C7D6BBE0235DA1CD00770E7C /* MyOrderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyOrderTableViewCell.h; sourceTree = "<group>"; };
  2658. C7D6BBE1235DA1CD00770E7C /* MyOrderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyOrderTableViewCell.m; sourceTree = "<group>"; };
  2659. C7D6BBE3235DA1CD00770E7C /* MyViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyViewController.xib; sourceTree = "<group>"; };
  2660. C7D6BBE4235DA1CD00770E7C /* MyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyViewController.h; sourceTree = "<group>"; };
  2661. C7D6BBE5235DA1CD00770E7C /* MyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyViewController.m; sourceTree = "<group>"; };
  2662. C7D6BBE8235DA1CD00770E7C /* NoticeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeViewController.h; sourceTree = "<group>"; };
  2663. C7D6BBE9235DA1CD00770E7C /* NoticeViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoticeViewController.xib; sourceTree = "<group>"; };
  2664. C7D6BBEA235DA1CD00770E7C /* NoticeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeViewController.m; sourceTree = "<group>"; };
  2665. C7D6BBEF235DA1CD00770E7C /* NoticeTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoticeTableViewCell.xib; sourceTree = "<group>"; };
  2666. C7D6BBF0235DA1CD00770E7C /* NoticeTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeTableViewCell.m; sourceTree = "<group>"; };
  2667. C7D6BBF1235DA1CD00770E7C /* NoticeTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeTableViewCell.h; sourceTree = "<group>"; };
  2668. C7D6BBF4235DA1CD00770E7C /* MyPaperViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyPaperViewController.m; sourceTree = "<group>"; };
  2669. C7D6BBF5235DA1CD00770E7C /* MyPaperViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyPaperViewController.xib; sourceTree = "<group>"; };
  2670. C7D6BBF6235DA1CD00770E7C /* MyPaperViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyPaperViewController.h; sourceTree = "<group>"; };
  2671. C7D6BBF8235DA1CD00770E7C /* MyPaperTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyPaperTableViewCell.xib; sourceTree = "<group>"; };
  2672. C7D6BBF9235DA1CD00770E7C /* MyPaperTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyPaperTableViewCell.m; sourceTree = "<group>"; };
  2673. C7D6BBFA235DA1CD00770E7C /* MyPaperTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyPaperTableViewCell.h; sourceTree = "<group>"; };
  2674. C7D6BBFD235DA1CD00770E7C /* MyClubApplicationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyClubApplicationViewController.h; sourceTree = "<group>"; };
  2675. C7D6BBFE235DA1CD00770E7C /* MyClubApplicationViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyClubApplicationViewController.xib; sourceTree = "<group>"; };
  2676. C7D6BBFF235DA1CD00770E7C /* MyClubApplicationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyClubApplicationViewController.m; sourceTree = "<group>"; };
  2677. C7D6BC01235DA1CD00770E7C /* MyClubApplicationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyClubApplicationTableViewCell.m; sourceTree = "<group>"; };
  2678. C7D6BC02235DA1CD00770E7C /* MyClubApplicationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyClubApplicationTableViewCell.h; sourceTree = "<group>"; };
  2679. C7D6BC03235DA1CD00770E7C /* MyClubApplicationTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyClubApplicationTableViewCell.xib; sourceTree = "<group>"; };
  2680. C7D6BC06235DA1CD00770E7C /* ClubApplicationViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ClubApplicationViewController.xib; sourceTree = "<group>"; };
  2681. C7D6BC07235DA1CD00770E7C /* ClubApplicationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClubApplicationViewController.m; sourceTree = "<group>"; };
  2682. C7D6BC08235DA1CD00770E7C /* ClubApplicationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClubApplicationViewController.h; sourceTree = "<group>"; };
  2683. C7D6BC0A235DA1CD00770E7C /* ClubApplicationModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClubApplicationModel.m; sourceTree = "<group>"; };
  2684. C7D6BC0B235DA1CD00770E7C /* ClubApplicationModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClubApplicationModel.h; sourceTree = "<group>"; };
  2685. C7D6BC0D235DA1CD00770E7C /* ClubApplicationTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ClubApplicationTableViewCell.xib; sourceTree = "<group>"; };
  2686. C7D6BC0E235DA1CD00770E7C /* ClubApplicationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClubApplicationTableViewCell.h; sourceTree = "<group>"; };
  2687. C7D6BC0F235DA1CD00770E7C /* ClubApplicationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClubApplicationTableViewCell.m; sourceTree = "<group>"; };
  2688. C7D6BC13235DA1CD00770E7C /* PersonalCertificationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonalCertificationViewController.h; sourceTree = "<group>"; };
  2689. C7D6BC14235DA1CD00770E7C /* PersonalCertificationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonalCertificationViewController.m; sourceTree = "<group>"; };
  2690. C7D6BC15235DA1CD00770E7C /* PersonalCertificationViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PersonalCertificationViewController.xib; sourceTree = "<group>"; };
  2691. C7D6BC17235DA1CD00770E7C /* PersonalCertificationModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonalCertificationModel.m; sourceTree = "<group>"; };
  2692. C7D6BC18235DA1CD00770E7C /* PersonalCertificationModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonalCertificationModel.h; sourceTree = "<group>"; };
  2693. C7D6BC1A235DA1CD00770E7C /* PersonalCertificationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonalCertificationTableViewCell.h; sourceTree = "<group>"; };
  2694. C7D6BC1B235DA1CD00770E7C /* PersonalCertificationHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonalCertificationHeaderView.m; sourceTree = "<group>"; };
  2695. C7D6BC1C235DA1CD00770E7C /* PersonalCertificationHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PersonalCertificationHeaderView.xib; sourceTree = "<group>"; };
  2696. C7D6BC1D235DA1CD00770E7C /* PersonalCertificationHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonalCertificationHeaderView.h; sourceTree = "<group>"; };
  2697. C7D6BC1E235DA1CD00770E7C /* PersonalCertificationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonalCertificationTableViewCell.m; sourceTree = "<group>"; };
  2698. C7D6BC1F235DA1CD00770E7C /* PersonalCertificationTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PersonalCertificationTableViewCell.xib; sourceTree = "<group>"; };
  2699. C7D6BC21235DA1CD00770E7C /* MyDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyDetailViewController.h; sourceTree = "<group>"; };
  2700. C7D6BC22235DA1CD00770E7C /* MyDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyDetailViewController.m; sourceTree = "<group>"; };
  2701. C7D6BC23235DA1CD00770E7C /* MyDetailViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyDetailViewController.xib; sourceTree = "<group>"; };
  2702. C7D6BC25235DA1CD00770E7C /* MyDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyDetailModel.m; sourceTree = "<group>"; };
  2703. C7D6BC26235DA1CD00770E7C /* MyDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyDetailModel.h; sourceTree = "<group>"; };
  2704. C7D6BC28235DA1CD00770E7C /* MyDetailTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyDetailTableViewCell.h; sourceTree = "<group>"; };
  2705. C7D6BC29235DA1CD00770E7C /* MyDetailTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyDetailTableViewCell.xib; sourceTree = "<group>"; };
  2706. C7D6BC2A235DA1CD00770E7C /* MyDetailTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyDetailTableViewCell.m; sourceTree = "<group>"; };
  2707. C7D6BC2C235DA1CD00770E7C /* MyModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyModel.h; sourceTree = "<group>"; };
  2708. C7D6BC2D235DA1CD00770E7C /* MyModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyModel.m; sourceTree = "<group>"; };
  2709. C7D6BC2F235DA1CD00770E7C /* MyTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyTableViewCell.m; sourceTree = "<group>"; };
  2710. C7D6BC30235DA1CD00770E7C /* MyTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyTableViewCell.h; sourceTree = "<group>"; };
  2711. C7D6BC31235DA1CD00770E7C /* MyTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyTableViewCell.xib; sourceTree = "<group>"; };
  2712. C7D6BC34235DA1CD00770E7C /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutViewController.m; sourceTree = "<group>"; };
  2713. C7D6BC35235DA1CD00770E7C /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutViewController.h; sourceTree = "<group>"; };
  2714. C7D6BC36235DA1CD00770E7C /* AboutViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AboutViewController.xib; sourceTree = "<group>"; };
  2715. C7D6BC38235DA1CD00770E7C /* FeedbackViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FeedbackViewController.xib; sourceTree = "<group>"; };
  2716. C7D6BC39235DA1CD00770E7C /* FeedbackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
  2717. C7D6BC3A235DA1CD00770E7C /* FeedbackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
  2718. C7D6BC3C235DA1CD00770E7C /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingViewController.h; sourceTree = "<group>"; };
  2719. C7D6BC3D235DA1CD00770E7C /* SettingViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SettingViewController.xib; sourceTree = "<group>"; };
  2720. C7D6BC3E235DA1CD00770E7C /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingViewController.m; sourceTree = "<group>"; };
  2721. C7D6BC41235DA1CD00770E7C /* BlacklistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlacklistViewController.m; sourceTree = "<group>"; };
  2722. C7D6BC42235DA1CD00770E7C /* BlacklistViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BlacklistViewController.xib; sourceTree = "<group>"; };
  2723. C7D6BC43235DA1CD00770E7C /* BlacklistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlacklistViewController.h; sourceTree = "<group>"; };
  2724. C7D6BC45235DA1CD00770E7C /* BlacklistModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlacklistModel.h; sourceTree = "<group>"; };
  2725. C7D6BC46235DA1CD00770E7C /* BlacklistModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlacklistModel.m; sourceTree = "<group>"; };
  2726. C7D6BC48235DA1CD00770E7C /* BlacklistTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlacklistTableViewCell.m; sourceTree = "<group>"; };
  2727. C7D6BC49235DA1CD00770E7C /* BlacklistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BlacklistTableViewCell.xib; sourceTree = "<group>"; };
  2728. C7D6BC4A235DA1CD00770E7C /* BlacklistTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlacklistTableViewCell.h; sourceTree = "<group>"; };
  2729. C7D6BC4C235DA1CD00770E7C /* SettingModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingModel.h; sourceTree = "<group>"; };
  2730. C7D6BC4D235DA1CD00770E7C /* SettingModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingModel.m; sourceTree = "<group>"; };
  2731. C7D6BC50235DA1CD00770E7C /* AccountAndSecurityViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccountAndSecurityViewController.h; sourceTree = "<group>"; };
  2732. C7D6BC51235DA1CD00770E7C /* AccountAndSecurityViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccountAndSecurityViewController.m; sourceTree = "<group>"; };
  2733. C7D6BC52235DA1CD00770E7C /* AccountAndSecurityViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccountAndSecurityViewController.xib; sourceTree = "<group>"; };
  2734. C7D6BC54235DA1CD00770E7C /* AccountAndSecurityModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccountAndSecurityModel.h; sourceTree = "<group>"; };
  2735. C7D6BC55235DA1CD00770E7C /* AccountAndSecurityModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccountAndSecurityModel.m; sourceTree = "<group>"; };
  2736. C7D6BC57235DA1CD00770E7C /* AccountAndSecurityTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccountAndSecurityTableViewCell.m; sourceTree = "<group>"; };
  2737. C7D6BC58235DA1CD00770E7C /* AccountAndSecurityTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccountAndSecurityTableViewCell.xib; sourceTree = "<group>"; };
  2738. C7D6BC59235DA1CD00770E7C /* AccountAndSecurityTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccountAndSecurityTableViewCell.h; sourceTree = "<group>"; };
  2739. C7D6BC5C235DA1CD00770E7C /* ReplacePhoneNumberViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReplacePhoneNumberViewController.xib; sourceTree = "<group>"; };
  2740. C7D6BC5D235DA1CD00770E7C /* ReplacePhoneNumberViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReplacePhoneNumberViewController.h; sourceTree = "<group>"; };
  2741. C7D6BC5E235DA1CD00770E7C /* ReplacePhoneNumberViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReplacePhoneNumberViewController.m; sourceTree = "<group>"; };
  2742. C7D6BC61235DA1CD00770E7C /* LearninglistViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LearninglistViewController.xib; sourceTree = "<group>"; };
  2743. C7D6BC62235DA1CD00770E7C /* LearninglistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LearninglistViewController.h; sourceTree = "<group>"; };
  2744. C7D6BC63235DA1CD00770E7C /* LearninglistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LearninglistViewController.m; sourceTree = "<group>"; };
  2745. C7D6BC65235DA1CD00770E7C /* LearninglistTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LearninglistTableViewCell.m; sourceTree = "<group>"; };
  2746. C7D6BC66235DA1CD00770E7C /* LearninglistTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LearninglistTableViewCell.h; sourceTree = "<group>"; };
  2747. C7D6BC67235DA1CD00770E7C /* LearninglistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LearninglistTableViewCell.xib; sourceTree = "<group>"; };
  2748. C7D6BC6A235DA1CD00770E7C /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  2749. C7D6BC6B235DA1CD00770E7C /* LoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginViewController.xib; sourceTree = "<group>"; };
  2750. C7D6BC6C235DA1CD00770E7C /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  2751. C7D6BC6F235DA1CD00770E7C /* BindMobileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BindMobileViewController.m; sourceTree = "<group>"; };
  2752. C7D6BC70235DA1CD00770E7C /* BindMobileViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BindMobileViewController.xib; sourceTree = "<group>"; };
  2753. C7D6BC71235DA1CD00770E7C /* BindMobileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BindMobileViewController.h; sourceTree = "<group>"; };
  2754. C7D6BCC0235DA28500770E7C /* WorkFlowController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowController.h; sourceTree = "<group>"; };
  2755. C7D6BCC1235DA28500770E7C /* WorkFlowController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowController.m; sourceTree = "<group>"; };
  2756. C7D6BCC8235DD7A700770E7C /* DrawerView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DrawerView.h; sourceTree = "<group>"; };
  2757. C7D6BCC9235DD7A700770E7C /* DrawerView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DrawerView.m; sourceTree = "<group>"; };
  2758. C7D6BCCC235DDF3F00770E7C /* DrawerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DrawerCell.h; sourceTree = "<group>"; };
  2759. C7D6BCCD235DDF3F00770E7C /* DrawerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DrawerCell.m; sourceTree = "<group>"; };
  2760. C7DBAE4D237A87E100D427DD /* FwzBaseView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FwzBaseView.h; sourceTree = "<group>"; };
  2761. C7DBAE4E237A87E100D427DD /* FwzBaseView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FwzBaseView.m; sourceTree = "<group>"; };
  2762. C7E03AD223CD89EA00A97589 /* InputGongwenFileCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InputGongwenFileCell.h; sourceTree = "<group>"; };
  2763. C7E03AD323CD89EA00A97589 /* InputGongwenFileCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InputGongwenFileCell.m; sourceTree = "<group>"; };
  2764. C7E03AD423CD89EA00A97589 /* InputGongwenFileCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InputGongwenFileCell.xib; sourceTree = "<group>"; };
  2765. C7E1001D236DB2D700803CFA /* TaasdasdbleVieasdsawCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TaasdasdbleVieasdsawCell.h; sourceTree = "<group>"; };
  2766. C7E1001E236DB2D700803CFA /* TaasdasdbleVieasdsawCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TaasdasdbleVieasdsawCell.m; sourceTree = "<group>"; };
  2767. C7E125A823793AA50067F275 /* JpushTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JpushTool.h; sourceTree = "<group>"; };
  2768. C7E125A923793AA50067F275 /* JpushTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JpushTool.m; sourceTree = "<group>"; };
  2769. C7E17CBD236D7F7800C53DB8 /* InPutGongWenCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InPutGongWenCell.h; sourceTree = "<group>"; };
  2770. C7E17CBE236D7F7800C53DB8 /* InPutGongWenCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InPutGongWenCell.m; sourceTree = "<group>"; };
  2771. C7E17CBF236D7F7800C53DB8 /* InPutGongWenCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InPutGongWenCell.xib; sourceTree = "<group>"; };
  2772. C7E3E2F2237179AA0013BBDD /* FootCollectionReusableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FootCollectionReusableView.h; sourceTree = "<group>"; };
  2773. C7E3E2F3237179AA0013BBDD /* FootCollectionReusableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FootCollectionReusableView.m; sourceTree = "<group>"; };
  2774. C7E3E2F4237179AA0013BBDD /* FootCollectionReusableView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FootCollectionReusableView.xib; sourceTree = "<group>"; };
  2775. C7EE366123BAF631002EB3BF /* MeetingFecordDetailsController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingFecordDetailsController.h; sourceTree = "<group>"; };
  2776. C7EE366223BAF631002EB3BF /* MeetingFecordDetailsController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingFecordDetailsController.m; sourceTree = "<group>"; };
  2777. C7EE366323BAF631002EB3BF /* MeetingFecordDetailsController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MeetingFecordDetailsController.xib; sourceTree = "<group>"; };
  2778. C7EE366623BAFA71002EB3BF /* MeetingDetailsHeadCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingDetailsHeadCell.h; sourceTree = "<group>"; };
  2779. C7EE366723BAFA71002EB3BF /* MeetingDetailsHeadCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingDetailsHeadCell.m; sourceTree = "<group>"; };
  2780. C7EE366823BAFA71002EB3BF /* MeetingDetailsHeadCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MeetingDetailsHeadCell.xib; sourceTree = "<group>"; };
  2781. C7EE366B23BAFD2E002EB3BF /* FecordDetailsContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FecordDetailsContentCell.h; sourceTree = "<group>"; };
  2782. C7EE366C23BAFD2E002EB3BF /* FecordDetailsContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FecordDetailsContentCell.m; sourceTree = "<group>"; };
  2783. C7EE366D23BAFD2E002EB3BF /* FecordDetailsContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FecordDetailsContentCell.xib; sourceTree = "<group>"; };
  2784. C7EE367023BAFE6E002EB3BF /* FecordDetailsGoodsCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FecordDetailsGoodsCell.h; sourceTree = "<group>"; };
  2785. C7EE367123BAFE6E002EB3BF /* FecordDetailsGoodsCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FecordDetailsGoodsCell.m; sourceTree = "<group>"; };
  2786. C7EE367223BAFE6E002EB3BF /* FecordDetailsGoodsCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FecordDetailsGoodsCell.xib; sourceTree = "<group>"; };
  2787. C7EE367523BB2D57002EB3BF /* NewMeetingFecordDetailsController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NewMeetingFecordDetailsController.h; sourceTree = "<group>"; };
  2788. C7EE367623BB2D57002EB3BF /* NewMeetingFecordDetailsController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NewMeetingFecordDetailsController.m; sourceTree = "<group>"; };
  2789. C7EE367723BB2D57002EB3BF /* NewMeetingFecordDetailsController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NewMeetingFecordDetailsController.xib; sourceTree = "<group>"; };
  2790. C7F61617238B62FF008AF22D /* AddLookUpUserSecondVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddLookUpUserSecondVC.h; sourceTree = "<group>"; };
  2791. C7F61618238B62FF008AF22D /* AddLookUpUserSecondVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddLookUpUserSecondVC.m; sourceTree = "<group>"; };
  2792. C7F61621238BF67B008AF22D /* SWForm.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = SWForm.gif; sourceTree = "<group>"; };
  2793. C7F61626238C068A008AF22D /* AppUserModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppUserModel.m; sourceTree = "<group>"; };
  2794. C7F61627238C068A008AF22D /* AppUserModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppUserModel.h; sourceTree = "<group>"; };
  2795. C7F61629238C06F0008AF22D /* UserManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserManager.m; sourceTree = "<group>"; };
  2796. C7F6162A238C06F0008AF22D /* UserManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserManager.h; sourceTree = "<group>"; };
  2797. EB03C7EF2493637300B2EF18 /* BookVideoSetAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookVideoSetAlert.m; sourceTree = "<group>"; };
  2798. EB03C7F02493637300B2EF18 /* BookVideoSetAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookVideoSetAlert.xib; sourceTree = "<group>"; };
  2799. EB03C7F12493637300B2EF18 /* BookVideoSetAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookVideoSetAlert.h; sourceTree = "<group>"; };
  2800. EB03C7F424936AA800B2EF18 /* BookSetBgMusicAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookSetBgMusicAlert.xib; sourceTree = "<group>"; };
  2801. EB03C7F524936AA800B2EF18 /* BookSetBgMusicAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookSetBgMusicAlert.h; sourceTree = "<group>"; };
  2802. EB03C7F624936AA800B2EF18 /* BookSetBgMusicAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookSetBgMusicAlert.m; sourceTree = "<group>"; };
  2803. EB03C7F92493703100B2EF18 /* BookSelectMusicAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookSelectMusicAlert.h; sourceTree = "<group>"; };
  2804. EB03C7FA2493703100B2EF18 /* BookSelectMusicAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookSelectMusicAlert.m; sourceTree = "<group>"; };
  2805. EB03C7FB2493703100B2EF18 /* BookSelectMusicAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookSelectMusicAlert.xib; sourceTree = "<group>"; };
  2806. EB03C7FE249375A400B2EF18 /* BookSelectMusicCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSelectMusicCell.h; sourceTree = "<group>"; };
  2807. EB03C7FF249375A400B2EF18 /* BookSelectMusicCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSelectMusicCell.m; sourceTree = "<group>"; };
  2808. EB03C800249375A400B2EF18 /* BookSelectMusicCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookSelectMusicCell.xib; sourceTree = "<group>"; };
  2809. EB03C80324937C2000B2EF18 /* BookSelectMusicModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSelectMusicModel.h; sourceTree = "<group>"; };
  2810. EB03C80424937C2000B2EF18 /* BookSelectMusicModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSelectMusicModel.m; sourceTree = "<group>"; };
  2811. EB05E107240CEDAF00D9E276 /* MyPcUpdata.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyPcUpdata.h; sourceTree = "<group>"; };
  2812. EB05E108240CEDAF00D9E276 /* MyPcUpdata.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyPcUpdata.m; sourceTree = "<group>"; };
  2813. EB095CDB24D13BBA00493536 /* ReplyModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReplyModel.h; sourceTree = "<group>"; };
  2814. EB095CDC24D13BBA00493536 /* ReplyModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReplyModel.m; sourceTree = "<group>"; };
  2815. EB095CDE24D1701600493536 /* ReplayMeSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReplayMeSearchVC.h; sourceTree = "<group>"; };
  2816. EB095CDF24D1701600493536 /* ReplayMeSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReplayMeSearchVC.m; sourceTree = "<group>"; };
  2817. EB095CE124D175DA00493536 /* ReplayLikeSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReplayLikeSearchVC.h; sourceTree = "<group>"; };
  2818. EB095CE224D175DA00493536 /* ReplayLikeSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReplayLikeSearchVC.m; sourceTree = "<group>"; };
  2819. EB09BF2B23B1A32B001CCBC7 /* WaitWorkLabelModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitWorkLabelModel.h; sourceTree = "<group>"; };
  2820. EB09BF2C23B1A32B001CCBC7 /* WaitWorkLabelModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitWorkLabelModel.m; sourceTree = "<group>"; };
  2821. EB09BF2E23B1AA19001CCBC7 /* WaitWorkWarnAlert.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitWorkWarnAlert.h; sourceTree = "<group>"; };
  2822. EB09BF2F23B1AA19001CCBC7 /* WaitWorkWarnAlert.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitWorkWarnAlert.m; sourceTree = "<group>"; };
  2823. EB0A738F247B8B8B00DB75CB /* BookBillboardVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookBillboardVC.h; sourceTree = "<group>"; };
  2824. EB0A7390247B8B8B00DB75CB /* BookBillboardVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookBillboardVC.m; sourceTree = "<group>"; };
  2825. EB0A7392247B9F7600DB75CB /* BookBillCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookBillCell.h; sourceTree = "<group>"; };
  2826. EB0A7393247B9F7600DB75CB /* BookBillCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookBillCell.m; sourceTree = "<group>"; };
  2827. EB0A7394247B9F7600DB75CB /* BookBillCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookBillCell.xib; sourceTree = "<group>"; };
  2828. EB0A7397247BA42500DB75CB /* BookBillModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookBillModel.h; sourceTree = "<group>"; };
  2829. EB0A7398247BA42500DB75CB /* BookBillModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookBillModel.m; sourceTree = "<group>"; };
  2830. EB0A739F247BC93800DB75CB /* BookBillBookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookBillBookCell.h; sourceTree = "<group>"; };
  2831. EB0A73A0247BC93800DB75CB /* BookBillBookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookBillBookCell.m; sourceTree = "<group>"; };
  2832. EB0A73A1247BC93800DB75CB /* BookBillBookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookBillBookCell.xib; sourceTree = "<group>"; };
  2833. EB0A73A4247BC95900DB75CB /* BookBillCousreCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookBillCousreCell.h; sourceTree = "<group>"; };
  2834. EB0A73A5247BC95900DB75CB /* BookBillCousreCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookBillCousreCell.m; sourceTree = "<group>"; };
  2835. EB0A73A6247BC95900DB75CB /* BookBillCousreCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookBillCousreCell.xib; sourceTree = "<group>"; };
  2836. EB0A73A9247BC96C00DB75CB /* BookBillMusicCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookBillMusicCell.h; sourceTree = "<group>"; };
  2837. EB0A73AA247BC96C00DB75CB /* BookBillMusicCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookBillMusicCell.m; sourceTree = "<group>"; };
  2838. EB0A73AB247BC96C00DB75CB /* BookBillMusicCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookBillMusicCell.xib; sourceTree = "<group>"; };
  2839. EB0BBB7A23D2978E005C850C /* ChatMsgNoticeSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgNoticeSearchVC.h; sourceTree = "<group>"; };
  2840. EB0BBB7B23D2978E005C850C /* ChatMsgNoticeSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgNoticeSearchVC.m; sourceTree = "<group>"; };
  2841. EB0BDF4A244D313A009F6434 /* 泰德信源.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = "泰德信源.entitlements"; sourceTree = "<group>"; };
  2842. EB0BDF4B244D49F1009F6434 /* MailListSortVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListSortVC.h; sourceTree = "<group>"; };
  2843. EB0BDF4C244D49F1009F6434 /* MailListSortVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListSortVC.m; sourceTree = "<group>"; };
  2844. EB0C773F2411DCFB00807684 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
  2845. EB0DBF0023ADA8A200E977ED /* MyTDTopicSelectExtentCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyTDTopicSelectExtentCell.xib; sourceTree = "<group>"; };
  2846. EB0DBF0123ADA8A200E977ED /* MyTDTopicSelectExtentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicSelectExtentCell.m; sourceTree = "<group>"; };
  2847. EB0DBF0223ADA8A200E977ED /* MyTDTopicSelectExtentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyTDTopicSelectExtentCell.h; sourceTree = "<group>"; };
  2848. EB0DBF0523ADA8EE00E977ED /* MyTDTSEModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTSEModel.h; sourceTree = "<group>"; };
  2849. EB0DBF0623ADA8EE00E977ED /* MyTDTSEModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTSEModel.m; sourceTree = "<group>"; };
  2850. EB0DBF0823AE1EF200E977ED /* NewWaitWorkVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NewWaitWorkVC.h; sourceTree = "<group>"; };
  2851. EB0DBF0923AE1EF200E977ED /* NewWaitWorkVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NewWaitWorkVC.m; sourceTree = "<group>"; };
  2852. EB0DBF0B23AE3D9700E977ED /* WaitWorkLevelView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitWorkLevelView.h; sourceTree = "<group>"; };
  2853. EB0DBF0C23AE3D9700E977ED /* WaitWorkLevelView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitWorkLevelView.m; sourceTree = "<group>"; };
  2854. EB0DBF0E23AE3DF800E977ED /* WaitWorkLevelView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WaitWorkLevelView.xib; sourceTree = "<group>"; };
  2855. EB0F64C323A9DA2B00AD56A0 /* MyTDTopicGroupManageVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicGroupManageVC.h; sourceTree = "<group>"; };
  2856. EB0F64C423A9DA2B00AD56A0 /* MyTDTopicGroupManageVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicGroupManageVC.m; sourceTree = "<group>"; };
  2857. EB0F64C923A9DAD000AD56A0 /* TopicGroupManageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TopicGroupManageCell.h; sourceTree = "<group>"; };
  2858. EB0F64CA23A9DAD000AD56A0 /* TopicGroupManageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopicGroupManageCell.m; sourceTree = "<group>"; };
  2859. EB0F64CB23A9DAD000AD56A0 /* TopicGroupManageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TopicGroupManageCell.xib; sourceTree = "<group>"; };
  2860. EB0F64CE23A9EE5900AD56A0 /* TopicGroupManageModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TopicGroupManageModel.h; sourceTree = "<group>"; };
  2861. EB0F64CF23A9EE5900AD56A0 /* TopicGroupManageModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopicGroupManageModel.m; sourceTree = "<group>"; };
  2862. EB0F64D123AA096A00AD56A0 /* MyTDTopicGroupUserVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicGroupUserVC.h; sourceTree = "<group>"; };
  2863. EB0F64D223AA096A00AD56A0 /* MyTDTopicGroupUserVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicGroupUserVC.m; sourceTree = "<group>"; };
  2864. EB0F64D423AA528A00AD56A0 /* TopicListItemModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TopicListItemModel.h; sourceTree = "<group>"; };
  2865. EB0F64D523AA528A00AD56A0 /* TopicListItemModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopicListItemModel.m; sourceTree = "<group>"; };
  2866. EB0F64D723AA529400AD56A0 /* TopicListSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TopicListSubModel.h; sourceTree = "<group>"; };
  2867. EB0F64D823AA529400AD56A0 /* TopicListSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopicListSubModel.m; sourceTree = "<group>"; };
  2868. EB0FA5CD241F6DBD00BF8558 /* HomeScrCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeScrCell.h; sourceTree = "<group>"; };
  2869. EB0FA5CE241F6DBD00BF8558 /* HomeScrCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeScrCell.m; sourceTree = "<group>"; };
  2870. EB0FA5CF241F6DBD00BF8558 /* HomeScrCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeScrCell.xib; sourceTree = "<group>"; };
  2871. EB12500723CC359400143436 /* RichFileCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RichFileCell.h; sourceTree = "<group>"; };
  2872. EB12500823CC359400143436 /* RichFileCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RichFileCell.m; sourceTree = "<group>"; };
  2873. EB18108A24888DC3009EDEF5 /* BookTextBookVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookTextBookVC.h; sourceTree = "<group>"; };
  2874. EB18108B24888DC3009EDEF5 /* BookTextBookVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookTextBookVC.m; sourceTree = "<group>"; };
  2875. EB18108D248894F9009EDEF5 /* BookTextBookTopCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookTextBookTopCell.h; sourceTree = "<group>"; };
  2876. EB18108E248894F9009EDEF5 /* BookTextBookTopCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookTextBookTopCell.m; sourceTree = "<group>"; };
  2877. EB18108F248894F9009EDEF5 /* BookTextBookTopCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookTextBookTopCell.xib; sourceTree = "<group>"; };
  2878. EB1810922488A5DF009EDEF5 /* BookTextBookModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookTextBookModel.h; sourceTree = "<group>"; };
  2879. EB1810932488A5DF009EDEF5 /* BookTextBookModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookTextBookModel.m; sourceTree = "<group>"; };
  2880. EB1810952488C0DB009EDEF5 /* BookTextBookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookTextBookCell.h; sourceTree = "<group>"; };
  2881. EB1810962488C0DB009EDEF5 /* BookTextBookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookTextBookCell.m; sourceTree = "<group>"; };
  2882. EB1810972488C0DB009EDEF5 /* BookTextBookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookTextBookCell.xib; sourceTree = "<group>"; };
  2883. EB18109A2488DB5F009EDEF5 /* BookTextTopCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookTextTopCell.h; sourceTree = "<group>"; };
  2884. EB18109B2488DB5F009EDEF5 /* BookTextTopCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookTextTopCell.m; sourceTree = "<group>"; };
  2885. EB18109C2488DB5F009EDEF5 /* BookTextTopCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookTextTopCell.xib; sourceTree = "<group>"; };
  2886. EB195A55252174D600EA68D3 /* BookCommentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookCommentView.h; sourceTree = "<group>"; };
  2887. EB195A56252174D700EA68D3 /* BookCommentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookCommentView.m; sourceTree = "<group>"; };
  2888. EB195A57252174D700EA68D3 /* BookCommentView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookCommentView.xib; sourceTree = "<group>"; };
  2889. EB195A5B252185E000EA68D3 /* BookCommentVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookCommentVC.m; sourceTree = "<group>"; };
  2890. EB195A5C252185E000EA68D3 /* BookCommentVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookCommentVC.h; sourceTree = "<group>"; };
  2891. EB195A5F2521BA1600EA68D3 /* BookCommentHeadModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookCommentHeadModel.h; sourceTree = "<group>"; };
  2892. EB195A602521BA1600EA68D3 /* BookCommentHeadModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookCommentHeadModel.m; sourceTree = "<group>"; };
  2893. EB1BA21123FFD6E500202452 /* H6ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = H6ViewController.h; sourceTree = "<group>"; };
  2894. EB1BA21223FFD6E500202452 /* H6ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = H6ViewController.m; sourceTree = "<group>"; };
  2895. EB1D052824A9EA6C00796A7E /* BookNavModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookNavModel.h; sourceTree = "<group>"; };
  2896. EB1D052924A9EA6C00796A7E /* BookNavModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookNavModel.m; sourceTree = "<group>"; };
  2897. EB1D158224C807A800C82FED /* TopicShowListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TopicShowListView.h; sourceTree = "<group>"; };
  2898. EB1D158324C807A800C82FED /* TopicShowListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TopicShowListView.m; sourceTree = "<group>"; };
  2899. EB1D158524C8329D00C82FED /* MoveMegAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MoveMegAlert.m; sourceTree = "<group>"; };
  2900. EB1D158624C8329D00C82FED /* MoveMegAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MoveMegAlert.h; sourceTree = "<group>"; };
  2901. EB1D158724C8329D00C82FED /* MoveMegAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MoveMegAlert.xib; sourceTree = "<group>"; };
  2902. EB1E0F70246CD5A300D4C3DE /* BookAllLookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookAllLookCell.h; sourceTree = "<group>"; };
  2903. EB1E0F71246CD5A300D4C3DE /* BookAllLookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookAllLookCell.m; sourceTree = "<group>"; };
  2904. EB1E0F72246CD5A300D4C3DE /* BookAllLookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookAllLookCell.xib; sourceTree = "<group>"; };
  2905. EB1E0F75246CE49100D4C3DE /* BookContentNavVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookContentNavVC.h; sourceTree = "<group>"; };
  2906. EB1E0F76246CE49100D4C3DE /* BookContentNavVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookContentNavVC.m; sourceTree = "<group>"; };
  2907. EB1E0F78246D0DA700D4C3DE /* BookContentLeftCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookContentLeftCell.h; sourceTree = "<group>"; };
  2908. EB1E0F79246D0DA700D4C3DE /* BookContentLeftCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookContentLeftCell.m; sourceTree = "<group>"; };
  2909. EB1E0F7A246D0DA700D4C3DE /* BookContentLeftCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookContentLeftCell.xib; sourceTree = "<group>"; };
  2910. EB1E0F7D246D0FDB00D4C3DE /* BookContentLeftModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookContentLeftModel.h; sourceTree = "<group>"; };
  2911. EB1E0F7E246D0FDB00D4C3DE /* BookContentLeftModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookContentLeftModel.m; sourceTree = "<group>"; };
  2912. EB1E0F80246D0FF300D4C3DE /* BookContentTopModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookContentTopModel.h; sourceTree = "<group>"; };
  2913. EB1E0F81246D0FF300D4C3DE /* BookContentTopModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookContentTopModel.m; sourceTree = "<group>"; };
  2914. EB1E0F83246D100200D4C3DE /* BookContentModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookContentModel.h; sourceTree = "<group>"; };
  2915. EB1E0F84246D100200D4C3DE /* BookContentModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookContentModel.m; sourceTree = "<group>"; };
  2916. EB1E0F86246D17B600D4C3DE /* BookContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookContentCell.h; sourceTree = "<group>"; };
  2917. EB1E0F87246D17B600D4C3DE /* BookContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookContentCell.m; sourceTree = "<group>"; };
  2918. EB1E0F88246D17B600D4C3DE /* BookContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookContentCell.xib; sourceTree = "<group>"; };
  2919. EB1E0F8B246D4A9700D4C3DE /* BookContentTopCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookContentTopCell.h; sourceTree = "<group>"; };
  2920. EB1E0F8C246D4A9700D4C3DE /* BookContentTopCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookContentTopCell.m; sourceTree = "<group>"; };
  2921. EB1E0F8D246D4A9700D4C3DE /* BookContentTopCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookContentTopCell.xib; sourceTree = "<group>"; };
  2922. EB2B5A6F242B0CA40087E1E7 /* MyNewFindUserCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyNewFindUserCell.h; sourceTree = "<group>"; };
  2923. EB2B5A70242B0CA40087E1E7 /* MyNewFindUserCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyNewFindUserCell.m; sourceTree = "<group>"; };
  2924. EB2B5A71242B0CA40087E1E7 /* MyNewFindUserCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyNewFindUserCell.xib; sourceTree = "<group>"; };
  2925. EB2B5A74242B36010087E1E7 /* OtherNoteBookVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OtherNoteBookVC.h; sourceTree = "<group>"; };
  2926. EB2B5A75242B36010087E1E7 /* OtherNoteBookVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OtherNoteBookVC.m; sourceTree = "<group>"; };
  2927. EB2CC01E23BDBEAA0059F942 /* SearchCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchCell.h; sourceTree = "<group>"; };
  2928. EB2CC01F23BDBEAA0059F942 /* SearchCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchCell.m; sourceTree = "<group>"; };
  2929. EB2CC02123BDDE490059F942 /* ChatGroupSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatGroupSearchVC.h; sourceTree = "<group>"; };
  2930. EB2CC02223BDDE490059F942 /* ChatGroupSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatGroupSearchVC.m; sourceTree = "<group>"; };
  2931. EB2E46FA23A46B5F00CAF0D3 /* TDGroupSearchCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupSearchCell.h; sourceTree = "<group>"; };
  2932. EB2E46FB23A46B5F00CAF0D3 /* TDGroupSearchCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupSearchCell.m; sourceTree = "<group>"; };
  2933. EB2E46FC23A46B5F00CAF0D3 /* TDGroupSearchCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TDGroupSearchCell.xib; sourceTree = "<group>"; };
  2934. EB2E46FF23A47B9000CAF0D3 /* NewRowUserCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NewRowUserCell.h; sourceTree = "<group>"; };
  2935. EB2E470023A47B9000CAF0D3 /* NewRowUserCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NewRowUserCell.m; sourceTree = "<group>"; };
  2936. EB2E470123A47B9000CAF0D3 /* NewRowUserCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NewRowUserCell.xib; sourceTree = "<group>"; };
  2937. EB2E470423A48BAB00CAF0D3 /* TDQrJoinVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDQrJoinVC.h; sourceTree = "<group>"; };
  2938. EB2E470523A48BAB00CAF0D3 /* TDQrJoinVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDQrJoinVC.m; sourceTree = "<group>"; };
  2939. EB2E470723A4B55D00CAF0D3 /* SmartBar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmartBar.h; sourceTree = "<group>"; };
  2940. EB2E470823A4B55D00CAF0D3 /* SmartBar.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SmartBar.m; sourceTree = "<group>"; };
  2941. EB2E470A23A4B78300CAF0D3 /* SmartBarModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmartBarModel.h; sourceTree = "<group>"; };
  2942. EB2E470B23A4B78300CAF0D3 /* SmartBarModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SmartBarModel.m; sourceTree = "<group>"; };
  2943. EB2E471023A4D32400CAF0D3 /* NewTopicVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NewTopicVC.h; sourceTree = "<group>"; };
  2944. EB2E471123A4D32400CAF0D3 /* NewTopicVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NewTopicVC.m; sourceTree = "<group>"; };
  2945. EB317968251C6E00001E01D3 /* BookBillArticeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookBillArticeCell.m; sourceTree = "<group>"; };
  2946. EB317969251C6E00001E01D3 /* BookBillArticeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookBillArticeCell.h; sourceTree = "<group>"; };
  2947. EB31796A251C6E01001E01D3 /* BookBillArticeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookBillArticeCell.xib; sourceTree = "<group>"; };
  2948. EB31796E251CA2D0001E01D3 /* BookBillListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookBillListModel.m; sourceTree = "<group>"; };
  2949. EB31796F251CA2D0001E01D3 /* BookBillListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookBillListModel.h; sourceTree = "<group>"; };
  2950. EB38513D24652BA700E28172 /* TDGroupRoleVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupRoleVC.h; sourceTree = "<group>"; };
  2951. EB38513E24652BA700E28172 /* TDGroupRoleVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupRoleVC.m; sourceTree = "<group>"; };
  2952. EB38514024652EB000E28172 /* TDGroupLabelVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupLabelVC.h; sourceTree = "<group>"; };
  2953. EB38514124652EB000E28172 /* TDGroupLabelVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupLabelVC.m; sourceTree = "<group>"; };
  2954. EB38514324653A2200E28172 /* TDGroupLabelCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupLabelCell.h; sourceTree = "<group>"; };
  2955. EB38514424653A2200E28172 /* TDGroupLabelCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupLabelCell.m; sourceTree = "<group>"; };
  2956. EB38514524653A2200E28172 /* TDGroupLabelCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TDGroupLabelCell.xib; sourceTree = "<group>"; };
  2957. EB38514824653F5D00E28172 /* AddGroupLabelVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddGroupLabelVC.h; sourceTree = "<group>"; };
  2958. EB38514924653F5D00E28172 /* AddGroupLabelVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddGroupLabelVC.m; sourceTree = "<group>"; };
  2959. EB3B6C8024BD985800FA60F8 /* MailModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailModel.h; sourceTree = "<group>"; };
  2960. EB3B6C8124BD985800FA60F8 /* MailModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailModel.m; sourceTree = "<group>"; };
  2961. EB3B6C8324BD993B00FA60F8 /* MailSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailSubModel.h; sourceTree = "<group>"; };
  2962. EB3B6C8424BD993B00FA60F8 /* MailSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailSubModel.m; sourceTree = "<group>"; };
  2963. EB3CB79424E4F0F000F399E7 /* GroupVerifyVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupVerifyVC.h; sourceTree = "<group>"; };
  2964. EB3CB79524E4F0F100F399E7 /* GroupVerifyVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupVerifyVC.m; sourceTree = "<group>"; };
  2965. EB3CB79724E5152800F399E7 /* NoteTopicDraftListVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoteTopicDraftListVC.m; sourceTree = "<group>"; };
  2966. EB3CB79824E5152800F399E7 /* NoteTopicDraftListVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoteTopicDraftListVC.h; sourceTree = "<group>"; };
  2967. EB3CB79A24E51FFC00F399E7 /* NoteTopicDraftSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoteTopicDraftSearchVC.h; sourceTree = "<group>"; };
  2968. EB3CB79B24E51FFC00F399E7 /* NoteTopicDraftSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoteTopicDraftSearchVC.m; sourceTree = "<group>"; };
  2969. EB3CB79D24E5481B00F399E7 /* GroupSynopsisUserVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSynopsisUserVC.h; sourceTree = "<group>"; };
  2970. EB3CB79E24E5481B00F399E7 /* GroupSynopsisUserVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSynopsisUserVC.m; sourceTree = "<group>"; };
  2971. EB3CB7A024E54D8700F399E7 /* GroupSynopsisUserSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSynopsisUserSearchVC.h; sourceTree = "<group>"; };
  2972. EB3CB7A124E54D8700F399E7 /* GroupSynopsisUserSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSynopsisUserSearchVC.m; sourceTree = "<group>"; };
  2973. EB3DCA4524551B0E000A0189 /* ShareListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareListVC.h; sourceTree = "<group>"; };
  2974. EB3DCA4624551B0E000A0189 /* ShareListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareListVC.m; sourceTree = "<group>"; };
  2975. EB3DCA4D24555299000A0189 /* ShareSysVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareSysVC.h; sourceTree = "<group>"; };
  2976. EB3DCA4E24555299000A0189 /* ShareSysVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareSysVC.m; sourceTree = "<group>"; };
  2977. EB3DCA50245552AE000A0189 /* ShareCusVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareCusVC.h; sourceTree = "<group>"; };
  2978. EB3DCA51245552AE000A0189 /* ShareCusVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareCusVC.m; sourceTree = "<group>"; };
  2979. EB3EAFD123A10CE600C38AB4 /* WaitWorkCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitWorkCell.h; sourceTree = "<group>"; };
  2980. EB3EAFD223A10CE600C38AB4 /* WaitWorkCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitWorkCell.m; sourceTree = "<group>"; };
  2981. EB3EAFD323A10CE600C38AB4 /* WaitWorkCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WaitWorkCell.xib; sourceTree = "<group>"; };
  2982. EB3EAFD623A1D1FC00C38AB4 /* MenuListView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MenuListView.h; sourceTree = "<group>"; };
  2983. EB3EAFD723A1D1FC00C38AB4 /* MenuListView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MenuListView.m; sourceTree = "<group>"; };
  2984. EB3EAFD923A1DAB400C38AB4 /* MenuListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MenuListCell.h; sourceTree = "<group>"; };
  2985. EB3EAFDA23A1DAB400C38AB4 /* MenuListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MenuListCell.m; sourceTree = "<group>"; };
  2986. EB3EAFDB23A1DAB400C38AB4 /* MenuListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MenuListCell.xib; sourceTree = "<group>"; };
  2987. EB3EAFDE23A22E4100C38AB4 /* TDGroupQrcodeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupQrcodeVC.h; sourceTree = "<group>"; };
  2988. EB3EAFDF23A22E4100C38AB4 /* TDGroupQrcodeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupQrcodeVC.m; sourceTree = "<group>"; };
  2989. EB3EAFE123A22EBE00C38AB4 /* TDGroup.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = TDGroup.storyboard; sourceTree = "<group>"; };
  2990. EB3EAFE623A2437E00C38AB4 /* TDGroupSearchResultVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupSearchResultVC.h; sourceTree = "<group>"; };
  2991. EB3EAFE723A2437E00C38AB4 /* TDGroupSearchResultVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupSearchResultVC.m; sourceTree = "<group>"; };
  2992. EB3EAFEC23A26B9B00C38AB4 /* TDGroupInfoListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupInfoListVC.h; sourceTree = "<group>"; };
  2993. EB3EAFED23A26B9B00C38AB4 /* TDGroupInfoListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupInfoListVC.m; sourceTree = "<group>"; };
  2994. EB3EAFEF23A31C7D00C38AB4 /* TDGroupInfoDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupInfoDetailVC.h; sourceTree = "<group>"; };
  2995. EB3EAFF023A31C7D00C38AB4 /* TDGroupInfoDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupInfoDetailVC.m; sourceTree = "<group>"; };
  2996. EB41513A246BC64800030371 /* BookStore.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = BookStore.storyboard; sourceTree = "<group>"; };
  2997. EB41513C246BC71500030371 /* BookStoreHome.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookStoreHome.h; sourceTree = "<group>"; };
  2998. EB41513D246BC71500030371 /* BookStoreHome.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookStoreHome.m; sourceTree = "<group>"; };
  2999. EB41513F246BCD6C00030371 /* BookHomeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookHomeCell.h; sourceTree = "<group>"; };
  3000. EB415140246BCD6C00030371 /* BookHomeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookHomeCell.m; sourceTree = "<group>"; };
  3001. EB415141246BCD6C00030371 /* BookHomeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookHomeCell.xib; sourceTree = "<group>"; };
  3002. EB415144246BD1CB00030371 /* BookHomeModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookHomeModel.h; sourceTree = "<group>"; };
  3003. EB415145246BD1CB00030371 /* BookHomeModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookHomeModel.m; sourceTree = "<group>"; };
  3004. EB415147246BD58F00030371 /* BookHomeSubCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookHomeSubCell.h; sourceTree = "<group>"; };
  3005. EB415148246BD58F00030371 /* BookHomeSubCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookHomeSubCell.m; sourceTree = "<group>"; };
  3006. EB415149246BD58F00030371 /* BookHomeSubCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookHomeSubCell.xib; sourceTree = "<group>"; };
  3007. EB41514C246BDEB900030371 /* BookHomeSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookHomeSubModel.h; sourceTree = "<group>"; };
  3008. EB41514D246BDEB900030371 /* BookHomeSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookHomeSubModel.m; sourceTree = "<group>"; };
  3009. EB41514F246C001D00030371 /* BookMingVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookMingVC.h; sourceTree = "<group>"; };
  3010. EB415150246C001D00030371 /* BookMingVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookMingVC.m; sourceTree = "<group>"; };
  3011. EB415152246C071300030371 /* BookAllLookVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookAllLookVC.h; sourceTree = "<group>"; };
  3012. EB415153246C071300030371 /* BookAllLookVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookAllLookVC.m; sourceTree = "<group>"; };
  3013. EB4310B124CE7D1E00481097 /* SourceGroupSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SourceGroupSearchVC.h; sourceTree = "<group>"; };
  3014. EB4310B224CE7D1E00481097 /* SourceGroupSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SourceGroupSearchVC.m; sourceTree = "<group>"; };
  3015. EB4310B424CEAF6D00481097 /* MyTDTopicGroupSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyTDTopicGroupSearchVC.h; sourceTree = "<group>"; };
  3016. EB4310B524CEAF6D00481097 /* MyTDTopicGroupSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicGroupSearchVC.m; sourceTree = "<group>"; };
  3017. EB440027247CB7AE0094C333 /* BookMingDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookMingDetailVC.h; sourceTree = "<group>"; };
  3018. EB440028247CB7AE0094C333 /* BookMingDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookMingDetailVC.m; sourceTree = "<group>"; };
  3019. EB44002A247D12630094C333 /* BookSubArticeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSubArticeVC.h; sourceTree = "<group>"; };
  3020. EB44002B247D12630094C333 /* BookSubArticeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSubArticeVC.m; sourceTree = "<group>"; };
  3021. EB44002D247D127B0094C333 /* BookSubVideoVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSubVideoVC.h; sourceTree = "<group>"; };
  3022. EB44002E247D127B0094C333 /* BookSubVideoVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSubVideoVC.m; sourceTree = "<group>"; };
  3023. EB440030247D12910094C333 /* BookSubMusicVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSubMusicVC.h; sourceTree = "<group>"; };
  3024. EB440031247D12910094C333 /* BookSubMusicVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSubMusicVC.m; sourceTree = "<group>"; };
  3025. EB440033247D15AD0094C333 /* BookSubArticeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSubArticeCell.h; sourceTree = "<group>"; };
  3026. EB440034247D15AD0094C333 /* BookSubArticeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSubArticeCell.m; sourceTree = "<group>"; };
  3027. EB440035247D15AD0094C333 /* BookSubArticeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookSubArticeCell.xib; sourceTree = "<group>"; };
  3028. EB440FC223A32302006BCB95 /* TDGroupInfoDetailCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupInfoDetailCell.h; sourceTree = "<group>"; };
  3029. EB440FC323A32302006BCB95 /* TDGroupInfoDetailCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupInfoDetailCell.m; sourceTree = "<group>"; };
  3030. EB440FC423A32302006BCB95 /* TDGroupInfoDetailCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TDGroupInfoDetailCell.xib; sourceTree = "<group>"; };
  3031. EB440FC723A3324F006BCB95 /* createSearchBarView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = createSearchBarView.h; sourceTree = "<group>"; };
  3032. EB440FC823A3324F006BCB95 /* createSearchBarView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = createSearchBarView.m; sourceTree = "<group>"; };
  3033. EB440FCA23A33970006BCB95 /* TDGroupInfoListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupInfoListModel.h; sourceTree = "<group>"; };
  3034. EB440FCB23A33970006BCB95 /* TDGroupInfoListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupInfoListModel.m; sourceTree = "<group>"; };
  3035. EB440FCD23A33982006BCB95 /* TDGroupInfoModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupInfoModel.h; sourceTree = "<group>"; };
  3036. EB440FCE23A33982006BCB95 /* TDGroupInfoModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupInfoModel.m; sourceTree = "<group>"; };
  3037. EB440FD023A36BCE006BCB95 /* TDGroupInfo.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = TDGroupInfo.storyboard; sourceTree = "<group>"; };
  3038. EB440FD223A36D4C006BCB95 /* TDGroupInfoChangeVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDGroupInfoChangeVc.h; sourceTree = "<group>"; };
  3039. EB440FD323A36D4C006BCB95 /* TDGroupInfoChangeVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDGroupInfoChangeVc.m; sourceTree = "<group>"; };
  3040. EB44408524A1CA5E00B2E212 /* HomeSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeSubModel.h; sourceTree = "<group>"; };
  3041. EB44408624A1CA5E00B2E212 /* HomeSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeSubModel.m; sourceTree = "<group>"; };
  3042. EB44408824A1CBB600B2E212 /* HomeSubItemModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeSubItemModel.h; sourceTree = "<group>"; };
  3043. EB44408924A1CBB600B2E212 /* HomeSubItemModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeSubItemModel.m; sourceTree = "<group>"; };
  3044. EB44409424A1F5D200B2E212 /* IndexViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IndexViewController.h; sourceTree = "<group>"; };
  3045. EB44409524A1F5D200B2E212 /* IndexViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IndexViewController.m; sourceTree = "<group>"; };
  3046. EB44409824A1FF7400B2E212 /* HomeRecommendVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeRecommendVC.h; sourceTree = "<group>"; };
  3047. EB44409924A1FF7400B2E212 /* HomeRecommendVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeRecommendVC.m; sourceTree = "<group>"; };
  3048. EB44409B24A2110D00B2E212 /* HomeBigshotVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBigshotVC.h; sourceTree = "<group>"; };
  3049. EB44409C24A2110D00B2E212 /* HomeBigshotVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBigshotVC.m; sourceTree = "<group>"; };
  3050. EB44982424E3AFE70040A9FF /* GroupSquareSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSquareSearchVC.h; sourceTree = "<group>"; };
  3051. EB44982524E3AFE80040A9FF /* GroupSquareSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSquareSearchVC.m; sourceTree = "<group>"; };
  3052. EB44982724E3E13C0040A9FF /* GroupListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListView.h; sourceTree = "<group>"; };
  3053. EB44982824E3E13D0040A9FF /* GroupListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListView.m; sourceTree = "<group>"; };
  3054. EB4B652324C003040041A82C /* MailAddUserSearch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MailAddUserSearch.h; sourceTree = "<group>"; };
  3055. EB4B652424C003050041A82C /* MailAddUserSearch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MailAddUserSearch.m; sourceTree = "<group>"; };
  3056. EB4B652624C01DCE0041A82C /* MailVerifyVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailVerifyVC.h; sourceTree = "<group>"; };
  3057. EB4B652724C01DCE0041A82C /* MailVerifyVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailVerifyVC.m; sourceTree = "<group>"; };
  3058. EB4B652924C04DED0041A82C /* MailEditVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailEditVC.h; sourceTree = "<group>"; };
  3059. EB4B652A24C04DED0041A82C /* MailEditVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailEditVC.m; sourceTree = "<group>"; };
  3060. EB4B652F24C19A060041A82C /* MailGroupListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailGroupListVC.h; sourceTree = "<group>"; };
  3061. EB4B653024C19A060041A82C /* MailGroupListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailGroupListVC.m; sourceTree = "<group>"; };
  3062. EB4B653224C19E4B0041A82C /* MailGroupListSerachVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MailGroupListSerachVC.h; sourceTree = "<group>"; };
  3063. EB4B653324C19E4B0041A82C /* MailGroupListSerachVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MailGroupListSerachVC.m; sourceTree = "<group>"; };
  3064. EB4ECF10241101A000B60F05 /* CountDataVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CountDataVC.h; sourceTree = "<group>"; };
  3065. EB4ECF11241101A000B60F05 /* CountDataVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CountDataVC.m; sourceTree = "<group>"; };
  3066. EB50DAE023C8967400A14FED /* ReadListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReadListVC.h; sourceTree = "<group>"; };
  3067. EB50DAE123C8967400A14FED /* ReadListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReadListVC.m; sourceTree = "<group>"; };
  3068. EB52714C2428555C00B37D2A /* TDInterLeterSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TDInterLeterSearchVC.h; sourceTree = "<group>"; };
  3069. EB52714D2428555C00B37D2A /* TDInterLeterSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TDInterLeterSearchVC.m; sourceTree = "<group>"; };
  3070. EB568FBB239B369D000827B0 /* FindChatItemsModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FindChatItemsModel.h; sourceTree = "<group>"; };
  3071. EB568FBC239B369D000827B0 /* FindChatItemsModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FindChatItemsModel.m; sourceTree = "<group>"; };
  3072. EB568FBE239B40C7000827B0 /* FindResultViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FindResultViewCell.h; sourceTree = "<group>"; };
  3073. EB568FBF239B40C7000827B0 /* FindResultViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FindResultViewCell.m; sourceTree = "<group>"; };
  3074. EB568FC0239B40C7000827B0 /* FindResultViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FindResultViewCell.xib; sourceTree = "<group>"; };
  3075. EB568FC3239B47A3000827B0 /* ChatResultVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatResultVC.h; sourceTree = "<group>"; };
  3076. EB568FC4239B47A3000827B0 /* ChatResultVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatResultVC.m; sourceTree = "<group>"; };
  3077. EB568FC6239B746F000827B0 /* ChatJoinGroupVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatJoinGroupVC.h; sourceTree = "<group>"; };
  3078. EB568FC7239B7470000827B0 /* ChatJoinGroupVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatJoinGroupVC.m; sourceTree = "<group>"; };
  3079. EB56DA0523BB31AF00FE7262 /* EMChatFileShowVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EMChatFileShowVC.h; sourceTree = "<group>"; };
  3080. EB56DA0623BB31AF00FE7262 /* EMChatFileShowVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EMChatFileShowVC.m; sourceTree = "<group>"; };
  3081. EB56DA0823BB431500FE7262 /* ChatListMoveVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatListMoveVC.h; sourceTree = "<group>"; };
  3082. EB56DA0923BB431500FE7262 /* ChatListMoveVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatListMoveVC.m; sourceTree = "<group>"; };
  3083. EB581CEC23A0F5C800C451B0 /* WaitWorkVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitWorkVC.h; sourceTree = "<group>"; };
  3084. EB581CED23A0F5C800C451B0 /* WaitWorkVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitWorkVC.m; sourceTree = "<group>"; };
  3085. EB581CF523A0F72000C451B0 /* WaitWork.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = WaitWork.storyboard; sourceTree = "<group>"; };
  3086. EB5A586E23AB512100B93149 /* MyTDTopicDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicDetailVC.h; sourceTree = "<group>"; };
  3087. EB5A586F23AB512100B93149 /* MyTDTopicDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicDetailVC.m; sourceTree = "<group>"; };
  3088. EB5A587123AB7D5800B93149 /* MyTDTopicSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicSearchVC.h; sourceTree = "<group>"; };
  3089. EB5A587223AB7D5800B93149 /* MyTDTopicSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicSearchVC.m; sourceTree = "<group>"; };
  3090. EB5E18C2247F88E800EDB76E /* BookPublicBookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookPublicBookCell.h; sourceTree = "<group>"; };
  3091. EB5E18C3247F88E800EDB76E /* BookPublicBookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookPublicBookCell.m; sourceTree = "<group>"; };
  3092. EB5E18C4247F88E800EDB76E /* BookPublicBookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookPublicBookCell.xib; sourceTree = "<group>"; };
  3093. EB5E18CA247F969C00EDB76E /* BookPeriodicaDetailVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookPeriodicaDetailVC.h; sourceTree = "<group>"; };
  3094. EB5E18CB247F969D00EDB76E /* BookPeriodicaDetailVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookPeriodicaDetailVC.m; sourceTree = "<group>"; };
  3095. EB5E18D0247FAB2100EDB76E /* BookSubPeriodicaCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSubPeriodicaCell.h; sourceTree = "<group>"; };
  3096. EB5E18D1247FAB2100EDB76E /* BookSubPeriodicaCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSubPeriodicaCell.m; sourceTree = "<group>"; };
  3097. EB5E18D2247FAB2100EDB76E /* BookSubPeriodicaCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookSubPeriodicaCell.xib; sourceTree = "<group>"; };
  3098. EB5F44F12474BFAD008D316D /* HomeGoodBookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeGoodBookCell.h; sourceTree = "<group>"; };
  3099. EB5F44F22474BFAD008D316D /* HomeGoodBookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeGoodBookCell.m; sourceTree = "<group>"; };
  3100. EB5F44F32474BFAD008D316D /* HomeGoodBookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeGoodBookCell.xib; sourceTree = "<group>"; };
  3101. EB5F44F62474C52C008D316D /* HomeGoodBookCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeGoodBookCollectCell.h; sourceTree = "<group>"; };
  3102. EB5F44F72474C52C008D316D /* HomeGoodBookCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeGoodBookCollectCell.m; sourceTree = "<group>"; };
  3103. EB5F44F82474C52C008D316D /* HomeGoodBookCollectCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeGoodBookCollectCell.xib; sourceTree = "<group>"; };
  3104. EB5F44FB2474CCCA008D316D /* BookDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookDetailVC.h; sourceTree = "<group>"; };
  3105. EB5F44FC2474CCCA008D316D /* BookDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookDetailVC.m; sourceTree = "<group>"; };
  3106. EB5F44FE2474CE0E008D316D /* BookDetailCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookDetailCell.h; sourceTree = "<group>"; };
  3107. EB5F44FF2474CE0E008D316D /* BookDetailCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookDetailCell.m; sourceTree = "<group>"; };
  3108. EB5F45002474CE0E008D316D /* BookDetailCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookDetailCell.xib; sourceTree = "<group>"; };
  3109. EB5F450324750765008D316D /* BookChanelVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookChanelVC.h; sourceTree = "<group>"; };
  3110. EB5F450424750765008D316D /* BookChanelVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookChanelVC.m; sourceTree = "<group>"; };
  3111. EB5F45062475093C008D316D /* BookChanelCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookChanelCell.h; sourceTree = "<group>"; };
  3112. EB5F45072475093C008D316D /* BookChanelCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookChanelCell.m; sourceTree = "<group>"; };
  3113. EB5F45082475093C008D316D /* BookChanelCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookChanelCell.xib; sourceTree = "<group>"; };
  3114. EB629DFA2415E28900A5E0EE /* MeetingDataModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MeetingDataModel.h; sourceTree = "<group>"; };
  3115. EB629DFB2415E28900A5E0EE /* MeetingDataModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MeetingDataModel.m; sourceTree = "<group>"; };
  3116. EB629DFD2416206200A5E0EE /* _NoInputAccessoryView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = _NoInputAccessoryView.h; sourceTree = "<group>"; };
  3117. EB629DFE2416206200A5E0EE /* _NoInputAccessoryView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = _NoInputAccessoryView.m; sourceTree = "<group>"; };
  3118. EB674D05242E126C003FEC6D /* MoveSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MoveSearchVC.h; sourceTree = "<group>"; };
  3119. EB674D06242E126C003FEC6D /* MoveSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MoveSearchVC.m; sourceTree = "<group>"; };
  3120. EB6A3D5024A864730067DBFA /* HomeProblemVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeProblemVC.h; sourceTree = "<group>"; };
  3121. EB6A3D5124A864740067DBFA /* HomeProblemVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeProblemVC.m; sourceTree = "<group>"; };
  3122. EB6A3D5324A8ADC50067DBFA /* BookHomeSubNumCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookHomeSubNumCell.h; sourceTree = "<group>"; };
  3123. EB6A3D5424A8ADC60067DBFA /* BookHomeSubNumCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookHomeSubNumCell.m; sourceTree = "<group>"; };
  3124. EB6A3D5524A8ADC60067DBFA /* BookHomeSubNumCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookHomeSubNumCell.xib; sourceTree = "<group>"; };
  3125. EB6D1C1423F6B590000D2EF8 /* FileOpenViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileOpenViewController.h; sourceTree = "<group>"; };
  3126. EB6D1C1523F6B590000D2EF8 /* FileOpenViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FileOpenViewController.m; sourceTree = "<group>"; };
  3127. EB6D86D224977EFA001D3B6C /* GroupSynopsisVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupSynopsisVC.h; sourceTree = "<group>"; };
  3128. EB6D86D324977EFA001D3B6C /* GroupSynopsisVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupSynopsisVC.m; sourceTree = "<group>"; };
  3129. EB6D86D524978392001D3B6C /* GroupSynopsisCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupSynopsisCell.h; sourceTree = "<group>"; };
  3130. EB6D86D624978392001D3B6C /* GroupSynopsisCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupSynopsisCell.m; sourceTree = "<group>"; };
  3131. EB6D86D724978392001D3B6C /* GroupSynopsisCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = GroupSynopsisCell.xib; sourceTree = "<group>"; };
  3132. EB6E84CD246F99A200BE0524 /* HomeSchoolCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeSchoolCell.h; sourceTree = "<group>"; };
  3133. EB6E84CE246F99A200BE0524 /* HomeSchoolCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeSchoolCell.m; sourceTree = "<group>"; };
  3134. EB6E84CF246F99A200BE0524 /* HomeSchoolCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeSchoolCell.xib; sourceTree = "<group>"; };
  3135. EB6E84D2246FB90300BE0524 /* HomeUserPrivilegeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeUserPrivilegeCell.h; sourceTree = "<group>"; };
  3136. EB6E84D3246FB90300BE0524 /* HomeUserPrivilegeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeUserPrivilegeCell.m; sourceTree = "<group>"; };
  3137. EB6E84D4246FB90300BE0524 /* HomeUserPrivilegeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeUserPrivilegeCell.xib; sourceTree = "<group>"; };
  3138. EB6E84D7246FD1BF00BE0524 /* HomeWeiCousreCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeWeiCousreCell.h; sourceTree = "<group>"; };
  3139. EB6E84D8246FD1BF00BE0524 /* HomeWeiCousreCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeWeiCousreCell.m; sourceTree = "<group>"; };
  3140. EB6E84D9246FD1BF00BE0524 /* HomeWeiCousreCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeWeiCousreCell.xib; sourceTree = "<group>"; };
  3141. EB6E84E0246FDF2400BE0524 /* BookPlayListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookPlayListVC.h; sourceTree = "<group>"; };
  3142. EB6E84E1246FDF2400BE0524 /* BookPlayListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookPlayListVC.m; sourceTree = "<group>"; };
  3143. EB6F001C247381FD00808484 /* HomeProblemTopCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeProblemTopCell.h; sourceTree = "<group>"; };
  3144. EB6F001D247381FD00808484 /* HomeProblemTopCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeProblemTopCell.m; sourceTree = "<group>"; };
  3145. EB6F001E247381FD00808484 /* HomeProblemTopCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeProblemTopCell.xib; sourceTree = "<group>"; };
  3146. EB6F002124738F0100808484 /* HomeProblemTopCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeProblemTopCollectCell.h; sourceTree = "<group>"; };
  3147. EB6F002224738F0100808484 /* HomeProblemTopCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeProblemTopCollectCell.m; sourceTree = "<group>"; };
  3148. EB6F002324738F0100808484 /* HomeProblemTopCollectCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeProblemTopCollectCell.xib; sourceTree = "<group>"; };
  3149. EB6F002B2473B19300808484 /* BookWeiCourseListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookWeiCourseListVC.h; sourceTree = "<group>"; };
  3150. EB6F002C2473B19300808484 /* BookWeiCourseListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookWeiCourseListVC.m; sourceTree = "<group>"; };
  3151. EB71EEFA240E565B0089B1A6 /* FlowAttachmentsModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlowAttachmentsModel.h; sourceTree = "<group>"; };
  3152. EB71EEFB240E565B0089B1A6 /* FlowAttachmentsModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FlowAttachmentsModel.m; sourceTree = "<group>"; };
  3153. EB77B291239F9A4F0050A3C0 /* ChatNewRowVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatNewRowVC.h; sourceTree = "<group>"; };
  3154. EB77B292239F9A4F0050A3C0 /* ChatNewRowVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatNewRowVC.m; sourceTree = "<group>"; };
  3155. EB77B294239FCAF90050A3C0 /* ChatNewRowCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatNewRowCell.h; sourceTree = "<group>"; };
  3156. EB77B295239FCAF90050A3C0 /* ChatNewRowCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatNewRowCell.m; sourceTree = "<group>"; };
  3157. EB77B296239FCAF90050A3C0 /* ChatNewRowCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChatNewRowCell.xib; sourceTree = "<group>"; };
  3158. EB7955C924C695CB00EE9A55 /* MyTDTopicBookVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicBookVC.h; sourceTree = "<group>"; };
  3159. EB7955CA24C695CB00EE9A55 /* MyTDTopicBookVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicBookVC.m; sourceTree = "<group>"; };
  3160. EB7955CC24C6B0BB00EE9A55 /* TopicBookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TopicBookCell.h; sourceTree = "<group>"; };
  3161. EB7955CD24C6B0BB00EE9A55 /* TopicBookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopicBookCell.m; sourceTree = "<group>"; };
  3162. EB7955CE24C6B0BB00EE9A55 /* TopicBookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TopicBookCell.xib; sourceTree = "<group>"; };
  3163. EB7955D124C6BB4E00EE9A55 /* TopicBookModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TopicBookModel.h; sourceTree = "<group>"; };
  3164. EB7955D224C6BB4E00EE9A55 /* TopicBookModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopicBookModel.m; sourceTree = "<group>"; };
  3165. EB7955D424C6CA6800EE9A55 /* MyTDTopicBookEditVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicBookEditVC.h; sourceTree = "<group>"; };
  3166. EB7955D524C6CA6800EE9A55 /* MyTDTopicBookEditVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicBookEditVC.m; sourceTree = "<group>"; };
  3167. EB7DD22A2462620100C6048F /* SourceHomeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SourceHomeVC.h; sourceTree = "<group>"; };
  3168. EB7DD22B2462620100C6048F /* SourceHomeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SourceHomeVC.m; sourceTree = "<group>"; };
  3169. EB7DD23424629A1B00C6048F /* Source.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Source.storyboard; sourceTree = "<group>"; };
  3170. EB7DD2362462AB5B00C6048F /* GroupSquareVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupSquareVC.h; sourceTree = "<group>"; };
  3171. EB7DD2372462AB5B00C6048F /* GroupSquareVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupSquareVC.m; sourceTree = "<group>"; };
  3172. EB7DD2392462B62600C6048F /* GroupSquareCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupSquareCell.h; sourceTree = "<group>"; };
  3173. EB7DD23A2462B62600C6048F /* GroupSquareCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupSquareCell.m; sourceTree = "<group>"; };
  3174. EB7DD23B2462B62600C6048F /* GroupSquareCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = GroupSquareCell.xib; sourceTree = "<group>"; };
  3175. EB7DD23E2462BC8F00C6048F /* GroupSquareModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupSquareModel.h; sourceTree = "<group>"; };
  3176. EB7DD23F2462BC8F00C6048F /* GroupSquareModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupSquareModel.m; sourceTree = "<group>"; };
  3177. EB7F373C247E05FC00E7FAD6 /* BookIntroductionVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookIntroductionVC.h; sourceTree = "<group>"; };
  3178. EB7F373D247E05FC00E7FAD6 /* BookIntroductionVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookIntroductionVC.m; sourceTree = "<group>"; };
  3179. EB7F373F247E357E00E7FAD6 /* BookMingArticeDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookMingArticeDetailVC.h; sourceTree = "<group>"; };
  3180. EB7F3740247E357E00E7FAD6 /* BookMingArticeDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookMingArticeDetailVC.m; sourceTree = "<group>"; };
  3181. EB7F3742247E3BEE00E7FAD6 /* BookCardBuyCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookCardBuyCell.h; sourceTree = "<group>"; };
  3182. EB7F3743247E3BEE00E7FAD6 /* BookCardBuyCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookCardBuyCell.m; sourceTree = "<group>"; };
  3183. EB7F3744247E3BEE00E7FAD6 /* BookCardBuyCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookCardBuyCell.xib; sourceTree = "<group>"; };
  3184. EB7F3747247E426800E7FAD6 /* BookMingArticeListVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookMingArticeListVC.h; sourceTree = "<group>"; };
  3185. EB7F3748247E426900E7FAD6 /* BookMingArticeListVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookMingArticeListVC.m; sourceTree = "<group>"; };
  3186. EB7F3749247E426900E7FAD6 /* BookMingArticeListVC.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookMingArticeListVC.xib; sourceTree = "<group>"; };
  3187. EB7F374C247E63DC00E7FAD6 /* SearchDetailViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchDetailViewCell.h; sourceTree = "<group>"; };
  3188. EB7F374D247E63DC00E7FAD6 /* SearchDetailViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchDetailViewCell.m; sourceTree = "<group>"; };
  3189. EB7F374E247E63DC00E7FAD6 /* SearchDetailViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SearchDetailViewCell.xib; sourceTree = "<group>"; };
  3190. EB7F3754247E869F00E7FAD6 /* hanjian.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = hanjian.ttf; sourceTree = "<group>"; };
  3191. EB8143BA2440502B00C439A9 /* HomeListWorkCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeListWorkCell.h; sourceTree = "<group>"; };
  3192. EB8143BB2440502B00C439A9 /* HomeListWorkCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeListWorkCell.m; sourceTree = "<group>"; };
  3193. EB8143BC2440502B00C439A9 /* HomeListWorkCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeListWorkCell.xib; sourceTree = "<group>"; };
  3194. EB8143BF24407A3E00C439A9 /* AddChanelNoDataCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddChanelNoDataCell.h; sourceTree = "<group>"; };
  3195. EB8143C024407A3E00C439A9 /* AddChanelNoDataCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddChanelNoDataCell.m; sourceTree = "<group>"; };
  3196. EB8143C124407A3E00C439A9 /* AddChanelNoDataCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AddChanelNoDataCell.xib; sourceTree = "<group>"; };
  3197. EB820AD323BC48CF00B96C6C /* ChatMoveModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMoveModel.h; sourceTree = "<group>"; };
  3198. EB820AD423BC48CF00B96C6C /* ChatMoveModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMoveModel.m; sourceTree = "<group>"; };
  3199. EB820ADA23BC882B00B96C6C /* SearchBaseVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchBaseVC.h; sourceTree = "<group>"; };
  3200. EB820ADB23BC882B00B96C6C /* SearchBaseVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchBaseVC.m; sourceTree = "<group>"; };
  3201. EB820ADD23BC97BA00B96C6C /* MyTDTopicUserSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicUserSearchVC.h; sourceTree = "<group>"; };
  3202. EB820ADE23BC97BA00B96C6C /* MyTDTopicUserSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicUserSearchVC.m; sourceTree = "<group>"; };
  3203. EB848E932508DE2D006A3ECD /* BookSetPlaySpeedAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookSetPlaySpeedAlert.h; sourceTree = "<group>"; };
  3204. EB848E942508DE2E006A3ECD /* BookSetPlaySpeedAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookSetPlaySpeedAlert.m; sourceTree = "<group>"; };
  3205. EB848E952508DE2E006A3ECD /* BookSetPlaySpeedAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookSetPlaySpeedAlert.xib; sourceTree = "<group>"; };
  3206. EB85BF48243DB566006C7A82 /* ChatMsgPersonInfoVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgPersonInfoVC.h; sourceTree = "<group>"; };
  3207. EB85BF49243DB566006C7A82 /* ChatMsgPersonInfoVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgPersonInfoVC.m; sourceTree = "<group>"; };
  3208. EB85BF4B243DDAC6006C7A82 /* SearchTabBaseVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchTabBaseVC.h; sourceTree = "<group>"; };
  3209. EB85BF4C243DDAC6006C7A82 /* SearchTabBaseVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchTabBaseVC.m; sourceTree = "<group>"; };
  3210. EB85BF4E243DDB31006C7A82 /* SearchTabCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchTabCell.h; sourceTree = "<group>"; };
  3211. EB85BF4F243DDB31006C7A82 /* SearchTabCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchTabCell.m; sourceTree = "<group>"; };
  3212. EB85BF51243DDD38006C7A82 /* ChatMsgTopSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgTopSearchVC.h; sourceTree = "<group>"; };
  3213. EB85BF52243DDD38006C7A82 /* ChatMsgTopSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgTopSearchVC.m; sourceTree = "<group>"; };
  3214. EB8E2B7C239666A800CDFBDA /* EMNotificationHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMNotificationHelper.m; sourceTree = "<group>"; };
  3215. EB8E2B7D239666A800CDFBDA /* EMColorDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMColorDefine.h; sourceTree = "<group>"; };
  3216. EB8E2B7E239666A800CDFBDA /* EMGlobalVariables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMGlobalVariables.h; sourceTree = "<group>"; };
  3217. EB8E2B7F239666A800CDFBDA /* EMEmojiHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMEmojiHelper.m; sourceTree = "<group>"; };
  3218. EB8E2B80239666A800CDFBDA /* EMConversationHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMConversationHelper.m; sourceTree = "<group>"; };
  3219. EB8E2B82239666A800CDFBDA /* UIViewController+HUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+HUD.m"; sourceTree = "<group>"; };
  3220. EB8E2B83239666A800CDFBDA /* NSObject+Alert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Alert.h"; sourceTree = "<group>"; };
  3221. EB8E2B84239666A800CDFBDA /* UIViewController+Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+Util.h"; sourceTree = "<group>"; };
  3222. EB8E2B85239666A800CDFBDA /* UIViewController+HUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+HUD.h"; sourceTree = "<group>"; };
  3223. EB8E2B86239666A800CDFBDA /* UIViewController+Util.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+Util.m"; sourceTree = "<group>"; };
  3224. EB8E2B87239666A800CDFBDA /* NSObject+Alert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Alert.m"; sourceTree = "<group>"; };
  3225. EB8E2B88239666A800CDFBDA /* EMDemoOptions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMDemoOptions.m; sourceTree = "<group>"; };
  3226. EB8E2B89239666A800CDFBDA /* EMEmoticonGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMEmoticonGroup.m; sourceTree = "<group>"; };
  3227. EB8E2B8A239666A800CDFBDA /* EMRemindManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMRemindManager.h; sourceTree = "<group>"; };
  3228. EB8E2B8C239666A800CDFBDA /* close_gray@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "close_gray@3x.png"; sourceTree = "<group>"; };
  3229. EB8E2B8D239666A800CDFBDA /* uncheck@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "uncheck@3x.png"; sourceTree = "<group>"; };
  3230. EB8E2B8E239666A800CDFBDA /* back_gary@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "back_gary@3x.png"; sourceTree = "<group>"; };
  3231. EB8E2B8F239666A800CDFBDA /* user_avatar_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "user_avatar_blue@3x.png"; sourceTree = "<group>"; };
  3232. EB8E2B90239666A800CDFBDA /* user_avatar_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "user_avatar_blue@2x.png"; sourceTree = "<group>"; };
  3233. EB8E2B91239666A800CDFBDA /* back_gary@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "back_gary@2x.png"; sourceTree = "<group>"; };
  3234. EB8E2B92239666A800CDFBDA /* close_gray@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "close_gray@2x.png"; sourceTree = "<group>"; };
  3235. EB8E2B93239666A800CDFBDA /* uncheck@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "uncheck@2x.png"; sourceTree = "<group>"; };
  3236. EB8E2B94239666A800CDFBDA /* navbar_white@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "navbar_white@3x.png"; sourceTree = "<group>"; };
  3237. EB8E2B95239666A800CDFBDA /* close_white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "close_white@2x.png"; sourceTree = "<group>"; };
  3238. EB8E2B96239666A800CDFBDA /* close_white@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "close_white@3x.png"; sourceTree = "<group>"; };
  3239. EB8E2B97239666A800CDFBDA /* group_avatar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "group_avatar@2x.png"; sourceTree = "<group>"; };
  3240. EB8E2B98239666A800CDFBDA /* user_avatar_gray@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "user_avatar_gray@3x.png"; sourceTree = "<group>"; };
  3241. EB8E2B99239666A800CDFBDA /* search_gray@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "search_gray@3x.png"; sourceTree = "<group>"; };
  3242. EB8E2B9A239666A800CDFBDA /* user_avatar_gray@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "user_avatar_gray@2x.png"; sourceTree = "<group>"; };
  3243. EB8E2B9B239666A800CDFBDA /* search_gray@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "search_gray@2x.png"; sourceTree = "<group>"; };
  3244. EB8E2B9C239666A800CDFBDA /* group_avatar@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "group_avatar@3x.png"; sourceTree = "<group>"; };
  3245. EB8E2B9D239666A800CDFBDA /* checked@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "checked@3x.png"; sourceTree = "<group>"; };
  3246. EB8E2B9E239666A800CDFBDA /* user_avatar_me@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "user_avatar_me@3x.png"; sourceTree = "<group>"; };
  3247. EB8E2B9F239666A800CDFBDA /* checked@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "checked@2x.png"; sourceTree = "<group>"; };
  3248. EB8E2BA0239666A800CDFBDA /* EMChineseToPinyin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMChineseToPinyin.h; sourceTree = "<group>"; };
  3249. EB8E2BA1239666A800CDFBDA /* EMDateHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMDateHelper.h; sourceTree = "<group>"; };
  3250. EB8E2BA2239666A800CDFBDA /* EMRealtimeSearch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMRealtimeSearch.h; sourceTree = "<group>"; };
  3251. EB8E2BA3239666A800CDFBDA /* EMGlobalVariables.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMGlobalVariables.m; sourceTree = "<group>"; };
  3252. EB8E2BA4239666A800CDFBDA /* EMNotificationHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMNotificationHelper.h; sourceTree = "<group>"; };
  3253. EB8E2BA6239666A800CDFBDA /* EMBadgeLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMBadgeLabel.m; sourceTree = "<group>"; };
  3254. EB8E2BA7239666A800CDFBDA /* EMAvatarNameCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMAvatarNameCell.h; sourceTree = "<group>"; };
  3255. EB8E2BA8239666A800CDFBDA /* EMBadgeLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMBadgeLabel.h; sourceTree = "<group>"; };
  3256. EB8E2BA9239666A800CDFBDA /* EMAvatarNameCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMAvatarNameCell.m; sourceTree = "<group>"; };
  3257. EB8E2BAA239666A800CDFBDA /* EMConversationHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMConversationHelper.h; sourceTree = "<group>"; };
  3258. EB8E2BAB239666A800CDFBDA /* EMEmojiHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMEmojiHelper.h; sourceTree = "<group>"; };
  3259. EB8E2BAC239666A800CDFBDA /* EMEmoticonGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMEmoticonGroup.h; sourceTree = "<group>"; };
  3260. EB8E2BB0239666A800CDFBDA /* if_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = if_rom.h; sourceTree = "<group>"; };
  3261. EB8E2BB1239666A800CDFBDA /* dec_if.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dec_if.h; sourceTree = "<group>"; };
  3262. EB8E2BB2239666A800CDFBDA /* libopencore-amrwb.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libopencore-amrwb.a"; sourceTree = "<group>"; };
  3263. EB8E2BB3239666A800CDFBDA /* libopencore-amrnb.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libopencore-amrnb.a"; sourceTree = "<group>"; };
  3264. EB8E2BB5239666A800CDFBDA /* interf_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interf_dec.h; sourceTree = "<group>"; };
  3265. EB8E2BB6239666A800CDFBDA /* interf_enc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interf_enc.h; sourceTree = "<group>"; };
  3266. EB8E2BB8239666A800CDFBDA /* wav.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = wav.mm; sourceTree = "<group>"; };
  3267. EB8E2BB9239666A800CDFBDA /* amrFileCodec.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = amrFileCodec.mm; sourceTree = "<group>"; };
  3268. EB8E2BBA239666A800CDFBDA /* amrFileCodec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = amrFileCodec.h; sourceTree = "<group>"; };
  3269. EB8E2BBB239666A800CDFBDA /* wav.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wav.h; sourceTree = "<group>"; };
  3270. EB8E2BBE239666A800CDFBDA /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
  3271. EB8E2BBF239666A800CDFBDA /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
  3272. EB8E2BC0239666A800CDFBDA /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
  3273. EB8E2BC1239666A800CDFBDA /* MWGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridViewController.h; sourceTree = "<group>"; };
  3274. EB8E2BC2239666A800CDFBDA /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
  3275. EB8E2BC3239666A800CDFBDA /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
  3276. EB8E2BC4239666A800CDFBDA /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
  3277. EB8E2BC5239666A800CDFBDA /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
  3278. EB8E2BC6239666A800CDFBDA /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
  3279. EB8E2BC7239666A800CDFBDA /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
  3280. EB8E2BC8239666A800CDFBDA /* MWGridCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridCell.h; sourceTree = "<group>"; };
  3281. EB8E2BC9239666A800CDFBDA /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
  3282. EB8E2BCA239666A800CDFBDA /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
  3283. EB8E2BCB239666A800CDFBDA /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
  3284. EB8E2BCC239666A800CDFBDA /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
  3285. EB8E2BCD239666A800CDFBDA /* MWGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridViewController.m; sourceTree = "<group>"; };
  3286. EB8E2BCE239666A800CDFBDA /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
  3287. EB8E2BCF239666A800CDFBDA /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
  3288. EB8E2BD0239666A800CDFBDA /* MWGridCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridCell.m; sourceTree = "<group>"; };
  3289. EB8E2BD1239666A800CDFBDA /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
  3290. EB8E2BD2239666A800CDFBDA /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
  3291. EB8E2BD5239666A800CDFBDA /* DACircularProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DACircularProgressView.m; sourceTree = "<group>"; };
  3292. EB8E2BD6239666A800CDFBDA /* DACircularProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DACircularProgressView.h; sourceTree = "<group>"; };
  3293. EB8E2BD8239666A800CDFBDA /* PSTCollectionViewLayout+Internals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PSTCollectionViewLayout+Internals.h"; sourceTree = "<group>"; };
  3294. EB8E2BD9239666A800CDFBDA /* PSTCollectionViewItemKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewItemKey.h; sourceTree = "<group>"; };
  3295. EB8E2BDA239666A800CDFBDA /* PSTGridLayoutSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutSection.h; sourceTree = "<group>"; };
  3296. EB8E2BDB239666A800CDFBDA /* NSIndexPath+PSTCollectionViewAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexPath+PSTCollectionViewAdditions.h"; sourceTree = "<group>"; };
  3297. EB8E2BDC239666A800CDFBDA /* PSTCollectionViewUpdateItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewUpdateItem.h; sourceTree = "<group>"; };
  3298. EB8E2BDD239666A800CDFBDA /* PSTCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewController.m; sourceTree = "<group>"; };
  3299. EB8E2BDE239666A800CDFBDA /* PSTGridLayoutRow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutRow.h; sourceTree = "<group>"; };
  3300. EB8E2BDF239666A800CDFBDA /* PSTCollectionViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewFlowLayout.m; sourceTree = "<group>"; };
  3301. EB8E2BE0239666A800CDFBDA /* PSTCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionView.h; sourceTree = "<group>"; };
  3302. EB8E2BE1239666A800CDFBDA /* PSTCollectionViewCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewCommon.h; sourceTree = "<group>"; };
  3303. EB8E2BE2239666A800CDFBDA /* PSTCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewCell.m; sourceTree = "<group>"; };
  3304. EB8E2BE3239666A800CDFBDA /* PSTCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewLayout.h; sourceTree = "<group>"; };
  3305. EB8E2BE4239666A800CDFBDA /* PSTGridLayoutItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutItem.h; sourceTree = "<group>"; };
  3306. EB8E2BE5239666A800CDFBDA /* PSTGridLayoutInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutInfo.m; sourceTree = "<group>"; };
  3307. EB8E2BE6239666A800CDFBDA /* PSTCollectionViewData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewData.m; sourceTree = "<group>"; };
  3308. EB8E2BE7239666A800CDFBDA /* NSIndexPath+PSTCollectionViewAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexPath+PSTCollectionViewAdditions.m"; sourceTree = "<group>"; };
  3309. EB8E2BE8239666A800CDFBDA /* PSTCollectionViewUpdateItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewUpdateItem.m; sourceTree = "<group>"; };
  3310. EB8E2BE9239666A800CDFBDA /* PSTGridLayoutSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutSection.m; sourceTree = "<group>"; };
  3311. EB8E2BEA239666A800CDFBDA /* PSTCollectionViewItemKey.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewItemKey.m; sourceTree = "<group>"; };
  3312. EB8E2BEB239666A800CDFBDA /* PSTCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionView.m; sourceTree = "<group>"; };
  3313. EB8E2BEC239666A800CDFBDA /* PSTCollectionViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewFlowLayout.h; sourceTree = "<group>"; };
  3314. EB8E2BED239666A800CDFBDA /* PSTGridLayoutRow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutRow.m; sourceTree = "<group>"; };
  3315. EB8E2BEE239666A800CDFBDA /* PSTCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewController.h; sourceTree = "<group>"; };
  3316. EB8E2BEF239666A800CDFBDA /* PSTCollectionViewData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewData.h; sourceTree = "<group>"; };
  3317. EB8E2BF0239666A800CDFBDA /* PSTGridLayoutInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutInfo.h; sourceTree = "<group>"; };
  3318. EB8E2BF1239666A800CDFBDA /* PSTCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewLayout.m; sourceTree = "<group>"; };
  3319. EB8E2BF2239666A800CDFBDA /* PSTGridLayoutItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutItem.m; sourceTree = "<group>"; };
  3320. EB8E2BF3239666A800CDFBDA /* PSTCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewCell.h; sourceTree = "<group>"; };
  3321. EB8E2BF5239666A800CDFBDA /* SDWebImageDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDecoder.m; sourceTree = "<group>"; };
  3322. EB8E2BF6239666A800CDFBDA /* SDWebImageDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDecoder.h; sourceTree = "<group>"; };
  3323. EB8E2BF7239666A800CDFBDA /* MWPhotoBrowser.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MWPhotoBrowser.bundle; sourceTree = "<group>"; };
  3324. EB8E2BF9239666A800CDFBDA /* EMMulticastDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMulticastDelegate.h; sourceTree = "<group>"; };
  3325. EB8E2BFA239666A800CDFBDA /* EMMulticastDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMulticastDelegate.m; sourceTree = "<group>"; };
  3326. EB8E2BFB239666A800CDFBDA /* EMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMDefines.h; sourceTree = "<group>"; };
  3327. EB8E2BFC239666A800CDFBDA /* EMHeaders.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMHeaders.h; sourceTree = "<group>"; };
  3328. EB8E2BFE239666A800CDFBDA /* EMTextFieldViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMTextFieldViewController.h; sourceTree = "<group>"; };
  3329. EB8E2BFF239666A800CDFBDA /* EMTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMTextView.m; sourceTree = "<group>"; };
  3330. EB8E2C01239666A800CDFBDA /* EMRefreshTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMRefreshTableViewController.m; sourceTree = "<group>"; };
  3331. EB8E2C02239666A800CDFBDA /* EMRefreshViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMRefreshViewController.h; sourceTree = "<group>"; };
  3332. EB8E2C03239666A800CDFBDA /* EMRefreshViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMRefreshViewController.m; sourceTree = "<group>"; };
  3333. EB8E2C04239666A800CDFBDA /* EMRefreshTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMRefreshTableViewController.h; sourceTree = "<group>"; };
  3334. EB8E2C05239666A800CDFBDA /* EMTextViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMTextViewController.h; sourceTree = "<group>"; };
  3335. EB8E2C06239666A800CDFBDA /* EMTextFieldViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMTextFieldViewController.m; sourceTree = "<group>"; };
  3336. EB8E2C08239666A800CDFBDA /* alert_error@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alert_error@2x.png"; sourceTree = "<group>"; };
  3337. EB8E2C09239666A800CDFBDA /* alert_error@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alert_error@3x.png"; sourceTree = "<group>"; };
  3338. EB8E2C0A239666A800CDFBDA /* alert_default@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alert_default@3x.png"; sourceTree = "<group>"; };
  3339. EB8E2C0B239666A800CDFBDA /* alert_success@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alert_success@3x.png"; sourceTree = "<group>"; };
  3340. EB8E2C0C239666A800CDFBDA /* EMAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMAlertController.m; sourceTree = "<group>"; };
  3341. EB8E2C0D239666A800CDFBDA /* alert_success@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alert_success@2x.png"; sourceTree = "<group>"; };
  3342. EB8E2C0E239666A800CDFBDA /* alert_default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alert_default@2x.png"; sourceTree = "<group>"; };
  3343. EB8E2C0F239666A800CDFBDA /* alert_info@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alert_info@3x.png"; sourceTree = "<group>"; };
  3344. EB8E2C10239666A800CDFBDA /* alert_info@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alert_info@2x.png"; sourceTree = "<group>"; };
  3345. EB8E2C11239666A800CDFBDA /* EMAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMAlertController.h; sourceTree = "<group>"; };
  3346. EB8E2C13239666A800CDFBDA /* UIViewController+Search.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+Search.m"; sourceTree = "<group>"; };
  3347. EB8E2C14239666A800CDFBDA /* EMSearchResultController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMSearchResultController.m; sourceTree = "<group>"; };
  3348. EB8E2C15239666A800CDFBDA /* EMSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMSearchBar.m; sourceTree = "<group>"; };
  3349. EB8E2C16239666A800CDFBDA /* EMSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMSearchViewController.m; sourceTree = "<group>"; };
  3350. EB8E2C17239666A800CDFBDA /* EMSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMSearchBar.h; sourceTree = "<group>"; };
  3351. EB8E2C18239666A800CDFBDA /* EMSearchResultController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMSearchResultController.h; sourceTree = "<group>"; };
  3352. EB8E2C19239666A800CDFBDA /* UIViewController+Search.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+Search.h"; sourceTree = "<group>"; };
  3353. EB8E2C1A239666A800CDFBDA /* EMSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMSearchViewController.h; sourceTree = "<group>"; };
  3354. EB8E2C1B239666A800CDFBDA /* EMTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMTextView.h; sourceTree = "<group>"; };
  3355. EB8E2C1C239666A800CDFBDA /* EMTextViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMTextViewController.m; sourceTree = "<group>"; };
  3356. EB8E2C1D239666A800CDFBDA /* EMDemoOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMDemoOptions.h; sourceTree = "<group>"; };
  3357. EB8E2C1E239666A800CDFBDA /* EMRealtimeSearch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMRealtimeSearch.m; sourceTree = "<group>"; };
  3358. EB8E2C1F239666A800CDFBDA /* EMDateHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMDateHelper.m; sourceTree = "<group>"; };
  3359. EB8E2C20239666A800CDFBDA /* EMChineseToPinyin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMChineseToPinyin.m; sourceTree = "<group>"; };
  3360. EB8E2C21239666A800CDFBDA /* EMRemindManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMRemindManager.m; sourceTree = "<group>"; };
  3361. EB8E2C23239666A800CDFBDA /* EMMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMessageModel.h; sourceTree = "<group>"; };
  3362. EB8E2C24239666A800CDFBDA /* EMChatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMChatViewController.h; sourceTree = "<group>"; };
  3363. EB8E2C25239666A800CDFBDA /* EMLocationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMLocationViewController.h; sourceTree = "<group>"; };
  3364. EB8E2C26239666A800CDFBDA /* EMAtGroupMembersViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMAtGroupMembersViewController.h; sourceTree = "<group>"; };
  3365. EB8E2C28239666A800CDFBDA /* EMChatBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMChatBar.h; sourceTree = "<group>"; };
  3366. EB8E2C2A239666A800CDFBDA /* EMChatBarItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMChatBarItem.m; sourceTree = "<group>"; };
  3367. EB8E2C2C239666A800CDFBDA /* EMReadReceiptMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMReadReceiptMemberModel.h; sourceTree = "<group>"; };
  3368. EB8E2C2E239666A800CDFBDA /* pin-red.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pin-red.png"; sourceTree = "<group>"; };
  3369. EB8E2C2F239666A800CDFBDA /* closed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "closed@2x.png"; sourceTree = "<group>"; };
  3370. EB8E2C30239666A800CDFBDA /* pin-white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pin-white.png"; sourceTree = "<group>"; };
  3371. EB8E2C31239666A800CDFBDA /* close@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "close@3x.png"; sourceTree = "<group>"; };
  3372. EB8E2C32239666A800CDFBDA /* close@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "close@2x.png"; sourceTree = "<group>"; };
  3373. EB8E2C33239666A800CDFBDA /* EMMoreFunctionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMoreFunctionView.m; sourceTree = "<group>"; };
  3374. EB8E2C34239666A800CDFBDA /* EMReadReceiptMsgViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMReadReceiptMsgViewController.m; sourceTree = "<group>"; };
  3375. EB8E2C35239666A800CDFBDA /* EMReadReceiptTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMReadReceiptTableViewCell.m; sourceTree = "<group>"; };
  3376. EB8E2C36239666A800CDFBDA /* EMReadReceiptMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMReadReceiptMemberModel.m; sourceTree = "<group>"; };
  3377. EB8E2C37239666A800CDFBDA /* EMMoreFunctionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMoreFunctionView.h; sourceTree = "<group>"; };
  3378. EB8E2C38239666A800CDFBDA /* EMReadReceiptMsgViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMReadReceiptMsgViewController.h; sourceTree = "<group>"; };
  3379. EB8E2C39239666A800CDFBDA /* EMReadReceiptTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMReadReceiptTableViewCell.h; sourceTree = "<group>"; };
  3380. EB8E2C3B239666A800CDFBDA /* EMChatBarEmoticonView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMChatBarEmoticonView.h; sourceTree = "<group>"; };
  3381. EB8E2C3D239666A800CDFBDA /* icon_010_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_010_cover.png; sourceTree = "<group>"; };
  3382. EB8E2C3E239666A800CDFBDA /* icon_040_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_040_cover.png; sourceTree = "<group>"; };
  3383. EB8E2C3F239666A800CDFBDA /* icon_002_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_002_cover.png; sourceTree = "<group>"; };
  3384. EB8E2C40239666A800CDFBDA /* icon_029_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_029_cover.png; sourceTree = "<group>"; };
  3385. EB8E2C41239666A800CDFBDA /* icon_002.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_002.gif; sourceTree = "<group>"; };
  3386. EB8E2C42239666A800CDFBDA /* icon_030_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_030_cover.png; sourceTree = "<group>"; };
  3387. EB8E2C43239666A800CDFBDA /* icon_029.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_029.gif; sourceTree = "<group>"; };
  3388. EB8E2C44239666A800CDFBDA /* icon_024_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_024_cover.png; sourceTree = "<group>"; };
  3389. EB8E2C45239666A800CDFBDA /* icon_010.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_010.gif; sourceTree = "<group>"; };
  3390. EB8E2C46239666A800CDFBDA /* icon_012.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_012.gif; sourceTree = "<group>"; };
  3391. EB8E2C47239666A800CDFBDA /* icon_022_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_022_cover.png; sourceTree = "<group>"; };
  3392. EB8E2C48239666A800CDFBDA /* icon_013.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_013.gif; sourceTree = "<group>"; };
  3393. EB8E2C49239666A800CDFBDA /* icon_007.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_007.gif; sourceTree = "<group>"; };
  3394. EB8E2C4A239666A800CDFBDA /* icon_022.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_022.gif; sourceTree = "<group>"; };
  3395. EB8E2C4B239666A800CDFBDA /* icon_027_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_027_cover.png; sourceTree = "<group>"; };
  3396. EB8E2C4C239666A800CDFBDA /* icon_035.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_035.gif; sourceTree = "<group>"; };
  3397. EB8E2C4D239666A800CDFBDA /* icon_021.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_021.gif; sourceTree = "<group>"; };
  3398. EB8E2C4E239666A800CDFBDA /* icon_012_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_012_cover.png; sourceTree = "<group>"; };
  3399. EB8E2C4F239666A800CDFBDA /* icon_020.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_020.gif; sourceTree = "<group>"; };
  3400. EB8E2C50239666A800CDFBDA /* icon_019_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_019_cover.png; sourceTree = "<group>"; };
  3401. EB8E2C51239666A800CDFBDA /* icon_018.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_018.gif; sourceTree = "<group>"; };
  3402. EB8E2C52239666A800CDFBDA /* icon_030.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_030.gif; sourceTree = "<group>"; };
  3403. EB8E2C53239666A800CDFBDA /* icon_024.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_024.gif; sourceTree = "<group>"; };
  3404. EB8E2C54239666A800CDFBDA /* icon_019.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_019.gif; sourceTree = "<group>"; };
  3405. EB8E2C55239666A800CDFBDA /* icon_027.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_027.gif; sourceTree = "<group>"; };
  3406. EB8E2C56239666A800CDFBDA /* icon_021_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_021_cover.png; sourceTree = "<group>"; };
  3407. EB8E2C57239666A800CDFBDA /* icon_035_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_035_cover.png; sourceTree = "<group>"; };
  3408. EB8E2C58239666A800CDFBDA /* icon_040.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = icon_040.gif; sourceTree = "<group>"; };
  3409. EB8E2C59239666A800CDFBDA /* icon_007_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_007_cover.png; sourceTree = "<group>"; };
  3410. EB8E2C5A239666A800CDFBDA /* icon_013_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_013_cover.png; sourceTree = "<group>"; };
  3411. EB8E2C5B239666A800CDFBDA /* icon_018_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_018_cover.png; sourceTree = "<group>"; };
  3412. EB8E2C5C239666A800CDFBDA /* icon_020_cover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_020_cover.png; sourceTree = "<group>"; };
  3413. EB8E2C5E239666A800CDFBDA /* EaseEmotionEscape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EaseEmotionEscape.h; sourceTree = "<group>"; };
  3414. EB8E2C5F239666A800CDFBDA /* EaseEmotionEscape.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EaseEmotionEscape.m; sourceTree = "<group>"; };
  3415. EB8E2C60239666A800CDFBDA /* EMChatBarEmoticonView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMChatBarEmoticonView.m; sourceTree = "<group>"; };
  3416. EB8E2C62239666A800CDFBDA /* chat_audio_red@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chat_audio_red@2x.png"; sourceTree = "<group>"; };
  3417. EB8E2C63239666A800CDFBDA /* EMChatBarRecordAudioView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMChatBarRecordAudioView.h; sourceTree = "<group>"; };
  3418. EB8E2C64239666A800CDFBDA /* EMAudioRecordHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMAudioRecordHelper.h; sourceTree = "<group>"; };
  3419. EB8E2C65239666A800CDFBDA /* chat_audio_red@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chat_audio_red@3x.png"; sourceTree = "<group>"; };
  3420. EB8E2C66239666A800CDFBDA /* EMAudioRecordHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EMAudioRecordHelper.mm; sourceTree = "<group>"; };
  3421. EB8E2C67239666A800CDFBDA /* EMChatBarRecordAudioView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMChatBarRecordAudioView.m; sourceTree = "<group>"; };
  3422. EB8E2C68239666A800CDFBDA /* chat_audio_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chat_audio_blue@2x.png"; sourceTree = "<group>"; };
  3423. EB8E2C69239666A800CDFBDA /* chat_audio_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chat_audio_blue@3x.png"; sourceTree = "<group>"; };
  3424. EB8E2C6A239666A800CDFBDA /* EMChatBarItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMChatBarItem.h; sourceTree = "<group>"; };
  3425. EB8E2C6C239666A800CDFBDA /* chatbar_camera@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_camera@2x.png"; sourceTree = "<group>"; };
  3426. EB8E2C6D239666A800CDFBDA /* chatbar_photo@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_photo@3x.png"; sourceTree = "<group>"; };
  3427. EB8E2C6E239666A800CDFBDA /* chatbar_map_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_map_blue@2x.png"; sourceTree = "<group>"; };
  3428. EB8E2C6F239666A800CDFBDA /* chatbar_call_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_call_blue@3x.png"; sourceTree = "<group>"; };
  3429. EB8E2C70239666A800CDFBDA /* chatbar_call_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_call_blue@2x.png"; sourceTree = "<group>"; };
  3430. EB8E2C71239666A800CDFBDA /* chatbar_map_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_map_blue@3x.png"; sourceTree = "<group>"; };
  3431. EB8E2C72239666A800CDFBDA /* chatbar_photo@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_photo@2x.png"; sourceTree = "<group>"; };
  3432. EB8E2C73239666A800CDFBDA /* chatbar_camera@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_camera@3x.png"; sourceTree = "<group>"; };
  3433. EB8E2C74239666A800CDFBDA /* chatbar_face@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_face@2x.png"; sourceTree = "<group>"; };
  3434. EB8E2C75239666A800CDFBDA /* chatbar_face@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_face@3x.png"; sourceTree = "<group>"; };
  3435. EB8E2C76239666A800CDFBDA /* chatbar_extend_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_extend_blue@2x.png"; sourceTree = "<group>"; };
  3436. EB8E2C77239666A800CDFBDA /* chatbar_audio_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_audio_blue@2x.png"; sourceTree = "<group>"; };
  3437. EB8E2C78239666A800CDFBDA /* chatbar_extend@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_extend@2x.png"; sourceTree = "<group>"; };
  3438. EB8E2C79239666A800CDFBDA /* chatbar_photo_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_photo_blue@3x.png"; sourceTree = "<group>"; };
  3439. EB8E2C7A239666A800CDFBDA /* chatbar_audio@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_audio@3x.png"; sourceTree = "<group>"; };
  3440. EB8E2C7B239666A800CDFBDA /* chatbar_audio@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_audio@2x.png"; sourceTree = "<group>"; };
  3441. EB8E2C7C239666A800CDFBDA /* chatbar_photo_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_photo_blue@2x.png"; sourceTree = "<group>"; };
  3442. EB8E2C7D239666A800CDFBDA /* chatbar_extend@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_extend@3x.png"; sourceTree = "<group>"; };
  3443. EB8E2C7E239666A800CDFBDA /* chatbar_audio_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_audio_blue@3x.png"; sourceTree = "<group>"; };
  3444. EB8E2C7F239666A800CDFBDA /* chatbar_extend_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_extend_blue@3x.png"; sourceTree = "<group>"; };
  3445. EB8E2C80239666A800CDFBDA /* chatbar_call@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_call@3x.png"; sourceTree = "<group>"; };
  3446. EB8E2C81239666A800CDFBDA /* chatbar_face_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_face_blue@2x.png"; sourceTree = "<group>"; };
  3447. EB8E2C82239666A800CDFBDA /* chatbar_camera_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_camera_blue@3x.png"; sourceTree = "<group>"; };
  3448. EB8E2C83239666A800CDFBDA /* chatbar_map@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_map@3x.png"; sourceTree = "<group>"; };
  3449. EB8E2C84239666A800CDFBDA /* chatbar_map@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_map@2x.png"; sourceTree = "<group>"; };
  3450. EB8E2C85239666A800CDFBDA /* chatbar_camera_blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_camera_blue@2x.png"; sourceTree = "<group>"; };
  3451. EB8E2C86239666A800CDFBDA /* chatbar_face_blue@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_face_blue@3x.png"; sourceTree = "<group>"; };
  3452. EB8E2C87239666A800CDFBDA /* chatbar_call@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chatbar_call@2x.png"; sourceTree = "<group>"; };
  3453. EB8E2C88239666A800CDFBDA /* EMChatBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMChatBar.m; sourceTree = "<group>"; };
  3454. EB8E2C8A239666A800CDFBDA /* EMMessageTimeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMessageTimeCell.h; sourceTree = "<group>"; };
  3455. EB8E2C8B239666A800CDFBDA /* EMMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMessageCell.m; sourceTree = "<group>"; };
  3456. EB8E2C8C239666A800CDFBDA /* EMMessageStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMessageStatusView.m; sourceTree = "<group>"; };
  3457. EB8E2C8D239666A800CDFBDA /* EMMessageTimeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMessageTimeCell.m; sourceTree = "<group>"; };
  3458. EB8E2C8F239666A800CDFBDA /* EMMsgRecallBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgRecallBubbleView.m; sourceTree = "<group>"; };
  3459. EB8E2C90239666A800CDFBDA /* EMMsgImageBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgImageBubbleView.h; sourceTree = "<group>"; };
  3460. EB8E2C91239666A800CDFBDA /* EMMsgExtGifBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgExtGifBubbleView.m; sourceTree = "<group>"; };
  3461. EB8E2C92239666A800CDFBDA /* EMMessageBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMessageBubbleView.h; sourceTree = "<group>"; };
  3462. EB8E2C93239666A800CDFBDA /* EMMsgTextBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgTextBubbleView.h; sourceTree = "<group>"; };
  3463. EB8E2C94239666A800CDFBDA /* EMMsgAudioBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgAudioBubbleView.m; sourceTree = "<group>"; };
  3464. EB8E2C95239666A800CDFBDA /* EMMsgVideoBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgVideoBubbleView.m; sourceTree = "<group>"; };
  3465. EB8E2C96239666A800CDFBDA /* EMMsgLocationBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgLocationBubbleView.h; sourceTree = "<group>"; };
  3466. EB8E2C97239666A800CDFBDA /* EMMsgFileBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgFileBubbleView.m; sourceTree = "<group>"; };
  3467. EB8E2C98239666A800CDFBDA /* EMMsgExtGifBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgExtGifBubbleView.h; sourceTree = "<group>"; };
  3468. EB8E2C99239666A800CDFBDA /* EMMsgImageBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgImageBubbleView.m; sourceTree = "<group>"; };
  3469. EB8E2C9A239666A800CDFBDA /* EMMsgRecallBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgRecallBubbleView.h; sourceTree = "<group>"; };
  3470. EB8E2C9B239666A800CDFBDA /* EMMsgAudioBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgAudioBubbleView.h; sourceTree = "<group>"; };
  3471. EB8E2C9C239666A800CDFBDA /* EMMsgTextBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgTextBubbleView.m; sourceTree = "<group>"; };
  3472. EB8E2C9D239666A800CDFBDA /* EMMessageBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMessageBubbleView.m; sourceTree = "<group>"; };
  3473. EB8E2C9E239666A800CDFBDA /* EMMsgLocationBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgLocationBubbleView.m; sourceTree = "<group>"; };
  3474. EB8E2C9F239666A800CDFBDA /* EMMsgVideoBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgVideoBubbleView.h; sourceTree = "<group>"; };
  3475. EB8E2CA0239666A800CDFBDA /* EMMsgFileBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgFileBubbleView.h; sourceTree = "<group>"; };
  3476. EB8E2CA1239666A800CDFBDA /* EMMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMessageCell.h; sourceTree = "<group>"; };
  3477. EB8E2CA3239666A800CDFBDA /* msg_recv_audio02@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_recv_audio02@2x.png"; sourceTree = "<group>"; };
  3478. EB8E2CA4239666A800CDFBDA /* msg_location@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_location@2x.png"; sourceTree = "<group>"; };
  3479. EB8E2CA5239666A800CDFBDA /* msg_location_white@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_location_white@3x.png"; sourceTree = "<group>"; };
  3480. EB8E2CA6239666A800CDFBDA /* msg_bg_send@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_bg_send@3x.png"; sourceTree = "<group>"; };
  3481. EB8E2CA7239666A800CDFBDA /* msg_send_audio02@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_send_audio02@3x.png"; sourceTree = "<group>"; };
  3482. EB8E2CA8239666A800CDFBDA /* msg_send_audio02@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_send_audio02@2x.png"; sourceTree = "<group>"; };
  3483. EB8E2CA9239666A800CDFBDA /* msg_bg_send@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_bg_send@2x.png"; sourceTree = "<group>"; };
  3484. EB8E2CAA239666A800CDFBDA /* msg_location_white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_location_white@2x.png"; sourceTree = "<group>"; };
  3485. EB8E2CAB239666A800CDFBDA /* msg_recv_audio02@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_recv_audio02@3x.png"; sourceTree = "<group>"; };
  3486. EB8E2CAC239666A800CDFBDA /* msg_location@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_location@3x.png"; sourceTree = "<group>"; };
  3487. EB8E2CAD239666A800CDFBDA /* msg_fail@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_fail@2x.png"; sourceTree = "<group>"; };
  3488. EB8E2CAE239666A800CDFBDA /* msg_fail@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_fail@3x.png"; sourceTree = "<group>"; };
  3489. EB8E2CAF239666A800CDFBDA /* msg_send_audio@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_send_audio@3x.png"; sourceTree = "<group>"; };
  3490. EB8E2CB0239666A800CDFBDA /* msg_send_audio01@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_send_audio01@2x.png"; sourceTree = "<group>"; };
  3491. EB8E2CB1239666A800CDFBDA /* msg_recv_audio01@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_recv_audio01@3x.png"; sourceTree = "<group>"; };
  3492. EB8E2CB2239666A800CDFBDA /* msg_recv_audio01@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_recv_audio01@2x.png"; sourceTree = "<group>"; };
  3493. EB8E2CB3239666A800CDFBDA /* msg_send_audio01@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_send_audio01@3x.png"; sourceTree = "<group>"; };
  3494. EB8E2CB4239666A800CDFBDA /* msg_send_audio@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_send_audio@2x.png"; sourceTree = "<group>"; };
  3495. EB8E2CB5239666A800CDFBDA /* msg_recv_audio@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_recv_audio@3x.png"; sourceTree = "<group>"; };
  3496. EB8E2CB6239666A800CDFBDA /* msg_file_white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_file_white@2x.png"; sourceTree = "<group>"; };
  3497. EB8E2CB7239666A800CDFBDA /* msg_file@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_file@3x.png"; sourceTree = "<group>"; };
  3498. EB8E2CB8239666A800CDFBDA /* msg_img_broken@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_img_broken@2x.png"; sourceTree = "<group>"; };
  3499. EB8E2CB9239666A800CDFBDA /* msg_video_white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_video_white@2x.png"; sourceTree = "<group>"; };
  3500. EB8E2CBA239666A800CDFBDA /* msg_bg_recv@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_bg_recv@3x.png"; sourceTree = "<group>"; };
  3501. EB8E2CBB239666A800CDFBDA /* msg_bg_recv@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_bg_recv@2x.png"; sourceTree = "<group>"; };
  3502. EB8E2CBC239666A800CDFBDA /* msg_video_white@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_video_white@3x.png"; sourceTree = "<group>"; };
  3503. EB8E2CBD239666A800CDFBDA /* msg_img_broken@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_img_broken@3x.png"; sourceTree = "<group>"; };
  3504. EB8E2CBE239666A800CDFBDA /* msg_file@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_file@2x.png"; sourceTree = "<group>"; };
  3505. EB8E2CBF239666A800CDFBDA /* msg_file_white@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_file_white@3x.png"; sourceTree = "<group>"; };
  3506. EB8E2CC0239666A800CDFBDA /* msg_recv_audio@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_recv_audio@2x.png"; sourceTree = "<group>"; };
  3507. EB8E2CC1239666A800CDFBDA /* EMMessageStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMessageStatusView.h; sourceTree = "<group>"; };
  3508. EB8E2CC2239666A800CDFBDA /* EMMsgTranspondViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMMsgTranspondViewController.h; sourceTree = "<group>"; };
  3509. EB8E2CC3239666A800CDFBDA /* EMLocationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMLocationViewController.m; sourceTree = "<group>"; };
  3510. EB8E2CC5239666A800CDFBDA /* image@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "image@2x.png"; sourceTree = "<group>"; };
  3511. EB8E2CC6239666A800CDFBDA /* chat_info@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chat_info@3x.png"; sourceTree = "<group>"; };
  3512. EB8E2CC7239666A800CDFBDA /* chat_info@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chat_info@2x.png"; sourceTree = "<group>"; };
  3513. EB8E2CC8239666A800CDFBDA /* chat_clear@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chat_clear@3x.png"; sourceTree = "<group>"; };
  3514. EB8E2CC9239666A800CDFBDA /* chat_clear@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "chat_clear@2x.png"; sourceTree = "<group>"; };
  3515. EB8E2CCA239666A800CDFBDA /* EMChatViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMChatViewController.m; sourceTree = "<group>"; };
  3516. EB8E2CCB239666A800CDFBDA /* EMMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMessageModel.m; sourceTree = "<group>"; };
  3517. EB8E2CCC239666A800CDFBDA /* EMAtGroupMembersViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMAtGroupMembersViewController.m; sourceTree = "<group>"; };
  3518. EB8E2CCE239666A800CDFBDA /* EMImageBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMImageBrowser.m; sourceTree = "<group>"; };
  3519. EB8E2CCF239666A800CDFBDA /* EMImageBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMImageBrowser.h; sourceTree = "<group>"; };
  3520. EB8E2CD0239666A800CDFBDA /* EMAudioPlayerHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EMAudioPlayerHelper.h; sourceTree = "<group>"; };
  3521. EB8E2CD1239666A800CDFBDA /* EMAudioPlayerHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EMAudioPlayerHelper.mm; sourceTree = "<group>"; };
  3522. EB8E2CD2239666A800CDFBDA /* EMMsgTranspondViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EMMsgTranspondViewController.m; sourceTree = "<group>"; };
  3523. EB8E2DB1239762C100CDFBDA /* AudioShowView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AudioShowView.h; sourceTree = "<group>"; };
  3524. EB8E2DB2239762C100CDFBDA /* AudioShowView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AudioShowView.m; sourceTree = "<group>"; };
  3525. EB8E2DB423989B1800CDFBDA /* chatInfoGroupChatModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = chatInfoGroupChatModel.h; sourceTree = "<group>"; };
  3526. EB8E2DB523989B1800CDFBDA /* chatInfoGroupChatModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = chatInfoGroupChatModel.m; sourceTree = "<group>"; };
  3527. EB8E2DB72398D23100CDFBDA /* ChatGroupDeleteVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatGroupDeleteVC.h; sourceTree = "<group>"; };
  3528. EB8E2DB82398D23100CDFBDA /* ChatGroupDeleteVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatGroupDeleteVC.m; sourceTree = "<group>"; };
  3529. EB8E2DBA2398DC6900CDFBDA /* ChatGroupAddVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatGroupAddVC.h; sourceTree = "<group>"; };
  3530. EB8E2DBB2398DC6900CDFBDA /* ChatGroupAddVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatGroupAddVC.m; sourceTree = "<group>"; };
  3531. EB92E87323B061E8008E94CF /* WaitWorkLabelVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitWorkLabelVC.h; sourceTree = "<group>"; };
  3532. EB92E87423B061E8008E94CF /* WaitWorkLabelVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitWorkLabelVC.m; sourceTree = "<group>"; };
  3533. EB92E87623B063AF008E94CF /* WaitWorkLabelCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitWorkLabelCell.h; sourceTree = "<group>"; };
  3534. EB92E87723B063AF008E94CF /* WaitWorkLabelCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitWorkLabelCell.m; sourceTree = "<group>"; };
  3535. EB92E87823B063AF008E94CF /* WaitWorkLabelCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WaitWorkLabelCell.xib; sourceTree = "<group>"; };
  3536. EB92E87E23B09AD4008E94CF /* GFCalendarScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GFCalendarScrollView.m; sourceTree = "<group>"; };
  3537. EB92E87F23B09AD4008E94CF /* NSDate+GFCalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+GFCalendar.h"; sourceTree = "<group>"; };
  3538. EB92E88023B09AD4008E94CF /* GFCalendarMonth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GFCalendarMonth.h; sourceTree = "<group>"; };
  3539. EB92E88123B09AD4008E94CF /* GFCalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GFCalendar.h; sourceTree = "<group>"; };
  3540. EB92E88223B09AD4008E94CF /* GFCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GFCalendarCell.m; sourceTree = "<group>"; };
  3541. EB92E88323B09AD4008E94CF /* GFCalendarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GFCalendarView.m; sourceTree = "<group>"; };
  3542. EB92E88423B09AD4008E94CF /* GFCalendarScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GFCalendarScrollView.h; sourceTree = "<group>"; };
  3543. EB92E88523B09AD4008E94CF /* NSDate+GFCalendar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+GFCalendar.m"; sourceTree = "<group>"; };
  3544. EB92E88623B09AD4008E94CF /* GFCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GFCalendarCell.h; sourceTree = "<group>"; };
  3545. EB92E88723B09AD4008E94CF /* GFCalendar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GFCalendar.m; sourceTree = "<group>"; };
  3546. EB92E88823B09AD4008E94CF /* GFCalendarMonth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GFCalendarMonth.m; sourceTree = "<group>"; };
  3547. EB92E88923B09AD4008E94CF /* GFCalendarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GFCalendarView.h; sourceTree = "<group>"; };
  3548. EB92E89023B0CC77008E94CF /* WaitTimePicker.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitTimePicker.h; sourceTree = "<group>"; };
  3549. EB92E89123B0CC77008E94CF /* WaitTimePicker.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitTimePicker.m; sourceTree = "<group>"; };
  3550. EB95266A248A0A2A003EFCCE /* BookReadVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookReadVC.h; sourceTree = "<group>"; };
  3551. EB95266B248A0A2A003EFCCE /* BookReadVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookReadVC.m; sourceTree = "<group>"; };
  3552. EB952670248A0BA6003EFCCE /* DCContentVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DCContentVC.m; sourceTree = "<group>"; };
  3553. EB952672248A0BA6003EFCCE /* DCContentVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DCContentVC.h; sourceTree = "<group>"; };
  3554. EB952674248A0BA6003EFCCE /* DCPageBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DCPageBottomView.m; sourceTree = "<group>"; };
  3555. EB952675248A0BA6003EFCCE /* DCBookListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DCBookListView.m; sourceTree = "<group>"; };
  3556. EB952677248A0BA6003EFCCE /* DCPageTopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DCPageTopView.m; sourceTree = "<group>"; };
  3557. EB952679248A0BA6003EFCCE /* DCBookListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DCBookListView.h; sourceTree = "<group>"; };
  3558. EB95267A248A0BA6003EFCCE /* DCPageBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DCPageBottomView.h; sourceTree = "<group>"; };
  3559. EB95267B248A0BA6003EFCCE /* DCPageTopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DCPageTopView.h; sourceTree = "<group>"; };
  3560. EB95267D248A0BA6003EFCCE /* DCBookModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DCBookModel.h; sourceTree = "<group>"; };
  3561. EB95267E248A0BA6003EFCCE /* DCBookModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DCBookModel.m; sourceTree = "<group>"; };
  3562. EB952686248A0C52003EFCCE /* Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Header.h; sourceTree = "<group>"; };
  3563. EB952687248A0CA5003EFCCE /* DCFileTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DCFileTool.h; sourceTree = "<group>"; };
  3564. EB952688248A0CA5003EFCCE /* DCFileTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DCFileTool.m; sourceTree = "<group>"; };
  3565. EB95268A248A12F1003EFCCE /* 龙王传说.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "龙王传说.txt"; sourceTree = "<group>"; };
  3566. EB95268C248A4B41003EFCCE /* BookReadTextView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookReadTextView.h; sourceTree = "<group>"; };
  3567. EB95268D248A4B41003EFCCE /* BookReadTextView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookReadTextView.m; sourceTree = "<group>"; };
  3568. EB95268F248A560E003EFCCE /* BookReadSearchAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookReadSearchAlert.h; sourceTree = "<group>"; };
  3569. EB952690248A560E003EFCCE /* BookReadSearchAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookReadSearchAlert.xib; sourceTree = "<group>"; };
  3570. EB952691248A560E003EFCCE /* BookReadSearchAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookReadSearchAlert.m; sourceTree = "<group>"; };
  3571. EB96B89523BF56C800EE09D7 /* TDGroupInfoListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDGroupInfoListCell.h; sourceTree = "<group>"; };
  3572. EB96B89623BF56C800EE09D7 /* TDGroupInfoListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDGroupInfoListCell.m; sourceTree = "<group>"; };
  3573. EB96B89723BF56C800EE09D7 /* TDGroupInfoListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TDGroupInfoListCell.xib; sourceTree = "<group>"; };
  3574. EB96B89A23BF573A00EE09D7 /* NoteBookDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoteBookDetailCell.h; sourceTree = "<group>"; };
  3575. EB96B89B23BF573A00EE09D7 /* NoteBookDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoteBookDetailCell.m; sourceTree = "<group>"; };
  3576. EB96B89C23BF573A00EE09D7 /* NoteBookDetailCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoteBookDetailCell.xib; sourceTree = "<group>"; };
  3577. EB96B89F23BF584200EE09D7 /* TDInterLeterHome.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = TDInterLeterHome.storyboard; sourceTree = "<group>"; };
  3578. EB96B8A123BF5ACA00EE09D7 /* MyTDTopic.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MyTDTopic.storyboard; sourceTree = "<group>"; };
  3579. EB96B8A223BF5ACA00EE09D7 /* MyTDTopicExtent.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MyTDTopicExtent.storyboard; sourceTree = "<group>"; };
  3580. EB96B8A523BF73AF00EE09D7 /* TopicListFolderResultModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TopicListFolderResultModel.h; sourceTree = "<group>"; };
  3581. EB96B8A623BF73AF00EE09D7 /* TopicListFolderResultModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopicListFolderResultModel.m; sourceTree = "<group>"; };
  3582. EB98E7B02405FF090087C4E2 /* MyUserIconVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyUserIconVC.h; sourceTree = "<group>"; };
  3583. EB98E7B12405FF090087C4E2 /* MyUserIconVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyUserIconVC.m; sourceTree = "<group>"; };
  3584. EB98E7B324061CD00087C4E2 /* NoteBookSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteBookSearchVC.h; sourceTree = "<group>"; };
  3585. EB98E7B424061CD00087C4E2 /* NoteBookSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteBookSearchVC.m; sourceTree = "<group>"; };
  3586. EB9BBE4B23D1A5D400436A0E /* MailListMoveVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListMoveVC.h; sourceTree = "<group>"; };
  3587. EB9BBE4C23D1A5D400436A0E /* MailListMoveVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListMoveVC.m; sourceTree = "<group>"; };
  3588. EB9BBE4E23D1BF1A00436A0E /* MailListSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailListSearchVC.h; sourceTree = "<group>"; };
  3589. EB9BBE4F23D1BF1A00436A0E /* MailListSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailListSearchVC.m; sourceTree = "<group>"; };
  3590. EB9BCC0A24EBACD1005D7499 /* SelectSaveSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectSaveSearchVC.h; sourceTree = "<group>"; };
  3591. EB9BCC0B24EBACD1005D7499 /* SelectSaveSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectSaveSearchVC.m; sourceTree = "<group>"; };
  3592. EB9BCC0D24EBD117005D7499 /* MyFavoriteEditSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyFavoriteEditSearchVC.h; sourceTree = "<group>"; };
  3593. EB9BCC0E24EBD117005D7499 /* MyFavoriteEditSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteEditSearchVC.m; sourceTree = "<group>"; };
  3594. EB9BCC1024EBDD91005D7499 /* NoteBookEditSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoteBookEditSearchVC.m; sourceTree = "<group>"; };
  3595. EB9BCC1124EBDD91005D7499 /* NoteBookEditSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoteBookEditSearchVC.h; sourceTree = "<group>"; };
  3596. EB9D514224F62BDB00568932 /* GroupShowListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupShowListView.m; sourceTree = "<group>"; };
  3597. EB9D514324F62BDB00568932 /* GroupShowListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupShowListView.h; sourceTree = "<group>"; };
  3598. EB9D514524F633E500568932 /* GroupShowModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupShowModel.h; sourceTree = "<group>"; };
  3599. EB9D514624F633E500568932 /* GroupShowModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupShowModel.m; sourceTree = "<group>"; };
  3600. EB9D6588248DE60400636BAC /* BookReadStlyeAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookReadStlyeAlert.m; sourceTree = "<group>"; };
  3601. EB9D658C248DE60500636BAC /* BookReadStlyeAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookReadStlyeAlert.h; sourceTree = "<group>"; };
  3602. EB9D658F248DE60500636BAC /* BookReadStlyeAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookReadStlyeAlert.xib; sourceTree = "<group>"; };
  3603. EB9D6596248E003000636BAC /* BookReadStlyeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookReadStlyeCell.h; sourceTree = "<group>"; };
  3604. EB9D6597248E003000636BAC /* BookReadStlyeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookReadStlyeCell.m; sourceTree = "<group>"; };
  3605. EB9D6598248E003000636BAC /* BookReadStlyeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookReadStlyeCell.xib; sourceTree = "<group>"; };
  3606. EB9D659B248E032C00636BAC /* BookReadStlyeModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookReadStlyeModel.h; sourceTree = "<group>"; };
  3607. EB9D659C248E032C00636BAC /* BookReadStlyeModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookReadStlyeModel.m; sourceTree = "<group>"; };
  3608. EB9D659E248E358800636BAC /* BookReadListAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookReadListAlert.h; sourceTree = "<group>"; };
  3609. EB9D659F248E358800636BAC /* BookReadListAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookReadListAlert.m; sourceTree = "<group>"; };
  3610. EB9D65A0248E358900636BAC /* BookReadFontNameAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookReadFontNameAlert.m; sourceTree = "<group>"; };
  3611. EB9D65A1248E358900636BAC /* BookReadListAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookReadListAlert.xib; sourceTree = "<group>"; };
  3612. EB9D65A2248E358900636BAC /* BookReadFontNameAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookReadFontNameAlert.xib; sourceTree = "<group>"; };
  3613. EB9D65A3248E358900636BAC /* BookReadFontNameAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookReadFontNameAlert.h; sourceTree = "<group>"; };
  3614. EB9D65A8248E46FE00636BAC /* BookPlayAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookPlayAlert.xib; sourceTree = "<group>"; };
  3615. EB9D65A9248E46FE00636BAC /* BookPlayAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookPlayAlert.h; sourceTree = "<group>"; };
  3616. EB9D65AA248E46FE00636BAC /* BookPlayAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookPlayAlert.m; sourceTree = "<group>"; };
  3617. EB9DA1202503330B0062FEB8 /* TTSConfigViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TTSConfigViewController.m; sourceTree = "<group>"; };
  3618. EB9DA1212503330B0062FEB8 /* TTSConfigViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TTSConfigViewController.h; sourceTree = "<group>"; };
  3619. EB9DA126250333240062FEB8 /* SwitchTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SwitchTableViewCell.m; sourceTree = "<group>"; };
  3620. EB9DA127250333240062FEB8 /* NavigationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NavigationTableViewCell.m; sourceTree = "<group>"; };
  3621. EB9DA128250333240062FEB8 /* SelectionTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectionTableViewCell.m; sourceTree = "<group>"; };
  3622. EB9DA129250333240062FEB8 /* SliderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SliderTableViewCell.m; sourceTree = "<group>"; };
  3623. EB9DA12A250333240062FEB8 /* InputTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InputTableViewCell.m; sourceTree = "<group>"; };
  3624. EB9DA12B250333240062FEB8 /* NavigationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigationTableViewCell.h; sourceTree = "<group>"; };
  3625. EB9DA12C250333240062FEB8 /* SwitchTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SwitchTableViewCell.h; sourceTree = "<group>"; };
  3626. EB9DA12D250333240062FEB8 /* SliderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SliderTableViewCell.h; sourceTree = "<group>"; };
  3627. EB9DA12E250333240062FEB8 /* SelectionTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectionTableViewCell.h; sourceTree = "<group>"; };
  3628. EB9DA12F250333240062FEB8 /* InputTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputTableViewCell.h; sourceTree = "<group>"; };
  3629. EB9E202A251F088000311E96 /* BookMingCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookMingCell.h; sourceTree = "<group>"; };
  3630. EB9E202B251F088000311E96 /* BookMingCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookMingCell.m; sourceTree = "<group>"; };
  3631. EB9E202C251F088000311E96 /* BookMingCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookMingCell.xib; sourceTree = "<group>"; };
  3632. EB9E2030251F0BBA00311E96 /* BookMingSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookMingSearchVC.m; sourceTree = "<group>"; };
  3633. EB9E2031251F0BBA00311E96 /* BookMingSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookMingSearchVC.h; sourceTree = "<group>"; };
  3634. EB9F24DC2509CD0C0017479A /* PlayModelVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlayModelVC.h; sourceTree = "<group>"; };
  3635. EB9F24DD2509CD0C0017479A /* PlayModelVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlayModelVC.m; sourceTree = "<group>"; };
  3636. EB9F24DF2509CDD90017479A /* PlayModelCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlayModelCell.h; sourceTree = "<group>"; };
  3637. EB9F24E02509CDD90017479A /* PlayModelCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlayModelCell.m; sourceTree = "<group>"; };
  3638. EB9F24E12509CDD90017479A /* PlayModelCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PlayModelCell.xib; sourceTree = "<group>"; };
  3639. EB9F24E42509F3EF0017479A /* CusPopoverBackgroundView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CusPopoverBackgroundView.h; sourceTree = "<group>"; };
  3640. EB9F24E52509F3EF0017479A /* CusPopoverBackgroundView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CusPopoverBackgroundView.m; sourceTree = "<group>"; };
  3641. EB9F24E7250A0B390017479A /* qinkuai_Music.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = qinkuai_Music.mp3; sourceTree = "<group>"; };
  3642. EB9F24E8250A0B390017479A /* rouhuo_Music.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = rouhuo_Music.mp3; sourceTree = "<group>"; };
  3643. EB9F24E9250A0B3A0017479A /* shushi_Music.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = shushi_Music.mp3; sourceTree = "<group>"; };
  3644. EBA0FA53249CC22C0022AFA3 /* SSScrollViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSScrollViewController.h; sourceTree = "<group>"; };
  3645. EBA0FA54249CC22C0022AFA3 /* SSScrollViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSScrollViewController.m; sourceTree = "<group>"; };
  3646. EBA0FA56249CC34B0022AFA3 /* UIView+LYLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+LYLayout.h"; sourceTree = "<group>"; };
  3647. EBA0FA57249CC34B0022AFA3 /* UIGestureRecognizer+SSUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIGestureRecognizer+SSUtil.m"; sourceTree = "<group>"; };
  3648. EBA0FA58249CC34B0022AFA3 /* UIGestureRecognizer+SSUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIGestureRecognizer+SSUtil.h"; sourceTree = "<group>"; };
  3649. EBA0FA59249CC34C0022AFA3 /* UIView+LYLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+LYLayout.m"; sourceTree = "<group>"; };
  3650. EBA25D4E24D7FA3800CBEBF2 /* ShowSysVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShowSysVC.m; sourceTree = "<group>"; };
  3651. EBA25D4F24D7FA3800CBEBF2 /* ShowSysVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShowSysVC.h; sourceTree = "<group>"; };
  3652. EBA25D5124D81BC200CBEBF2 /* ShowUserVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShowUserVC.m; sourceTree = "<group>"; };
  3653. EBA25D5224D81BC200CBEBF2 /* ShowUserVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShowUserVC.h; sourceTree = "<group>"; };
  3654. EBA25D5424D8255700CBEBF2 /* ShowDesVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShowDesVC.h; sourceTree = "<group>"; };
  3655. EBA25D5524D8255700CBEBF2 /* ShowDesVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShowDesVC.m; sourceTree = "<group>"; };
  3656. EBA9F8E9239287180013BDDA /* Accounts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accounts.framework; path = System/Library/Frameworks/Accounts.framework; sourceTree = SDKROOT; };
  3657. EBA9F8EB239287220013BDDA /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; };
  3658. EBA9F8ED2392872F0013BDDA /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  3659. EBA9F8EF2392873A0013BDDA /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  3660. EBA9F8F1239287490013BDDA /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
  3661. EBA9F8F3239287550013BDDA /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
  3662. EBA9F8F52392875E0013BDDA /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  3663. EBA9F8F7239287670013BDDA /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  3664. EBA9F8FA239287840013BDDA /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
  3665. EBA9F8FC239287950013BDDA /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
  3666. EBA9F8FE2392879F0013BDDA /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
  3667. EBA9F900239287AD0013BDDA /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
  3668. EBA9F902239287B70013BDDA /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  3669. EBA9F904239287C30013BDDA /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
  3670. EBA9F906239287CD0013BDDA /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  3671. EBA9F909239287DC0013BDDA /* libbz2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.tbd; path = usr/lib/libbz2.tbd; sourceTree = SDKROOT; };
  3672. EBAA1F222463A4F200272F13 /* SourceGroupVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SourceGroupVC.h; sourceTree = "<group>"; };
  3673. EBAA1F232463A4F200272F13 /* SourceGroupVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SourceGroupVC.m; sourceTree = "<group>"; };
  3674. EBAACA8E2406475100F44B67 /* ShowBtn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShowBtn.h; sourceTree = "<group>"; };
  3675. EBAACA8F2406475100F44B67 /* ShowBtn.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShowBtn.m; sourceTree = "<group>"; };
  3676. EBAACA912406730C00F44B67 /* MyFavoriteSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFavoriteSearchVC.h; sourceTree = "<group>"; };
  3677. EBAACA922406730C00F44B67 /* MyFavoriteSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteSearchVC.m; sourceTree = "<group>"; };
  3678. EBAB7CB22500FAC000923FBA /* BDSWakeupParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSWakeupParameters.h; sourceTree = "<group>"; };
  3679. EBAB7CB32500FAC000923FBA /* BDSASRParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSASRParameters.h; sourceTree = "<group>"; };
  3680. EBAB7CB42500FAC000923FBA /* BDSEventManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSEventManager.h; sourceTree = "<group>"; };
  3681. EBAB7CB52500FAC000923FBA /* .gitIgnore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .gitIgnore; sourceTree = "<group>"; };
  3682. EBAB7CB62500FAC000923FBA /* BDSUploaderDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSUploaderDefines.h; sourceTree = "<group>"; };
  3683. EBAB7CB72500FAC000923FBA /* BDSASRDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSASRDefines.h; sourceTree = "<group>"; };
  3684. EBAB7CB82500FAC000923FBA /* BDSUploaderParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSUploaderParameters.h; sourceTree = "<group>"; };
  3685. EBAB7CB92500FAC000923FBA /* BDSWakeupDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSWakeupDefines.h; sourceTree = "<group>"; };
  3686. EBAB7CBB2500FAC000923FBA /* BDRecognizerViewParamsObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDRecognizerViewParamsObject.h; sourceTree = "<group>"; };
  3687. EBAB7CBC2500FAC000923FBA /* BDRecognizerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDRecognizerViewController.h; sourceTree = "<group>"; };
  3688. EBAB7CBD2500FAC000923FBA /* BDTheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDTheme.h; sourceTree = "<group>"; };
  3689. EBAB7CBE2500FAC000923FBA /* BDRecognizerViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDRecognizerViewDelegate.h; sourceTree = "<group>"; };
  3690. EBAB7CC02500FAC000923FBA /* BDSSynthesizerStatusNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSSynthesizerStatusNotifications.h; sourceTree = "<group>"; };
  3691. EBAB7CC12500FAC000923FBA /* BDSSpeechSynthesizerDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSSpeechSynthesizerDelegate.h; sourceTree = "<group>"; };
  3692. EBAB7CC22500FAC000923FBA /* BDS_EttsModelManagerInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDS_EttsModelManagerInterface.h; sourceTree = "<group>"; };
  3693. EBAB7CC32500FAC000923FBA /* BDSBuiltInPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSBuiltInPlayer.h; sourceTree = "<group>"; };
  3694. EBAB7CC42500FAC000923FBA /* BDSMixedModeSynthesizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSMixedModeSynthesizer.h; sourceTree = "<group>"; };
  3695. EBAB7CC52500FAC000923FBA /* BDSSpeechSynthesizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSSpeechSynthesizer.h; sourceTree = "<group>"; };
  3696. EBAB7CC62500FAC000923FBA /* BDSSpeechSynthesizerParams.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSSpeechSynthesizerParams.h; sourceTree = "<group>"; };
  3697. EBAB7CC72500FAC000923FBA /* BDSSynthesizerLogLevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSSynthesizerLogLevel.h; sourceTree = "<group>"; };
  3698. EBAB7CC82500FAC000923FBA /* BDSTTSEventManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSTTSEventManager.h; sourceTree = "<group>"; };
  3699. EBAB7CC92500FAC000923FBA /* BDSSpeechSynthesizerErrors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BDSSpeechSynthesizerErrors.h; sourceTree = "<group>"; };
  3700. EBAB7CCB2500FAC000923FBA /* libBaiduSpeechSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libBaiduSpeechSDK.a; sourceTree = "<group>"; };
  3701. EBAB7CCC2500FAC000923FBA /* .gitignore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
  3702. EBAB7CD02500FB2600923FBA /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
  3703. EBAB7CD32500FB3E00923FBA /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  3704. EBAB7CD52500FB4600923FBA /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  3705. EBAB7CDA2500FB6600923FBA /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  3706. EBAB7CDB2500FB6E00923FBA /* libiconv.2.4.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.2.4.0.tbd; path = usr/lib/libiconv.2.4.0.tbd; sourceTree = SDKROOT; };
  3707. EBAB7CDC2500FB7900923FBA /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  3708. EBAB7CDD2500FB8600923FBA /* libz.1.2.5.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.1.2.5.tbd; path = usr/lib/libz.1.2.5.tbd; sourceTree = SDKROOT; };
  3709. EBAB7CDE2500FC1B00923FBA /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  3710. EBABAC83248B2FDF0033B985 /* CLSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CLSlider.h; sourceTree = "<group>"; };
  3711. EBABAC84248B2FDF0033B985 /* CLSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CLSlider.m; sourceTree = "<group>"; };
  3712. EBABAC86248B30E50033B985 /* BookReadFontAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookReadFontAlert.m; sourceTree = "<group>"; };
  3713. EBABAC87248B30E50033B985 /* BookReadFontAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookReadFontAlert.xib; sourceTree = "<group>"; };
  3714. EBABAC88248B30E50033B985 /* BookReadFontAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookReadFontAlert.h; sourceTree = "<group>"; };
  3715. EBABAC90248B7A300033B985 /* HKTransitionPush.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HKTransitionPush.m; sourceTree = "<group>"; };
  3716. EBABAC91248B7A300033B985 /* HKTransitionPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HKTransitionPop.m; sourceTree = "<group>"; };
  3717. EBABAC92248B7A300033B985 /* HKTransitionPush.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HKTransitionPush.h; sourceTree = "<group>"; };
  3718. EBABAC93248B7A300033B985 /* HKTransitionPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HKTransitionPop.h; sourceTree = "<group>"; };
  3719. EBABAC95248B7A300033B985 /* NSObject+hkvc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+hkvc.m"; sourceTree = "<group>"; };
  3720. EBABAC96248B7A300033B985 /* NSObject+hkvc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+hkvc.h"; sourceTree = "<group>"; };
  3721. EBABAC97248B7A300033B985 /* HKMarco.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HKMarco.h; sourceTree = "<group>"; };
  3722. EBABAC98248B7A300033B985 /* HKFloatManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HKFloatManager.m; sourceTree = "<group>"; };
  3723. EBABAC9A248B7A300033B985 /* HKFloatBall.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HKFloatBall.m; sourceTree = "<group>"; };
  3724. EBABAC9B248B7A300033B985 /* HKFloatAreaView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HKFloatAreaView.h; sourceTree = "<group>"; };
  3725. EBABAC9C248B7A300033B985 /* HKFloatAreaView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HKFloatAreaView.m; sourceTree = "<group>"; };
  3726. EBABAC9D248B7A300033B985 /* HKFloatBall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HKFloatBall.h; sourceTree = "<group>"; };
  3727. EBABAC9E248B7A300033B985 /* HKFloatManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HKFloatManager.h; sourceTree = "<group>"; };
  3728. EBB2402B2480A79700EECD15 /* BookPeriodicaListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookPeriodicaListVC.h; sourceTree = "<group>"; };
  3729. EBB2402C2480A79700EECD15 /* BookPeriodicaListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookPeriodicaListVC.m; sourceTree = "<group>"; };
  3730. EBB2402E2480B46A00EECD15 /* BookPeriodicaListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookPeriodicaListCell.h; sourceTree = "<group>"; };
  3731. EBB2402F2480B46A00EECD15 /* BookPeriodicaListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookPeriodicaListCell.m; sourceTree = "<group>"; };
  3732. EBB240302480B46A00EECD15 /* BookPeriodicaListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookPeriodicaListCell.xib; sourceTree = "<group>"; };
  3733. EBB360BC250736FC0018C830 /* BookListenModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookListenModel.h; sourceTree = "<group>"; };
  3734. EBB360BD250736FC0018C830 /* BookListenModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookListenModel.m; sourceTree = "<group>"; };
  3735. EBB588CC252064B9005B3988 /* BookGongzhSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookGongzhSearchVC.h; sourceTree = "<group>"; };
  3736. EBB588CD252064B9005B3988 /* BookGongzhSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookGongzhSearchVC.m; sourceTree = "<group>"; };
  3737. EBB588D025208A70005B3988 /* BookProblemModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookProblemModel.h; sourceTree = "<group>"; };
  3738. EBB588D125208A70005B3988 /* BookProblemModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookProblemModel.m; sourceTree = "<group>"; };
  3739. EBB6883823C9C0C300E24DD9 /* MMDatabaseConn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMDatabaseConn.m; sourceTree = "<group>"; };
  3740. EBB6883923C9C0C300E24DD9 /* MMDatabaseConn+Initial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MMDatabaseConn+Initial.h"; sourceTree = "<group>"; };
  3741. EBB6883A23C9C0C300E24DD9 /* MMDatabaseConn+Initial.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MMDatabaseConn+Initial.m"; sourceTree = "<group>"; };
  3742. EBB6883B23C9C0C300E24DD9 /* MMDatabaseConn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMDatabaseConn.h; sourceTree = "<group>"; };
  3743. EBB6883D23C9C0C300E24DD9 /* MMRichTextConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichTextConfig.h; sourceTree = "<group>"; };
  3744. EBB6883E23C9C0C300E24DD9 /* MMRichTextConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichTextConfig.m; sourceTree = "<group>"; };
  3745. EBB6883F23C9C0C300E24DD9 /* UtilMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilMacro.h; sourceTree = "<group>"; };
  3746. EBB6884123C9C0C300E24DD9 /* MMDraftUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMDraftUtil.h; sourceTree = "<group>"; };
  3747. EBB6884223C9C0C300E24DD9 /* MMRichContentUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichContentUtil.m; sourceTree = "<group>"; };
  3748. EBB6884323C9C0C300E24DD9 /* MMFileUploadUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMFileUploadUtil.h; sourceTree = "<group>"; };
  3749. EBB6884423C9C0C300E24DD9 /* MMFileUploadUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMFileUploadUtil.m; sourceTree = "<group>"; };
  3750. EBB6884523C9C0C300E24DD9 /* MMRichContentUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichContentUtil.h; sourceTree = "<group>"; };
  3751. EBB6884623C9C0C300E24DD9 /* MMDraftUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMDraftUtil.m; sourceTree = "<group>"; };
  3752. EBB6884923C9C0C300E24DD9 /* MMBaseRichContentModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMBaseRichContentModel.h; sourceTree = "<group>"; };
  3753. EBB6884A23C9C0C300E24DD9 /* MMRichImageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichImageModel.m; sourceTree = "<group>"; };
  3754. EBB6884B23C9C0C300E24DD9 /* MMDraftModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMDraftModel.h; sourceTree = "<group>"; };
  3755. EBB6884C23C9C0C300E24DD9 /* MMRichTitleModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichTitleModel.m; sourceTree = "<group>"; };
  3756. EBB6884D23C9C0C300E24DD9 /* MMRichTextModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichTextModel.h; sourceTree = "<group>"; };
  3757. EBB6884E23C9C0C300E24DD9 /* MMBaseRichContentModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMBaseRichContentModel.m; sourceTree = "<group>"; };
  3758. EBB6884F23C9C0C300E24DD9 /* MMRichTitleModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichTitleModel.h; sourceTree = "<group>"; };
  3759. EBB6885023C9C0C300E24DD9 /* MMDraftModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMDraftModel.m; sourceTree = "<group>"; };
  3760. EBB6885123C9C0C300E24DD9 /* MMRichImageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichImageModel.h; sourceTree = "<group>"; };
  3761. EBB6885223C9C0C300E24DD9 /* MMRichTextModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichTextModel.m; sourceTree = "<group>"; };
  3762. EBB6885423C9C0C300E24DD9 /* MMBaseRichContentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMBaseRichContentCell.h; sourceTree = "<group>"; };
  3763. EBB6885523C9C0C300E24DD9 /* MMRichTextCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichTextCell.h; sourceTree = "<group>"; };
  3764. EBB6885623C9C0C300E24DD9 /* MMTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMTextView.m; sourceTree = "<group>"; };
  3765. EBB6885723C9C0C300E24DD9 /* MMRichTitleCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichTitleCell.m; sourceTree = "<group>"; };
  3766. EBB6885823C9C0C300E24DD9 /* UITextView+RCSBackWord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+RCSBackWord.h"; sourceTree = "<group>"; };
  3767. EBB6885923C9C0C300E24DD9 /* MMRichImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichImageCell.h; sourceTree = "<group>"; };
  3768. EBB6885A23C9C0C300E24DD9 /* MMRichEditAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichEditAccessoryView.m; sourceTree = "<group>"; };
  3769. EBB6885B23C9C0C300E24DD9 /* MMPlaceHolderTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMPlaceHolderTextView.m; sourceTree = "<group>"; };
  3770. EBB6885C23C9C0C300E24DD9 /* MMRichTitleCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichTitleCell.h; sourceTree = "<group>"; };
  3771. EBB6885D23C9C0C300E24DD9 /* MMTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMTextView.h; sourceTree = "<group>"; };
  3772. EBB6885E23C9C0C300E24DD9 /* MMRichTextCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichTextCell.m; sourceTree = "<group>"; };
  3773. EBB6885F23C9C0C300E24DD9 /* MMBaseRichContentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMBaseRichContentCell.m; sourceTree = "<group>"; };
  3774. EBB6886023C9C0C300E24DD9 /* UITextView+RCSBackWord.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+RCSBackWord.m"; sourceTree = "<group>"; };
  3775. EBB6886123C9C0C300E24DD9 /* MMPlaceHolderTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMPlaceHolderTextView.h; sourceTree = "<group>"; };
  3776. EBB6886223C9C0C300E24DD9 /* MMRichEditAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMRichEditAccessoryView.h; sourceTree = "<group>"; };
  3777. EBB6886323C9C0C300E24DD9 /* MMRichImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMRichImageCell.m; sourceTree = "<group>"; };
  3778. EBB6886523C9C0C300E24DD9 /* NSString+NSDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+NSDate.m"; sourceTree = "<group>"; };
  3779. EBB6886623C9C0C300E24DD9 /* UIImage+Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Util.h"; sourceTree = "<group>"; };
  3780. EBB6886723C9C0C300E24DD9 /* NSString+NSDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+NSDate.h"; sourceTree = "<group>"; };
  3781. EBB6886823C9C0C300E24DD9 /* UIImage+Util.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Util.m"; sourceTree = "<group>"; };
  3782. EBB6887F23C9C1C900E24DD9 /* RichTextEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RichTextEditViewController.m; sourceTree = "<group>"; };
  3783. EBB6888023C9C1C900E24DD9 /* RichTextEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RichTextEditViewController.h; sourceTree = "<group>"; };
  3784. EBB6888223C9E4DD00E24DD9 /* RichModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RichModel.h; sourceTree = "<group>"; };
  3785. EBB6888323C9E4DD00E24DD9 /* RichModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RichModel.m; sourceTree = "<group>"; };
  3786. EBB83E4823B358DD00A8C4BC /* ChangeTopicVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChangeTopicVC.h; sourceTree = "<group>"; };
  3787. EBB83E4923B358DD00A8C4BC /* ChangeTopicVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChangeTopicVC.m; sourceTree = "<group>"; };
  3788. EBB83E4B23B35FD300A8C4BC /* ChangeTopicCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChangeTopicCell.h; sourceTree = "<group>"; };
  3789. EBB83E4C23B35FD300A8C4BC /* ChangeTopicCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChangeTopicCell.m; sourceTree = "<group>"; };
  3790. EBB83E4D23B35FD300A8C4BC /* ChangeTopicCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChangeTopicCell.xib; sourceTree = "<group>"; };
  3791. EBB83E5023B3668C00A8C4BC /* ChangeTopicModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChangeTopicModel.h; sourceTree = "<group>"; };
  3792. EBB83E5123B3668C00A8C4BC /* ChangeTopicModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChangeTopicModel.m; sourceTree = "<group>"; };
  3793. EBB8D06A251D818A0051C897 /* BookLabelSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookLabelSearchVC.m; sourceTree = "<group>"; };
  3794. EBB8D06B251D818A0051C897 /* BookLabelSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookLabelSearchVC.h; sourceTree = "<group>"; };
  3795. EBB8D06E251E00600051C897 /* BookBillBoardSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookBillBoardSearchVC.m; sourceTree = "<group>"; };
  3796. EBB8D06F251E00600051C897 /* BookBillBoardSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookBillBoardSearchVC.h; sourceTree = "<group>"; };
  3797. EBBC59D725315E4500AB12EF /* LoginPCVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginPCVC.h; sourceTree = "<group>"; };
  3798. EBBC59D825315E4500AB12EF /* LoginPCVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginPCVC.m; sourceTree = "<group>"; };
  3799. EBBC59DB25318F7A00AB12EF /* ShowImageVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShowImageVC.h; sourceTree = "<group>"; };
  3800. EBBC59DC25318F7A00AB12EF /* ShowImageVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShowImageVC.m; sourceTree = "<group>"; };
  3801. EBBD5E5F2519A2D8007B174E /* BookSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookSearchVC.m; sourceTree = "<group>"; };
  3802. EBBD5E602519A2D8007B174E /* BookSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookSearchVC.h; sourceTree = "<group>"; };
  3803. EBBD5E642519A392007B174E /* BookSearchSubVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookSearchSubVC.m; sourceTree = "<group>"; };
  3804. EBBD5E652519A392007B174E /* BookSearchSubVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookSearchSubVC.h; sourceTree = "<group>"; };
  3805. EBBD5E682519CB4E007B174E /* BookLabelAllVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookLabelAllVC.h; sourceTree = "<group>"; };
  3806. EBBD5E692519CB4E007B174E /* BookLabelAllVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookLabelAllVC.m; sourceTree = "<group>"; };
  3807. EBBD5E6C2519D66A007B174E /* BookListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookListCell.h; sourceTree = "<group>"; };
  3808. EBBD5E6D2519D66A007B174E /* BookListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookListCell.m; sourceTree = "<group>"; };
  3809. EBBD5E6E2519D66A007B174E /* BookListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookListCell.xib; sourceTree = "<group>"; };
  3810. EBBD5E722519D8BD007B174E /* BookListSubCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookListSubCell.h; sourceTree = "<group>"; };
  3811. EBBD5E732519D8BD007B174E /* BookListSubCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookListSubCell.m; sourceTree = "<group>"; };
  3812. EBBD5E742519D8BD007B174E /* BookListSubCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookListSubCell.xib; sourceTree = "<group>"; };
  3813. EBBE1CB224E786F200041E04 /* GroupInfoVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupInfoVC.m; sourceTree = "<group>"; };
  3814. EBBE1CB324E786F200041E04 /* GroupInfoVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupInfoVC.h; sourceTree = "<group>"; };
  3815. EBBE1CB524E78CE000041E04 /* GroupEditerVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupEditerVC.h; sourceTree = "<group>"; };
  3816. EBBE1CB624E78CE000041E04 /* GroupEditerVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupEditerVC.m; sourceTree = "<group>"; };
  3817. EBBE1CB824E7C7F100041E04 /* TDGroupDraftListVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDGroupDraftListVC.h; sourceTree = "<group>"; };
  3818. EBBE1CB924E7C7F100041E04 /* TDGroupDraftListVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDGroupDraftListVC.m; sourceTree = "<group>"; };
  3819. EBBE1CBB24E7D4CC00041E04 /* TDGroupDraftSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDGroupDraftSearchVC.m; sourceTree = "<group>"; };
  3820. EBBE1CBC24E7D4CC00041E04 /* TDGroupDraftSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDGroupDraftSearchVC.h; sourceTree = "<group>"; };
  3821. EBBEE5592498599300B135E4 /* PNCircleChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PNCircleChart.m; sourceTree = "<group>"; };
  3822. EBBEE55A2498599300B135E4 /* PNCircleChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PNCircleChart.h; sourceTree = "<group>"; };
  3823. EBBEE55C249859E600B135E4 /* UICountingLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICountingLabel.h; sourceTree = "<group>"; };
  3824. EBBEE55D249859E600B135E4 /* UICountingLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICountingLabel.m; sourceTree = "<group>"; };
  3825. EBBEE55F2498763600B135E4 /* SynopsisCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SynopsisCollectCell.h; sourceTree = "<group>"; };
  3826. EBBEE5602498763600B135E4 /* SynopsisCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SynopsisCollectCell.m; sourceTree = "<group>"; };
  3827. EBBEE5612498763600B135E4 /* SynopsisCollectCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SynopsisCollectCell.xib; sourceTree = "<group>"; };
  3828. EBC2E141243C2DF30054E422 /* EMMsgExtSmartBubbleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EMMsgExtSmartBubbleView.h; sourceTree = "<group>"; };
  3829. EBC2E142243C2DF30054E422 /* EMMsgExtSmartBubbleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EMMsgExtSmartBubbleView.m; sourceTree = "<group>"; };
  3830. EBC2E144243C70520054E422 /* msg_bg_app@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_bg_app@3x.png"; sourceTree = "<group>"; };
  3831. EBC2E145243C70520054E422 /* msg_bg_app@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "msg_bg_app@2x.png"; sourceTree = "<group>"; };
  3832. EBC34D7E2511B41E00A4F133 /* BookTeacherDetailVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookTeacherDetailVC.m; sourceTree = "<group>"; };
  3833. EBC34D7F2511B41E00A4F133 /* BookTeacherDetailVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookTeacherDetailVC.h; sourceTree = "<group>"; };
  3834. EBC34D812511EABD00A4F133 /* BookTeacherHeadCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookTeacherHeadCell.h; sourceTree = "<group>"; };
  3835. EBC34D822511EABD00A4F133 /* BookTeacherHeadCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookTeacherHeadCell.m; sourceTree = "<group>"; };
  3836. EBC34D832511EABD00A4F133 /* BookTeacherHeadCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookTeacherHeadCell.xib; sourceTree = "<group>"; };
  3837. EBC34D8625121CCF00A4F133 /* BookCustomListVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookCustomListVC.h; sourceTree = "<group>"; };
  3838. EBC34D8725121CCF00A4F133 /* BookCustomListVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookCustomListVC.m; sourceTree = "<group>"; };
  3839. EBC4866324B301CC0013AEF7 /* QuickLook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLook.framework; path = System/Library/Frameworks/QuickLook.framework; sourceTree = SDKROOT; };
  3840. EBC4866524B3128B0013AEF7 /* BookMeidaModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookMeidaModel.h; sourceTree = "<group>"; };
  3841. EBC4866624B3128B0013AEF7 /* BookMeidaModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookMeidaModel.m; sourceTree = "<group>"; };
  3842. EBC55C5B2441A17200CE4F86 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  3843. EBC64DCF23C6B78D00558368 /* SelectSaveVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectSaveVC.h; sourceTree = "<group>"; };
  3844. EBC64DD023C6B78D00558368 /* SelectSaveVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectSaveVC.m; sourceTree = "<group>"; };
  3845. EBC7BF9223ED2E5200678A66 /* UILabelCopy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UILabelCopy.h; sourceTree = "<group>"; };
  3846. EBC7BF9323ED2E5200678A66 /* UILabelCopy.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UILabelCopy.m; sourceTree = "<group>"; };
  3847. EBC9BFA525343341000BD6F7 /* PushModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PushModel.h; sourceTree = "<group>"; };
  3848. EBC9BFA625343341000BD6F7 /* PushModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PushModel.m; sourceTree = "<group>"; };
  3849. EBCBA9922522DF8100D3E405 /* BookQiKanListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookQiKanListModel.h; sourceTree = "<group>"; };
  3850. EBCBA9932522DF8100D3E405 /* BookQiKanListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookQiKanListModel.m; sourceTree = "<group>"; };
  3851. EBCBA9972522FCFF00D3E405 /* BookQiKanNavModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookQiKanNavModel.m; sourceTree = "<group>"; };
  3852. EBCBA9982522FCFF00D3E405 /* BookQiKanNavModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookQiKanNavModel.h; sourceTree = "<group>"; };
  3853. EBCC208F24B6EC7F001BDCDC /* GroupSquareSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupSquareSubModel.h; sourceTree = "<group>"; };
  3854. EBCC209024B6EC7F001BDCDC /* GroupSquareSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupSquareSubModel.m; sourceTree = "<group>"; };
  3855. EBCC209224B726EC001BDCDC /* UILabel+YBAttributeTextTapAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+YBAttributeTextTapAction.m"; sourceTree = "<group>"; };
  3856. EBCC209324B726EC001BDCDC /* UILabel+YBAttributeTextTapAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+YBAttributeTextTapAction.h"; sourceTree = "<group>"; };
  3857. EBCC49C624EFC47500837F5F /* InterMailEditSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InterMailEditSearchVC.h; sourceTree = "<group>"; };
  3858. EBCC49C724EFC47500837F5F /* InterMailEditSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InterMailEditSearchVC.m; sourceTree = "<group>"; };
  3859. EBCCD86224C2D7CC000D6689 /* MailGroupVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MailGroupVC.m; sourceTree = "<group>"; };
  3860. EBCCD86324C2D7CC000D6689 /* MailGroupVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MailGroupVC.h; sourceTree = "<group>"; };
  3861. EBCCD86824C2DA55000D6689 /* MailChatModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailChatModel.h; sourceTree = "<group>"; };
  3862. EBCCD86924C2DA55000D6689 /* MailChatModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailChatModel.m; sourceTree = "<group>"; };
  3863. EBCCD86B24C2DC57000D6689 /* MailChatVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MailChatVC.h; sourceTree = "<group>"; };
  3864. EBCCD86C24C2DC57000D6689 /* MailChatVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MailChatVC.m; sourceTree = "<group>"; };
  3865. EBCCEC4B2508C3D700DC6B6F /* BookSetPlayTimeAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookSetPlayTimeAlert.h; sourceTree = "<group>"; };
  3866. EBCCEC4C2508C3D700DC6B6F /* BookSetPlayTimeAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookSetPlayTimeAlert.m; sourceTree = "<group>"; };
  3867. EBCCEC4D2508C3D800DC6B6F /* BookSetPlayTimeAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookSetPlayTimeAlert.xib; sourceTree = "<group>"; };
  3868. EBCCEC502508C6D400DC6B6F /* BookSetPlayTimeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSetPlayTimeCell.h; sourceTree = "<group>"; };
  3869. EBCCEC512508C6D400DC6B6F /* BookSetPlayTimeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSetPlayTimeCell.m; sourceTree = "<group>"; };
  3870. EBCCEC522508C6D400DC6B6F /* BookSetPlayTimeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookSetPlayTimeCell.xib; sourceTree = "<group>"; };
  3871. EBCCEC552508CAAE00DC6B6F /* BookSetPlayTimeModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSetPlayTimeModel.h; sourceTree = "<group>"; };
  3872. EBCCEC562508CAAE00DC6B6F /* BookSetPlayTimeModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSetPlayTimeModel.m; sourceTree = "<group>"; };
  3873. EBCE636824AEC7BB004C9B3B /* BookChanelModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookChanelModel.h; sourceTree = "<group>"; };
  3874. EBCE636924AEC7BB004C9B3B /* BookChanelModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookChanelModel.m; sourceTree = "<group>"; };
  3875. EBCE636B24AF2785004C9B3B /* BookChanelleftModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookChanelleftModel.h; sourceTree = "<group>"; };
  3876. EBCE636C24AF2785004C9B3B /* BookChanelleftModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookChanelleftModel.m; sourceTree = "<group>"; };
  3877. EBCE636E24AF281A004C9B3B /* BookChanelRightModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookChanelRightModel.h; sourceTree = "<group>"; };
  3878. EBCE636F24AF281A004C9B3B /* BookChanelRightModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookChanelRightModel.m; sourceTree = "<group>"; };
  3879. EBCE637124AF388D004C9B3B /* BookChanelSubListVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookChanelSubListVC.m; sourceTree = "<group>"; };
  3880. EBCE637224AF388D004C9B3B /* BookChanelSubListVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookChanelSubListVC.h; sourceTree = "<group>"; };
  3881. EBCFA0F523AC6CBC00A62645 /* MyTDTopicUserMoveVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicUserMoveVC.h; sourceTree = "<group>"; };
  3882. EBCFA0F623AC6CBC00A62645 /* MyTDTopicUserMoveVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicUserMoveVC.m; sourceTree = "<group>"; };
  3883. EBCFA0F823ACEBE600A62645 /* MyTDTopicCreateVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicCreateVC.h; sourceTree = "<group>"; };
  3884. EBCFA0F923ACEBE600A62645 /* MyTDTopicCreateVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicCreateVC.m; sourceTree = "<group>"; };
  3885. EBCFA0FB23ACF06A00A62645 /* MyTDTopicSelectExtentVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyTDTopicSelectExtentVC.h; sourceTree = "<group>"; };
  3886. EBCFA0FC23ACF06A00A62645 /* MyTDTopicSelectExtentVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyTDTopicSelectExtentVC.m; sourceTree = "<group>"; };
  3887. EBCFCDE025184621002CD1B8 /* HomeSchoolContentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeSchoolContentCell.h; sourceTree = "<group>"; };
  3888. EBCFCDE125184621002CD1B8 /* HomeSchoolContentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeSchoolContentCell.m; sourceTree = "<group>"; };
  3889. EBCFCDE225184621002CD1B8 /* HomeSchoolContentCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeSchoolContentCell.xib; sourceTree = "<group>"; };
  3890. EBCFCDE625185001002CD1B8 /* HomeSchollVideoVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeSchollVideoVC.h; sourceTree = "<group>"; };
  3891. EBCFCDE725185001002CD1B8 /* HomeSchollVideoVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeSchollVideoVC.m; sourceTree = "<group>"; };
  3892. EBD29F2625021AF300AEB04C /* BookListDetailVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookListDetailVC.m; sourceTree = "<group>"; };
  3893. EBD29F2725021AF300AEB04C /* BookListDetailVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookListDetailVC.h; sourceTree = "<group>"; };
  3894. EBD29F2925022A1600AEB04C /* BookDetail.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = BookDetail.storyboard; sourceTree = "<group>"; };
  3895. EBD29F2B25022B8C00AEB04C /* BookListenVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookListenVC.h; sourceTree = "<group>"; };
  3896. EBD29F2C25022B8C00AEB04C /* BookListenVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookListenVC.m; sourceTree = "<group>"; };
  3897. EBD29F2E2502420A00AEB04C /* BookListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookListModel.h; sourceTree = "<group>"; };
  3898. EBD29F2F2502420A00AEB04C /* BookListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookListModel.m; sourceTree = "<group>"; };
  3899. EBD29F8125025A0200AEB04C /* bds_easr_wakeup_words.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_wakeup_words.dat; sourceTree = "<group>"; };
  3900. EBD29F8225025A0200AEB04C /* Chinese_Text.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = Chinese_Text.dat; sourceTree = "<group>"; };
  3901. EBD29F8325025A0200AEB04C /* Chinese_Speech_Male.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = Chinese_Speech_Male.dat; sourceTree = "<group>"; };
  3902. EBD29F8525025A0200AEB04C /* bds_easr_mfe_dnn.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_mfe_dnn.dat; sourceTree = "<group>"; };
  3903. EBD29F8625025A0200AEB04C /* bd_etts_common_text_txt_all_mand_eng_middle_big_v3.4.2_20190710.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bd_etts_common_text_txt_all_mand_eng_middle_big_v3.4.2_20190710.dat; sourceTree = "<group>"; };
  3904. EBD29F8A25025A0300AEB04C /* bds_easr_input_model.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_input_model.dat; sourceTree = "<group>"; };
  3905. EBD29F8E25025A0400AEB04C /* English_Speech_Female.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = English_Speech_Female.dat; sourceTree = "<group>"; };
  3906. EBD29F8F25025A0400AEB04C /* English_Speech_Male.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = English_Speech_Male.dat; sourceTree = "<group>"; };
  3907. EBD29F9025025A0400AEB04C /* Chinese_And_English_Text.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = Chinese_And_English_Text.dat; sourceTree = "<group>"; };
  3908. EBD29F9225025A0400AEB04C /* bds_easr_dnn_wakeup_model.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_dnn_wakeup_model.dat; sourceTree = "<group>"; };
  3909. EBD29F9325025A0400AEB04C /* bds_easr_mfe_cmvn.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bds_easr_mfe_cmvn.dat; sourceTree = "<group>"; };
  3910. EBD29F9425025A0400AEB04C /* English_Text.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = English_Text.dat; sourceTree = "<group>"; };
  3911. EBD29F9625025A0500AEB04C /* bds_license.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bds_license.dat; sourceTree = "<group>"; };
  3912. EBD29F9725025A0500AEB04C /* Chinese_And_English_Speech_Male.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = Chinese_And_English_Speech_Male.dat; sourceTree = "<group>"; };
  3913. EBD29F9825025A0500AEB04C /* chinese_speech.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = chinese_speech.dat; sourceTree = "<group>"; };
  3914. EBD29F9A25025A0500AEB04C /* bds_easr_gramm.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bds_easr_gramm.dat; sourceTree = "<group>"; };
  3915. EBD29F9B25025A0600AEB04C /* bds_easr_basic_model.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_basic_model.dat; sourceTree = "<group>"; };
  3916. EBD29F9F25025A0600AEB04C /* bd_etts_common_speech_m15_mand_eng_high_am-mgc_v3.6.0_20190117.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = "bd_etts_common_speech_m15_mand_eng_high_am-mgc_v3.6.0_20190117.dat"; sourceTree = "<group>"; };
  3917. EBD4A1F8250B54FD0088D94F /* BookListenSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookListenSubModel.h; sourceTree = "<group>"; };
  3918. EBD4A1F9250B54FD0088D94F /* BookListenSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookListenSubModel.m; sourceTree = "<group>"; };
  3919. EBD4A1FB250B5B4D0088D94F /* BookRecommendModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookRecommendModel.h; sourceTree = "<group>"; };
  3920. EBD4A1FC250B5B4D0088D94F /* BookRecommendModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookRecommendModel.m; sourceTree = "<group>"; };
  3921. EBD537AA24908CD3000EDF2B /* HomeTeacherCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeTeacherCell.h; sourceTree = "<group>"; };
  3922. EBD537AB24908CD3000EDF2B /* HomeTeacherCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeTeacherCell.m; sourceTree = "<group>"; };
  3923. EBD537AC24908CD3000EDF2B /* HomeTeacherCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeTeacherCell.xib; sourceTree = "<group>"; };
  3924. EBD537AF2490A709000EDF2B /* BookTeacherListVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookTeacherListVC.h; sourceTree = "<group>"; };
  3925. EBD537B02490A709000EDF2B /* BookTeacherListVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookTeacherListVC.m; sourceTree = "<group>"; };
  3926. EBD537B22490AE1D000EDF2B /* BookListenDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookListenDetailVC.h; sourceTree = "<group>"; };
  3927. EBD537B32490AE1D000EDF2B /* BookListenDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookListenDetailVC.m; sourceTree = "<group>"; };
  3928. EBD6230E25148231007FF6BC /* IndexGoodBookCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IndexGoodBookCell.h; sourceTree = "<group>"; };
  3929. EBD6230F25148231007FF6BC /* IndexGoodBookCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IndexGoodBookCell.m; sourceTree = "<group>"; };
  3930. EBD6231025148231007FF6BC /* IndexGoodBookCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = IndexGoodBookCell.xib; sourceTree = "<group>"; };
  3931. EBD623142514A174007FF6BC /* home.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = home.storyboard; sourceTree = "<group>"; };
  3932. EBD623172514A21C007FF6BC /* IndexMoreVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IndexMoreVC.h; sourceTree = "<group>"; };
  3933. EBD623182514A21C007FF6BC /* IndexMoreVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IndexMoreVC.m; sourceTree = "<group>"; };
  3934. EBD623A925159A66007FF6BC /* WMZPageLoopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZPageLoopView.h; sourceTree = "<group>"; };
  3935. EBD623AA25159A66007FF6BC /* WMZPageNaviBtn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZPageNaviBtn.h; sourceTree = "<group>"; };
  3936. EBD623AB25159A66007FF6BC /* WMZPageLoopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZPageLoopView.m; sourceTree = "<group>"; };
  3937. EBD623AC25159A66007FF6BC /* WMZPageNaviBtn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZPageNaviBtn.m; sourceTree = "<group>"; };
  3938. EBD623AE25159A66007FF6BC /* WMZPageScroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZPageScroller.h; sourceTree = "<group>"; };
  3939. EBD623AF25159A66007FF6BC /* WMZPageConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZPageConfig.h; sourceTree = "<group>"; };
  3940. EBD623B025159A66007FF6BC /* WMZPageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZPageController.h; sourceTree = "<group>"; };
  3941. EBD623B125159A66007FF6BC /* NSObject+SafeKVO.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+SafeKVO.m"; sourceTree = "<group>"; };
  3942. EBD623B225159A66007FF6BC /* WMZPageParam.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZPageParam.m; sourceTree = "<group>"; };
  3943. EBD623B325159A66007FF6BC /* WMZPageProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZPageProtocol.h; sourceTree = "<group>"; };
  3944. EBD623B425159A66007FF6BC /* UIView+PageRect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+PageRect.h"; sourceTree = "<group>"; };
  3945. EBD623B525159A66007FF6BC /* WMZPageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZPageController.m; sourceTree = "<group>"; };
  3946. EBD623B625159A66007FF6BC /* WMZPageScroller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZPageScroller.m; sourceTree = "<group>"; };
  3947. EBD623B725159A66007FF6BC /* NSObject+SafeKVO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+SafeKVO.h"; sourceTree = "<group>"; };
  3948. EBD623B825159A66007FF6BC /* WMZPageParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZPageParam.h; sourceTree = "<group>"; };
  3949. EBD623B925159A66007FF6BC /* UIView+PageRect.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+PageRect.m"; sourceTree = "<group>"; };
  3950. EBD623BA25159A66007FF6BC /* PageController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = PageController.bundle; sourceTree = "<group>"; };
  3951. EBD623C42515A9BD007FF6BC /* HomeSchoolVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeSchoolVC.h; sourceTree = "<group>"; };
  3952. EBD623C52515A9BE007FF6BC /* HomeSchoolVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeSchoolVC.m; sourceTree = "<group>"; };
  3953. EBD623D22515CBA3007FF6BC /* SecondViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecondViewController.h; sourceTree = "<group>"; };
  3954. EBD623D32515CBA3007FF6BC /* SegmentHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SegmentHeaderView.h; sourceTree = "<group>"; };
  3955. EBD623D42515CBA3007FF6BC /* SegmentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SegmentView.h; sourceTree = "<group>"; };
  3956. EBD623D62515CBA3007FF6BC /* ThirdViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThirdViewController.h; sourceTree = "<group>"; };
  3957. EBD623D72515CBA3007FF6BC /* SegmentHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SegmentHeaderView.m; sourceTree = "<group>"; };
  3958. EBD623D82515CBA3007FF6BC /* SecondViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SecondViewController.m; sourceTree = "<group>"; };
  3959. EBD623D92515CBA3007FF6BC /* ThirdViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThirdViewController.m; sourceTree = "<group>"; };
  3960. EBD623DB2515CBA3007FF6BC /* SegmentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SegmentView.m; sourceTree = "<group>"; };
  3961. EBD623E22515CC41007FF6BC /* FirstViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstViewController.m; sourceTree = "<group>"; };
  3962. EBD623E32515CC41007FF6BC /* FirstViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstViewController.h; sourceTree = "<group>"; };
  3963. EBD623E62515CE24007FF6BC /* HomeSchoolHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeSchoolHeadView.h; sourceTree = "<group>"; };
  3964. EBD623E72515CE24007FF6BC /* HomeSchoolHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeSchoolHeadView.m; sourceTree = "<group>"; };
  3965. EBD623EA2515FF8F007FF6BC /* HomeSCDetailVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeSCDetailVC.m; sourceTree = "<group>"; };
  3966. EBD623EB2515FF8F007FF6BC /* HomeSCDetailVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeSCDetailVC.h; sourceTree = "<group>"; };
  3967. EBD623EE251603CD007FF6BC /* SegmentVController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SegmentVController.h; sourceTree = "<group>"; };
  3968. EBD623EF251603CD007FF6BC /* SegmentVController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SegmentVController.m; sourceTree = "<group>"; };
  3969. EBD623F2251605F7007FF6BC /* CenterTouchTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CenterTouchTableView.h; sourceTree = "<group>"; };
  3970. EBD623F3251605F7007FF6BC /* CenterTouchTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CenterTouchTableView.m; sourceTree = "<group>"; };
  3971. EBD627D32429DD6500D91C9E /* ChatQrcodeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatQrcodeVC.h; sourceTree = "<group>"; };
  3972. EBD627D42429DD6500D91C9E /* ChatQrcodeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatQrcodeVC.m; sourceTree = "<group>"; };
  3973. EBDD70B923B4876F00AC0BF4 /* MyWorkCarVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyWorkCarVC.h; sourceTree = "<group>"; };
  3974. EBDD70BA23B4876F00AC0BF4 /* MyWorkCarVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyWorkCarVC.m; sourceTree = "<group>"; };
  3975. EBDE08AE2458179B005D426C /* CommonHomeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonHomeVC.h; sourceTree = "<group>"; };
  3976. EBDE08AF2458179B005D426C /* CommonHomeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonHomeVC.m; sourceTree = "<group>"; };
  3977. EBDE08B32458192C005D426C /* Common.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Common.storyboard; sourceTree = "<group>"; };
  3978. EBDE08B82458203A005D426C /* CommonBarCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonBarCell.h; sourceTree = "<group>"; };
  3979. EBDE08B92458203A005D426C /* CommonBarCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonBarCell.m; sourceTree = "<group>"; };
  3980. EBDE08BA2458203A005D426C /* CommonBarCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CommonBarCell.xib; sourceTree = "<group>"; };
  3981. EBDE08BD24582163005D426C /* CommonBarModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonBarModel.h; sourceTree = "<group>"; };
  3982. EBDE08BE24582163005D426C /* CommonBarModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonBarModel.m; sourceTree = "<group>"; };
  3983. EBDE08C024582BA6005D426C /* CommonListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonListCell.h; sourceTree = "<group>"; };
  3984. EBDE08C124582BA6005D426C /* CommonListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonListCell.m; sourceTree = "<group>"; };
  3985. EBDE08C224582BA6005D426C /* CommonListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CommonListCell.xib; sourceTree = "<group>"; };
  3986. EBDE08C5245837BF005D426C /* CommonListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonListModel.h; sourceTree = "<group>"; };
  3987. EBDE08C6245837BF005D426C /* CommonListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonListModel.m; sourceTree = "<group>"; };
  3988. EBDE08C824583D47005D426C /* CommonWorkVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonWorkVC.h; sourceTree = "<group>"; };
  3989. EBDE08C924583D47005D426C /* CommonWorkVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonWorkVC.m; sourceTree = "<group>"; };
  3990. EBDE08CB24583D6B005D426C /* CommonToolVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonToolVC.h; sourceTree = "<group>"; };
  3991. EBDE08CC24583D6B005D426C /* CommonToolVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonToolVC.m; sourceTree = "<group>"; };
  3992. EBDF42A124ADB91D00D5F0E4 /* BookSelectSubModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSelectSubModel.h; sourceTree = "<group>"; };
  3993. EBDF42A224ADB91D00D5F0E4 /* BookSelectSubModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSelectSubModel.m; sourceTree = "<group>"; };
  3994. EBE1E2A72494707B00DB80BF /* BookHotSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookHotSearchVC.h; sourceTree = "<group>"; };
  3995. EBE1E2A82494707B00DB80BF /* BookHotSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookHotSearchVC.m; sourceTree = "<group>"; };
  3996. EBE1E2AA2494747300DB80BF /* BookHotSearchCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookHotSearchCell.h; sourceTree = "<group>"; };
  3997. EBE1E2AB2494747300DB80BF /* BookHotSearchCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookHotSearchCell.m; sourceTree = "<group>"; };
  3998. EBE1E2AC2494747300DB80BF /* BookHotSearchCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookHotSearchCell.xib; sourceTree = "<group>"; };
  3999. EBE1E2AF24947C2800DB80BF /* HomeBigshotCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBigshotCell.h; sourceTree = "<group>"; };
  4000. EBE1E2B024947C2800DB80BF /* HomeBigshotCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBigshotCell.m; sourceTree = "<group>"; };
  4001. EBE1E2B124947C2800DB80BF /* HomeBigshotCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeBigshotCell.xib; sourceTree = "<group>"; };
  4002. EBE1E2B424947E0700DB80BF /* HomeBigshotCollectCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeBigshotCollectCell.h; sourceTree = "<group>"; };
  4003. EBE1E2B524947E0700DB80BF /* HomeBigshotCollectCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeBigshotCollectCell.m; sourceTree = "<group>"; };
  4004. EBE1E2B624947E0800DB80BF /* HomeBigshotCollectCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeBigshotCollectCell.xib; sourceTree = "<group>"; };
  4005. EBE1E2B92494A40100DB80BF /* HomeBigshotListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeBigshotListCell.h; sourceTree = "<group>"; };
  4006. EBE1E2BA2494A40100DB80BF /* HomeBigshotListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeBigshotListCell.xib; sourceTree = "<group>"; };
  4007. EBE1E2BB2494A40200DB80BF /* HomeBigshotListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeBigshotListCell.m; sourceTree = "<group>"; };
  4008. EBE1E2BE2494AE2500DB80BF /* MailCourseVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MailCourseVC.m; sourceTree = "<group>"; };
  4009. EBE1E2BF2494AE2500DB80BF /* MailCourseVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MailCourseVC.h; sourceTree = "<group>"; };
  4010. EBE1E2C12494AF2B00DB80BF /* MailCourseCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MailCourseCell.h; sourceTree = "<group>"; };
  4011. EBE1E2C22494AF2B00DB80BF /* MailCourseCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MailCourseCell.m; sourceTree = "<group>"; };
  4012. EBE1E2C32494AF2B00DB80BF /* MailCourseCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MailCourseCell.xib; sourceTree = "<group>"; };
  4013. EBE1E2C62494BE7500DB80BF /* HFAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HFAlert.xib; sourceTree = "<group>"; };
  4014. EBE1E2C72494BE7500DB80BF /* HFAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HFAlert.m; sourceTree = "<group>"; };
  4015. EBE1E2C82494BE7500DB80BF /* HFAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HFAlert.h; sourceTree = "<group>"; };
  4016. EBE36C3423A7208E002BE674 /* NewTopicCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NewTopicCell.h; sourceTree = "<group>"; };
  4017. EBE36C3523A7208E002BE674 /* NewTopicCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NewTopicCell.m; sourceTree = "<group>"; };
  4018. EBE36C3623A7208E002BE674 /* NewTopicCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NewTopicCell.xib; sourceTree = "<group>"; };
  4019. EBE36C3923A72AFA002BE674 /* NewTopicModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NewTopicModel.h; sourceTree = "<group>"; };
  4020. EBE36C3A23A72AFA002BE674 /* NewTopicModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NewTopicModel.m; sourceTree = "<group>"; };
  4021. EBE36C4223A791A9002BE674 /* ChatMsgWorkModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatMsgWorkModel.h; sourceTree = "<group>"; };
  4022. EBE36C4323A791A9002BE674 /* ChatMsgWorkModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatMsgWorkModel.m; sourceTree = "<group>"; };
  4023. EBE36C4523A863FC002BE674 /* NewTopicTextView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NewTopicTextView.h; sourceTree = "<group>"; };
  4024. EBE36C4623A863FC002BE674 /* NewTopicTextView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NewTopicTextView.m; sourceTree = "<group>"; };
  4025. EBE36C4D23A8E413002BE674 /* TopicListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TopicListModel.h; sourceTree = "<group>"; };
  4026. EBE36C4E23A8E413002BE674 /* TopicListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopicListModel.m; sourceTree = "<group>"; };
  4027. EBE5EF172459478A00AD59C4 /* CommonToolMoveVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonToolMoveVC.h; sourceTree = "<group>"; };
  4028. EBE5EF182459478A00AD59C4 /* CommonToolMoveVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonToolMoveVC.m; sourceTree = "<group>"; };
  4029. EBE5EF1A2459645800AD59C4 /* CommonNoteVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonNoteVC.h; sourceTree = "<group>"; };
  4030. EBE5EF1B2459645800AD59C4 /* CommonNoteVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommonNoteVC.m; sourceTree = "<group>"; };
  4031. EBE5EF1D2459841B00AD59C4 /* MyAccountVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyAccountVC.h; sourceTree = "<group>"; };
  4032. EBE5EF1E2459841B00AD59C4 /* MyAccountVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyAccountVC.m; sourceTree = "<group>"; };
  4033. EBE5EF202459853100AD59C4 /* MyAccountCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyAccountCell.h; sourceTree = "<group>"; };
  4034. EBE5EF212459853100AD59C4 /* MyAccountCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyAccountCell.m; sourceTree = "<group>"; };
  4035. EBE5EF222459853100AD59C4 /* MyAccountCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyAccountCell.xib; sourceTree = "<group>"; };
  4036. EBE5EF2524598F8600AD59C4 /* MyCardVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCardVC.h; sourceTree = "<group>"; };
  4037. EBE5EF2624598F8600AD59C4 /* MyCardVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCardVC.m; sourceTree = "<group>"; };
  4038. EBE96EC0245ABEB6008BDBA8 /* PayAlert.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PayAlert.xib; sourceTree = "<group>"; };
  4039. EBE96EC2245ABECB008BDBA8 /* PayAlert.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PayAlert.h; sourceTree = "<group>"; };
  4040. EBE96EC3245ABECB008BDBA8 /* PayAlert.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PayAlert.m; sourceTree = "<group>"; };
  4041. EBE96EC5245AD77B008BDBA8 /* PayAlertCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PayAlertCell.h; sourceTree = "<group>"; };
  4042. EBE96EC6245AD77B008BDBA8 /* PayAlertCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PayAlertCell.m; sourceTree = "<group>"; };
  4043. EBE96EC7245AD77B008BDBA8 /* PayAlertCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PayAlertCell.xib; sourceTree = "<group>"; };
  4044. EBEC966923D69CC5001115FE /* MyFavoriteCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyFavoriteCell.h; sourceTree = "<group>"; };
  4045. EBEC966A23D69CC5001115FE /* MyFavoriteCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyFavoriteCell.m; sourceTree = "<group>"; };
  4046. EBEC966B23D69CC5001115FE /* MyFavoriteCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyFavoriteCell.xib; sourceTree = "<group>"; };
  4047. EBF1771824826E5100C729DC /* BookPeriodicaCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookPeriodicaCell.h; sourceTree = "<group>"; };
  4048. EBF1771924826E5100C729DC /* BookPeriodicaCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookPeriodicaCell.m; sourceTree = "<group>"; };
  4049. EBF1771A24826E5100C729DC /* BookPeriodicaCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookPeriodicaCell.xib; sourceTree = "<group>"; };
  4050. EBF1A8C623B1EF6700FA6F4B /* WaitWorkModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitWorkModel.h; sourceTree = "<group>"; };
  4051. EBF1A8C723B1EF6700FA6F4B /* WaitWorkModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitWorkModel.m; sourceTree = "<group>"; };
  4052. EBF1A8C923B23A4000FA6F4B /* lock.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = lock.caf; sourceTree = "<group>"; };
  4053. EBF2D54623C2E76600EC35C4 /* MHTopicCommentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHTopicCommentCell.h; sourceTree = "<group>"; };
  4054. EBF2D54723C2E76600EC35C4 /* MHTopicCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHTopicCell.h; sourceTree = "<group>"; };
  4055. EBF2D54823C2E76600EC35C4 /* MHTopicCommentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHTopicCommentCell.m; sourceTree = "<group>"; };
  4056. EBF2D54923C2E76600EC35C4 /* MHTopicCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHTopicCell.m; sourceTree = "<group>"; };
  4057. EBF2D54C23C2E85600EC35C4 /* MHCommentFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHCommentFrame.m; sourceTree = "<group>"; };
  4058. EBF2D54D23C2E85600EC35C4 /* MHCommentFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHCommentFrame.h; sourceTree = "<group>"; };
  4059. EBF2D54E23C2E85600EC35C4 /* MHTopicFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHTopicFrame.m; sourceTree = "<group>"; };
  4060. EBF2D54F23C2E85600EC35C4 /* MHTopicFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHTopicFrame.h; sourceTree = "<group>"; };
  4061. EBF2D55223C2E89F00EC35C4 /* MHComment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHComment.m; sourceTree = "<group>"; };
  4062. EBF2D55323C2E89F00EC35C4 /* MHComment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHComment.h; sourceTree = "<group>"; };
  4063. EBF2D55523C2E8F200EC35C4 /* MHUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHUser.m; sourceTree = "<group>"; };
  4064. EBF2D55623C2E8F200EC35C4 /* MHUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHUser.h; sourceTree = "<group>"; };
  4065. EBF2D55823C2E92A00EC35C4 /* MHTopic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHTopic.h; sourceTree = "<group>"; };
  4066. EBF2D55923C2E92A00EC35C4 /* MHTopic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHTopic.m; sourceTree = "<group>"; };
  4067. EBF2D55B23C2E9AC00EC35C4 /* MHCommentReply.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHCommentReply.m; sourceTree = "<group>"; };
  4068. EBF2D55C23C2E9AC00EC35C4 /* MHCommentReply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHCommentReply.h; sourceTree = "<group>"; };
  4069. EBF2D55E23C2EC1700EC35C4 /* MHDivider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHDivider.h; sourceTree = "<group>"; };
  4070. EBF2D55F23C2EC1800EC35C4 /* MHDivider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHDivider.m; sourceTree = "<group>"; };
  4071. EBF2D56123C2FB8F00EC35C4 /* MHConstant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHConstant.h; sourceTree = "<group>"; };
  4072. EBF2D56223C2FB8F00EC35C4 /* MHConstant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHConstant.m; sourceTree = "<group>"; };
  4073. EBF2FB0324A327320028EA09 /* HomeDayGoodBookVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeDayGoodBookVC.h; sourceTree = "<group>"; };
  4074. EBF2FB0424A327330028EA09 /* HomeDayGoodBookVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeDayGoodBookVC.m; sourceTree = "<group>"; };
  4075. EBF2FB0624A32F880028EA09 /* HomeDayGoodArticeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeDayGoodArticeVC.m; sourceTree = "<group>"; };
  4076. EBF2FB0724A32F880028EA09 /* HomeDayGoodArticeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeDayGoodArticeVC.h; sourceTree = "<group>"; };
  4077. EBF2FB0924A33B6A0028EA09 /* HomeSpeakVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeSpeakVC.h; sourceTree = "<group>"; };
  4078. EBF2FB0A24A33B6A0028EA09 /* HomeSpeakVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeSpeakVC.m; sourceTree = "<group>"; };
  4079. EBF2FB0C24A3457A0028EA09 /* HomeWeiCousreVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeWeiCousreVC.m; sourceTree = "<group>"; };
  4080. EBF2FB0D24A3457A0028EA09 /* HomeWeiCousreVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeWeiCousreVC.h; sourceTree = "<group>"; };
  4081. EBF2FB0F24A3498C0028EA09 /* HomeMingShiVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeMingShiVC.m; sourceTree = "<group>"; };
  4082. EBF2FB1024A3498C0028EA09 /* HomeMingShiVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeMingShiVC.h; sourceTree = "<group>"; };
  4083. EBF2FB1224A34DD10028EA09 /* HomeUserVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeUserVC.h; sourceTree = "<group>"; };
  4084. EBF2FB1324A34DD10028EA09 /* HomeUserVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeUserVC.m; sourceTree = "<group>"; };
  4085. EBF3C5172513356400D40A66 /* IndexSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IndexSearchVC.h; sourceTree = "<group>"; };
  4086. EBF3C5182513356400D40A66 /* IndexSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IndexSearchVC.m; sourceTree = "<group>"; };
  4087. EBF3C52525133D8100D40A66 /* SegmentViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SegmentViewController.m; sourceTree = "<group>"; };
  4088. EBF3C52625133D8100D40A66 /* SegmentViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SegmentViewController.h; sourceTree = "<group>"; };
  4089. EBF3C52C25133FB900D40A66 /* IndexAllVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IndexAllVC.h; sourceTree = "<group>"; };
  4090. EBF3C52D25133FB900D40A66 /* IndexAllVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IndexAllVC.m; sourceTree = "<group>"; };
  4091. EBF3C5302513446A00D40A66 /* IndexSubVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IndexSubVC.h; sourceTree = "<group>"; };
  4092. EBF3C5312513446A00D40A66 /* IndexSubVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IndexSubVC.m; sourceTree = "<group>"; };
  4093. EBF3C53425134DBB00D40A66 /* IndexAllCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IndexAllCell.h; sourceTree = "<group>"; };
  4094. EBF3C53525134DBB00D40A66 /* IndexAllCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IndexAllCell.m; sourceTree = "<group>"; };
  4095. EBF3C53625134DBB00D40A66 /* IndexAllCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = IndexAllCell.xib; sourceTree = "<group>"; };
  4096. EBF3C53C251353DA00D40A66 /* IndexAllModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IndexAllModel.m; sourceTree = "<group>"; };
  4097. EBF3C53D251353DA00D40A66 /* IndexAllModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IndexAllModel.h; sourceTree = "<group>"; };
  4098. EBF48A2F24CFCD0300A91850 /* ChatSearchModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatSearchModel.h; sourceTree = "<group>"; };
  4099. EBF48A3024CFCD0300A91850 /* ChatSearchModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatSearchModel.m; sourceTree = "<group>"; };
  4100. EBF64A74241C73510074FD55 /* WorkFlowFecordSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkFlowFecordSearchVC.h; sourceTree = "<group>"; };
  4101. EBF64A75241C73510074FD55 /* WorkFlowFecordSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WorkFlowFecordSearchVC.m; sourceTree = "<group>"; };
  4102. EBF64A77241C810A0074FD55 /* FecordSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FecordSearchVC.h; sourceTree = "<group>"; };
  4103. EBF64A78241C810A0074FD55 /* FecordSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FecordSearchVC.m; sourceTree = "<group>"; };
  4104. EBF71750247229FA00ED1838 /* PayBookAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PayBookAlert.xib; sourceTree = "<group>"; };
  4105. EBF71751247229FB00ED1838 /* PayBookAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PayBookAlert.h; sourceTree = "<group>"; };
  4106. EBF71752247229FB00ED1838 /* PayBookAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PayBookAlert.m; sourceTree = "<group>"; };
  4107. EBF7175524722D4B00ED1838 /* BookWCDetailVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookWCDetailVC.h; sourceTree = "<group>"; };
  4108. EBF7175624722D4B00ED1838 /* BookWCDetailVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookWCDetailVC.m; sourceTree = "<group>"; };
  4109. EBF717582472355700ED1838 /* PayBookAlertCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PayBookAlertCell.h; sourceTree = "<group>"; };
  4110. EBF717592472355700ED1838 /* PayBookAlertCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PayBookAlertCell.m; sourceTree = "<group>"; };
  4111. EBF7175A2472355700ED1838 /* PayBookAlertCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PayBookAlertCell.xib; sourceTree = "<group>"; };
  4112. EBF7175D247237DF00ED1838 /* BookAlertModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookAlertModel.h; sourceTree = "<group>"; };
  4113. EBF7175E247237DF00ED1838 /* BookAlertModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookAlertModel.m; sourceTree = "<group>"; };
  4114. EBF7176024723CB900ED1838 /* BookCardPayAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookCardPayAlert.h; sourceTree = "<group>"; };
  4115. EBF7176224723CB900ED1838 /* BookCardPayAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookCardPayAlert.m; sourceTree = "<group>"; };
  4116. EBF7176324723CB900ED1838 /* BookCardPayAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookCardPayAlert.xib; sourceTree = "<group>"; };
  4117. EBF7176F24725B7900ED1838 /* BookCardPayAlertCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookCardPayAlertCell.h; sourceTree = "<group>"; };
  4118. EBF7177024725B7900ED1838 /* BookCardPayAlertCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookCardPayAlertCell.m; sourceTree = "<group>"; };
  4119. EBF7177124725B7A00ED1838 /* BookCardPayAlertCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookCardPayAlertCell.xib; sourceTree = "<group>"; };
  4120. EBF7177424725EDE00ED1838 /* BookLoginPayAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BookLoginPayAlert.h; sourceTree = "<group>"; };
  4121. EBF7177524725EDE00ED1838 /* BookLoginPayAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BookLoginPayAlert.m; sourceTree = "<group>"; };
  4122. EBF7177624725EDE00ED1838 /* BookLoginPayAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BookLoginPayAlert.xib; sourceTree = "<group>"; };
  4123. EBF7177924726A4500ED1838 /* HomeWeiCousreCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeWeiCousreCollectCell.h; sourceTree = "<group>"; };
  4124. EBF7177A24726A4500ED1838 /* HomeWeiCousreCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeWeiCousreCollectCell.m; sourceTree = "<group>"; };
  4125. EBF7177B24726A4500ED1838 /* HomeWeiCousreCollectCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeWeiCousreCollectCell.xib; sourceTree = "<group>"; };
  4126. EBFA3763240391A900A584FC /* WebDetailCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WebDetailCell.h; sourceTree = "<group>"; };
  4127. EBFA3764240391A900A584FC /* WebDetailCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WebDetailCell.m; sourceTree = "<group>"; };
  4128. EBFA5EE12491D6F300AD38B0 /* ReplayMeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReplayMeVC.h; sourceTree = "<group>"; };
  4129. EBFA5EE22491D6F300AD38B0 /* ReplayMeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReplayMeVC.m; sourceTree = "<group>"; };
  4130. EBFA5EE42491D8FA00AD38B0 /* ReplayMeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReplayMeCell.h; sourceTree = "<group>"; };
  4131. EBFA5EE52491D8FA00AD38B0 /* ReplayMeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReplayMeCell.m; sourceTree = "<group>"; };
  4132. EBFA5EE62491D8FA00AD38B0 /* ReplayMeCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ReplayMeCell.xib; sourceTree = "<group>"; };
  4133. EBFA5EE92491F9B100AD38B0 /* ReplayMeLikeVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReplayMeLikeVC.h; sourceTree = "<group>"; };
  4134. EBFA5EEA2491F9B100AD38B0 /* ReplayMeLikeVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReplayMeLikeVC.m; sourceTree = "<group>"; };
  4135. EBFA5EF1246E374A00915D5F /* HomeMusicCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeMusicCell.h; sourceTree = "<group>"; };
  4136. EBFA5EF2246E374A00915D5F /* HomeMusicCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeMusicCell.m; sourceTree = "<group>"; };
  4137. EBFA5EF3246E374A00915D5F /* HomeMusicCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeMusicCell.xib; sourceTree = "<group>"; };
  4138. EBFC605823FE52DE00A6874B /* HomeCommentView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeCommentView.h; sourceTree = "<group>"; };
  4139. EBFC605923FE52DE00A6874B /* HomeCommentView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeCommentView.m; sourceTree = "<group>"; };
  4140. EBFC605B23FE52EE00A6874B /* HomeCommentView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeCommentView.xib; sourceTree = "<group>"; };
  4141. EBFDDAD8241B9DA100875D8A /* ReadSearchVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReadSearchVC.h; sourceTree = "<group>"; };
  4142. EBFDDAD9241B9DA100875D8A /* ReadSearchVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReadSearchVC.m; sourceTree = "<group>"; };
  4143. EBFDFE442477610F0046E847 /* BookSelectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSelectCell.h; sourceTree = "<group>"; };
  4144. EBFDFE452477610F0046E847 /* BookSelectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSelectCell.m; sourceTree = "<group>"; };
  4145. EBFDFE462477610F0046E847 /* BookSelectCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookSelectCell.xib; sourceTree = "<group>"; };
  4146. EBFDFE49247762280046E847 /* BookSelectCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSelectCollectCell.h; sourceTree = "<group>"; };
  4147. EBFDFE4A247762280046E847 /* BookSelectCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSelectCollectCell.m; sourceTree = "<group>"; };
  4148. EBFDFE4B247762280046E847 /* BookSelectCollectCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookSelectCollectCell.xib; sourceTree = "<group>"; };
  4149. EBFDFE4E247778CC0046E847 /* BookSelectModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BookSelectModel.h; sourceTree = "<group>"; };
  4150. EBFDFE4F247778CC0046E847 /* BookSelectModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BookSelectModel.m; sourceTree = "<group>"; };
  4151. EBFE261624D934CA00FC4A10 /* NoteDraftVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoteDraftVC.h; sourceTree = "<group>"; };
  4152. EBFE261724D934CA00FC4A10 /* NoteDraftVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoteDraftVC.m; sourceTree = "<group>"; };
  4153. EBFF89BA24CC102D00018E76 /* CommomSearchVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommomSearchVC.m; sourceTree = "<group>"; };
  4154. EBFF89BB24CC102D00018E76 /* CommomSearchVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommomSearchVC.h; sourceTree = "<group>"; };
  4155. EBFFE22724234238008D4312 /* OtherFavoriteVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OtherFavoriteVC.h; sourceTree = "<group>"; };
  4156. EBFFE22824234238008D4312 /* OtherFavoriteVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OtherFavoriteVC.m; sourceTree = "<group>"; };
  4157. /* End PBXFileReference section */
  4158. /* Begin PBXFrameworksBuildPhase section */
  4159. C7D6B9C4235D7D7200770E7C /* Frameworks */ = {
  4160. isa = PBXFrameworksBuildPhase;
  4161. buildActionMask = 2147483647;
  4162. files = (
  4163. EB8E2CF2239666A900CDFBDA /* libopencore-amrwb.a in Frameworks */,
  4164. EBAB7CDF2500FC1B00923FBA /* Accelerate.framework in Frameworks */,
  4165. EBAB7CD82500FB5600923FBA /* CoreLocation.framework in Frameworks */,
  4166. EBAB7CD22500FB3200923FBA /* SystemConfiguration.framework in Frameworks */,
  4167. EBAB7CE02500FD6400923FBA /* libiconv.2.4.0.tbd in Frameworks */,
  4168. EBAB7CD62500FB4600923FBA /* AVFoundation.framework in Frameworks */,
  4169. EBAB7CD92500FB5D00923FBA /* CoreTelephony.framework in Frameworks */,
  4170. EBC4866424B301CC0013AEF7 /* QuickLook.framework in Frameworks */,
  4171. EBAB7CD72500FB4D00923FBA /* CFNetwork.framework in Frameworks */,
  4172. EBAB7CD42500FB3E00923FBA /* AudioToolbox.framework in Frameworks */,
  4173. EB8E2CF3239666A900CDFBDA /* libopencore-amrnb.a in Frameworks */,
  4174. 99467865DA80FC608E42FA68 /* Pods_smartRhino.framework in Frameworks */,
  4175. EBAB7CD12500FB2600923FBA /* GLKit.framework in Frameworks */,
  4176. EBAB7CCE2500FAC000923FBA /* libBaiduSpeechSDK.a in Frameworks */,
  4177. );
  4178. runOnlyForDeploymentPostprocessing = 0;
  4179. };
  4180. /* End PBXFrameworksBuildPhase section */
  4181. /* Begin PBXGroup section */
  4182. 320FF48023A71EE00009043B /* Controller */ = {
  4183. isa = PBXGroup;
  4184. children = (
  4185. C70B6D6323CEBB6A008D5C48 /* ZFReOrderTableView */,
  4186. 327E375F23A9C90900842F47 /* CreateNoteBookVC.h */,
  4187. 327E376023A9C90900842F47 /* CreateNoteBookVC.m */,
  4188. 32580E6723ADF744005DF500 /* FWZGetNoteBookTool.h */,
  4189. 32580E6823ADF744005DF500 /* FWZGetNoteBookTool.m */,
  4190. 32580E5123AB9976005DF500 /* NoteBookDetailVC.h */,
  4191. 32580E5223AB9976005DF500 /* NoteBookDetailVC.m */,
  4192. 32580E5C23ADB3D2005DF500 /* NoteBookSelectFinderVC.h */,
  4193. 32580E5D23ADB3D2005DF500 /* NoteBookSelectFinderVC.m */,
  4194. 32580E6423ADCF35005DF500 /* NoteBooKSelectNoteBookVC.h */,
  4195. 32580E6523ADCF35005DF500 /* NoteBooKSelectNoteBookVC.m */,
  4196. 320FF48123A720C50009043B /* NoteBookVC.h */,
  4197. 320FF48223A720C50009043B /* NoteBookVC.m */,
  4198. EB2B5A74242B36010087E1E7 /* OtherNoteBookVC.h */,
  4199. EB2B5A75242B36010087E1E7 /* OtherNoteBookVC.m */,
  4200. 32C384C023B0E24B00BBC733 /* NoteBookShareVC.h */,
  4201. 32C384C123B0E24B00BBC733 /* NoteBookShareVC.m */,
  4202. 32C384C623B1AE9500BBC733 /* NoteBookCommentVC.h */,
  4203. 32C384C723B1AE9500BBC733 /* NoteBookCommentVC.m */,
  4204. EBC64DCF23C6B78D00558368 /* SelectSaveVC.h */,
  4205. EBC64DD023C6B78D00558368 /* SelectSaveVC.m */,
  4206. EB9BCC0A24EBACD1005D7499 /* SelectSaveSearchVC.h */,
  4207. EB9BCC0B24EBACD1005D7499 /* SelectSaveSearchVC.m */,
  4208. EB50DAE023C8967400A14FED /* ReadListVC.h */,
  4209. EB50DAE123C8967400A14FED /* ReadListVC.m */,
  4210. EB98E7B324061CD00087C4E2 /* NoteBookSearchVC.h */,
  4211. EB98E7B424061CD00087C4E2 /* NoteBookSearchVC.m */,
  4212. EB9BCC1124EBDD91005D7499 /* NoteBookEditSearchVC.h */,
  4213. EB9BCC1024EBDD91005D7499 /* NoteBookEditSearchVC.m */,
  4214. );
  4215. path = Controller;
  4216. sourceTree = "<group>";
  4217. };
  4218. 320FF48423A7281A0009043B /* Model */ = {
  4219. isa = PBXGroup;
  4220. children = (
  4221. 320FF48523A7283B0009043B /* MyNoteBookModel.h */,
  4222. 320FF48623A7283B0009043B /* MyNoteBookModel.m */,
  4223. 32580E5923ACA98A005DF500 /* MyNoteBookDetailModel.h */,
  4224. 32580E5A23ACA98A005DF500 /* MyNoteBookDetailModel.m */,
  4225. );
  4226. path = Model;
  4227. sourceTree = "<group>";
  4228. };
  4229. 324D95FF23A1131900C7D9E8 /* Model */ = {
  4230. isa = PBXGroup;
  4231. children = (
  4232. 324D960323A1139300C7D9E8 /* ChatMsgSearchModel.h */,
  4233. 324D960023A1139300C7D9E8 /* ChatMsgSearchModel.m */,
  4234. 324D960223A1139300C7D9E8 /* ChatMsgSearchModelSub.h */,
  4235. 324D960123A1139300C7D9E8 /* ChatMsgSearchModelSub.m */,
  4236. );
  4237. path = Model;
  4238. sourceTree = "<group>";
  4239. };
  4240. 324D961123A2326300C7D9E8 /* ColletionVC */ = {
  4241. isa = PBXGroup;
  4242. children = (
  4243. 324D961623A2335B00C7D9E8 /* Cell */,
  4244. 324D961523A2333B00C7D9E8 /* Model */,
  4245. 324D961423A2332A00C7D9E8 /* Controller */,
  4246. 324D961223A232A200C7D9E8 /* Favorite.storyboard */,
  4247. C72F38E3236DADDC00933828 /* Setting */,
  4248. );
  4249. path = ColletionVC;
  4250. sourceTree = "<group>";
  4251. };
  4252. 324D961423A2332A00C7D9E8 /* Controller */ = {
  4253. isa = PBXGroup;
  4254. children = (
  4255. 324D961723A233A300C7D9E8 /* MyFavoriteVC.h */,
  4256. 324D961823A233A300C7D9E8 /* MyFavoriteVC.m */,
  4257. EBFFE22724234238008D4312 /* OtherFavoriteVC.h */,
  4258. EBFFE22824234238008D4312 /* OtherFavoriteVC.m */,
  4259. EBAACA912406730C00F44B67 /* MyFavoriteSearchVC.h */,
  4260. EBAACA922406730C00F44B67 /* MyFavoriteSearchVC.m */,
  4261. EB9BCC0D24EBD117005D7499 /* MyFavoriteEditSearchVC.h */,
  4262. EB9BCC0E24EBD117005D7499 /* MyFavoriteEditSearchVC.m */,
  4263. 324D962723A24C7F00C7D9E8 /* MyFavoriteNewFindVC.h */,
  4264. 324D962823A24C7F00C7D9E8 /* MyFavoriteNewFindVC.m */,
  4265. EB05E107240CEDAF00D9E276 /* MyPcUpdata.h */,
  4266. EB05E108240CEDAF00D9E276 /* MyPcUpdata.m */,
  4267. );
  4268. path = Controller;
  4269. sourceTree = "<group>";
  4270. };
  4271. 324D961523A2333B00C7D9E8 /* Model */ = {
  4272. isa = PBXGroup;
  4273. children = (
  4274. 324D962F23A3887100C7D9E8 /* MyFavoriteModel.h */,
  4275. 324D963023A3887100C7D9E8 /* MyFavoriteModel.m */,
  4276. 324D963223A38A4A00C7D9E8 /* MyFavoriteSubModel.h */,
  4277. 324D963323A38A4A00C7D9E8 /* MyFavoriteSubModel.m */,
  4278. 32AB488423A5036E00A1E9F7 /* MyFindModel.h */,
  4279. 32AB488523A5036E00A1E9F7 /* MyFindModel.m */,
  4280. );
  4281. path = Model;
  4282. sourceTree = "<group>";
  4283. };
  4284. 324D961623A2335B00C7D9E8 /* Cell */ = {
  4285. isa = PBXGroup;
  4286. children = (
  4287. 324D962223A245A100C7D9E8 /* MyFavoriteViewCell.h */,
  4288. 324D962323A245A100C7D9E8 /* MyFavoriteViewCell.m */,
  4289. 324D962423A245A100C7D9E8 /* MyFavoriteViewCell.xib */,
  4290. 324D962A23A24E3700C7D9E8 /* FindShareTypeCell.h */,
  4291. 324D962B23A24E3700C7D9E8 /* FindShareTypeCell.m */,
  4292. 324D962C23A24E3700C7D9E8 /* FindShareTypeCell.xib */,
  4293. EBEC966923D69CC5001115FE /* MyFavoriteCell.h */,
  4294. EBEC966A23D69CC5001115FE /* MyFavoriteCell.m */,
  4295. EBEC966B23D69CC5001115FE /* MyFavoriteCell.xib */,
  4296. EB2B5A6F242B0CA40087E1E7 /* MyNewFindUserCell.h */,
  4297. EB2B5A70242B0CA40087E1E7 /* MyNewFindUserCell.m */,
  4298. EB2B5A71242B0CA40087E1E7 /* MyNewFindUserCell.xib */,
  4299. );
  4300. path = Cell;
  4301. sourceTree = "<group>";
  4302. };
  4303. 324D963523A3BD1E00C7D9E8 /* SearchModel */ = {
  4304. isa = PBXGroup;
  4305. children = (
  4306. 324D963623A3BD1E00C7D9E8 /* MyCenterSearch.storyboard */,
  4307. 324D963723A3BD1E00C7D9E8 /* Controller */,
  4308. );
  4309. path = SearchModel;
  4310. sourceTree = "<group>";
  4311. };
  4312. 324D963723A3BD1E00C7D9E8 /* Controller */ = {
  4313. isa = PBXGroup;
  4314. children = (
  4315. 324D963923A3BD5700C7D9E8 /* MyCenterSearchVC.h */,
  4316. 324D963A23A3BD5700C7D9E8 /* MyCenterSearchVC.m */,
  4317. );
  4318. path = Controller;
  4319. sourceTree = "<group>";
  4320. };
  4321. 324D963C23A4C2D400C7D9E8 /* NoteBook */ = {
  4322. isa = PBXGroup;
  4323. children = (
  4324. 327E375923A9C82B00842F47 /* View */,
  4325. 320FF48423A7281A0009043B /* Model */,
  4326. 320FF48023A71EE00009043B /* Controller */,
  4327. 324D963D23A4D47F00C7D9E8 /* NoteBook.storyboard */,
  4328. );
  4329. path = NoteBook;
  4330. sourceTree = "<group>";
  4331. };
  4332. 327E375923A9C82B00842F47 /* View */ = {
  4333. isa = PBXGroup;
  4334. children = (
  4335. EB96B89A23BF573A00EE09D7 /* NoteBookDetailCell.h */,
  4336. EB96B89B23BF573A00EE09D7 /* NoteBookDetailCell.m */,
  4337. EB96B89C23BF573A00EE09D7 /* NoteBookDetailCell.xib */,
  4338. 327E375A23A9C86600842F47 /* NoteBookCell.h */,
  4339. 327E375B23A9C86600842F47 /* NoteBookCell.m */,
  4340. 327E375C23A9C86600842F47 /* NoteBookCell.xib */,
  4341. 327E376223A9D9C900842F47 /* CreateNoteBookCell.h */,
  4342. 327E376323A9D9C900842F47 /* CreateNoteBookCell.m */,
  4343. 327E376423A9D9C900842F47 /* CreateNoteBookCell.xib */,
  4344. 32580E5F23ADB814005DF500 /* NoteBookSelectFinderCell.h */,
  4345. 32580E6023ADB814005DF500 /* NoteBookSelectFinderCell.m */,
  4346. 32580E6123ADB814005DF500 /* NoteBookSelectFinderCell.xib */,
  4347. );
  4348. path = View;
  4349. sourceTree = "<group>";
  4350. };
  4351. 32C384CC23B3413400BBC733 /* Model */ = {
  4352. isa = PBXGroup;
  4353. children = (
  4354. 32C384CD23B3416800BBC733 /* InterLeterModel.h */,
  4355. 32C384CE23B3416800BBC733 /* InterLeterModel.m */,
  4356. );
  4357. path = Model;
  4358. sourceTree = "<group>";
  4359. };
  4360. 6EEED125BD025A163298F81A /* Frameworks */ = {
  4361. isa = PBXGroup;
  4362. children = (
  4363. EBAB7CDE2500FC1B00923FBA /* Accelerate.framework */,
  4364. EBAB7CDD2500FB8600923FBA /* libz.1.2.5.tbd */,
  4365. EBAB7CDC2500FB7900923FBA /* libc++.tbd */,
  4366. EBAB7CDB2500FB6E00923FBA /* libiconv.2.4.0.tbd */,
  4367. EBAB7CDA2500FB6600923FBA /* libsqlite3.0.tbd */,
  4368. EBAB7CD52500FB4600923FBA /* AVFoundation.framework */,
  4369. EBAB7CD32500FB3E00923FBA /* AudioToolbox.framework */,
  4370. EBAB7CD02500FB2600923FBA /* GLKit.framework */,
  4371. EBC4866324B301CC0013AEF7 /* QuickLook.framework */,
  4372. EB0C773F2411DCFB00807684 /* JavaScriptCore.framework */,
  4373. EBA9F909239287DC0013BDDA /* libbz2.tbd */,
  4374. EBA9F906239287CD0013BDDA /* SystemConfiguration.framework */,
  4375. EBA9F904239287C30013BDDA /* Social.framework */,
  4376. EBA9F902239287B70013BDDA /* Security.framework */,
  4377. EBA9F900239287AD0013BDDA /* MobileCoreServices.framework */,
  4378. EBA9F8FE2392879F0013BDDA /* MessageUI.framework */,
  4379. EBA9F8FC239287950013BDDA /* MapKit.framework */,
  4380. EBA9F8FA239287840013BDDA /* ImageIO.framework */,
  4381. EBA9F8F7239287670013BDDA /* CoreText.framework */,
  4382. EBA9F8F52392875E0013BDDA /* CoreTelephony.framework */,
  4383. EBA9F8F3239287550013BDDA /* CoreMotion.framework */,
  4384. EBA9F8F1239287490013BDDA /* CoreLocation.framework */,
  4385. EBA9F8EF2392873A0013BDDA /* CoreData.framework */,
  4386. EBA9F8ED2392872F0013BDDA /* CFNetwork.framework */,
  4387. EBA9F8EB239287220013BDDA /* AddressBook.framework */,
  4388. EBA9F8E9239287180013BDDA /* Accounts.framework */,
  4389. C58A6681238267FD00C3D7C3 /* UIKit.framework */,
  4390. C58A667F238267F500C3D7C3 /* Foundation.framework */,
  4391. 8E51D21316DAB2F2BC17B146 /* Pods_smartRhino.framework */,
  4392. );
  4393. name = Frameworks;
  4394. sourceTree = "<group>";
  4395. };
  4396. BAA835C042F69CE14C297C90 /* Pods */ = {
  4397. isa = PBXGroup;
  4398. children = (
  4399. 08851DEDD839FAF399E8A0D5 /* Pods-smartRhino.debug.xcconfig */,
  4400. A2ECBA5887EB2D678A3A928A /* Pods-smartRhino.release.xcconfig */,
  4401. );
  4402. path = Pods;
  4403. sourceTree = "<group>";
  4404. };
  4405. C56AC4332384D72700D46052 /* EMChat */ = {
  4406. isa = PBXGroup;
  4407. children = (
  4408. C56AC6EE2384DB0D00D46052 /* EaseSDKHelper.h */,
  4409. C56AC7912384DB0F00D46052 /* EaseSDKHelper.m */,
  4410. );
  4411. path = EMChat;
  4412. sourceTree = "<group>";
  4413. };
  4414. C57264782382A3570054EE66 /* ArticleDetailCell */ = {
  4415. isa = PBXGroup;
  4416. children = (
  4417. C572647E2382A6370054EE66 /* ArticleImageCell.h */,
  4418. C572647F2382A6370054EE66 /* ArticleImageCell.m */,
  4419. C57264802382A6370054EE66 /* ArticleImageCell.xib */,
  4420. C57264832382A6520054EE66 /* ArticleTextCell.h */,
  4421. C57264842382A6520054EE66 /* ArticleTextCell.m */,
  4422. C57264852382A6520054EE66 /* ArticleTextCell.xib */,
  4423. );
  4424. path = ArticleDetailCell;
  4425. sourceTree = "<group>";
  4426. };
  4427. C59D0A252382468A007D0760 /* JSONModel */ = {
  4428. isa = PBXGroup;
  4429. children = (
  4430. C59D0A2E2382468A007D0760 /* JSONModel */,
  4431. C59D0A262382468A007D0760 /* JSONModelCategories */,
  4432. C59D0A372382468A007D0760 /* JSONModelLib.h */,
  4433. C59D0A382382468A007D0760 /* JSONModelNetworking */,
  4434. C59D0A292382468A007D0760 /* JSONModelTransformations */,
  4435. );
  4436. path = JSONModel;
  4437. sourceTree = "<group>";
  4438. };
  4439. C59D0A262382468A007D0760 /* JSONModelCategories */ = {
  4440. isa = PBXGroup;
  4441. children = (
  4442. C59D0A282382468A007D0760 /* NSArray+JSONModel.h */,
  4443. C59D0A272382468A007D0760 /* NSArray+JSONModel.m */,
  4444. );
  4445. path = JSONModelCategories;
  4446. sourceTree = "<group>";
  4447. };
  4448. C59D0A292382468A007D0760 /* JSONModelTransformations */ = {
  4449. isa = PBXGroup;
  4450. children = (
  4451. C59D0A2B2382468A007D0760 /* JSONKeyMapper.h */,
  4452. C59D0A2D2382468A007D0760 /* JSONKeyMapper.m */,
  4453. C59D0A2C2382468A007D0760 /* JSONValueTransformer.h */,
  4454. C59D0A2A2382468A007D0760 /* JSONValueTransformer.m */,
  4455. );
  4456. path = JSONModelTransformations;
  4457. sourceTree = "<group>";
  4458. };
  4459. C59D0A2E2382468A007D0760 /* JSONModel */ = {
  4460. isa = PBXGroup;
  4461. children = (
  4462. C59D0A332382468A007D0760 /* JSONModel.h */,
  4463. C59D0A2F2382468A007D0760 /* JSONModel.m */,
  4464. C59D0A302382468A007D0760 /* JSONModelArray.h */,
  4465. C59D0A342382468A007D0760 /* JSONModelArray.m */,
  4466. C59D0A322382468A007D0760 /* JSONModelClassProperty.h */,
  4467. C59D0A352382468A007D0760 /* JSONModelClassProperty.m */,
  4468. C59D0A362382468A007D0760 /* JSONModelError.h */,
  4469. C59D0A312382468A007D0760 /* JSONModelError.m */,
  4470. );
  4471. path = JSONModel;
  4472. sourceTree = "<group>";
  4473. };
  4474. C59D0A382382468A007D0760 /* JSONModelNetworking */ = {
  4475. isa = PBXGroup;
  4476. children = (
  4477. C59D0A3D2382468A007D0760 /* JSONAPI.h */,
  4478. C59D0A3A2382468A007D0760 /* JSONAPI.m */,
  4479. C59D0A3C2382468A007D0760 /* JSONHTTPClient.h */,
  4480. C59D0A392382468A007D0760 /* JSONHTTPClient.m */,
  4481. C59D0A3B2382468A007D0760 /* JSONModel+networking.h */,
  4482. C59D0A3E2382468A007D0760 /* JSONModel+networking.m */,
  4483. );
  4484. path = JSONModelNetworking;
  4485. sourceTree = "<group>";
  4486. };
  4487. C59D0B4C23825DE0007D0760 /* YYKit */ = {
  4488. isa = PBXGroup;
  4489. children = (
  4490. C59D0BA323825DE1007D0760 /* Base */,
  4491. C59D0B4D23825DE0007D0760 /* Cache */,
  4492. C59D0B5623825DE0007D0760 /* Image */,
  4493. C59D0B7223825DE0007D0760 /* Model */,
  4494. C59D0B7823825DE0007D0760 /* Text */,
  4495. C59D0BE423825DE1007D0760 /* Utility */,
  4496. C59D0B7723825DE0007D0760 /* YYKit.h */,
  4497. );
  4498. path = YYKit;
  4499. sourceTree = "<group>";
  4500. };
  4501. C59D0B4D23825DE0007D0760 /* Cache */ = {
  4502. isa = PBXGroup;
  4503. children = (
  4504. C59D0B4E23825DE0007D0760 /* YYDiskCache.m */,
  4505. C59D0B4F23825DE0007D0760 /* YYKVStorage.h */,
  4506. C59D0B5023825DE0007D0760 /* YYCache.m */,
  4507. C59D0B5123825DE0007D0760 /* YYMemoryCache.h */,
  4508. C59D0B5223825DE0007D0760 /* YYDiskCache.h */,
  4509. C59D0B5323825DE0007D0760 /* YYCache.h */,
  4510. C59D0B5423825DE0007D0760 /* YYKVStorage.m */,
  4511. C59D0B5523825DE0007D0760 /* YYMemoryCache.m */,
  4512. );
  4513. path = Cache;
  4514. sourceTree = "<group>";
  4515. };
  4516. C59D0B5623825DE0007D0760 /* Image */ = {
  4517. isa = PBXGroup;
  4518. children = (
  4519. C59D0B5723825DE0007D0760 /* YYImageCache.m */,
  4520. C59D0B5823825DE0007D0760 /* YYImage.h */,
  4521. C59D0B5923825DE0007D0760 /* YYWebImageManager.m */,
  4522. C59D0B5A23825DE0007D0760 /* YYImageCoder.h */,
  4523. C59D0B5B23825DE0007D0760 /* YYFrameImage.h */,
  4524. C59D0B5C23825DE0007D0760 /* YYSpriteSheetImage.m */,
  4525. C59D0B5D23825DE0007D0760 /* YYWebImageOperation.h */,
  4526. C59D0B5E23825DE0007D0760 /* YYAnimatedImageView.h */,
  4527. C59D0B5F23825DE0007D0760 /* YYImage.m */,
  4528. C59D0B6023825DE0007D0760 /* YYImageCache.h */,
  4529. C59D0B6123825DE0007D0760 /* YYImageCoder.m */,
  4530. C59D0B6223825DE0007D0760 /* YYWebImageManager.h */,
  4531. C59D0B6323825DE0007D0760 /* YYFrameImage.m */,
  4532. C59D0B6423825DE0007D0760 /* Categories */,
  4533. C59D0B6F23825DE0007D0760 /* YYAnimatedImageView.m */,
  4534. C59D0B7023825DE0007D0760 /* YYWebImageOperation.m */,
  4535. C59D0B7123825DE0007D0760 /* YYSpriteSheetImage.h */,
  4536. );
  4537. path = Image;
  4538. sourceTree = "<group>";
  4539. };
  4540. C59D0B6423825DE0007D0760 /* Categories */ = {
  4541. isa = PBXGroup;
  4542. children = (
  4543. C59D0B6523825DE0007D0760 /* _YYWebImageSetter.m */,
  4544. C59D0B6623825DE0007D0760 /* UIButton+YYWebImage.h */,
  4545. C59D0B6723825DE0007D0760 /* UIImageView+YYWebImage.h */,
  4546. C59D0B6823825DE0007D0760 /* CALayer+YYWebImage.h */,
  4547. C59D0B6923825DE0007D0760 /* MKAnnotationView+YYWebImage.h */,
  4548. C59D0B6A23825DE0007D0760 /* _YYWebImageSetter.h */,
  4549. C59D0B6B23825DE0007D0760 /* UIButton+YYWebImage.m */,
  4550. C59D0B6C23825DE0007D0760 /* UIImageView+YYWebImage.m */,
  4551. C59D0B6D23825DE0007D0760 /* MKAnnotationView+YYWebImage.m */,
  4552. C59D0B6E23825DE0007D0760 /* CALayer+YYWebImage.m */,
  4553. );
  4554. path = Categories;
  4555. sourceTree = "<group>";
  4556. };
  4557. C59D0B7223825DE0007D0760 /* Model */ = {
  4558. isa = PBXGroup;
  4559. children = (
  4560. C59D0B7323825DE0007D0760 /* YYClassInfo.h */,
  4561. C59D0B7423825DE0007D0760 /* NSObject+YYModel.m */,
  4562. C59D0B7523825DE0007D0760 /* YYClassInfo.m */,
  4563. C59D0B7623825DE0007D0760 /* NSObject+YYModel.h */,
  4564. );
  4565. path = Model;
  4566. sourceTree = "<group>";
  4567. };
  4568. C59D0B7823825DE0007D0760 /* Text */ = {
  4569. isa = PBXGroup;
  4570. children = (
  4571. C59D0B7923825DE0007D0760 /* YYTextView.m */,
  4572. C59D0B7A23825DE0007D0760 /* Component */,
  4573. C59D0B8D23825DE1007D0760 /* YYLabel.m */,
  4574. C59D0B8E23825DE1007D0760 /* YYTextView.h */,
  4575. C59D0B8F23825DE1007D0760 /* String */,
  4576. C59D0BA223825DE1007D0760 /* YYLabel.h */,
  4577. );
  4578. path = Text;
  4579. sourceTree = "<group>";
  4580. };
  4581. C59D0B7A23825DE0007D0760 /* Component */ = {
  4582. isa = PBXGroup;
  4583. children = (
  4584. C59D0B7B23825DE0007D0760 /* YYTextSelectionView.h */,
  4585. C59D0B7C23825DE0007D0760 /* YYTextLine.h */,
  4586. C59D0B7D23825DE0007D0760 /* YYTextMagnifier.m */,
  4587. C59D0B7E23825DE0007D0760 /* YYTextLayout.h */,
  4588. C59D0B7F23825DE0007D0760 /* YYTextKeyboardManager.h */,
  4589. C59D0B8023825DE0007D0760 /* YYTextContainerView.m */,
  4590. C59D0B8123825DE1007D0760 /* YYTextEffectWindow.m */,
  4591. C59D0B8223825DE1007D0760 /* YYTextDebugOption.h */,
  4592. C59D0B8323825DE1007D0760 /* YYTextInput.m */,
  4593. C59D0B8423825DE1007D0760 /* YYTextLayout.m */,
  4594. C59D0B8523825DE1007D0760 /* YYTextMagnifier.h */,
  4595. C59D0B8623825DE1007D0760 /* YYTextLine.m */,
  4596. C59D0B8723825DE1007D0760 /* YYTextSelectionView.m */,
  4597. C59D0B8823825DE1007D0760 /* YYTextEffectWindow.h */,
  4598. C59D0B8923825DE1007D0760 /* YYTextContainerView.h */,
  4599. C59D0B8A23825DE1007D0760 /* YYTextKeyboardManager.m */,
  4600. C59D0B8B23825DE1007D0760 /* YYTextInput.h */,
  4601. C59D0B8C23825DE1007D0760 /* YYTextDebugOption.m */,
  4602. );
  4603. path = Component;
  4604. sourceTree = "<group>";
  4605. };
  4606. C59D0B8F23825DE1007D0760 /* String */ = {
  4607. isa = PBXGroup;
  4608. children = (
  4609. C59D0B9023825DE1007D0760 /* YYTextAttribute.h */,
  4610. C59D0B9123825DE1007D0760 /* YYTextRunDelegate.m */,
  4611. C59D0B9223825DE1007D0760 /* YYTextUtilities.m */,
  4612. C59D0B9323825DE1007D0760 /* NSParagraphStyle+YYText.m */,
  4613. C59D0B9423825DE1007D0760 /* YYTextParser.m */,
  4614. C59D0B9523825DE1007D0760 /* NSAttributedString+YYText.m */,
  4615. C59D0B9623825DE1007D0760 /* UIPasteboard+YYText.m */,
  4616. C59D0B9723825DE1007D0760 /* YYTextRubyAnnotation.h */,
  4617. C59D0B9823825DE1007D0760 /* YYTextArchiver.h */,
  4618. C59D0B9923825DE1007D0760 /* YYTextUtilities.h */,
  4619. C59D0B9A23825DE1007D0760 /* YYTextRunDelegate.h */,
  4620. C59D0B9B23825DE1007D0760 /* YYTextAttribute.m */,
  4621. C59D0B9C23825DE1007D0760 /* NSAttributedString+YYText.h */,
  4622. C59D0B9D23825DE1007D0760 /* YYTextParser.h */,
  4623. C59D0B9E23825DE1007D0760 /* NSParagraphStyle+YYText.h */,
  4624. C59D0B9F23825DE1007D0760 /* YYTextArchiver.m */,
  4625. C59D0BA023825DE1007D0760 /* YYTextRubyAnnotation.m */,
  4626. C59D0BA123825DE1007D0760 /* UIPasteboard+YYText.h */,
  4627. );
  4628. path = String;
  4629. sourceTree = "<group>";
  4630. };
  4631. C59D0BA323825DE1007D0760 /* Base */ = {
  4632. isa = PBXGroup;
  4633. children = (
  4634. C59D0BA423825DE1007D0760 /* YYKitMacro.h */,
  4635. C59D0BA523825DE1007D0760 /* UIKit */,
  4636. C59D0BC223825DE1007D0760 /* Foundation */,
  4637. C59D0BDF23825DE1007D0760 /* Quartz */,
  4638. );
  4639. path = Base;
  4640. sourceTree = "<group>";
  4641. };
  4642. C59D0BA523825DE1007D0760 /* UIKit */ = {
  4643. isa = PBXGroup;
  4644. children = (
  4645. C59D0BA623825DE1007D0760 /* UITextField+YYAdd.m */,
  4646. C59D0BA723825DE1007D0760 /* UIBezierPath+YYAdd.m */,
  4647. C59D0BA823825DE1007D0760 /* UIColor+YYAdd.m */,
  4648. C59D0BA923825DE1007D0760 /* UIControl+YYAdd.h */,
  4649. C59D0BAA23825DE1007D0760 /* UIDevice+YYAdd.m */,
  4650. C59D0BAB23825DE1007D0760 /* UIApplication+YYAdd.m */,
  4651. C59D0BAC23825DE1007D0760 /* UITableView+YYAdd.m */,
  4652. C59D0BAD23825DE1007D0760 /* UIImage+YYAdd.h */,
  4653. C59D0BAE23825DE1007D0760 /* UIScrollView+YYAdd.m */,
  4654. C59D0BAF23825DE1007D0760 /* UIScreen+YYAdd.m */,
  4655. C59D0BB023825DE1007D0760 /* UIView+YYAdd.m */,
  4656. C59D0BB123825DE1007D0760 /* UIFont+YYAdd.h */,
  4657. C59D0BB223825DE1007D0760 /* UIBarButtonItem+YYAdd.m */,
  4658. C59D0BB323825DE1007D0760 /* UIGestureRecognizer+YYAdd.m */,
  4659. C59D0BB423825DE1007D0760 /* UITextField+YYAdd.h */,
  4660. C59D0BB523825DE1007D0760 /* UIColor+YYAdd.h */,
  4661. C59D0BB623825DE1007D0760 /* UIBezierPath+YYAdd.h */,
  4662. C59D0BB723825DE1007D0760 /* UIScreen+YYAdd.h */,
  4663. C59D0BB823825DE1007D0760 /* UIScrollView+YYAdd.h */,
  4664. C59D0BB923825DE1007D0760 /* UITableView+YYAdd.h */,
  4665. C59D0BBA23825DE1007D0760 /* UIImage+YYAdd.m */,
  4666. C59D0BBB23825DE1007D0760 /* UIDevice+YYAdd.h */,
  4667. C59D0BBC23825DE1007D0760 /* UIApplication+YYAdd.h */,
  4668. C59D0BBD23825DE1007D0760 /* UIControl+YYAdd.m */,
  4669. C59D0BBE23825DE1007D0760 /* UIGestureRecognizer+YYAdd.h */,
  4670. C59D0BBF23825DE1007D0760 /* UIBarButtonItem+YYAdd.h */,
  4671. C59D0BC023825DE1007D0760 /* UIFont+YYAdd.m */,
  4672. C59D0BC123825DE1007D0760 /* UIView+YYAdd.h */,
  4673. );
  4674. path = UIKit;
  4675. sourceTree = "<group>";
  4676. };
  4677. C59D0BC223825DE1007D0760 /* Foundation */ = {
  4678. isa = PBXGroup;
  4679. children = (
  4680. C59D0BD323825DE1007D0760 /* NSArray+YYAdd.h */,
  4681. C59D0BC323825DE1007D0760 /* NSArray+YYAdd.m */,
  4682. C59D0BD823825DE1007D0760 /* NSBundle+YYAdd.h */,
  4683. C59D0BC923825DE1007D0760 /* NSBundle+YYAdd.m */,
  4684. C59D0BDD23825DE1007D0760 /* NSData+YYAdd.h */,
  4685. C59D0BCD23825DE1007D0760 /* NSData+YYAdd.m */,
  4686. C59D0BC623825DE1007D0760 /* NSDate+YYAdd.h */,
  4687. C59D0BD523825DE1007D0760 /* NSDate+YYAdd.m */,
  4688. C59D0BCF23825DE1007D0760 /* NSDictionary+YYAdd.h */,
  4689. C59D0BDB23825DE1007D0760 /* NSDictionary+YYAdd.m */,
  4690. C59D0BDA23825DE1007D0760 /* NSKeyedUnarchiver+YYAdd.h */,
  4691. C59D0BD023825DE1007D0760 /* NSKeyedUnarchiver+YYAdd.m */,
  4692. C59D0BC823825DE1007D0760 /* NSNotificationCenter+YYAdd.h */,
  4693. C59D0BD923825DE1007D0760 /* NSNotificationCenter+YYAdd.m */,
  4694. C59D0BD223825DE1007D0760 /* NSNumber+YYAdd.h */,
  4695. C59D0BC423825DE1007D0760 /* NSNumber+YYAdd.m */,
  4696. C59D0BD623825DE1007D0760 /* NSObject+YYAdd.h */,
  4697. C59D0BCA23825DE1007D0760 /* NSObject+YYAdd.m */,
  4698. C59D0BC723825DE1007D0760 /* NSObject+YYAddForARC.h */,
  4699. C59D0BD423825DE1007D0760 /* NSObject+YYAddForARC.m */,
  4700. C59D0BCC23825DE1007D0760 /* NSObject+YYAddForKVO.h */,
  4701. C59D0BDE23825DE1007D0760 /* NSObject+YYAddForKVO.m */,
  4702. C59D0BCB23825DE1007D0760 /* NSString+YYAdd.h */,
  4703. C59D0BD723825DE1007D0760 /* NSString+YYAdd.m */,
  4704. C59D0BDC23825DE1007D0760 /* NSThread+YYAdd.h */,
  4705. C59D0BCE23825DE1007D0760 /* NSThread+YYAdd.m */,
  4706. C59D0BC523825DE1007D0760 /* NSTimer+YYAdd.h */,
  4707. C59D0BD123825DE1007D0760 /* NSTimer+YYAdd.m */,
  4708. );
  4709. path = Foundation;
  4710. sourceTree = "<group>";
  4711. };
  4712. C59D0BDF23825DE1007D0760 /* Quartz */ = {
  4713. isa = PBXGroup;
  4714. children = (
  4715. C59D0BE023825DE1007D0760 /* YYCGUtilities.m */,
  4716. C59D0BE123825DE1007D0760 /* CALayer+YYAdd.m */,
  4717. C59D0BE223825DE1007D0760 /* CALayer+YYAdd.h */,
  4718. C59D0BE323825DE1007D0760 /* YYCGUtilities.h */,
  4719. );
  4720. path = Quartz;
  4721. sourceTree = "<group>";
  4722. };
  4723. C59D0BE423825DE1007D0760 /* Utility */ = {
  4724. isa = PBXGroup;
  4725. children = (
  4726. C59D0BE523825DE1007D0760 /* YYWeakProxy.m */,
  4727. C59D0BE623825DE1007D0760 /* YYAsyncLayer.m */,
  4728. C59D0BE723825DE1007D0760 /* YYKeychain.h */,
  4729. C59D0BE823825DE1007D0760 /* YYDispatchQueuePool.h */,
  4730. C59D0BE923825DE1007D0760 /* YYTransaction.h */,
  4731. C59D0BEA23825DE1007D0760 /* YYThreadSafeDictionary.m */,
  4732. C59D0BEB23825DE1007D0760 /* YYFileHash.h */,
  4733. C59D0BEC23825DE1007D0760 /* YYGestureRecognizer.h */,
  4734. C59D0BED23825DE1007D0760 /* YYSentinel.m */,
  4735. C59D0BEE23825DE1007D0760 /* YYReachability.h */,
  4736. C59D0BEF23825DE1007D0760 /* YYThreadSafeArray.h */,
  4737. C59D0BF023825DE1007D0760 /* YYTimer.h */,
  4738. C59D0BF123825DE1007D0760 /* YYAsyncLayer.h */,
  4739. C59D0BF223825DE1007D0760 /* YYWeakProxy.h */,
  4740. C59D0BF323825DE1007D0760 /* YYThreadSafeDictionary.h */,
  4741. C59D0BF423825DE1007D0760 /* YYTransaction.m */,
  4742. C59D0BF523825DE1007D0760 /* YYDispatchQueuePool.m */,
  4743. C59D0BF623825DE1007D0760 /* YYKeychain.m */,
  4744. C59D0BF723825DE1007D0760 /* YYGestureRecognizer.m */,
  4745. C59D0BF823825DE1007D0760 /* YYFileHash.m */,
  4746. C59D0BF923825DE1007D0760 /* YYTimer.m */,
  4747. C59D0BFA23825DE1007D0760 /* YYThreadSafeArray.m */,
  4748. C59D0BFB23825DE1007D0760 /* YYReachability.m */,
  4749. C59D0BFC23825DE1007D0760 /* YYSentinel.h */,
  4750. );
  4751. path = Utility;
  4752. sourceTree = "<group>";
  4753. };
  4754. C622157E23719C84006F5D7F /* Login */ = {
  4755. isa = PBXGroup;
  4756. children = (
  4757. C7F61625238C068A008AF22D /* Model */,
  4758. C622157F23719C84006F5D7F /* Controller */,
  4759. C622158223719C84006F5D7F /* Login.storyboard */,
  4760. );
  4761. path = Login;
  4762. sourceTree = "<group>";
  4763. };
  4764. C622157F23719C84006F5D7F /* Controller */ = {
  4765. isa = PBXGroup;
  4766. children = (
  4767. C622158123719C84006F5D7F /* LoginVC.h */,
  4768. C622158023719C84006F5D7F /* LoginVC.m */,
  4769. );
  4770. path = Controller;
  4771. sourceTree = "<group>";
  4772. };
  4773. C62215942372C0C0006F5D7F /* MailList */ = {
  4774. isa = PBXGroup;
  4775. children = (
  4776. C62215992372C0E8006F5D7F /* Controller */,
  4777. C62215972372C0E8006F5D7F /* Model */,
  4778. C62215982372C0E8006F5D7F /* View */,
  4779. C62215952372C0CC006F5D7F /* MailList.storyboard */,
  4780. );
  4781. path = MailList;
  4782. sourceTree = "<group>";
  4783. };
  4784. C62215972372C0E8006F5D7F /* Model */ = {
  4785. isa = PBXGroup;
  4786. children = (
  4787. C7954B49237E799200EDC479 /* Addressbookgroup.h */,
  4788. C7954B45237E799100EDC479 /* Addressbookgroup.m */,
  4789. C7954B48237E799200EDC479 /* AddressBookGroupModel.h */,
  4790. C7954B44237E799100EDC479 /* AddressBookGroupModel.m */,
  4791. C7954B46237E799200EDC479 /* Department.h */,
  4792. C7954B47237E799200EDC479 /* Department.m */,
  4793. C7954B4D237EAD0A00EDC479 /* AddressUserModel.h */,
  4794. C7954B4E237EAD0A00EDC479 /* AddressUserModel.m */,
  4795. C5598D1A23865E4500BC7185 /* DepartmentModel.h */,
  4796. C5598D1B23865E4500BC7185 /* DepartmentModel.m */,
  4797. C5598D1D23865E7400BC7185 /* AddressBookGroupsModel.h */,
  4798. C5598D1E23865E7400BC7185 /* AddressBookGroupsModel.m */,
  4799. 32A72DB123BA02510018BA9D /* WZContactModel.h */,
  4800. 32A72DB223BA02510018BA9D /* WZContactModel.m */,
  4801. EB3B6C8024BD985800FA60F8 /* MailModel.h */,
  4802. EB3B6C8124BD985800FA60F8 /* MailModel.m */,
  4803. EB3B6C8324BD993B00FA60F8 /* MailSubModel.h */,
  4804. EB3B6C8424BD993B00FA60F8 /* MailSubModel.m */,
  4805. EBCCD86824C2DA55000D6689 /* MailChatModel.h */,
  4806. EBCCD86924C2DA55000D6689 /* MailChatModel.m */,
  4807. );
  4808. path = Model;
  4809. sourceTree = "<group>";
  4810. };
  4811. C62215982372C0E8006F5D7F /* View */ = {
  4812. isa = PBXGroup;
  4813. children = (
  4814. C622159D2372C27B006F5D7F /* MailListCell.h */,
  4815. C622159E2372C27B006F5D7F /* MailListCell.m */,
  4816. C622159F2372C27B006F5D7F /* MailListCell.xib */,
  4817. C69A8DC02372D45F0098FA26 /* MailListByZuCell.h */,
  4818. C69A8DC12372D45F0098FA26 /* MailListByZuCell.m */,
  4819. C69A8DC22372D45F0098FA26 /* MailListByZuCell.xib */,
  4820. C69A8DC82373AFB50098FA26 /* MailListDetailCell.h */,
  4821. C69A8DC92373AFB50098FA26 /* MailListDetailCell.m */,
  4822. C69A8DCA2373AFB50098FA26 /* MailListDetailCell.xib */,
  4823. EBE1E2C12494AF2B00DB80BF /* MailCourseCell.h */,
  4824. EBE1E2C22494AF2B00DB80BF /* MailCourseCell.m */,
  4825. EBE1E2C32494AF2B00DB80BF /* MailCourseCell.xib */,
  4826. );
  4827. path = View;
  4828. sourceTree = "<group>";
  4829. };
  4830. C62215992372C0E8006F5D7F /* Controller */ = {
  4831. isa = PBXGroup;
  4832. children = (
  4833. EBE1E2BF2494AE2500DB80BF /* MailCourseVC.h */,
  4834. EBE1E2BE2494AE2500DB80BF /* MailCourseVC.m */,
  4835. C62215A22372CC89006F5D7F /* MailListByZuVC.h */,
  4836. C62215A32372CC89006F5D7F /* MailListByZuVC.m */,
  4837. C69A8DC52373AB470098FA26 /* MailListDetailVC.h */,
  4838. C69A8DC62373AB470098FA26 /* MailListDetailVC.m */,
  4839. EB9BBE4B23D1A5D400436A0E /* MailListMoveVC.h */,
  4840. EB9BBE4C23D1A5D400436A0E /* MailListMoveVC.m */,
  4841. EB9BBE4E23D1BF1A00436A0E /* MailListSearchVC.h */,
  4842. EB9BBE4F23D1BF1A00436A0E /* MailListSearchVC.m */,
  4843. EB4B652324C003040041A82C /* MailAddUserSearch.h */,
  4844. EB4B652424C003050041A82C /* MailAddUserSearch.m */,
  4845. EB4B652624C01DCE0041A82C /* MailVerifyVC.h */,
  4846. EB4B652724C01DCE0041A82C /* MailVerifyVC.m */,
  4847. EB0BDF4B244D49F1009F6434 /* MailListSortVC.h */,
  4848. EB0BDF4C244D49F1009F6434 /* MailListSortVC.m */,
  4849. C622159A2372C0F9006F5D7F /* MailListVC.h */,
  4850. C622159B2372C0F9006F5D7F /* MailListVC.m */,
  4851. EB4B652924C04DED0041A82C /* MailEditVC.h */,
  4852. EB4B652A24C04DED0041A82C /* MailEditVC.m */,
  4853. EB3DCA50245552AE000A0189 /* ShareCusVC.h */,
  4854. EB3DCA51245552AE000A0189 /* ShareCusVC.m */,
  4855. EB3DCA4524551B0E000A0189 /* ShareListVC.h */,
  4856. EB3DCA4624551B0E000A0189 /* ShareListVC.m */,
  4857. EB3DCA4D24555299000A0189 /* ShareSysVC.h */,
  4858. EB3DCA4E24555299000A0189 /* ShareSysVC.m */,
  4859. EBA25D4F24D7FA3800CBEBF2 /* ShowSysVC.h */,
  4860. EBA25D4E24D7FA3800CBEBF2 /* ShowSysVC.m */,
  4861. EBA25D5224D81BC200CBEBF2 /* ShowUserVC.h */,
  4862. EBA25D5124D81BC200CBEBF2 /* ShowUserVC.m */,
  4863. EBA25D5424D8255700CBEBF2 /* ShowDesVC.h */,
  4864. EBA25D5524D8255700CBEBF2 /* ShowDesVC.m */,
  4865. EBCCD86324C2D7CC000D6689 /* MailGroupVC.h */,
  4866. EBCCD86224C2D7CC000D6689 /* MailGroupVC.m */,
  4867. EBCCD86B24C2DC57000D6689 /* MailChatVC.h */,
  4868. EBCCD86C24C2DC57000D6689 /* MailChatVC.m */,
  4869. EB4B652F24C19A060041A82C /* MailGroupListVC.h */,
  4870. EB4B653024C19A060041A82C /* MailGroupListVC.m */,
  4871. EB4B653224C19E4B0041A82C /* MailGroupListSerachVC.h */,
  4872. EB4B653324C19E4B0041A82C /* MailGroupListSerachVC.m */,
  4873. );
  4874. path = Controller;
  4875. sourceTree = "<group>";
  4876. };
  4877. C6226FDA236C08E500E2E3BF /* My_Center */ = {
  4878. isa = PBXGroup;
  4879. children = (
  4880. C622712E236C122500E2E3BF /* Controller */,
  4881. C6227131236C122500E2E3BF /* View */,
  4882. C6226FDB236C08F700E2E3BF /* My_Center.storyboard */,
  4883. );
  4884. path = My_Center;
  4885. sourceTree = "<group>";
  4886. };
  4887. C6226FDD236C093300E2E3BF /* Other */ = {
  4888. isa = PBXGroup;
  4889. children = (
  4890. C625AA72236FB2E50010E967 /* Model */,
  4891. C6F2E18D236C333E009E6903 /* Third */,
  4892. C6227120236C11A800E2E3BF /* ThemeManager */,
  4893. C622711C236C0BBC00E2E3BF /* Tool */,
  4894. C62270B1236C0A1800E2E3BF /* Category */,
  4895. C6227047236C09FB00E2E3BF /* Util */,
  4896. );
  4897. path = Other;
  4898. sourceTree = "<group>";
  4899. };
  4900. C6227047236C09FB00E2E3BF /* Util */ = {
  4901. isa = PBXGroup;
  4902. children = (
  4903. C69A8DCD2373BE310098FA26 /* MySearchBar */,
  4904. C6227048236C09FB00E2E3BF /* RefreshView */,
  4905. C622706A236C09FB00E2E3BF /* WQNavigationBar */,
  4906. C622706D236C09FB00E2E3BF /* DGThumbUpButton */,
  4907. C6227072236C09FB00E2E3BF /* StoryboardManager */,
  4908. C6227075236C09FB00E2E3BF /* BlankView */,
  4909. C622707A236C09FB00E2E3BF /* AlertView */,
  4910. C6227080236C09FB00E2E3BF /* Device */,
  4911. C6227083236C09FB00E2E3BF /* LeeTagView */,
  4912. );
  4913. path = Util;
  4914. sourceTree = "<group>";
  4915. };
  4916. C6227048236C09FB00E2E3BF /* RefreshView */ = {
  4917. isa = PBXGroup;
  4918. children = (
  4919. C6227061236C09FB00E2E3BF /* CarRefreshHeadView.h */,
  4920. C622705C236C09FB00E2E3BF /* CarRefreshHeadView.m */,
  4921. C6227068236C09FB00E2E3BF /* CarRefreshHeadView.xib */,
  4922. C622705E236C09FB00E2E3BF /* GHRefreshCollectionView.h */,
  4923. C6227067236C09FB00E2E3BF /* GHRefreshCollectionView.m */,
  4924. C6227049236C09FB00E2E3BF /* GHRefreshFooter.h */,
  4925. C6227060236C09FB00E2E3BF /* GHRefreshFooter.m */,
  4926. C622704A236C09FB00E2E3BF /* GHRefreshHeader.h */,
  4927. C622705F236C09FB00E2E3BF /* GHRefreshHeader.m */,
  4928. C622705D236C09FB00E2E3BF /* GHRefreshTableView.h */,
  4929. C6227069236C09FB00E2E3BF /* GHRefreshTableView.m */,
  4930. C622704B236C09FB00E2E3BF /* MJCarRefreshHeadView */,
  4931. C6227062236C09FB00E2E3BF /* XLDotLoading */,
  4932. );
  4933. path = RefreshView;
  4934. sourceTree = "<group>";
  4935. };
  4936. C622704B236C09FB00E2E3BF /* MJCarRefreshHeadView */ = {
  4937. isa = PBXGroup;
  4938. children = (
  4939. C622704C236C09FB00E2E3BF /* mj_house@3x.png */,
  4940. C622704D236C09FB00E2E3BF /* mj_house_black@3x.png */,
  4941. C622704E236C09FB00E2E3BF /* mj_sun_black@3x.png */,
  4942. C622704F236C09FB00E2E3BF /* mj_sun@2x.png */,
  4943. C6227050236C09FB00E2E3BF /* mj_air@3x.png */,
  4944. C6227051236C09FB00E2E3BF /* mj_air@2x.png */,
  4945. C6227052236C09FB00E2E3BF /* mj_sun@3x.png */,
  4946. C6227053236C09FB00E2E3BF /* mj_sun_black@2x.png */,
  4947. C6227054236C09FB00E2E3BF /* mj_house_black@2x.png */,
  4948. C6227055236C09FB00E2E3BF /* mj_house@2x.png */,
  4949. C6227056236C09FB00E2E3BF /* mj_air_black@3x.png */,
  4950. C6227057236C09FB00E2E3BF /* mj_air_black@2x.png */,
  4951. C6227058236C09FB00E2E3BF /* mj_car@3x.png */,
  4952. C6227059236C09FB00E2E3BF /* mj_car@2x.png */,
  4953. C622705A236C09FB00E2E3BF /* mj_shoe@2x.png */,
  4954. C622705B236C09FB00E2E3BF /* mj_shoe@3x.png */,
  4955. );
  4956. path = MJCarRefreshHeadView;
  4957. sourceTree = "<group>";
  4958. };
  4959. C6227062236C09FB00E2E3BF /* XLDotLoading */ = {
  4960. isa = PBXGroup;
  4961. children = (
  4962. C6227063236C09FB00E2E3BF /* XLDot.m */,
  4963. C6227064236C09FB00E2E3BF /* XLDotLoading.h */,
  4964. C6227065236C09FB00E2E3BF /* XLDot.h */,
  4965. C6227066236C09FB00E2E3BF /* XLDotLoading.m */,
  4966. );
  4967. path = XLDotLoading;
  4968. sourceTree = "<group>";
  4969. };
  4970. C622706A236C09FB00E2E3BF /* WQNavigationBar */ = {
  4971. isa = PBXGroup;
  4972. children = (
  4973. C622706C236C09FB00E2E3BF /* WQNavigationBar.h */,
  4974. C622706B236C09FB00E2E3BF /* WQNavigationBar.m */,
  4975. );
  4976. path = WQNavigationBar;
  4977. sourceTree = "<group>";
  4978. };
  4979. C622706D236C09FB00E2E3BF /* DGThumbUpButton */ = {
  4980. isa = PBXGroup;
  4981. children = (
  4982. C622706E236C09FB00E2E3BF /* DGThumbUpButton.m */,
  4983. C622706F236C09FB00E2E3BF /* DGExplodeAnimationView.m */,
  4984. C6227070236C09FB00E2E3BF /* DGExplodeAnimationView.h */,
  4985. C6227071236C09FB00E2E3BF /* DGThumbUpButton.h */,
  4986. );
  4987. path = DGThumbUpButton;
  4988. sourceTree = "<group>";
  4989. };
  4990. C6227072236C09FB00E2E3BF /* StoryboardManager */ = {
  4991. isa = PBXGroup;
  4992. children = (
  4993. C6227073236C09FB00E2E3BF /* StoryboardManager.h */,
  4994. C6227074236C09FB00E2E3BF /* StoryboardManager.m */,
  4995. );
  4996. path = StoryboardManager;
  4997. sourceTree = "<group>";
  4998. };
  4999. C6227075236C09FB00E2E3BF /* BlankView */ = {
  5000. isa = PBXGroup;
  5001. children = (
  5002. C6227076236C09FB00E2E3BF /* GHBlankView.m */,
  5003. C6227077236C09FB00E2E3BF /* UIView+GHBlank.h */,
  5004. C6227078236C09FB00E2E3BF /* UIView+GHBlank.m */,
  5005. C6227079236C09FB00E2E3BF /* GHBlankView.h */,
  5006. );
  5007. path = BlankView;
  5008. sourceTree = "<group>";
  5009. };
  5010. C622707A236C09FB00E2E3BF /* AlertView */ = {
  5011. isa = PBXGroup;
  5012. children = (
  5013. C622707B236C09FB00E2E3BF /* DatePikerView.m */,
  5014. C622707C236C09FB00E2E3BF /* BSAlertView.m */,
  5015. C622707D236C09FB00E2E3BF /* DatePikerView.xib */,
  5016. C622707E236C09FB00E2E3BF /* DatePikerView.h */,
  5017. C622707F236C09FB00E2E3BF /* BSAlertView.h */,
  5018. );
  5019. path = AlertView;
  5020. sourceTree = "<group>";
  5021. };
  5022. C6227080236C09FB00E2E3BF /* Device */ = {
  5023. isa = PBXGroup;
  5024. children = (
  5025. C6227081236C09FB00E2E3BF /* DeviceInfo.h */,
  5026. C6227082236C09FB00E2E3BF /* DeviceInfo.m */,
  5027. );
  5028. path = Device;
  5029. sourceTree = "<group>";
  5030. };
  5031. C6227083236C09FB00E2E3BF /* LeeTagView */ = {
  5032. isa = PBXGroup;
  5033. children = (
  5034. C6227084236C09FB00E2E3BF /* TagViewModel */,
  5035. C6227087236C09FB00E2E3BF /* TagView */,
  5036. );
  5037. path = LeeTagView;
  5038. sourceTree = "<group>";
  5039. };
  5040. C6227084236C09FB00E2E3BF /* TagViewModel */ = {
  5041. isa = PBXGroup;
  5042. children = (
  5043. C6227085236C09FB00E2E3BF /* LeeTagItemViewModel.h */,
  5044. C6227086236C09FB00E2E3BF /* LeeTagItemViewModel.m */,
  5045. );
  5046. path = TagViewModel;
  5047. sourceTree = "<group>";
  5048. };
  5049. C6227087236C09FB00E2E3BF /* TagView */ = {
  5050. isa = PBXGroup;
  5051. children = (
  5052. C6227088236C09FB00E2E3BF /* LeeTagItem.m */,
  5053. C6227089236C09FB00E2E3BF /* LeeTagView.m */,
  5054. C622708A236C09FB00E2E3BF /* LeeTagItem.h */,
  5055. C622708B236C09FB00E2E3BF /* LeeTagView.h */,
  5056. );
  5057. path = TagView;
  5058. sourceTree = "<group>";
  5059. };
  5060. C62270B1236C0A1800E2E3BF /* Category */ = {
  5061. isa = PBXGroup;
  5062. children = (
  5063. C7743FA523A8CAA500973D70 /* CollectionViewSpaceLayout.h */,
  5064. C7743FA423A8CAA500973D70 /* CollectionViewSpaceLayout.m */,
  5065. C572647223828C5B0054EE66 /* NSArray+NilSafe.h */,
  5066. C572647423828C5C0054EE66 /* NSArray+NilSafe.m */,
  5067. C572647523828C5C0054EE66 /* NSDictionary+NilSafe.h */,
  5068. C572647323828C5C0054EE66 /* NSDictionary+NilSafe.m */,
  5069. C625AA7C236FB9070010E967 /* UIView+Extension.h */,
  5070. C625AA7D236FB9080010E967 /* UIView+Extension.m */,
  5071. C6F2E1EC236D1401009E6903 /* UILabel+Extension.h */,
  5072. C6F2E1EB236D1401009E6903 /* UILabel+Extension.m */,
  5073. C6F2E1E9236D1353009E6903 /* UITableView+HeadSet.h */,
  5074. C6F2E1E8236D1352009E6903 /* UITableView+HeadSet.m */,
  5075. C6F2E1D0236D126B009E6903 /* NSDate+XTExtension.h */,
  5076. C6F2E1CD236D126A009E6903 /* NSDate+XTExtension.m */,
  5077. C6F2E1C8236D126A009E6903 /* NSNumber+Formatter.h */,
  5078. C6F2E1BD236D1269009E6903 /* NSNumber+Formatter.m */,
  5079. C6F2E1B4236D1268009E6903 /* NSObject+XTExtension.h */,
  5080. C6F2E1CB236D126A009E6903 /* NSObject+XTExtension.m */,
  5081. C6F2E1D4236D126B009E6903 /* NSString+Tools.h */,
  5082. C6F2E1B9236D1269009E6903 /* NSString+Tools.m */,
  5083. C6F2E1C0236D1269009E6903 /* NSString+XTExtension.h */,
  5084. C6F2E1B6236D1268009E6903 /* NSString+XTExtension.m */,
  5085. C6F2E1B7236D1269009E6903 /* UIButton+XTExtension.h */,
  5086. C6F2E1BE236D1269009E6903 /* UIButton+XTExtension.m */,
  5087. C6F2E1C6236D126A009E6903 /* UIColor+XTExtension.h */,
  5088. C6F2E1C9236D126A009E6903 /* UIColor+XTExtension.m */,
  5089. C6F2E1C7236D126A009E6903 /* UIImage+GH.h */,
  5090. C6F2E1D5236D126B009E6903 /* UIImage+GH.m */,
  5091. C6F2E1C4236D126A009E6903 /* UILabel+GHConfig.h */,
  5092. C6F2E1B3236D1268009E6903 /* UILabel+GHConfig.m */,
  5093. C6F2E1B8236D1269009E6903 /* UIView+GH.h */,
  5094. C6F2E1C1236D1269009E6903 /* UIView+GH.m */,
  5095. C6F2E1BF236D1269009E6903 /* UIView+XTExtension.h */,
  5096. C6F2E1D2236D126B009E6903 /* UIView+XTExtension.m */,
  5097. C6F2E1BA236D1269009E6903 /* UIViewController+GH.h */,
  5098. C6F2E1BB236D1269009E6903 /* UIViewController+GH.m */,
  5099. C6F2E1CF236D126B009E6903 /* UIViewController+NavBar.h */,
  5100. C6F2E1CA236D126A009E6903 /* UIViewController+NavBar.m */,
  5101. C6F2E1D3236D126B009E6903 /* XTSystem.h */,
  5102. C6F2E1C2236D126A009E6903 /* XTSystem.m */,
  5103. C6F2E1AF236D1214009E6903 /* ToolFoundation.h */,
  5104. C6F2E1B0236D1214009E6903 /* ToolFoundation.m */,
  5105. 3264782023BEF4C900E0DC2D /* UIAlertController+TapGesAlertController.h */,
  5106. 3264782123BEF4C900E0DC2D /* UIAlertController+TapGesAlertController.m */,
  5107. );
  5108. path = Category;
  5109. sourceTree = "<group>";
  5110. };
  5111. C622711C236C0BBC00E2E3BF /* Tool */ = {
  5112. isa = PBXGroup;
  5113. children = (
  5114. C622711E236C0BBC00E2E3BF /* ShowtipTool.h */,
  5115. C622711D236C0BBC00E2E3BF /* ShowtipTool.m */,
  5116. );
  5117. path = Tool;
  5118. sourceTree = "<group>";
  5119. };
  5120. C6227120236C11A800E2E3BF /* ThemeManager */ = {
  5121. isa = PBXGroup;
  5122. children = (
  5123. C6227126236C11A800E2E3BF /* GHThemeManager.h */,
  5124. C6227123236C11A800E2E3BF /* GHThemeManager.m */,
  5125. C6227125236C11A800E2E3BF /* UIView+GHTheme.h */,
  5126. C6227122236C11A800E2E3BF /* UIView+GHTheme.m */,
  5127. C6227124236C11A800E2E3BF /* UIViewController+GHTheme.h */,
  5128. C6227121236C11A800E2E3BF /* UIViewController+GHTheme.m */,
  5129. );
  5130. path = ThemeManager;
  5131. sourceTree = "<group>";
  5132. };
  5133. C622712E236C122500E2E3BF /* Controller */ = {
  5134. isa = PBXGroup;
  5135. children = (
  5136. 324D963C23A4C2D400C7D9E8 /* NoteBook */,
  5137. 324D963523A3BD1E00C7D9E8 /* SearchModel */,
  5138. 324D961123A2326300C7D9E8 /* ColletionVC */,
  5139. C6227130236C122500E2E3BF /* My_CenterVC.h */,
  5140. C622712F236C122500E2E3BF /* My_CenterVC.m */,
  5141. EBBC59D725315E4500AB12EF /* LoginPCVC.h */,
  5142. EBBC59D825315E4500AB12EF /* LoginPCVC.m */,
  5143. C6F2E180236C266F009E6903 /* MyInfoVC.h */,
  5144. C6F2E181236C266F009E6903 /* MyInfoVC.m */,
  5145. EB98E7B02405FF090087C4E2 /* MyUserIconVC.h */,
  5146. EB98E7B12405FF090087C4E2 /* MyUserIconVC.m */,
  5147. C6F2E19E236C3C32009E6903 /* EditUserNickVC.h */,
  5148. C6F2E19F236C3C32009E6903 /* EditUserNickVC.m */,
  5149. C6F2E1A6236C4CB7009E6903 /* EditMySignOrBriefVC.h */,
  5150. C6F2E1A7236C4CB7009E6903 /* EditMySignOrBriefVC.m */,
  5151. C6F2E1A9236C528E009E6903 /* MyQRCodeVC.h */,
  5152. C6F2E1AA236C528E009E6903 /* MyQRCodeVC.m */,
  5153. C6F2E1AC236C594A009E6903 /* EditPhoneOrEmailVC.h */,
  5154. C6F2E1AD236C594A009E6903 /* EditPhoneOrEmailVC.m */,
  5155. 3274780123A87E97003B5F49 /* FileLookupVC.h */,
  5156. 3274780223A87E97003B5F49 /* FileLookupVC.m */,
  5157. EBE5EF1D2459841B00AD59C4 /* MyAccountVC.h */,
  5158. EBE5EF1E2459841B00AD59C4 /* MyAccountVC.m */,
  5159. EBE5EF2524598F8600AD59C4 /* MyCardVC.h */,
  5160. EBE5EF2624598F8600AD59C4 /* MyCardVC.m */,
  5161. );
  5162. path = Controller;
  5163. sourceTree = "<group>";
  5164. };
  5165. C6227131236C122500E2E3BF /* View */ = {
  5166. isa = PBXGroup;
  5167. children = (
  5168. C6F2E17B236C14B0009E6903 /* My_CenterCell.h */,
  5169. C6F2E17C236C14B0009E6903 /* My_CenterCell.m */,
  5170. C6F2E17D236C14B0009E6903 /* My_CenterCell.xib */,
  5171. C6F2E183236C26EC009E6903 /* MyInfoCell.h */,
  5172. C6F2E184236C26EC009E6903 /* MyInfoCell.m */,
  5173. C6F2E185236C26EC009E6903 /* MyInfoCell.xib */,
  5174. C6F2E188236C2D7A009E6903 /* ShowPhotoCameraAlertView.h */,
  5175. C6F2E189236C2D7A009E6903 /* ShowPhotoCameraAlertView.m */,
  5176. C6F2E18B236C2EE3009E6903 /* ShowPhotoCameraAlertView.xib */,
  5177. C6F2E1A1236C44D8009E6903 /* ShowGenderAlertView.h */,
  5178. C6F2E1A2236C44D8009E6903 /* ShowGenderAlertView.m */,
  5179. C6F2E1A4236C4554009E6903 /* ShowGenderAlertView.xib */,
  5180. EBE5EF202459853100AD59C4 /* MyAccountCell.h */,
  5181. EBE5EF212459853100AD59C4 /* MyAccountCell.m */,
  5182. EBE5EF222459853100AD59C4 /* MyAccountCell.xib */,
  5183. EBE96EC2245ABECB008BDBA8 /* PayAlert.h */,
  5184. EBE96EC3245ABECB008BDBA8 /* PayAlert.m */,
  5185. EBE96EC0245ABEB6008BDBA8 /* PayAlert.xib */,
  5186. EBE96EC5245AD77B008BDBA8 /* PayAlertCell.h */,
  5187. EBE96EC6245AD77B008BDBA8 /* PayAlertCell.m */,
  5188. EBE96EC7245AD77B008BDBA8 /* PayAlertCell.xib */,
  5189. );
  5190. path = View;
  5191. sourceTree = "<group>";
  5192. };
  5193. C625AA61236D98E60010E967 /* Controller */ = {
  5194. isa = PBXGroup;
  5195. children = (
  5196. EB581CEB23A0F52D00C451B0 /* WaitWork */,
  5197. C75ACED3236AAE0600CB6374 /* MyTDGroup */,
  5198. C56AC4332384D72700D46052 /* EMChat */,
  5199. C746484D2376C4E600876BA2 /* TDInternalLeter */,
  5200. C69A8DD52374045A0098FA26 /* ChatMsg */,
  5201. C62215942372C0C0006F5D7F /* MailList */,
  5202. C625AAC4237011C70010E967 /* ChatMsgNotice */,
  5203. C625AAB3236FFF9E0010E967 /* WorkingGroup */,
  5204. C625AA83236FCD590010E967 /* Search */,
  5205. C625AA64236D99170010E967 /* ChatMsgListVC.h */,
  5206. C625AA65236D99170010E967 /* ChatMsgListVC.m */,
  5207. EB85BF51243DDD38006C7A82 /* ChatMsgTopSearchVC.h */,
  5208. EB85BF52243DDD38006C7A82 /* ChatMsgTopSearchVC.m */,
  5209. C625AADB2371029A0010E967 /* MoreAppVC.h */,
  5210. C625AADC2371029A0010E967 /* MoreAppVC.m */,
  5211. C622156D2371501E006F5D7F /* ChatNewGroupVC.h */,
  5212. C622156E2371501E006F5D7F /* ChatNewGroupVC.m */,
  5213. EBD627D32429DD6500D91C9E /* ChatQrcodeVC.h */,
  5214. EBD627D42429DD6500D91C9E /* ChatQrcodeVC.m */,
  5215. EB568FC6239B746F000827B0 /* ChatJoinGroupVC.h */,
  5216. EB568FC7239B7470000827B0 /* ChatJoinGroupVC.m */,
  5217. EB56DA0823BB431500FE7262 /* ChatListMoveVC.h */,
  5218. EB56DA0923BB431500FE7262 /* ChatListMoveVC.m */,
  5219. );
  5220. path = Controller;
  5221. sourceTree = "<group>";
  5222. };
  5223. C625AA62236D98E60010E967 /* View */ = {
  5224. isa = PBXGroup;
  5225. children = (
  5226. C625AA67236D9D990010E967 /* ChatMsgListCell.h */,
  5227. C625AA68236D9D990010E967 /* ChatMsgListCell.m */,
  5228. C625AA69236D9D990010E967 /* ChatMsgListCell.xib */,
  5229. C625AA77236FB5A40010E967 /* ChatMsgCollectionCell.h */,
  5230. C625AA78236FB5A40010E967 /* ChatMsgCollectionCell.m */,
  5231. C625AA79236FB5A40010E967 /* ChatMsgCollectionCell.xib */,
  5232. C625AABF237003EE0010E967 /* ShowNewGroupAlert.h */,
  5233. C625AAC0237003EE0010E967 /* ShowNewGroupAlert.m */,
  5234. C625AAC2237003F80010E967 /* ShowNewGroupAlert.xib */,
  5235. C62215642371147A006F5D7F /* MoreAppCell.h */,
  5236. C62215652371147A006F5D7F /* MoreAppCell.m */,
  5237. C62215662371147A006F5D7F /* MoreAppCell.xib */,
  5238. EB2E470723A4B55D00CAF0D3 /* SmartBar.h */,
  5239. EB2E470823A4B55D00CAF0D3 /* SmartBar.m */,
  5240. EB2E470A23A4B78300CAF0D3 /* SmartBarModel.h */,
  5241. EB2E470B23A4B78300CAF0D3 /* SmartBarModel.m */,
  5242. );
  5243. path = View;
  5244. sourceTree = "<group>";
  5245. };
  5246. C625AA63236D98E60010E967 /* Model */ = {
  5247. isa = PBXGroup;
  5248. children = (
  5249. C625AA6F236FB2930010E967 /* ChatMsgCollectionModel.h */,
  5250. C625AA70236FB2930010E967 /* ChatMsgCollectionModel.m */,
  5251. C62215612371057F006F5D7F /* MoreAppModel.h */,
  5252. C62215622371057F006F5D7F /* MoreAppModel.m */,
  5253. C622156A23714B00006F5D7F /* ChatMsgListImModel.h */,
  5254. C622156B23714B00006F5D7F /* ChatMsgListImModel.m */,
  5255. EBE36C4223A791A9002BE674 /* ChatMsgWorkModel.h */,
  5256. EBE36C4323A791A9002BE674 /* ChatMsgWorkModel.m */,
  5257. EB820AD323BC48CF00B96C6C /* ChatMoveModel.h */,
  5258. EB820AD423BC48CF00B96C6C /* ChatMoveModel.m */,
  5259. EBF48A2F24CFCD0300A91850 /* ChatSearchModel.h */,
  5260. EBF48A3024CFCD0300A91850 /* ChatSearchModel.m */,
  5261. );
  5262. path = Model;
  5263. sourceTree = "<group>";
  5264. };
  5265. C625AA72236FB2E50010E967 /* Model */ = {
  5266. isa = PBXGroup;
  5267. children = (
  5268. C625AA76236FB3190010E967 /* ModelAPI.h */,
  5269. );
  5270. path = Model;
  5271. sourceTree = "<group>";
  5272. };
  5273. C625AA7F236FBF660010E967 /* YCMenuViewCompont */ = {
  5274. isa = PBXGroup;
  5275. children = (
  5276. C625AA80236FBF660010E967 /* YCMenuView.h */,
  5277. C625AA81236FBF660010E967 /* YCMenuView.m */,
  5278. );
  5279. path = YCMenuViewCompont;
  5280. sourceTree = "<group>";
  5281. };
  5282. C625AA83236FCD590010E967 /* Search */ = {
  5283. isa = PBXGroup;
  5284. children = (
  5285. 324D95FF23A1131900C7D9E8 /* Model */,
  5286. C625AA8A236FCDAD0010E967 /* Controller */,
  5287. C625AA8B236FCDAD0010E967 /* View */,
  5288. C625AA84236FCD680010E967 /* ChatMsgSearch.storyboard */,
  5289. );
  5290. path = Search;
  5291. sourceTree = "<group>";
  5292. };
  5293. C625AA8A236FCDAD0010E967 /* Controller */ = {
  5294. isa = PBXGroup;
  5295. children = (
  5296. C625AA8C236FCDD30010E967 /* ChatMsgSearchHistoryVC.h */,
  5297. C625AA8D236FCDD30010E967 /* ChatMsgSearchHistoryVC.m */,
  5298. C625AA8F236FCDEE0010E967 /* ChatMsgSearchResultVC.h */,
  5299. C625AA90236FCDEE0010E967 /* ChatMsgSearchResultVC.m */,
  5300. C625AAA8236FF23E0010E967 /* ChatMsgSearchReseltContentVC.h */,
  5301. C625AAA9236FF23E0010E967 /* ChatMsgSearchReseltContentVC.m */,
  5302. C625AAB0236FFCC60010E967 /* ChatMsgSerchReseltByIMVC.h */,
  5303. C625AAB1236FFCC60010E967 /* ChatMsgSerchReseltByIMVC.m */,
  5304. );
  5305. path = Controller;
  5306. sourceTree = "<group>";
  5307. };
  5308. C625AA8B236FCDAD0010E967 /* View */ = {
  5309. isa = PBXGroup;
  5310. children = (
  5311. C625AA92236FD1A90010E967 /* ChatMsgSearchHistoryCell.h */,
  5312. C625AA93236FD1A90010E967 /* ChatMsgSearchHistoryCell.m */,
  5313. C625AA94236FD1A90010E967 /* ChatMsgSearchHistoryCell.xib */,
  5314. C625AAAB236FF35B0010E967 /* ChatMsgSearchReseltContentCell.h */,
  5315. C625AAAC236FF35B0010E967 /* ChatMsgSearchReseltContentCell.m */,
  5316. C625AAAD236FF35B0010E967 /* ChatMsgSearchReseltContentCell.xib */,
  5317. );
  5318. path = View;
  5319. sourceTree = "<group>";
  5320. };
  5321. C625AA97236FEF130010E967 /* ZLCollectionFlowLayout */ = {
  5322. isa = PBXGroup;
  5323. children = (
  5324. C625AA98236FEF130010E967 /* ZLCollectionViewFlowLayout.m */,
  5325. C625AA99236FEF130010E967 /* ZLCellFakeView.m */,
  5326. C625AA9A236FEF130010E967 /* ZLCollectionViewLayoutAttributes.m */,
  5327. C625AA9B236FEF130010E967 /* ZLCollectionReusableView.m */,
  5328. C625AA9C236FEF130010E967 /* ZLCollectionViewLayoutAttributes.h */,
  5329. C625AA9D236FEF130010E967 /* ZLCellFakeView.h */,
  5330. C625AA9E236FEF130010E967 /* ZLCollectionViewFlowLayout.h */,
  5331. C625AA9F236FEF130010E967 /* ZLCollectionReusableView.h */,
  5332. );
  5333. path = ZLCollectionFlowLayout;
  5334. sourceTree = "<group>";
  5335. };
  5336. C625AAA0236FEF130010E967 /* SPPageMenu */ = {
  5337. isa = PBXGroup;
  5338. children = (
  5339. C625AAA1236FEF130010E967 /* SPPageMenu.m */,
  5340. C625AAA2236FEF130010E967 /* SPPageMenu.h */,
  5341. );
  5342. path = SPPageMenu;
  5343. sourceTree = "<group>";
  5344. };
  5345. C625AAB3236FFF9E0010E967 /* WorkingGroup */ = {
  5346. isa = PBXGroup;
  5347. children = (
  5348. C625AAB9237000010010E967 /* Controller */,
  5349. C625AABD237000010010E967 /* Model */,
  5350. C625AABC237000010010E967 /* View */,
  5351. C625AAB4236FFFAA0010E967 /* WorkingGroup.storyboard */,
  5352. );
  5353. path = WorkingGroup;
  5354. sourceTree = "<group>";
  5355. };
  5356. C625AAB9237000010010E967 /* Controller */ = {
  5357. isa = PBXGroup;
  5358. children = (
  5359. C625AABA237000010010E967 /* WorkingGroupMainVC.h */,
  5360. C625AABB237000010010E967 /* WorkingGroupMainVC.m */,
  5361. );
  5362. path = Controller;
  5363. sourceTree = "<group>";
  5364. };
  5365. C625AABC237000010010E967 /* View */ = {
  5366. isa = PBXGroup;
  5367. children = (
  5368. );
  5369. path = View;
  5370. sourceTree = "<group>";
  5371. };
  5372. C625AABD237000010010E967 /* Model */ = {
  5373. isa = PBXGroup;
  5374. children = (
  5375. );
  5376. path = Model;
  5377. sourceTree = "<group>";
  5378. };
  5379. C625AAC4237011C70010E967 /* ChatMsgNotice */ = {
  5380. isa = PBXGroup;
  5381. children = (
  5382. C625AACA2370125D0010E967 /* Controller */,
  5383. C625AACE2370125D0010E967 /* Model */,
  5384. C625AACD2370125D0010E967 /* View */,
  5385. C625AAC5237011D50010E967 /* ChatMsgNotice.storyboard */,
  5386. );
  5387. path = ChatMsgNotice;
  5388. sourceTree = "<group>";
  5389. };
  5390. C625AACA2370125D0010E967 /* Controller */ = {
  5391. isa = PBXGroup;
  5392. children = (
  5393. C625AACB2370125D0010E967 /* ChatMsgNoticeVC.h */,
  5394. C625AACC2370125D0010E967 /* ChatMsgNoticeVC.m */,
  5395. 3264781D23BDB47E00E0DC2D /* ChatMsgNoticeDetailVC.h */,
  5396. 3264781E23BDB47E00E0DC2D /* ChatMsgNoticeDetailVC.m */,
  5397. C625AAD523701ECE0010E967 /* ChatMsgNoticeTypeVC.h */,
  5398. C625AAD623701ECE0010E967 /* ChatMsgNoticeTypeVC.m */,
  5399. C6221570237157B8006F5D7F /* NoticeNewGroupVC.h */,
  5400. C6221571237157B8006F5D7F /* NoticeNewGroupVC.m */,
  5401. C622157323716492006F5D7F /* NoticeNewGroupMenuVC.h */,
  5402. C622157423716492006F5D7F /* NoticeNewGroupMenuVC.m */,
  5403. C622158C2372A179006F5D7F /* NoticeUnreadVC.h */,
  5404. C622158D2372A179006F5D7F /* NoticeUnreadVC.m */,
  5405. EBFDDAD8241B9DA100875D8A /* ReadSearchVC.h */,
  5406. EBFDDAD9241B9DA100875D8A /* ReadSearchVC.m */,
  5407. 326B92D7239F78B8004230EB /* MoveViewController.h */,
  5408. 326B92D8239F78B8004230EB /* MoveViewController.m */,
  5409. EB674D05242E126C003FEC6D /* MoveSearchVC.h */,
  5410. EB674D06242E126C003FEC6D /* MoveSearchVC.m */,
  5411. 324D960623A204B300C7D9E8 /* ChatTestingVC.h */,
  5412. 324D960723A204B300C7D9E8 /* ChatTestingVC.m */,
  5413. EB0BBB7A23D2978E005C850C /* ChatMsgNoticeSearchVC.h */,
  5414. EB0BBB7B23D2978E005C850C /* ChatMsgNoticeSearchVC.m */,
  5415. );
  5416. path = Controller;
  5417. sourceTree = "<group>";
  5418. };
  5419. C625AACD2370125D0010E967 /* View */ = {
  5420. isa = PBXGroup;
  5421. children = (
  5422. C625AAD0237017650010E967 /* ChatMsgNoticeCell.h */,
  5423. C625AAD1237017650010E967 /* ChatMsgNoticeCell.m */,
  5424. C625AAD2237017650010E967 /* ChatMsgNoticeCell.xib */,
  5425. C6221579237169E3006F5D7F /* NoticeNewGroupMenuCell.h */,
  5426. C622157A237169E3006F5D7F /* NoticeNewGroupMenuCell.m */,
  5427. C622157B237169E3006F5D7F /* NoticeNewGroupMenuCell.xib */,
  5428. 324F1767239B3B4D0025CAE7 /* NoticeSelectCell.h */,
  5429. 324F1768239B3B4D0025CAE7 /* NoticeSelectCell.m */,
  5430. 324F1769239B3B4D0025CAE7 /* NoticeSelectCell.xib */,
  5431. C622158F2372A32B006F5D7F /* NoticeUnreadCell.h */,
  5432. C62215902372A32B006F5D7F /* NoticeUnreadCell.m */,
  5433. C62215912372A32B006F5D7F /* NoticeUnreadCell.xib */,
  5434. C6221587237278A8006F5D7F /* ShowKeepNoticeAlert.h */,
  5435. C6221588237278A8006F5D7F /* ShowKeepNoticeAlert.m */,
  5436. C622158A237278BD006F5D7F /* ShowKeepNoticeAlert.xib */,
  5437. 324D960C23A206B900C7D9E8 /* TestinCell.h */,
  5438. 324D960D23A206B900C7D9E8 /* TestinCell.m */,
  5439. 324D960E23A206B900C7D9E8 /* TestinCell.xib */,
  5440. );
  5441. path = View;
  5442. sourceTree = "<group>";
  5443. };
  5444. C625AACE2370125D0010E967 /* Model */ = {
  5445. isa = PBXGroup;
  5446. children = (
  5447. C62215762371688C006F5D7F /* NoticeNewGroupMenuModel.h */,
  5448. C62215772371688C006F5D7F /* NoticeNewGroupMenuModel.m */,
  5449. C5598D2023869D1400BC7185 /* NoticeListModel.h */,
  5450. C5598D2123869D1400BC7185 /* NoticeListModel.m */,
  5451. C5598D2323869D2300BC7185 /* NoticeModel.h */,
  5452. C5598D2423869D2300BC7185 /* NoticeModel.m */,
  5453. 326B92DA239F8EFD004230EB /* NoticeFindModel.h */,
  5454. 326B92DB239F8EFD004230EB /* NoticeFindModel.m */,
  5455. 324D960923A2062700C7D9E8 /* TestinModel.h */,
  5456. 324D960A23A2062700C7D9E8 /* TestinModel.m */,
  5457. );
  5458. path = Model;
  5459. sourceTree = "<group>";
  5460. };
  5461. C69A8DB92372CFE70098FA26 /* ChineseSorting */ = {
  5462. isa = PBXGroup;
  5463. children = (
  5464. C69A8DBA2372CFE70098FA26 /* pinyin.h */,
  5465. C69A8DBB2372CFE70098FA26 /* ChineseString.h */,
  5466. C69A8DBC2372CFE70098FA26 /* pinyin.m */,
  5467. C69A8DBD2372CFE70098FA26 /* ChineseString.m */,
  5468. );
  5469. path = ChineseSorting;
  5470. sourceTree = "<group>";
  5471. };
  5472. C69A8DCD2373BE310098FA26 /* MySearchBar */ = {
  5473. isa = PBXGroup;
  5474. children = (
  5475. C69A8DD22373C2C00098FA26 /* SearchBarDisplayCenter.h */,
  5476. C69A8DD12373C2BF0098FA26 /* SearchBarDisplayCenter.m */,
  5477. );
  5478. path = MySearchBar;
  5479. sourceTree = "<group>";
  5480. };
  5481. C69A8DD52374045A0098FA26 /* ChatMsg */ = {
  5482. isa = PBXGroup;
  5483. children = (
  5484. C69A8DDC2374050D0098FA26 /* Controller */,
  5485. C69A8DDB2374050D0098FA26 /* Model */,
  5486. C69A8DDF2374050D0098FA26 /* View */,
  5487. C69A8DD62374047E0098FA26 /* ChatMsgDetail.storyboard */,
  5488. );
  5489. path = ChatMsg;
  5490. sourceTree = "<group>";
  5491. };
  5492. C69A8DDB2374050D0098FA26 /* Model */ = {
  5493. isa = PBXGroup;
  5494. children = (
  5495. C69A8DE623741AD90098FA26 /* ChatMsgDetailChatModel.h */,
  5496. C69A8DE723741AD90098FA26 /* ChatMsgDetailChatModel.m */,
  5497. C69A8DF12374455C0098FA26 /* ChatInfoUserModel.h */,
  5498. C69A8DF22374455C0098FA26 /* ChatInfoUserModel.m */,
  5499. EB8E2DB423989B1800CDFBDA /* chatInfoGroupChatModel.h */,
  5500. EB8E2DB523989B1800CDFBDA /* chatInfoGroupChatModel.m */,
  5501. EB568FBB239B369D000827B0 /* FindChatItemsModel.h */,
  5502. EB568FBC239B369D000827B0 /* FindChatItemsModel.m */,
  5503. );
  5504. path = Model;
  5505. sourceTree = "<group>";
  5506. };
  5507. C69A8DDC2374050D0098FA26 /* Controller */ = {
  5508. isa = PBXGroup;
  5509. children = (
  5510. C69A8DDD2374050D0098FA26 /* ChatMsgDetailChatVC.h */,
  5511. C69A8DDE2374050D0098FA26 /* ChatMsgDetailChatVC.m */,
  5512. EB85BF48243DB566006C7A82 /* ChatMsgPersonInfoVC.h */,
  5513. EB85BF49243DB566006C7A82 /* ChatMsgPersonInfoVC.m */,
  5514. C69A8DE923743AC80098FA26 /* ChatMsgDetailChatInfoVC.h */,
  5515. C69A8DEA23743AC80098FA26 /* ChatMsgDetailChatInfoVC.m */,
  5516. C69A8DF92374FBBE0098FA26 /* DetailChatInfoAllUserVC.h */,
  5517. C69A8DFA2374FBBE0098FA26 /* DetailChatInfoAllUserVC.m */,
  5518. C69A8E0123750D770098FA26 /* ChatImNameUpdateVC.h */,
  5519. C69A8E0223750D770098FA26 /* ChatImNameUpdateVC.m */,
  5520. C69A8E04237513330098FA26 /* GroupManagementVC.h */,
  5521. C69A8E05237513330098FA26 /* GroupManagementVC.m */,
  5522. C69A8E0723751B490098FA26 /* ChatSearchCenterVC.h */,
  5523. C69A8E0823751B490098FA26 /* ChatSearchCenterVC.m */,
  5524. EB568FC3239B47A3000827B0 /* ChatResultVC.h */,
  5525. EB568FC4239B47A3000827B0 /* ChatResultVC.m */,
  5526. C69A8E2023753A6F0098FA26 /* ChatSearchFindbyDateVC.h */,
  5527. C69A8E2123753A6F0098FA26 /* ChatSearchFindbyDateVC.m */,
  5528. C69A8E2323753A890098FA26 /* ChatSearchFindbyPhotoVC.h */,
  5529. C69A8E2423753A890098FA26 /* ChatSearchFindbyPhotoVC.m */,
  5530. C69A8E2F23753AD60098FA26 /* ChatSearchFindbyFuJVC.h */,
  5531. C69A8E3023753AD60098FA26 /* ChatSearchFindbyFuJVC.m */,
  5532. EB8E2DB72398D23100CDFBDA /* ChatGroupDeleteVC.h */,
  5533. EB8E2DB82398D23100CDFBDA /* ChatGroupDeleteVC.m */,
  5534. EB8E2DBA2398DC6900CDFBDA /* ChatGroupAddVC.h */,
  5535. EB8E2DBB2398DC6900CDFBDA /* ChatGroupAddVC.m */,
  5536. EB2CC02123BDDE490059F942 /* ChatGroupSearchVC.h */,
  5537. EB2CC02223BDDE490059F942 /* ChatGroupSearchVC.m */,
  5538. );
  5539. path = Controller;
  5540. sourceTree = "<group>";
  5541. };
  5542. C69A8DDF2374050D0098FA26 /* View */ = {
  5543. isa = PBXGroup;
  5544. children = (
  5545. C69A8DE123740AB80098FA26 /* ChatMsgDetailChatCell.h */,
  5546. C69A8DE223740AB80098FA26 /* ChatMsgDetailChatCell.m */,
  5547. C69A8DE323740AB80098FA26 /* ChatMsgDetailChatCell.xib */,
  5548. C69A8DEC23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.h */,
  5549. C69A8DED23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.m */,
  5550. C69A8DEE23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.xib */,
  5551. C69A8DF4237446670098FA26 /* ChatInfoUserCollectionCell.h */,
  5552. C69A8DF5237446670098FA26 /* ChatInfoUserCollectionCell.m */,
  5553. C69A8DF6237446670098FA26 /* ChatInfoUserCollectionCell.xib */,
  5554. C69A8DFC237506C30098FA26 /* ChatInfoUserSearchCell.h */,
  5555. C69A8DFD237506C30098FA26 /* ChatInfoUserSearchCell.m */,
  5556. C69A8DFE237506C30098FA26 /* ChatInfoUserSearchCell.xib */,
  5557. C69A8E35237546310098FA26 /* ChatSearchFindbyPhotoCell.h */,
  5558. C69A8E36237546310098FA26 /* ChatSearchFindbyPhotoCell.m */,
  5559. C69A8E37237546310098FA26 /* ChatSearchFindbyPhotoCell.xib */,
  5560. C69A8E3A23754A660098FA26 /* FindPhotoOrVideoHeaderView.h */,
  5561. C69A8E3B23754A660098FA26 /* FindPhotoOrVideoHeaderView.m */,
  5562. C69A8E3C23754A660098FA26 /* FindPhotoOrVideoHeaderView.xib */,
  5563. C69A8E3F23754F7A0098FA26 /* ChatSearchFindbyFuJCell.h */,
  5564. C69A8E4023754F7A0098FA26 /* ChatSearchFindbyFuJCell.m */,
  5565. C69A8E4123754F7A0098FA26 /* ChatSearchFindbyFuJCell.xib */,
  5566. EB568FBE239B40C7000827B0 /* FindResultViewCell.h */,
  5567. EB568FBF239B40C7000827B0 /* FindResultViewCell.m */,
  5568. EB568FC0239B40C7000827B0 /* FindResultViewCell.xib */,
  5569. );
  5570. path = View;
  5571. sourceTree = "<group>";
  5572. };
  5573. C69A8E0A23753A150098FA26 /* Calender */ = {
  5574. isa = PBXGroup;
  5575. children = (
  5576. C69A8E1523753A150098FA26 /* CalenderCollectionCell.h */,
  5577. C69A8E0C23753A150098FA26 /* CalenderCollectionCell.m */,
  5578. C69A8E1823753A150098FA26 /* CalenderHeaderView.h */,
  5579. C69A8E1023753A150098FA26 /* CalenderHeaderView.m */,
  5580. C69A8E1623753A150098FA26 /* CalenderModel.h */,
  5581. C69A8E0F23753A150098FA26 /* CalenderModel.m */,
  5582. C69A8E1223753A150098FA26 /* CalenderView.h */,
  5583. C69A8E0B23753A150098FA26 /* CalenderView.m */,
  5584. C69A8E1723753A150098FA26 /* CalenderWeekView.h */,
  5585. C69A8E1123753A150098FA26 /* CalenderWeekView.m */,
  5586. C69A8E0E23753A150098FA26 /* NSDate+Extension.h */,
  5587. C69A8E1323753A150098FA26 /* NSDate+Extension.m */,
  5588. C69A8E0D23753A150098FA26 /* UIColor+Extension.h */,
  5589. C69A8E1423753A150098FA26 /* UIColor+Extension.m */,
  5590. );
  5591. path = Calender;
  5592. sourceTree = "<group>";
  5593. };
  5594. C6F2E18D236C333E009E6903 /* Third */ = {
  5595. isa = PBXGroup;
  5596. children = (
  5597. EBD623A725159A66007FF6BC /* WMZPageController */,
  5598. EBAB7CAF2500FAC000923FBA /* BaiduAIBD */,
  5599. EBB6883523C9C0C300E24DD9 /* RichTextEdit */,
  5600. C7B8646423C9CE800090F2A3 /* Swipe */,
  5601. C72351C02382907B0037E4F6 /* NSImage+WebCache.h */,
  5602. C72351BF2382907A0037E4F6 /* NSImage+WebCache.m */,
  5603. C59D0B4C23825DE0007D0760 /* YYKit */,
  5604. C59D0A252382468A007D0760 /* JSONModel */,
  5605. C69A8E0A23753A150098FA26 /* Calender */,
  5606. C69A8DB92372CFE70098FA26 /* ChineseSorting */,
  5607. C625AAA0236FEF130010E967 /* SPPageMenu */,
  5608. C625AA97236FEF130010E967 /* ZLCollectionFlowLayout */,
  5609. C625AA7F236FBF660010E967 /* YCMenuViewCompont */,
  5610. C72F3907236DAE1D00933828 /* UIPlaceHolderTextView */,
  5611. C6F2E18E236C334A009E6903 /* PhotoTailoringSource */,
  5612. );
  5613. path = Third;
  5614. sourceTree = "<group>";
  5615. };
  5616. C6F2E18E236C334A009E6903 /* PhotoTailoringSource */ = {
  5617. isa = PBXGroup;
  5618. children = (
  5619. C6F2E195236C334A009E6903 /* LYLPhotoTailoringTool.h */,
  5620. C6F2E18F236C334A009E6903 /* LYLPhotoTailoringTool.m */,
  5621. C6F2E190236C334A009E6903 /* UIImage+Crop.h */,
  5622. C6F2E194236C334A009E6903 /* UIImage+Crop.m */,
  5623. C6F2E193236C334A009E6903 /* PhotoMaskView.h */,
  5624. C6F2E191236C334A009E6903 /* PhotoMaskView.m */,
  5625. C6F2E196236C334A009E6903 /* LYLPhotoTailoringViewController.h */,
  5626. C6F2E192236C334A009E6903 /* LYLPhotoTailoringViewController.m */,
  5627. );
  5628. path = PhotoTailoringSource;
  5629. sourceTree = "<group>";
  5630. };
  5631. C7037FE3236FB5ED008EA3E4 /* MySendInfo */ = {
  5632. isa = PBXGroup;
  5633. children = (
  5634. C7037FE7236FB613008EA3E4 /* Cell */,
  5635. C7037FE6236FB60C008EA3E4 /* View */,
  5636. C7037FE5236FB607008EA3E4 /* Model */,
  5637. C7037FE4236FB602008EA3E4 /* VC */,
  5638. );
  5639. path = MySendInfo;
  5640. sourceTree = "<group>";
  5641. };
  5642. C7037FE4236FB602008EA3E4 /* VC */ = {
  5643. isa = PBXGroup;
  5644. children = (
  5645. C7037FE8236FB65A008EA3E4 /* SendInfoGroupVC.h */,
  5646. C7037FE9236FB65A008EA3E4 /* SendInfoGroupVC.m */,
  5647. );
  5648. path = VC;
  5649. sourceTree = "<group>";
  5650. };
  5651. C7037FE5236FB607008EA3E4 /* Model */ = {
  5652. isa = PBXGroup;
  5653. children = (
  5654. C7037FEB236FC1E6008EA3E4 /* SendInfoGroupModel.h */,
  5655. C7037FEC236FC1E6008EA3E4 /* SendInfoGroupModel.m */,
  5656. C7037FEE236FC317008EA3E4 /* SendInfoGroupSubModel.h */,
  5657. C7037FEF236FC317008EA3E4 /* SendInfoGroupSubModel.m */,
  5658. C7037FF1236FC3DC008EA3E4 /* SendInfoGroupSubTwoModel.h */,
  5659. C7037FF2236FC3DC008EA3E4 /* SendInfoGroupSubTwoModel.m */,
  5660. );
  5661. path = Model;
  5662. sourceTree = "<group>";
  5663. };
  5664. C7037FE6236FB60C008EA3E4 /* View */ = {
  5665. isa = PBXGroup;
  5666. children = (
  5667. C7037FF4236FC847008EA3E4 /* SendInfoGroupCell.h */,
  5668. C7037FF5236FC847008EA3E4 /* SendInfoGroupCell.m */,
  5669. C7037FF6236FC847008EA3E4 /* SendInfoGroupCell.xib */,
  5670. 3237321623BC6B2700CC048D /* WZSendInfoCell.h */,
  5671. 3237321723BC6B2700CC048D /* WZSendInfoCell.m */,
  5672. 3237321823BC6B2700CC048D /* WZSendInfoCell.xib */,
  5673. C7037FF9236FD33F008EA3E4 /* SendGroupBCell.h */,
  5674. C7037FFA236FD33F008EA3E4 /* SendGroupBCell.m */,
  5675. C7037FFB236FD33F008EA3E4 /* SendGroupBCell.xib */,
  5676. );
  5677. path = View;
  5678. sourceTree = "<group>";
  5679. };
  5680. C7037FE7236FB613008EA3E4 /* Cell */ = {
  5681. isa = PBXGroup;
  5682. children = (
  5683. );
  5684. path = Cell;
  5685. sourceTree = "<group>";
  5686. };
  5687. C703800D23700FD0008EA3E4 /* ApprovalPageDetailCell */ = {
  5688. isa = PBXGroup;
  5689. children = (
  5690. C703800E23701018008EA3E4 /* MyApprovalDetailCell.h */,
  5691. C703800F23701018008EA3E4 /* MyApprovalDetailCell.m */,
  5692. C703801023701018008EA3E4 /* MyApprovalDetailCell.xib */,
  5693. C7404E74238E1BCF00DB19AC /* MyApprovalFileCell.h */,
  5694. C7404E75238E1BCF00DB19AC /* MyApprovalFileCell.m */,
  5695. C7404E76238E1BCF00DB19AC /* MyApprovalFileCell.xib */,
  5696. );
  5697. name = ApprovalPageDetailCell;
  5698. sourceTree = "<group>";
  5699. };
  5700. C708DC032371A44C005CC822 /* View */ = {
  5701. isa = PBXGroup;
  5702. children = (
  5703. C708DC042371A46D005CC822 /* WorkFlowSearchView.h */,
  5704. C708DC052371A46D005CC822 /* WorkFlowSearchView.m */,
  5705. );
  5706. name = View;
  5707. sourceTree = "<group>";
  5708. };
  5709. C70B6D6323CEBB6A008D5C48 /* ZFReOrderTableView */ = {
  5710. isa = PBXGroup;
  5711. children = (
  5712. C70B6D6423CEBB6A008D5C48 /* ZFReOrderTableView.m */,
  5713. C70B6D6523CEBB6A008D5C48 /* ZFReOrderTableView.h */,
  5714. );
  5715. path = ZFReOrderTableView;
  5716. sourceTree = "<group>";
  5717. };
  5718. C72F38E3236DADDC00933828 /* Setting */ = {
  5719. isa = PBXGroup;
  5720. children = (
  5721. C72F38E5236DADDC00933828 /* Controller */,
  5722. C72F38F4236DADDC00933828 /* View */,
  5723. C72F38E4236DADDC00933828 /* Setting.storyboard */,
  5724. );
  5725. path = Setting;
  5726. sourceTree = "<group>";
  5727. };
  5728. C72F38E5236DADDC00933828 /* Controller */ = {
  5729. isa = PBXGroup;
  5730. children = (
  5731. C72F38EF236DADDC00933828 /* AccountSecurityVC.h */,
  5732. C72F38E9236DADDC00933828 /* AccountSecurityVC.m */,
  5733. C72F38F0236DADDC00933828 /* BlacklistVC.h */,
  5734. C72F38E8236DADDC00933828 /* BlacklistVC.m */,
  5735. C72F38ED236DADDC00933828 /* DisplaySettingsVC.h */,
  5736. C72F38E6236DADDC00933828 /* DisplaySettingsVC.m */,
  5737. C72F38EB236DADDC00933828 /* FeedBackVC.h */,
  5738. C72F38F2236DADDC00933828 /* FeedBackVC.m */,
  5739. C72F38E7236DADDC00933828 /* MyAboutVC.h */,
  5740. C72F38EE236DADDC00933828 /* MyAboutVC.m */,
  5741. C72F38F3236DADDC00933828 /* NewMsgAlertVC.h */,
  5742. C72F38EA236DADDC00933828 /* NewMsgAlertVC.m */,
  5743. C72F38EC236DADDC00933828 /* SettingVC.h */,
  5744. C72F38F1236DADDC00933828 /* SettingVC.m */,
  5745. );
  5746. path = Controller;
  5747. sourceTree = "<group>";
  5748. };
  5749. C72F38F4236DADDC00933828 /* View */ = {
  5750. isa = PBXGroup;
  5751. children = (
  5752. C72F38F9236DADDC00933828 /* BlacklistCell.h */,
  5753. C72F38F7236DADDC00933828 /* BlacklistCell.m */,
  5754. C72F38F8236DADDC00933828 /* BlacklistCell.xib */,
  5755. C72F38F6236DADDC00933828 /* SettingCell.h */,
  5756. C72F38FA236DADDC00933828 /* SettingCell.m */,
  5757. C72F38F5236DADDC00933828 /* SettingCell.xib */,
  5758. );
  5759. path = View;
  5760. sourceTree = "<group>";
  5761. };
  5762. C72F3907236DAE1D00933828 /* UIPlaceHolderTextView */ = {
  5763. isa = PBXGroup;
  5764. children = (
  5765. C72F3908236DAE1D00933828 /* UIPlaceHolderTextView.h */,
  5766. C72F3909236DAE1D00933828 /* UIPlaceHolderTextView.m */,
  5767. );
  5768. path = UIPlaceHolderTextView;
  5769. sourceTree = "<group>";
  5770. };
  5771. C746484D2376C4E600876BA2 /* TDInternalLeter */ = {
  5772. isa = PBXGroup;
  5773. children = (
  5774. C74648582376E7CE00876BA2 /* contoller */,
  5775. );
  5776. path = TDInternalLeter;
  5777. sourceTree = "<group>";
  5778. };
  5779. C74648582376E7CE00876BA2 /* contoller */ = {
  5780. isa = PBXGroup;
  5781. children = (
  5782. 32C384D023B3636100BBC733 /* CreateInterLeterVC.h */,
  5783. 32C384D123B3636100BBC733 /* CreateInterLeterVC.m */,
  5784. 32C384C923B329E700BBC733 /* TDInterLeterTypeVC.h */,
  5785. 32C384CA23B329E700BBC733 /* TDInterLeterTypeVC.m */,
  5786. 32C384D323B4B84B00BBC733 /* TDInterLeterDetailVC.h */,
  5787. 32C384D423B4B84B00BBC733 /* TDInterLeterDetailVC.m */,
  5788. C74648592376E7F200876BA2 /* TDInterLeterHomeViewController.h */,
  5789. C746485A2376E7F200876BA2 /* TDInterLeterHomeViewController.m */,
  5790. EBCC49C624EFC47500837F5F /* InterMailEditSearchVC.h */,
  5791. EBCC49C724EFC47500837F5F /* InterMailEditSearchVC.m */,
  5792. EB52714C2428555C00B37D2A /* TDInterLeterSearchVC.h */,
  5793. EB52714D2428555C00B37D2A /* TDInterLeterSearchVC.m */,
  5794. EB96B89F23BF584200EE09D7 /* TDInterLeterHome.storyboard */,
  5795. 3220A0C023CC7F34005A347C /* shoujianrenResultView.h */,
  5796. 3220A0C123CC7F34005A347C /* shoujianrenResultView.m */,
  5797. 32C384CC23B3413400BBC733 /* Model */,
  5798. 3220A0C323CC8F7C005A347C /* shoujianrenResultViewCell.h */,
  5799. 3220A0C423CC8F7C005A347C /* shoujianrenResultViewCell.m */,
  5800. 3220A0C523CC8F7C005A347C /* shoujianrenResultViewCell.xib */,
  5801. );
  5802. path = contoller;
  5803. sourceTree = "<group>";
  5804. };
  5805. C7473D662371059A0037DC39 /* WorkFlowSearch */ = {
  5806. isa = PBXGroup;
  5807. children = (
  5808. C708DC032371A44C005CC822 /* View */,
  5809. C7473D67237105F30037DC39 /* WorkFlowSearchVC.h */,
  5810. C7473D68237105F30037DC39 /* WorkFlowSearchVC.m */,
  5811. C708DC082371BE36005CC822 /* WorkFlowSearchDetailVC.h */,
  5812. C708DC092371BE36005CC822 /* WorkFlowSearchDetailVC.m */,
  5813. );
  5814. name = WorkFlowSearch;
  5815. sourceTree = "<group>";
  5816. };
  5817. C74BCC71238F7CB600169982 /* VersionData */ = {
  5818. isa = PBXGroup;
  5819. children = (
  5820. C74BCC7D238FB66500169982 /* Model */,
  5821. C74BCC76238F8DE400169982 /* VersionDataVC */,
  5822. );
  5823. name = VersionData;
  5824. sourceTree = "<group>";
  5825. };
  5826. C74BCC76238F8DE400169982 /* VersionDataVC */ = {
  5827. isa = PBXGroup;
  5828. children = (
  5829. C74BCC74238F88A200169982 /* VersionData.storyboard */,
  5830. C74E72E723D2FF2B00BD1271 /* DepartureController.h */,
  5831. C74E72E823D2FF2B00BD1271 /* DepartureController.m */,
  5832. C74E72E923D2FF2B00BD1271 /* DepartureController.xib */,
  5833. EB4ECF10241101A000B60F05 /* CountDataVC.h */,
  5834. EB4ECF11241101A000B60F05 /* CountDataVC.m */,
  5835. );
  5836. name = VersionDataVC;
  5837. sourceTree = "<group>";
  5838. };
  5839. C74BCC7D238FB66500169982 /* Model */ = {
  5840. isa = PBXGroup;
  5841. children = (
  5842. C74BCC7E238FB69B00169982 /* VersionDataModel.h */,
  5843. C74BCC7F238FB69B00169982 /* VersionDataModel.m */,
  5844. C74BCC81238FB6C900169982 /* VersionDataSub.h */,
  5845. C74BCC82238FB6C900169982 /* VersionDataSub.m */,
  5846. );
  5847. name = Model;
  5848. sourceTree = "<group>";
  5849. };
  5850. C75958A72380222D00AE85C0 /* Model */ = {
  5851. isa = PBXGroup;
  5852. children = (
  5853. C75958A92380223B00AE85C0 /* ThesaurusName.h */,
  5854. C75958A82380223B00AE85C0 /* ThesaurusName.m */,
  5855. );
  5856. path = Model;
  5857. sourceTree = "<group>";
  5858. };
  5859. C75ACED3236AAE0600CB6374 /* MyTDGroup */ = {
  5860. isa = PBXGroup;
  5861. children = (
  5862. EB440FD023A36BCE006BCB95 /* TDGroupInfo.storyboard */,
  5863. EB3EAFE123A22EBE00C38AB4 /* TDGroup.storyboard */,
  5864. C75ACED7236AAE3000CB6374 /* View */,
  5865. C75ACED6236AAE2800CB6374 /* Cell */,
  5866. C75ACED5236AAE2000CB6374 /* Model */,
  5867. C75ACED4236AAE1400CB6374 /* VC */,
  5868. );
  5869. path = MyTDGroup;
  5870. sourceTree = "<group>";
  5871. };
  5872. C75ACED4236AAE1400CB6374 /* VC */ = {
  5873. isa = PBXGroup;
  5874. children = (
  5875. C75ACED8236AAE5F00CB6374 /* MyTDGroupViewController.h */,
  5876. C75ACED9236AAE5F00CB6374 /* MyTDGroupViewController.m */,
  5877. EB77B291239F9A4F0050A3C0 /* ChatNewRowVC.h */,
  5878. EB77B292239F9A4F0050A3C0 /* ChatNewRowVC.m */,
  5879. EB3EAFDE23A22E4100C38AB4 /* TDGroupQrcodeVC.h */,
  5880. EB3EAFDF23A22E4100C38AB4 /* TDGroupQrcodeVC.m */,
  5881. EB3EAFE623A2437E00C38AB4 /* TDGroupSearchResultVC.h */,
  5882. EB3EAFE723A2437E00C38AB4 /* TDGroupSearchResultVC.m */,
  5883. EB3EAFEC23A26B9B00C38AB4 /* TDGroupInfoListVC.h */,
  5884. EB3EAFED23A26B9B00C38AB4 /* TDGroupInfoListVC.m */,
  5885. EBBE1CB824E7C7F100041E04 /* TDGroupDraftListVC.h */,
  5886. EBBE1CB924E7C7F100041E04 /* TDGroupDraftListVC.m */,
  5887. EBBE1CBC24E7D4CC00041E04 /* TDGroupDraftSearchVC.h */,
  5888. EBBE1CBB24E7D4CC00041E04 /* TDGroupDraftSearchVC.m */,
  5889. EB3EAFEF23A31C7D00C38AB4 /* TDGroupInfoDetailVC.h */,
  5890. EB3EAFF023A31C7D00C38AB4 /* TDGroupInfoDetailVC.m */,
  5891. EB38513D24652BA700E28172 /* TDGroupRoleVC.h */,
  5892. EB38513E24652BA700E28172 /* TDGroupRoleVC.m */,
  5893. EB38514024652EB000E28172 /* TDGroupLabelVC.h */,
  5894. EB38514124652EB000E28172 /* TDGroupLabelVC.m */,
  5895. EB38514824653F5D00E28172 /* AddGroupLabelVC.h */,
  5896. EB38514924653F5D00E28172 /* AddGroupLabelVC.m */,
  5897. EB440FD223A36D4C006BCB95 /* TDGroupInfoChangeVc.h */,
  5898. EB440FD323A36D4C006BCB95 /* TDGroupInfoChangeVc.m */,
  5899. EB2E470423A48BAB00CAF0D3 /* TDQrJoinVC.h */,
  5900. EB2E470523A48BAB00CAF0D3 /* TDQrJoinVC.m */,
  5901. EB2E471023A4D32400CAF0D3 /* NewTopicVC.h */,
  5902. EB2E471123A4D32400CAF0D3 /* NewTopicVC.m */,
  5903. );
  5904. path = VC;
  5905. sourceTree = "<group>";
  5906. };
  5907. C75ACED5236AAE2000CB6374 /* Model */ = {
  5908. isa = PBXGroup;
  5909. children = (
  5910. C75ACEDB236AAE7800CB6374 /* MyTDGroupModel.h */,
  5911. C75ACEDC236AAE7800CB6374 /* MyTDGroupModel.m */,
  5912. EB440FCA23A33970006BCB95 /* TDGroupInfoListModel.h */,
  5913. EB440FCB23A33970006BCB95 /* TDGroupInfoListModel.m */,
  5914. EB440FCD23A33982006BCB95 /* TDGroupInfoModel.h */,
  5915. EB440FCE23A33982006BCB95 /* TDGroupInfoModel.m */,
  5916. EBE36C3923A72AFA002BE674 /* NewTopicModel.h */,
  5917. EBE36C3A23A72AFA002BE674 /* NewTopicModel.m */,
  5918. EBE36C4D23A8E413002BE674 /* TopicListModel.h */,
  5919. EBE36C4E23A8E413002BE674 /* TopicListModel.m */,
  5920. EB0F64D423AA528A00AD56A0 /* TopicListItemModel.h */,
  5921. EB0F64D523AA528A00AD56A0 /* TopicListItemModel.m */,
  5922. EB0F64D723AA529400AD56A0 /* TopicListSubModel.h */,
  5923. EB0F64D823AA529400AD56A0 /* TopicListSubModel.m */,
  5924. );
  5925. path = Model;
  5926. sourceTree = "<group>";
  5927. };
  5928. C75ACED6236AAE2800CB6374 /* Cell */ = {
  5929. isa = PBXGroup;
  5930. children = (
  5931. EB96B89523BF56C800EE09D7 /* TDGroupInfoListCell.h */,
  5932. EB96B89623BF56C800EE09D7 /* TDGroupInfoListCell.m */,
  5933. EB96B89723BF56C800EE09D7 /* TDGroupInfoListCell.xib */,
  5934. C75ACEDE236AAE8A00CB6374 /* MyTDGroupCell.h */,
  5935. C75ACEDF236AAE8A00CB6374 /* MyTDGroupCell.m */,
  5936. EBFA3763240391A900A584FC /* WebDetailCell.h */,
  5937. EBFA3764240391A900A584FC /* WebDetailCell.m */,
  5938. C7E1001D236DB2D700803CFA /* TaasdasdbleVieasdsawCell.h */,
  5939. C7E1001E236DB2D700803CFA /* TaasdasdbleVieasdsawCell.m */,
  5940. EB77B294239FCAF90050A3C0 /* ChatNewRowCell.h */,
  5941. EB77B295239FCAF90050A3C0 /* ChatNewRowCell.m */,
  5942. EB77B296239FCAF90050A3C0 /* ChatNewRowCell.xib */,
  5943. EB440FC223A32302006BCB95 /* TDGroupInfoDetailCell.h */,
  5944. EB440FC323A32302006BCB95 /* TDGroupInfoDetailCell.m */,
  5945. EB440FC423A32302006BCB95 /* TDGroupInfoDetailCell.xib */,
  5946. EB2E46FA23A46B5F00CAF0D3 /* TDGroupSearchCell.h */,
  5947. EB2E46FB23A46B5F00CAF0D3 /* TDGroupSearchCell.m */,
  5948. EB2E46FC23A46B5F00CAF0D3 /* TDGroupSearchCell.xib */,
  5949. EB2E46FF23A47B9000CAF0D3 /* NewRowUserCell.h */,
  5950. EB2E470023A47B9000CAF0D3 /* NewRowUserCell.m */,
  5951. EB2E470123A47B9000CAF0D3 /* NewRowUserCell.xib */,
  5952. EBE36C3423A7208E002BE674 /* NewTopicCell.h */,
  5953. EBE36C3523A7208E002BE674 /* NewTopicCell.m */,
  5954. EBE36C3623A7208E002BE674 /* NewTopicCell.xib */,
  5955. EB38514324653A2200E28172 /* TDGroupLabelCell.h */,
  5956. EB38514424653A2200E28172 /* TDGroupLabelCell.m */,
  5957. EB38514524653A2200E28172 /* TDGroupLabelCell.xib */,
  5958. );
  5959. path = Cell;
  5960. sourceTree = "<group>";
  5961. };
  5962. C75ACED7236AAE3000CB6374 /* View */ = {
  5963. isa = PBXGroup;
  5964. children = (
  5965. C75ACEE1236AAE9300CB6374 /* MyTDGroupView.h */,
  5966. C75ACEE2236AAE9300CB6374 /* MyTDGroupView.m */,
  5967. EB440FC723A3324F006BCB95 /* createSearchBarView.h */,
  5968. EB440FC823A3324F006BCB95 /* createSearchBarView.m */,
  5969. EBE36C4523A863FC002BE674 /* NewTopicTextView.h */,
  5970. EBE36C4623A863FC002BE674 /* NewTopicTextView.m */,
  5971. );
  5972. path = View;
  5973. sourceTree = "<group>";
  5974. };
  5975. C76DB428236ACAD100369F5C /* MyTDTopic */ = {
  5976. isa = PBXGroup;
  5977. children = (
  5978. EB96B8A123BF5ACA00EE09D7 /* MyTDTopic.storyboard */,
  5979. EB96B8A223BF5ACA00EE09D7 /* MyTDTopicExtent.storyboard */,
  5980. C76DB42C236ACB0800369F5C /* View */,
  5981. C76DB42B236ACAFE00369F5C /* Model */,
  5982. C76DB429236ACAF300369F5C /* VC */,
  5983. );
  5984. path = MyTDTopic;
  5985. sourceTree = "<group>";
  5986. };
  5987. C76DB429236ACAF300369F5C /* VC */ = {
  5988. isa = PBXGroup;
  5989. children = (
  5990. EB7955C824C6959700EE9A55 /* TopicBook */,
  5991. C76DB42D236ACB4B00369F5C /* MyTDTopicViewController.h */,
  5992. C76DB42E236ACB4B00369F5C /* MyTDTopicViewController.m */,
  5993. EB0F64C323A9DA2B00AD56A0 /* MyTDTopicGroupManageVC.h */,
  5994. EB0F64C423A9DA2B00AD56A0 /* MyTDTopicGroupManageVC.m */,
  5995. EB4310B424CEAF6D00481097 /* MyTDTopicGroupSearchVC.h */,
  5996. EB4310B524CEAF6D00481097 /* MyTDTopicGroupSearchVC.m */,
  5997. EB0F64D123AA096A00AD56A0 /* MyTDTopicGroupUserVC.h */,
  5998. EB0F64D223AA096A00AD56A0 /* MyTDTopicGroupUserVC.m */,
  5999. EB820ADD23BC97BA00B96C6C /* MyTDTopicUserSearchVC.h */,
  6000. EB820ADE23BC97BA00B96C6C /* MyTDTopicUserSearchVC.m */,
  6001. EB5A586E23AB512100B93149 /* MyTDTopicDetailVC.h */,
  6002. EB5A586F23AB512100B93149 /* MyTDTopicDetailVC.m */,
  6003. EBBC59DB25318F7A00AB12EF /* ShowImageVC.h */,
  6004. EBBC59DC25318F7A00AB12EF /* ShowImageVC.m */,
  6005. EB5A587123AB7D5800B93149 /* MyTDTopicSearchVC.h */,
  6006. EB5A587223AB7D5800B93149 /* MyTDTopicSearchVC.m */,
  6007. EBCFA0F523AC6CBC00A62645 /* MyTDTopicUserMoveVC.h */,
  6008. EBCFA0F623AC6CBC00A62645 /* MyTDTopicUserMoveVC.m */,
  6009. EBCFA0F823ACEBE600A62645 /* MyTDTopicCreateVC.h */,
  6010. EBCFA0F923ACEBE600A62645 /* MyTDTopicCreateVC.m */,
  6011. EBCFA0FB23ACF06A00A62645 /* MyTDTopicSelectExtentVC.h */,
  6012. EBCFA0FC23ACF06A00A62645 /* MyTDTopicSelectExtentVC.m */,
  6013. EBB83E4823B358DD00A8C4BC /* ChangeTopicVC.h */,
  6014. EBB83E4923B358DD00A8C4BC /* ChangeTopicVC.m */,
  6015. EB6D1C1423F6B590000D2EF8 /* FileOpenViewController.h */,
  6016. EB6D1C1523F6B590000D2EF8 /* FileOpenViewController.m */,
  6017. EB629DFD2416206200A5E0EE /* _NoInputAccessoryView.h */,
  6018. EB629DFE2416206200A5E0EE /* _NoInputAccessoryView.m */,
  6019. );
  6020. path = VC;
  6021. sourceTree = "<group>";
  6022. };
  6023. C76DB42B236ACAFE00369F5C /* Model */ = {
  6024. isa = PBXGroup;
  6025. children = (
  6026. C76DB430236ACC1200369F5C /* MyTDTopicModel.h */,
  6027. C76DB431236ACC1200369F5C /* MyTDTopicModel.m */,
  6028. C76DB43C236ACF5700369F5C /* MyTDTopicModelSub.h */,
  6029. C76DB43D236ACF5700369F5C /* MyTDTopicModelSub.m */,
  6030. EB0F64CE23A9EE5900AD56A0 /* TopicGroupManageModel.h */,
  6031. EB0F64CF23A9EE5900AD56A0 /* TopicGroupManageModel.m */,
  6032. EB0DBF0523ADA8EE00E977ED /* MyTDTSEModel.h */,
  6033. EB0DBF0623ADA8EE00E977ED /* MyTDTSEModel.m */,
  6034. EBB83E5023B3668C00A8C4BC /* ChangeTopicModel.h */,
  6035. EBB83E5123B3668C00A8C4BC /* ChangeTopicModel.m */,
  6036. EB96B8A523BF73AF00EE09D7 /* TopicListFolderResultModel.h */,
  6037. EB96B8A623BF73AF00EE09D7 /* TopicListFolderResultModel.m */,
  6038. EB7955D124C6BB4E00EE9A55 /* TopicBookModel.h */,
  6039. EB7955D224C6BB4E00EE9A55 /* TopicBookModel.m */,
  6040. );
  6041. path = Model;
  6042. sourceTree = "<group>";
  6043. };
  6044. C76DB42C236ACB0800369F5C /* View */ = {
  6045. isa = PBXGroup;
  6046. children = (
  6047. EBF2D56123C2FB8F00EC35C4 /* MHConstant.h */,
  6048. EBF2D56223C2FB8F00EC35C4 /* MHConstant.m */,
  6049. EBF2D55E23C2EC1700EC35C4 /* MHDivider.h */,
  6050. EBF2D55F23C2EC1800EC35C4 /* MHDivider.m */,
  6051. EBF2D55C23C2E9AC00EC35C4 /* MHCommentReply.h */,
  6052. EBF2D55B23C2E9AC00EC35C4 /* MHCommentReply.m */,
  6053. EBF2D55823C2E92A00EC35C4 /* MHTopic.h */,
  6054. EBF2D55923C2E92A00EC35C4 /* MHTopic.m */,
  6055. EBF2D55623C2E8F200EC35C4 /* MHUser.h */,
  6056. EBF2D55523C2E8F200EC35C4 /* MHUser.m */,
  6057. EBF2D55323C2E89F00EC35C4 /* MHComment.h */,
  6058. EBF2D55223C2E89F00EC35C4 /* MHComment.m */,
  6059. EBF2D54D23C2E85600EC35C4 /* MHCommentFrame.h */,
  6060. EBF2D54C23C2E85600EC35C4 /* MHCommentFrame.m */,
  6061. EBF2D54F23C2E85600EC35C4 /* MHTopicFrame.h */,
  6062. EBF2D54E23C2E85600EC35C4 /* MHTopicFrame.m */,
  6063. EBF2D54723C2E76600EC35C4 /* MHTopicCell.h */,
  6064. EBF2D54923C2E76600EC35C4 /* MHTopicCell.m */,
  6065. EBF2D54623C2E76600EC35C4 /* MHTopicCommentCell.h */,
  6066. EBF2D54823C2E76600EC35C4 /* MHTopicCommentCell.m */,
  6067. EB0DBF0223ADA8A200E977ED /* MyTDTopicSelectExtentCell.h */,
  6068. EB0DBF0123ADA8A200E977ED /* MyTDTopicSelectExtentCell.m */,
  6069. EB0DBF0023ADA8A200E977ED /* MyTDTopicSelectExtentCell.xib */,
  6070. C76DB433236ACC8100369F5C /* MyTDTopicSelectGroupVIew.h */,
  6071. C76DB434236ACC8100369F5C /* MyTDTopicSelectGroupVIew.m */,
  6072. C76DB436236ACCC400369F5C /* MyTDTopicTitleView.h */,
  6073. C76DB437236ACCC400369F5C /* MyTDTopicTitleView.m */,
  6074. C76DB439236ACCF500369F5C /* MyTDTopicCellView.h */,
  6075. C76DB43A236ACCF500369F5C /* MyTDTopicCellView.m */,
  6076. EB0F64C923A9DAD000AD56A0 /* TopicGroupManageCell.h */,
  6077. EB0F64CA23A9DAD000AD56A0 /* TopicGroupManageCell.m */,
  6078. EB0F64CB23A9DAD000AD56A0 /* TopicGroupManageCell.xib */,
  6079. EBB83E4B23B35FD300A8C4BC /* ChangeTopicCell.h */,
  6080. EBB83E4C23B35FD300A8C4BC /* ChangeTopicCell.m */,
  6081. EBB83E4D23B35FD300A8C4BC /* ChangeTopicCell.xib */,
  6082. EB7955CC24C6B0BB00EE9A55 /* TopicBookCell.h */,
  6083. EB7955CD24C6B0BB00EE9A55 /* TopicBookCell.m */,
  6084. EB7955CE24C6B0BB00EE9A55 /* TopicBookCell.xib */,
  6085. );
  6086. path = View;
  6087. sourceTree = "<group>";
  6088. };
  6089. C770405823AC654000BFF1B0 /* UIView */ = {
  6090. isa = PBXGroup;
  6091. children = (
  6092. C770405A23AC655700BFF1B0 /* UIView+BYIBInspectable.h */,
  6093. C770405923AC655700BFF1B0 /* UIView+BYIBInspectable.m */,
  6094. );
  6095. path = UIView;
  6096. sourceTree = "<group>";
  6097. };
  6098. C770406A23AC9F4900BFF1B0 /* MeetingModel */ = {
  6099. isa = PBXGroup;
  6100. children = (
  6101. C770406B23AC9F7300BFF1B0 /* MeetingListModel.h */,
  6102. C770406C23AC9F7300BFF1B0 /* MeetingListModel.m */,
  6103. C7819D5B23B0597500300297 /* TimeSourceModel.h */,
  6104. C7819D5C23B0597500300297 /* TimeSourceModel.m */,
  6105. C77E218123ADF55F009A230C /* SelectedTimeModel.h */,
  6106. C77E218223ADF55F009A230C /* SelectedTimeModel.m */,
  6107. C77E218423AE0ED5009A230C /* SelectedTimeSourceModel.h */,
  6108. C77E218523AE0ED5009A230C /* SelectedTimeSourceModel.m */,
  6109. C77E218C23AE4CC2009A230C /* WorkFlowOrderModel.h */,
  6110. C77E218D23AE4CC2009A230C /* WorkFlowOrderModel.m */,
  6111. C7716AF723B3435C00D6D45D /* MeetingSummaryListModel.h */,
  6112. C7716AF823B3435C00D6D45D /* MeetingSummaryListModel.m */,
  6113. C772299923B5A7A700007B21 /* MyMeetingListModel.h */,
  6114. C772299A23B5A7A700007B21 /* MyMeetingListModel.m */,
  6115. C77229A123B63B3500007B21 /* WorkFlowPersonnelListModel.h */,
  6116. C77229A223B63B3500007B21 /* WorkFlowPersonnelListModel.m */,
  6117. EB629DFA2415E28900A5E0EE /* MeetingDataModel.h */,
  6118. EB629DFB2415E28900A5E0EE /* MeetingDataModel.m */,
  6119. );
  6120. path = MeetingModel;
  6121. sourceTree = "<group>";
  6122. };
  6123. C7743F8C23A86D4700973D70 /* MyWorkFlow */ = {
  6124. isa = PBXGroup;
  6125. children = (
  6126. C7743F8D23A86D5200973D70 /* Controller */,
  6127. );
  6128. name = MyWorkFlow;
  6129. sourceTree = "<group>";
  6130. };
  6131. C7743F8D23A86D5200973D70 /* Controller */ = {
  6132. isa = PBXGroup;
  6133. children = (
  6134. C7743F8E23A86D7000973D70 /* MyWorkFlowListController.h */,
  6135. C7743F8F23A86D7000973D70 /* MyWorkFlowListController.m */,
  6136. C7743F9023A86D7000973D70 /* MyWorkFlowListController.xib */,
  6137. C78373ED23A9D82E0096AFE2 /* HistoricalWorkFlowListController.h */,
  6138. C78373EE23A9D82E0096AFE2 /* HistoricalWorkFlowListController.m */,
  6139. C78373EF23A9D82E0096AFE2 /* HistoricalWorkFlowListController.xib */,
  6140. C783740523AA42C00096AFE2 /* WorkFlowDetailsController.h */,
  6141. C783740623AA42C00096AFE2 /* WorkFlowDetailsController.m */,
  6142. C783740723AA42C00096AFE2 /* WorkFlowDetailsController.xib */,
  6143. C7799F0023AB2C6E00270988 /* WorkFlowOrderController.h */,
  6144. C7799F0123AB2C6E00270988 /* WorkFlowOrderController.m */,
  6145. C7799F0223AB2C6E00270988 /* WorkFlowOrderController.xib */,
  6146. C7799F0F23AB7E6500270988 /* WorkFlowPersonnelListController.h */,
  6147. C7799F1023AB7E6500270988 /* WorkFlowPersonnelListController.m */,
  6148. C7799F1123AB7E6500270988 /* WorkFlowPersonnelListController.xib */,
  6149. );
  6150. name = Controller;
  6151. sourceTree = "<group>";
  6152. };
  6153. C7743F9323A86D7A00973D70 /* WorkFlowFecord */ = {
  6154. isa = PBXGroup;
  6155. children = (
  6156. C7743F9423A86D9700973D70 /* Controller */,
  6157. );
  6158. name = WorkFlowFecord;
  6159. sourceTree = "<group>";
  6160. };
  6161. C7743F9423A86D9700973D70 /* Controller */ = {
  6162. isa = PBXGroup;
  6163. children = (
  6164. C7743F9523A86DAE00973D70 /* WorkFlowFecordController.h */,
  6165. C7743F9623A86DAE00973D70 /* WorkFlowFecordController.m */,
  6166. C7743F9723A86DAE00973D70 /* WorkFlowFecordController.xib */,
  6167. C78373F823AA287C0096AFE2 /* FecordJoinWorkFlowListController.h */,
  6168. C78373F923AA287C0096AFE2 /* FecordJoinWorkFlowListController.m */,
  6169. C78373FA23AA287C0096AFE2 /* FecordJoinWorkFlowListController.xib */,
  6170. C7EE366123BAF631002EB3BF /* MeetingFecordDetailsController.h */,
  6171. C7EE366223BAF631002EB3BF /* MeetingFecordDetailsController.m */,
  6172. C7EE366323BAF631002EB3BF /* MeetingFecordDetailsController.xib */,
  6173. C7EE367523BB2D57002EB3BF /* NewMeetingFecordDetailsController.h */,
  6174. C7EE367623BB2D57002EB3BF /* NewMeetingFecordDetailsController.m */,
  6175. C7EE367723BB2D57002EB3BF /* NewMeetingFecordDetailsController.xib */,
  6176. EBF64A74241C73510074FD55 /* WorkFlowFecordSearchVC.h */,
  6177. EBF64A75241C73510074FD55 /* WorkFlowFecordSearchVC.m */,
  6178. EBF64A77241C810A0074FD55 /* FecordSearchVC.h */,
  6179. EBF64A78241C810A0074FD55 /* FecordSearchVC.m */,
  6180. );
  6181. name = Controller;
  6182. sourceTree = "<group>";
  6183. };
  6184. C7743FA923A9015600973D70 /* MyWorkFlowCell */ = {
  6185. isa = PBXGroup;
  6186. children = (
  6187. C78373F223A9F5200096AFE2 /* HistoricalWorkFlowCell */,
  6188. C7743FAA23A9018200973D70 /* MyWorkFlowListCell.h */,
  6189. C7743FAB23A9018200973D70 /* MyWorkFlowListCell.m */,
  6190. C7743FAC23A9018200973D70 /* MyWorkFlowListCell.xib */,
  6191. C7743FAF23A9078100973D70 /* historicalRecordCell.h */,
  6192. C7743FB023A9078100973D70 /* historicalRecordCell.m */,
  6193. C7743FB123A9078100973D70 /* historicalRecordCell.xib */,
  6194. );
  6195. path = MyWorkFlowCell;
  6196. sourceTree = "<group>";
  6197. };
  6198. C7799EF023AB145A00270988 /* WorkFlowOrderCell */ = {
  6199. isa = PBXGroup;
  6200. children = (
  6201. C7799EF123AB19EA00270988 /* WorkFlowOrderTopCell.h */,
  6202. C7799EF223AB19EA00270988 /* WorkFlowOrderTopCell.m */,
  6203. C7799EF323AB19EA00270988 /* WorkFlowOrderTopCell.xib */,
  6204. C7799EF623AB1DF100270988 /* WorkFlowOrderCell.h */,
  6205. C7799EF723AB1DF100270988 /* WorkFlowOrderCell.m */,
  6206. C7799EF823AB1DF100270988 /* WorkFlowOrderCell.xib */,
  6207. C7799EFB23AB2A1600270988 /* WorkFlowOrderItemCell.h */,
  6208. C7799EFC23AB2A1600270988 /* WorkFlowOrderItemCell.m */,
  6209. C7799EFD23AB2A1600270988 /* WorkFlowOrderItemCell.xib */,
  6210. C7799F0523AB5C5A00270988 /* WorkFlowOrderInputCell.h */,
  6211. C7799F0623AB5C5A00270988 /* WorkFlowOrderInputCell.m */,
  6212. C7799F0723AB5C5A00270988 /* WorkFlowOrderInputCell.xib */,
  6213. C77E217C23ADEE51009A230C /* WorkFlowOrderSelectedCell.h */,
  6214. C77E217D23ADEE51009A230C /* WorkFlowOrderSelectedCell.m */,
  6215. C77E217E23ADEE51009A230C /* WorkFlowOrderSelectedCell.xib */,
  6216. C77E218723AE3776009A230C /* WorkFlowOrderSelectedTimeCell.h */,
  6217. C77E218823AE3776009A230C /* WorkFlowOrderSelectedTimeCell.m */,
  6218. C77E218923AE3776009A230C /* WorkFlowOrderSelectedTimeCell.xib */,
  6219. C79C6D3323BF0A5500BE4156 /* MyMeetingTimeView.h */,
  6220. C79C6D3423BF0A5500BE4156 /* MyMeetingTimeView.m */,
  6221. C79C6D3623BF0A6100BE4156 /* MyMeetingTimeView.xib */,
  6222. C79C6D3823BF16C500BE4156 /* MeetingDetailsTimeCell.h */,
  6223. C79C6D3923BF16C500BE4156 /* MeetingDetailsTimeCell.m */,
  6224. C79C6D3A23BF16C500BE4156 /* MeetingDetailsTimeCell.xib */,
  6225. );
  6226. path = WorkFlowOrderCell;
  6227. sourceTree = "<group>";
  6228. };
  6229. C7799F2423ABA66700270988 /* WorkFlowFecordCell */ = {
  6230. isa = PBXGroup;
  6231. children = (
  6232. C7EE366623BAFA71002EB3BF /* MeetingDetailsHeadCell.h */,
  6233. C7EE366723BAFA71002EB3BF /* MeetingDetailsHeadCell.m */,
  6234. C7EE366823BAFA71002EB3BF /* MeetingDetailsHeadCell.xib */,
  6235. C7EE366B23BAFD2E002EB3BF /* FecordDetailsContentCell.h */,
  6236. C7EE366C23BAFD2E002EB3BF /* FecordDetailsContentCell.m */,
  6237. C7EE366D23BAFD2E002EB3BF /* FecordDetailsContentCell.xib */,
  6238. C7EE367023BAFE6E002EB3BF /* FecordDetailsGoodsCell.h */,
  6239. C7EE367123BAFE6E002EB3BF /* FecordDetailsGoodsCell.m */,
  6240. C7EE367223BAFE6E002EB3BF /* FecordDetailsGoodsCell.xib */,
  6241. C76CC9D423BC9C7A003B23DC /* MeetingRecordJoinCell.h */,
  6242. C76CC9D523BC9C7A003B23DC /* MeetingRecordJoinCell.m */,
  6243. C76CC9D623BC9C7A003B23DC /* MeetingRecordJoinCell.xib */,
  6244. C76CC9D923BC9E25003B23DC /* MeetingRecordUserCell.h */,
  6245. C76CC9DA23BC9E25003B23DC /* MeetingRecordUserCell.m */,
  6246. C76CC9DB23BC9E25003B23DC /* MeetingRecordUserCell.xib */,
  6247. C76CC9DE23BCA03D003B23DC /* MeetingRecordTitleCell.h */,
  6248. C76CC9DF23BCA03D003B23DC /* MeetingRecordTitleCell.m */,
  6249. C76CC9E023BCA03D003B23DC /* MeetingRecordTitleCell.xib */,
  6250. C76CC9E323BCA6B6003B23DC /* MeetingRecordContentCell.h */,
  6251. C76CC9E423BCA6B6003B23DC /* MeetingRecordContentCell.m */,
  6252. C76CC9E523BCA6B6003B23DC /* MeetingRecordContentCell.xib */,
  6253. );
  6254. path = WorkFlowFecordCell;
  6255. sourceTree = "<group>";
  6256. };
  6257. C7811F5823603D4A000CC76A /* VC */ = {
  6258. isa = PBXGroup;
  6259. children = (
  6260. EB415134246BC59800030371 /* BookStore */,
  6261. C7DBAE4D237A87E100D427DD /* FwzBaseView.h */,
  6262. C7DBAE4E237A87E100D427DD /* FwzBaseView.m */,
  6263. C768AFB52379778F00E0A066 /* MyTableView.h */,
  6264. C768AFB42379778F00E0A066 /* MyTableView.m */,
  6265. C768AFB123796C0C00E0A066 /* IgnoreHeaderTouchAndRecognizeSimultaneousTableView.h */,
  6266. C768AFAE23796C0B00E0A066 /* IgnoreHeaderTouchAndRecognizeSimultaneousTableView.m */,
  6267. C768AFAF23796C0B00E0A066 /* IgnoreHeaderTouchTableView.h */,
  6268. C768AFB023796C0C00E0A066 /* IgnoreHeaderTouchTableView.m */,
  6269. C7D6BA15235DA18700770E7C /* HomeDetailController.h */,
  6270. C7D6BA11235DA18700770E7C /* HomeDetailController.m */,
  6271. EB44409424A1F5D200B2E212 /* IndexViewController.h */,
  6272. EB44409524A1F5D200B2E212 /* IndexViewController.m */,
  6273. EBF3C5172513356400D40A66 /* IndexSearchVC.h */,
  6274. EBF3C5182513356400D40A66 /* IndexSearchVC.m */,
  6275. 324F17F2239E57010025CAE7 /* HomeTestViewController.h */,
  6276. 324F17F3239E57010025CAE7 /* HomeTestViewController.m */,
  6277. 324F17F5239E5B540025CAE7 /* App.pdf */,
  6278. C7973956237BB5AB008BA2DF /* APIPOPOPO.h */,
  6279. C7973957237BB5AB008BA2DF /* APIPOPOPO.m */,
  6280. C7D6BA13235DA18700770E7C /* ReplyDetailController.h */,
  6281. C7D6BA14235DA18700770E7C /* ReplyDetailController.m */,
  6282. EB44409724A1FF3C00B2E212 /* SubVC */,
  6283. C7D6BA29235DA18700770E7C /* View */,
  6284. );
  6285. path = VC;
  6286. sourceTree = "<group>";
  6287. };
  6288. C7811F5A23603EE2000CC76A /* HomeDetail */ = {
  6289. isa = PBXGroup;
  6290. children = (
  6291. C7D6BA1A235DA18700770E7C /* CommentSetView.h */,
  6292. C7D6BA20235DA18700770E7C /* CommentSetView.m */,
  6293. C7D6BA1D235DA18700770E7C /* DetailTitleView.h */,
  6294. C7D6BA22235DA18700770E7C /* DetailTitleView.m */,
  6295. C7D6BA1C235DA18700770E7C /* HomeDetailCommentCell.h */,
  6296. C7D6BA21235DA18700770E7C /* HomeDetailCommentCell.m */,
  6297. 3264782323BF0B9600E0DC2D /* ArtticleComentCell.h */,
  6298. 3264782423BF0B9600E0DC2D /* ArtticleComentCell.m */,
  6299. 3264782523BF0B9600E0DC2D /* ArtticleComentCell.xib */,
  6300. C75F9F29236875CB002867A2 /* ComentSubCell.h */,
  6301. C75F9F2A236875CB002867A2 /* ComentSubCell.m */,
  6302. C7D6BA1E235DA18700770E7C /* TextInputView.h */,
  6303. C7D6BA23235DA18700770E7C /* TextInputView.m */,
  6304. C7D6BA1B235DA18700770E7C /* ThirdSharedView.h */,
  6305. C7D6BA1F235DA18700770E7C /* ThirdSharedView.m */,
  6306. C75ACED0236A842400CB6374 /* TDShareButtonView.h */,
  6307. C75ACED1236A842400CB6374 /* TDShareButtonView.m */,
  6308. C75F9F202367FAD3002867A2 /* DetailContentView.h */,
  6309. C75F9F212367FAD3002867A2 /* DetailContentView.m */,
  6310. EBFC605823FE52DE00A6874B /* HomeCommentView.h */,
  6311. EBFC605923FE52DE00A6874B /* HomeCommentView.m */,
  6312. EBFC605B23FE52EE00A6874B /* HomeCommentView.xib */,
  6313. );
  6314. path = HomeDetail;
  6315. sourceTree = "<group>";
  6316. };
  6317. C7811F5B23603F64000CC76A /* Cell */ = {
  6318. isa = PBXGroup;
  6319. children = (
  6320. EBCFCDE025184621002CD1B8 /* HomeSchoolContentCell.h */,
  6321. EBCFCDE125184621002CD1B8 /* HomeSchoolContentCell.m */,
  6322. EBCFCDE225184621002CD1B8 /* HomeSchoolContentCell.xib */,
  6323. C7AB843F235EE65600F2363F /* WorkListCell.h */,
  6324. C7AB8440235EE65600F2363F /* WorkListCell.m */,
  6325. C7D6BA2E235DA18700770E7C /* HomeTableViewCell.h */,
  6326. C7D6BA2B235DA18700770E7C /* HomeTableViewCell.m */,
  6327. 325BB82D23CEFB34006F3972 /* HomeTableViewCell.xib */,
  6328. C75049EF236027DA0096B15B /* HomeContentCell.h */,
  6329. C75049F0236027DA0096B15B /* HomeContentCell.m */,
  6330. C75049F1236027DA0096B15B /* HomeContentCell.xib */,
  6331. EB0FA5CD241F6DBD00BF8558 /* HomeScrCell.h */,
  6332. EB0FA5CE241F6DBD00BF8558 /* HomeScrCell.m */,
  6333. EB0FA5CF241F6DBD00BF8558 /* HomeScrCell.xib */,
  6334. EB8143BA2440502B00C439A9 /* HomeListWorkCell.h */,
  6335. EB8143BB2440502B00C439A9 /* HomeListWorkCell.m */,
  6336. EB8143BC2440502B00C439A9 /* HomeListWorkCell.xib */,
  6337. EB8143BF24407A3E00C439A9 /* AddChanelNoDataCell.h */,
  6338. EB8143C024407A3E00C439A9 /* AddChanelNoDataCell.m */,
  6339. EB8143C124407A3E00C439A9 /* AddChanelNoDataCell.xib */,
  6340. EBFA5EF1246E374A00915D5F /* HomeMusicCell.h */,
  6341. EBFA5EF2246E374A00915D5F /* HomeMusicCell.m */,
  6342. EBFA5EF3246E374A00915D5F /* HomeMusicCell.xib */,
  6343. EB6E84CD246F99A200BE0524 /* HomeSchoolCell.h */,
  6344. EB6E84CE246F99A200BE0524 /* HomeSchoolCell.m */,
  6345. EB6E84CF246F99A200BE0524 /* HomeSchoolCell.xib */,
  6346. EB6E84D2246FB90300BE0524 /* HomeUserPrivilegeCell.h */,
  6347. EB6E84D3246FB90300BE0524 /* HomeUserPrivilegeCell.m */,
  6348. EB6E84D4246FB90300BE0524 /* HomeUserPrivilegeCell.xib */,
  6349. EB5F44F12474BFAD008D316D /* HomeGoodBookCell.h */,
  6350. EB5F44F22474BFAD008D316D /* HomeGoodBookCell.m */,
  6351. EB5F44F32474BFAD008D316D /* HomeGoodBookCell.xib */,
  6352. EB5F44F62474C52C008D316D /* HomeGoodBookCollectCell.h */,
  6353. EB5F44F72474C52C008D316D /* HomeGoodBookCollectCell.m */,
  6354. EB5F44F82474C52C008D316D /* HomeGoodBookCollectCell.xib */,
  6355. EB6E84D7246FD1BF00BE0524 /* HomeWeiCousreCell.h */,
  6356. EB6E84D8246FD1BF00BE0524 /* HomeWeiCousreCell.m */,
  6357. EB6E84D9246FD1BF00BE0524 /* HomeWeiCousreCell.xib */,
  6358. EBF7177924726A4500ED1838 /* HomeWeiCousreCollectCell.h */,
  6359. EBF7177A24726A4500ED1838 /* HomeWeiCousreCollectCell.m */,
  6360. EBF7177B24726A4500ED1838 /* HomeWeiCousreCollectCell.xib */,
  6361. EB6F001C247381FD00808484 /* HomeProblemTopCell.h */,
  6362. EB6F001D247381FD00808484 /* HomeProblemTopCell.m */,
  6363. EB6F001E247381FD00808484 /* HomeProblemTopCell.xib */,
  6364. EB6F002124738F0100808484 /* HomeProblemTopCollectCell.h */,
  6365. EB6F002224738F0100808484 /* HomeProblemTopCollectCell.m */,
  6366. EB6F002324738F0100808484 /* HomeProblemTopCollectCell.xib */,
  6367. EBD537AA24908CD3000EDF2B /* HomeTeacherCell.h */,
  6368. EBD537AB24908CD3000EDF2B /* HomeTeacherCell.m */,
  6369. EBD537AC24908CD3000EDF2B /* HomeTeacherCell.xib */,
  6370. EBE1E2AF24947C2800DB80BF /* HomeBigshotCell.h */,
  6371. EBE1E2B024947C2800DB80BF /* HomeBigshotCell.m */,
  6372. EBE1E2B124947C2800DB80BF /* HomeBigshotCell.xib */,
  6373. EBE1E2B424947E0700DB80BF /* HomeBigshotCollectCell.h */,
  6374. EBE1E2B524947E0700DB80BF /* HomeBigshotCollectCell.m */,
  6375. EBE1E2B624947E0800DB80BF /* HomeBigshotCollectCell.xib */,
  6376. EBE1E2B92494A40100DB80BF /* HomeBigshotListCell.h */,
  6377. EBE1E2BB2494A40200DB80BF /* HomeBigshotListCell.m */,
  6378. EBE1E2BA2494A40100DB80BF /* HomeBigshotListCell.xib */,
  6379. EBF3C53425134DBB00D40A66 /* IndexAllCell.h */,
  6380. EBF3C53525134DBB00D40A66 /* IndexAllCell.m */,
  6381. EBF3C53625134DBB00D40A66 /* IndexAllCell.xib */,
  6382. EBD6230E25148231007FF6BC /* IndexGoodBookCell.h */,
  6383. EBD6230F25148231007FF6BC /* IndexGoodBookCell.m */,
  6384. EBD6231025148231007FF6BC /* IndexGoodBookCell.xib */,
  6385. );
  6386. path = Cell;
  6387. sourceTree = "<group>";
  6388. };
  6389. C78373F223A9F5200096AFE2 /* HistoricalWorkFlowCell */ = {
  6390. isa = PBXGroup;
  6391. children = (
  6392. C7799EF023AB145A00270988 /* WorkFlowOrderCell */,
  6393. C78373F323A9F5430096AFE2 /* HistoricalWorkFlowListCell.h */,
  6394. C78373F423A9F5430096AFE2 /* HistoricalWorkFlowListCell.m */,
  6395. C78373F523A9F5430096AFE2 /* HistoricalWorkFlowListCell.xib */,
  6396. C783740023AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.h */,
  6397. C783740123AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.m */,
  6398. C783740223AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.xib */,
  6399. C783740A23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.h */,
  6400. C783740B23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.m */,
  6401. C783740C23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.xib */,
  6402. C783740F23AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.h */,
  6403. C783741023AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.m */,
  6404. C783741123AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.xib */,
  6405. C772299C23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.h */,
  6406. C772299D23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.m */,
  6407. C772299E23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.xib */,
  6408. C783741423AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.h */,
  6409. C783741523AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.m */,
  6410. C783741623AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.xib */,
  6411. C783741923AA48F50096AFE2 /* HistoricalWorkFlowDetailsBaseCell.h */,
  6412. C783741A23AA48F50096AFE2 /* HistoricalWorkFlowDetailsBaseCell.m */,
  6413. C7799F1423AB849F00270988 /* WorkFlowPersonnelListCell.h */,
  6414. C7799F1523AB849F00270988 /* WorkFlowPersonnelListCell.m */,
  6415. C7799F1623AB849F00270988 /* WorkFlowPersonnelListCell.xib */,
  6416. C7799F1923AB991100270988 /* WorkFlowPersonnelListHeadView.h */,
  6417. C7799F1A23AB991100270988 /* WorkFlowPersonnelListHeadView.m */,
  6418. C7799F1C23AB99C500270988 /* WorkFlowPersonnelListHeadView.xib */,
  6419. );
  6420. path = HistoricalWorkFlowCell;
  6421. sourceTree = "<group>";
  6422. };
  6423. C788F1802369444B0070A6B3 /* Favorites */ = {
  6424. isa = PBXGroup;
  6425. children = (
  6426. C788F184236944C70070A6B3 /* view */,
  6427. C788F183236944BB0070A6B3 /* Cell */,
  6428. C788F182236944B10070A6B3 /* Model */,
  6429. C788F1812369449B0070A6B3 /* VC */,
  6430. );
  6431. path = Favorites;
  6432. sourceTree = "<group>";
  6433. };
  6434. C788F1812369449B0070A6B3 /* VC */ = {
  6435. isa = PBXGroup;
  6436. children = (
  6437. C788F1852369451A0070A6B3 /* FavoritesViewController.h */,
  6438. C788F1862369451A0070A6B3 /* FavoritesViewController.m */,
  6439. C788F1872369451A0070A6B3 /* FavoritesViewController.xib */,
  6440. );
  6441. path = VC;
  6442. sourceTree = "<group>";
  6443. };
  6444. C788F182236944B10070A6B3 /* Model */ = {
  6445. isa = PBXGroup;
  6446. children = (
  6447. C788F18A236957890070A6B3 /* FavoriteFindModel.h */,
  6448. C788F18B236957890070A6B3 /* FavoriteFindModel.m */,
  6449. C788F18D236957E70070A6B3 /* FavoriteTextModel.h */,
  6450. C788F18E236957E70070A6B3 /* FavoriteTextModel.m */,
  6451. );
  6452. path = Model;
  6453. sourceTree = "<group>";
  6454. };
  6455. C788F183236944BB0070A6B3 /* Cell */ = {
  6456. isa = PBXGroup;
  6457. children = (
  6458. C788F198236963980070A6B3 /* FavoriteTextCell.h */,
  6459. C788F199236963980070A6B3 /* FavoriteTextCell.m */,
  6460. C744D23D2369AABE00D51EDD /* MyFavoriteFindCell.h */,
  6461. C744D23E2369AABE00D51EDD /* MyFavoriteFindCell.m */,
  6462. );
  6463. path = Cell;
  6464. sourceTree = "<group>";
  6465. };
  6466. C788F184236944C70070A6B3 /* view */ = {
  6467. isa = PBXGroup;
  6468. children = (
  6469. C744D2402369B97E00D51EDD /* FavoriteHeaderView.h */,
  6470. C744D2412369B97E00D51EDD /* FavoriteHeaderView.m */,
  6471. );
  6472. path = view;
  6473. sourceTree = "<group>";
  6474. };
  6475. C7938E4D2364433000746248 /* ClickOK */ = {
  6476. isa = PBXGroup;
  6477. children = (
  6478. C7938E582364447E00746248 /* View */,
  6479. C7938E4E236443AA00746248 /* ClickOKViewController.h */,
  6480. C7938E4F236443AA00746248 /* ClickOKViewController.m */,
  6481. C7D6B9F9235DA18700770E7C /* AddChannel */,
  6482. );
  6483. path = ClickOK;
  6484. sourceTree = "<group>";
  6485. };
  6486. C7938E582364447E00746248 /* View */ = {
  6487. isa = PBXGroup;
  6488. children = (
  6489. C7938E532364446B00746248 /* ClickOKCell.h */,
  6490. C7938E542364446B00746248 /* ClickOKCell.m */,
  6491. C7938E552364446B00746248 /* ClickOKCell.xib */,
  6492. C751012523837FB100E4429B /* MyZanCell.h */,
  6493. C751012623837FB100E4429B /* MyZanCell.m */,
  6494. C751012723837FB100E4429B /* MyZanCell.xib */,
  6495. C75F9F2323681DD8002867A2 /* ClickOKView.h */,
  6496. C75F9F2423681DD8002867A2 /* ClickOKView.m */,
  6497. );
  6498. path = View;
  6499. sourceTree = "<group>";
  6500. };
  6501. C7974A15236BDEAC004D5470 /* VC */ = {
  6502. isa = PBXGroup;
  6503. children = (
  6504. C7743F9323A86D7A00973D70 /* WorkFlowFecord */,
  6505. C7743F8C23A86D4700973D70 /* MyWorkFlow */,
  6506. C7D6BCC0235DA28500770E7C /* WorkFlowController.h */,
  6507. C7D6BCC1235DA28500770E7C /* WorkFlowController.m */,
  6508. C7743F8423A86A8600973D70 /* WorkFlowHomeListController.h */,
  6509. C7743F8523A86A8600973D70 /* WorkFlowHomeListController.m */,
  6510. C7743F8623A86A8600973D70 /* WorkFlowHomeListController.xib */,
  6511. );
  6512. name = VC;
  6513. sourceTree = "<group>";
  6514. };
  6515. C7974A16236BDEBC004D5470 /* Model */ = {
  6516. isa = PBXGroup;
  6517. children = (
  6518. C770406A23AC9F4900BFF1B0 /* MeetingModel */,
  6519. C7974A19236BE250004D5470 /* WorkFLowModel.h */,
  6520. C7974A1A236BE250004D5470 /* WorkFLowModel.m */,
  6521. );
  6522. name = Model;
  6523. sourceTree = "<group>";
  6524. };
  6525. C7974A17236BDECC004D5470 /* View */ = {
  6526. isa = PBXGroup;
  6527. children = (
  6528. C7E3E2F2237179AA0013BBDD /* FootCollectionReusableView.h */,
  6529. C7E3E2F3237179AA0013BBDD /* FootCollectionReusableView.m */,
  6530. C7E3E2F4237179AA0013BBDD /* FootCollectionReusableView.xib */,
  6531. );
  6532. name = View;
  6533. sourceTree = "<group>";
  6534. };
  6535. C7974A18236BDEDE004D5470 /* Cell */ = {
  6536. isa = PBXGroup;
  6537. children = (
  6538. C7799F2423ABA66700270988 /* WorkFlowFecordCell */,
  6539. C7743FA923A9015600973D70 /* MyWorkFlowCell */,
  6540. C7974A1C236BFBD0004D5470 /* WorkFLowCell.h */,
  6541. C7974A1D236BFBD0004D5470 /* WorkFLowCell.m */,
  6542. C7974A1E236BFBD0004D5470 /* WorkFLowCell.xib */,
  6543. C7743F9A23A8B2D800973D70 /* WorkFlowHomeCell.h */,
  6544. C7743F9B23A8B2D800973D70 /* WorkFlowHomeCell.m */,
  6545. C7743F9C23A8B2D800973D70 /* WorkFlowHomeCell.xib */,
  6546. C7743F9F23A8C03D00973D70 /* WorkFlowSearchItemCell.h */,
  6547. C7743FA023A8C03D00973D70 /* WorkFlowSearchItemCell.m */,
  6548. C7743FA123A8C03D00973D70 /* WorkFlowSearchItemCell.xib */,
  6549. );
  6550. name = Cell;
  6551. sourceTree = "<group>";
  6552. };
  6553. C7974A21236C243E004D5470 /* MyApprovalPage */ = {
  6554. isa = PBXGroup;
  6555. children = (
  6556. C7974A30236C2C4E004D5470 /* Cell */,
  6557. C7974A23236C25D2004D5470 /* VIew */,
  6558. C7974A2C236C2A0C004D5470 /* Model */,
  6559. C7974A22236C25C9004D5470 /* VC */,
  6560. );
  6561. name = MyApprovalPage;
  6562. sourceTree = "<group>";
  6563. };
  6564. C7974A22236C25C9004D5470 /* VC */ = {
  6565. isa = PBXGroup;
  6566. children = (
  6567. C7974A27236C2617004D5470 /* MyApprovalPageVC.h */,
  6568. C7974A28236C2617004D5470 /* MyApprovalPageVC.m */,
  6569. C703800923700CA7008EA3E4 /* MyApprovalPageDetail.h */,
  6570. C703800A23700CA7008EA3E4 /* MyApprovalPageDetail.m */,
  6571. C752D20C2375118700913F97 /* AgreeApprovalViewController.h */,
  6572. C752D20D2375118700913F97 /* AgreeApprovalViewController.m */,
  6573. C752D21A23755B4400913F97 /* FWZViewController.h */,
  6574. C752D21B23755B4400913F97 /* FWZViewController.m */,
  6575. C752D2172375337E00913F97 /* AgreeApprovalViewControllerSub.h */,
  6576. C752D2182375337E00913F97 /* AgreeApprovalViewControllerSub.m */,
  6577. C752D20F23751F1600913F97 /* DownFileViewController.h */,
  6578. C752D21023751F1600913F97 /* DownFileViewController.m */,
  6579. C752D21223751FB200913F97 /* NextApprovalViewController.h */,
  6580. C752D21323751FB200913F97 /* NextApprovalViewController.m */,
  6581. C752D21423751FB200913F97 /* NextApprovalViewController.xib */,
  6582. );
  6583. name = VC;
  6584. sourceTree = "<group>";
  6585. };
  6586. C7974A23236C25D2004D5470 /* VIew */ = {
  6587. isa = PBXGroup;
  6588. children = (
  6589. C795C62A2374348E0042300F /* MyWorkFlowFooterView.h */,
  6590. C795C62B2374348E0042300F /* MyWorkFlowFooterView.m */,
  6591. C795C62D23744CD00042300F /* GoDisscussView.h */,
  6592. C795C62E23744CD00042300F /* GoDisscussView.m */,
  6593. );
  6594. name = VIew;
  6595. sourceTree = "<group>";
  6596. };
  6597. C7974A2C236C2A0C004D5470 /* Model */ = {
  6598. isa = PBXGroup;
  6599. children = (
  6600. C7974A2D236C2A2C004D5470 /* MyApprovalModel.h */,
  6601. C7974A2E236C2A2C004D5470 /* MyApprovalModel.m */,
  6602. C7038013237044B8008EA3E4 /* MyApprovalDetailModel.h */,
  6603. C7038014237044B8008EA3E4 /* MyApprovalDetailModel.m */,
  6604. C76FD29A238506E100E858F6 /* NodesModel.h */,
  6605. C76FD29B238506E100E858F6 /* NodesModel.m */,
  6606. C76B01232387B0C500AD6E28 /* WorkNumberModel.h */,
  6607. C76B01242387B0C500AD6E28 /* WorkNumberModel.m */,
  6608. C76B01262387B9C400AD6E28 /* WorkFilterModel.h */,
  6609. C76B01272387B9C400AD6E28 /* WorkFilterModel.m */,
  6610. C732D3A72394E8C20097A059 /* WorkFlowFileModel.h */,
  6611. C732D3A82394E8C20097A059 /* WorkFlowFileModel.m */,
  6612. EB71EEFA240E565B0089B1A6 /* FlowAttachmentsModel.h */,
  6613. EB71EEFB240E565B0089B1A6 /* FlowAttachmentsModel.m */,
  6614. );
  6615. name = Model;
  6616. sourceTree = "<group>";
  6617. };
  6618. C7974A30236C2C4E004D5470 /* Cell */ = {
  6619. isa = PBXGroup;
  6620. children = (
  6621. C703800D23700FD0008EA3E4 /* ApprovalPageDetailCell */,
  6622. C7974A34236C3198004D5470 /* MyApprovalBCell.h */,
  6623. C7974A35236C3198004D5470 /* MyApprovalBCell.m */,
  6624. C7974A36236C3199004D5470 /* MyApprovalBCell.xib */,
  6625. C7E03AD223CD89EA00A97589 /* InputGongwenFileCell.h */,
  6626. C7E03AD323CD89EA00A97589 /* InputGongwenFileCell.m */,
  6627. C7E03AD423CD89EA00A97589 /* InputGongwenFileCell.xib */,
  6628. );
  6629. name = Cell;
  6630. sourceTree = "<group>";
  6631. };
  6632. C7974A39236C4C40004D5470 /* MyWorkWord */ = {
  6633. isa = PBXGroup;
  6634. children = (
  6635. C7974A3D236C4C96004D5470 /* Cell */,
  6636. C7974A3C236C4C8D004D5470 /* Model */,
  6637. C7974A3B236C4C86004D5470 /* View */,
  6638. C7974A3A236C4C80004D5470 /* VC */,
  6639. );
  6640. name = MyWorkWord;
  6641. sourceTree = "<group>";
  6642. };
  6643. C7974A3A236C4C80004D5470 /* VC */ = {
  6644. isa = PBXGroup;
  6645. children = (
  6646. C7974A3E236C4CC0004D5470 /* MyWorkWordVC.h */,
  6647. C7974A3F236C4CC0004D5470 /* MyWorkWordVC.m */,
  6648. EBDD70B923B4876F00AC0BF4 /* MyWorkCarVC.h */,
  6649. EBDD70BA23B4876F00AC0BF4 /* MyWorkCarVC.m */,
  6650. C7F61617238B62FF008AF22D /* AddLookUpUserSecondVC.h */,
  6651. C7F61618238B62FF008AF22D /* AddLookUpUserSecondVC.m */,
  6652. );
  6653. name = VC;
  6654. sourceTree = "<group>";
  6655. };
  6656. C7974A3B236C4C86004D5470 /* View */ = {
  6657. isa = PBXGroup;
  6658. children = (
  6659. C72F2A55236D829D00F6ADE2 /* AddFileTableViewCell.h */,
  6660. C72F2A56236D829D00F6ADE2 /* AddFileTableViewCell.m */,
  6661. C72F2A57236D829D00F6ADE2 /* AddFileTableViewCell.xib */,
  6662. C7404E6C238D23A600DB19AC /* AddPictureCell.h */,
  6663. C7404E6D238D23A600DB19AC /* AddPictureCell.m */,
  6664. C7404E6E238D23A600DB19AC /* AddPictureCell.xib */,
  6665. C7914DCA236D8573000CD5CA /* AddPeopleToGongWenCell.h */,
  6666. C7914DCB236D8573000CD5CA /* AddPeopleToGongWenCell.m */,
  6667. C7914DCC236D8573000CD5CA /* AddPeopleToGongWenCell.xib */,
  6668. C77F3E56236D55D10015C412 /* AutoLayoutScrollView.h */,
  6669. C7525DE7238907D6004B9D71 /* MyWorkAppApprovalCell.h */,
  6670. C7525DE8238907D6004B9D71 /* MyWorkAppApprovalCell.m */,
  6671. C7525DE9238907D6004B9D71 /* MyWorkAppApprovalCell.xib */,
  6672. C7525DE22388F25F004B9D71 /* MyWordCell.h */,
  6673. C7525DE32388F25F004B9D71 /* MyWordCell.m */,
  6674. C7525DE42388F25F004B9D71 /* MyWordCell.xib */,
  6675. C7525DEC23890A8B004B9D71 /* MyWorkSpaceCell.h */,
  6676. C7525DED23890A8B004B9D71 /* MyWorkSpaceCell.m */,
  6677. C7525DEE23890A8B004B9D71 /* MyWorkSpaceCell.xib */,
  6678. C77F3E57236D55D10015C412 /* AutoLayoutScrollView.m */,
  6679. C7E17CBD236D7F7800C53DB8 /* InPutGongWenCell.h */,
  6680. C7E17CBE236D7F7800C53DB8 /* InPutGongWenCell.m */,
  6681. C7E17CBF236D7F7800C53DB8 /* InPutGongWenCell.xib */,
  6682. C701EE4723C2D97800082463 /* InPutGongWenImageCell.h */,
  6683. C701EE4823C2D97800082463 /* InPutGongWenImageCell.m */,
  6684. C701EE4923C2D97800082463 /* InPutGongWenImageCell.xib */,
  6685. C7C06739236D7BC50049C50C /* InPutTextCell.h */,
  6686. C7C0673A236D7BC50049C50C /* InPutTextCell.m */,
  6687. C7C0673B236D7BC50049C50C /* InPutTextCell.xib */,
  6688. C7974A41236C4CD5004D5470 /* MyWorkWordView.h */,
  6689. C7974A42236C4CD5004D5470 /* MyWorkWordView.m */,
  6690. C7C06734236D70700049C50C /* SelectTextCell.h */,
  6691. C7C06735236D70700049C50C /* SelectTextCell.m */,
  6692. C7C06736236D70700049C50C /* SelectTextCell.xib */,
  6693. );
  6694. name = View;
  6695. sourceTree = "<group>";
  6696. };
  6697. C7974A3C236C4C8D004D5470 /* Model */ = {
  6698. isa = PBXGroup;
  6699. children = (
  6700. C7974A44236C4CFA004D5470 /* MyWorkWordModel.h */,
  6701. C7974A45236C4CFA004D5470 /* MyWorkWordModel.m */,
  6702. C751012A2383A02F00E4429B /* FormFields.h */,
  6703. C751012B2383A02F00E4429B /* FormFields.m */,
  6704. C751012D2383BEA200E4429B /* FormFieldsModel.h */,
  6705. C751012E2383BEA200E4429B /* FormFieldsModel.m */,
  6706. C7404E71238D2FA700DB19AC /* SelectImageModel.h */,
  6707. C7404E72238D2FA700DB19AC /* SelectImageModel.m */,
  6708. C7525DF723895918004B9D71 /* SelectModel.h */,
  6709. C7525DF823895918004B9D71 /* SelectModel.m */,
  6710. 326B92D4239F4B35004230EB /* FWZFileGetTool.h */,
  6711. 326B92D5239F4B35004230EB /* FWZFileGetTool.m */,
  6712. );
  6713. name = Model;
  6714. sourceTree = "<group>";
  6715. };
  6716. C7974A3D236C4C96004D5470 /* Cell */ = {
  6717. isa = PBXGroup;
  6718. children = (
  6719. C7974A47236C4D2A004D5470 /* MyWorkWordCell.h */,
  6720. C7974A48236C4D2A004D5470 /* MyWorkWordCell.m */,
  6721. C7974A49236C4D2A004D5470 /* MyWorkWordCell.xib */,
  6722. );
  6723. name = Cell;
  6724. sourceTree = "<group>";
  6725. };
  6726. C7AB8427235EA93B00F2363F /* SWQRCode */ = {
  6727. isa = PBXGroup;
  6728. children = (
  6729. C7AB8428235EA93B00F2363F /* Config */,
  6730. C7AB842F235EA93B00F2363F /* SWQRCode.bundle */,
  6731. C7AB8430235EA93B00F2363F /* View */,
  6732. C7AB8433235EA93B00F2363F /* SWQRCodeViewController.h */,
  6733. C7AB842E235EA93B00F2363F /* SWQRCodeViewController.m */,
  6734. );
  6735. path = SWQRCode;
  6736. sourceTree = "<group>";
  6737. };
  6738. C7AB8428235EA93B00F2363F /* Config */ = {
  6739. isa = PBXGroup;
  6740. children = (
  6741. C7AB8429235EA93B00F2363F /* SWQRCodeConfig.m */,
  6742. C7AB842A235EA93B00F2363F /* SWQRCodeManager.m */,
  6743. C7AB842B235EA93B00F2363F /* SWQRCodeConfig.h */,
  6744. C7AB842C235EA93B00F2363F /* SWQRCode.h */,
  6745. C7AB842D235EA93B00F2363F /* SWQRCodeManager.h */,
  6746. );
  6747. path = Config;
  6748. sourceTree = "<group>";
  6749. };
  6750. C7AB8430235EA93B00F2363F /* View */ = {
  6751. isa = PBXGroup;
  6752. children = (
  6753. C7AB8432235EA93B00F2363F /* SWScannerView.h */,
  6754. C7AB8431235EA93B00F2363F /* SWScannerView.m */,
  6755. );
  6756. path = View;
  6757. sourceTree = "<group>";
  6758. };
  6759. C7AB8445235EF19200F2363F /* View */ = {
  6760. isa = PBXGroup;
  6761. children = (
  6762. EB7F374C247E63DC00E7FAD6 /* SearchDetailViewCell.h */,
  6763. EB7F374D247E63DC00E7FAD6 /* SearchDetailViewCell.m */,
  6764. EB7F374E247E63DC00E7FAD6 /* SearchDetailViewCell.xib */,
  6765. );
  6766. path = View;
  6767. sourceTree = "<group>";
  6768. };
  6769. C7B8646423C9CE800090F2A3 /* Swipe */ = {
  6770. isa = PBXGroup;
  6771. children = (
  6772. C7B8646823C9CE800090F2A3 /* SwipeView.h */,
  6773. C7B8646623C9CE800090F2A3 /* SwipeView.m */,
  6774. C7B8646923C9CE800090F2A3 /* SwipeTableCell.h */,
  6775. C7B8646523C9CE800090F2A3 /* SwipeTableCell.m */,
  6776. C7B8646723C9CE800090F2A3 /* SwipeButton.h */,
  6777. C7B8646A23C9CE800090F2A3 /* SwipeButton.m */,
  6778. );
  6779. path = Swipe;
  6780. sourceTree = "<group>";
  6781. };
  6782. C7CA60AA237311CD0062B8B8 /* WorkFlowSelect */ = {
  6783. isa = PBXGroup;
  6784. children = (
  6785. C767450C2373A6C3001675FA /* BYHLabelsLayout.h */,
  6786. C767450F2373A6C3001675FA /* BYHLabelsLayout.m */,
  6787. C767450B2373A6C2001675FA /* SKUCollectionCell.h */,
  6788. C767450D2373A6C3001675FA /* SKUCollectionCell.m */,
  6789. C76745102373A6C3001675FA /* WorkFLowCollectionSelectView.h */,
  6790. C76745112373A6C3001675FA /* WorkFLowCollectionSelectView.m */,
  6791. C7CA60AB237312680062B8B8 /* WorkFlowSelectView.h */,
  6792. C7CA60AC237312680062B8B8 /* WorkFlowSelectView.m */,
  6793. C7CA60AE237312A50062B8B8 /* WorkFlowSelectCollectCell.h */,
  6794. C7CA60AF237312A50062B8B8 /* WorkFlowSelectCollectCell.m */,
  6795. C7CA60B0237312A50062B8B8 /* WorkFlowSelectCollectCell.xib */,
  6796. );
  6797. name = WorkFlowSelect;
  6798. sourceTree = "<group>";
  6799. };
  6800. C7D6B9BE235D7D7200770E7C = {
  6801. isa = PBXGroup;
  6802. children = (
  6803. C7D6B9C9235D7D7200770E7C /* smartRhino */,
  6804. C7D6B9C8235D7D7200770E7C /* Products */,
  6805. BAA835C042F69CE14C297C90 /* Pods */,
  6806. 6EEED125BD025A163298F81A /* Frameworks */,
  6807. );
  6808. sourceTree = "<group>";
  6809. };
  6810. C7D6B9C8235D7D7200770E7C /* Products */ = {
  6811. isa = PBXGroup;
  6812. children = (
  6813. C7D6B9C7235D7D7200770E7C /* 泰德信源.app */,
  6814. );
  6815. name = Products;
  6816. sourceTree = "<group>";
  6817. };
  6818. C7D6B9C9235D7D7200770E7C /* smartRhino */ = {
  6819. isa = PBXGroup;
  6820. children = (
  6821. EB0BDF4A244D313A009F6434 /* 泰德信源.entitlements */,
  6822. C7D6B9E3235DA18600770E7C /* AppConfig.h */,
  6823. C7D6B9CA235D7D7200770E7C /* AppDelegate.h */,
  6824. C7D6B9CB235D7D7200770E7C /* AppDelegate.m */,
  6825. C7D6B9D6235D7D7600770E7C /* Assets.xcassets */,
  6826. C7D6B9DB235D7D7600770E7C /* Info.plist */,
  6827. C7D6B9D8235D7D7600770E7C /* LaunchScreen.storyboard */,
  6828. C7D6B9DC235D7D7600770E7C /* main.m */,
  6829. C7F61620238BF664008AF22D /* Resource */,
  6830. C7D6B9E4235DA18700770E7C /* Project */,
  6831. C7D6BAD7235DA18800770E7C /* SmartRhino-Prefix.pch */,
  6832. C6F2E1F1236D1794009E6903 /* WclAppConfig.h */,
  6833. C7CA60A8237310010062B8B8 /* FwzAppConfig.h */,
  6834. C59D0A4923824E80007D0760 /* PhbAppConfig.h */,
  6835. C74BCC84238FC39000169982 /* smartRhino-Bridging-Header.h */,
  6836. );
  6837. path = smartRhino;
  6838. sourceTree = "<group>";
  6839. };
  6840. C7D6B9E4235DA18700770E7C /* Project */ = {
  6841. isa = PBXGroup;
  6842. children = (
  6843. C7F61623238C046B008AF22D /* VCModel */,
  6844. C7D6BAFF235DA18A00770E7C /* Base */,
  6845. C7D6BBD5235DA1CD00770E7C /* My */,
  6846. C7D6BAD9235DA18900770E7C /* Tools */,
  6847. C6226FDD236C093300E2E3BF /* Other */,
  6848. );
  6849. path = Project;
  6850. sourceTree = "<group>";
  6851. };
  6852. C7D6B9F7235DA18700770E7C /* Home */ = {
  6853. isa = PBXGroup;
  6854. children = (
  6855. EBD623142514A174007FF6BC /* home.storyboard */,
  6856. C7F6162C238C070E008AF22D /* OtherHomeVC */,
  6857. C7D6BA24235DA18700770E7C /* Model */,
  6858. C7811F5823603D4A000CC76A /* VC */,
  6859. );
  6860. path = Home;
  6861. sourceTree = "<group>";
  6862. };
  6863. C7D6B9F9235DA18700770E7C /* AddChannel */ = {
  6864. isa = PBXGroup;
  6865. children = (
  6866. C74BCC6D238F611700169982 /* AddChannelController.h */,
  6867. C74BCC6E238F611700169982 /* AddChannelController.m */,
  6868. C7D6B9FC235DA18700770E7C /* View */,
  6869. );
  6870. path = AddChannel;
  6871. sourceTree = "<group>";
  6872. };
  6873. C7D6B9FC235DA18700770E7C /* View */ = {
  6874. isa = PBXGroup;
  6875. children = (
  6876. C7D6B9FE235DA18700770E7C /* MyChanelCollectionReusableViewTop.h */,
  6877. C7D6BA02235DA18700770E7C /* MyChanelCollectionReusableViewTop.m */,
  6878. C7D6BA00235DA18700770E7C /* MyChanelCollectionReusableViewTop.xib */,
  6879. C7D6BA01235DA18700770E7C /* MyChanelCollectionViewCell.h */,
  6880. C7D6B9FF235DA18700770E7C /* MyChanelCollectionViewCell.m */,
  6881. C7D6B9FD235DA18700770E7C /* MyChanelCollectionViewCell.xib */,
  6882. );
  6883. path = View;
  6884. sourceTree = "<group>";
  6885. };
  6886. C7D6BA03235DA18700770E7C /* HomeSearch */ = {
  6887. isa = PBXGroup;
  6888. children = (
  6889. C75958A72380222D00AE85C0 /* Model */,
  6890. C7D6BA09235DA18700770E7C /* View */,
  6891. C7D6BA05235DA18700770E7C /* HomeSearchDetail */,
  6892. C7D6BA08235DA18700770E7C /* HomeSearchController.h */,
  6893. C7D6BA04235DA18700770E7C /* HomeSearchController.m */,
  6894. );
  6895. path = HomeSearch;
  6896. sourceTree = "<group>";
  6897. };
  6898. C7D6BA05235DA18700770E7C /* HomeSearchDetail */ = {
  6899. isa = PBXGroup;
  6900. children = (
  6901. C7AB8445235EF19200F2363F /* View */,
  6902. );
  6903. path = HomeSearchDetail;
  6904. sourceTree = "<group>";
  6905. };
  6906. C7D6BA09235DA18700770E7C /* View */ = {
  6907. isa = PBXGroup;
  6908. children = (
  6909. C7D6BA0A235DA18700770E7C /* SearchTypeSection.h */,
  6910. C7D6BA0E235DA18700770E7C /* SearchTypeSection.m */,
  6911. C7D6BA0B235DA18700770E7C /* SearchHistoryCell.h */,
  6912. C7D6BA0D235DA18700770E7C /* SearchHistoryCell.m */,
  6913. C7D6BA0C235DA18700770E7C /* SearchTypeCell.h */,
  6914. C7D6BA0F235DA18700770E7C /* SearchTypeCell.m */,
  6915. );
  6916. path = View;
  6917. sourceTree = "<group>";
  6918. };
  6919. C7D6BA24235DA18700770E7C /* Model */ = {
  6920. isa = PBXGroup;
  6921. children = (
  6922. C723518723824ED50037E4F6 /* ArticleZanModel.h */,
  6923. C723518823824EDA0037E4F6 /* ArticleZanModel.m */,
  6924. C7235184238244B20037E4F6 /* ArticleBlocks.h */,
  6925. C7235183238244B20037E4F6 /* ArticleBlocks.m */,
  6926. C7235182238244B20037E4F6 /* DatasModel.h */,
  6927. C7235181238244B20037E4F6 /* DatasModel.m */,
  6928. C75958A2237FFC9700AE85C0 /* HomeArticleModel.h */,
  6929. C75958A1237FFC9700AE85C0 /* HomeArticleModel.m */,
  6930. C75958A5237FFCC200AE85C0 /* Item.h */,
  6931. C75958A4237FFCC200AE85C0 /* Item.m */,
  6932. C759589E237FF2BE00AE85C0 /* HomeTopImageModel.h */,
  6933. C759589F237FF2BE00AE85C0 /* HomeTopImageModel.m */,
  6934. C7D6BA28235DA18700770E7C /* ChannelModel.h */,
  6935. C7D6BA26235DA18700770E7C /* ChannelModel.m */,
  6936. C7D6BA17235DA18700770E7C /* CommentModel.h */,
  6937. C7D6BA18235DA18700770E7C /* CommentModel.m */,
  6938. C75F9F26236861A9002867A2 /* CommentSubModel.h */,
  6939. C75F9F27236861A9002867A2 /* CommentSubModel.m */,
  6940. C7D6BA25235DA18700770E7C /* DocumentModel.h */,
  6941. C7D6BA27235DA18700770E7C /* DocumentModel.m */,
  6942. C7A84AFB2386374000FB0F82 /* HomeWaitWorkModel.h */,
  6943. C7A84AFC2386374000FB0F82 /* HomeWaitWorkModel.m */,
  6944. C7602274239249270069414C /* TDWaitWorkModel.h */,
  6945. C7602275239249270069414C /* TDWaitWorkModel.m */,
  6946. C732D3A42394B3BE0097A059 /* ScanResultModel.h */,
  6947. C732D3A52394B3BE0097A059 /* ScanResultModel.m */,
  6948. EB44408524A1CA5E00B2E212 /* HomeSubModel.h */,
  6949. EB44408624A1CA5E00B2E212 /* HomeSubModel.m */,
  6950. EB44408824A1CBB600B2E212 /* HomeSubItemModel.h */,
  6951. EB44408924A1CBB600B2E212 /* HomeSubItemModel.m */,
  6952. EBF3C53D251353DA00D40A66 /* IndexAllModel.h */,
  6953. EBF3C53C251353DA00D40A66 /* IndexAllModel.m */,
  6954. );
  6955. path = Model;
  6956. sourceTree = "<group>";
  6957. };
  6958. C7D6BA29235DA18700770E7C /* View */ = {
  6959. isa = PBXGroup;
  6960. children = (
  6961. EBD623D12515CBA3007FF6BC /* HomeSchoolSubVC */,
  6962. C57264782382A3570054EE66 /* ArticleDetailCell */,
  6963. C7811F5B23603F64000CC76A /* Cell */,
  6964. C7811F5A23603EE2000CC76A /* HomeDetail */,
  6965. C7D6BA2A235DA18700770E7C /* HorizonScroll.h */,
  6966. C7D6BA2C235DA18700770E7C /* HorizonScroll.m */,
  6967. EBF3C52625133D8100D40A66 /* SegmentViewController.h */,
  6968. EBF3C52525133D8100D40A66 /* SegmentViewController.m */,
  6969. );
  6970. path = View;
  6971. sourceTree = "<group>";
  6972. };
  6973. C7D6BAD9235DA18900770E7C /* Tools */ = {
  6974. isa = PBXGroup;
  6975. children = (
  6976. C7819D5923B0549300300297 /* NSDate+JKExtension.h */,
  6977. C7819D5823B0549300300297 /* NSDate+JKExtension.m */,
  6978. C770405823AC654000BFF1B0 /* UIView */,
  6979. C7D6BAEC235DA18900770E7C /* H5ViewController.h */,
  6980. C7D6BADA235DA18900770E7C /* H5ViewController.m */,
  6981. EB1BA21123FFD6E500202452 /* H6ViewController.h */,
  6982. EB1BA21223FFD6E500202452 /* H6ViewController.m */,
  6983. C7D6BAF4235DA18900770E7C /* HttpManager */,
  6984. C7E125A823793AA50067F275 /* JpushTool.h */,
  6985. C7E125A923793AA50067F275 /* JpushTool.m */,
  6986. C7525DDF2388DC9D004B9D71 /* LMJHorizontalScrollText.h */,
  6987. C7525DE02388DC9E004B9D71 /* LMJHorizontalScrollText.m */,
  6988. C7D6BAFD235DA18900770E7C /* NSString+CGSize.h */,
  6989. C7D6BAEA235DA18900770E7C /* NSString+CGSize.m */,
  6990. C7D6BAED235DA18900770E7C /* NSString+HTML */,
  6991. C7D6BAF8235DA18900770E7C /* NSString+RegexCategory.h */,
  6992. C7D6BADF235DA18900770E7C /* NSString+RegexCategory.m */,
  6993. C7D6BADB235DA18900770E7C /* TDFileStorage */,
  6994. C7D6BAEB235DA18900770E7C /* UIColor+HexCustomer.h */,
  6995. C7D6BAFC235DA18900770E7C /* UIColor+HexCustomer.m */,
  6996. C7D6BAF9235DA18900770E7C /* UIControl+Blocks.h */,
  6997. C7D6BADE235DA18900770E7C /* UIControl+Blocks.m */,
  6998. C7D6BAFA235DA18900770E7C /* UIImage+Extension.h */,
  6999. C7D6BAE8235DA18900770E7C /* UIImage+Extension.m */,
  7000. C7AB8446235EFC6700F2363F /* UILabel+TD.h */,
  7001. C7AB8447235EFC6700F2363F /* UILabel+TD.m */,
  7002. EBC7BF9223ED2E5200678A66 /* UILabelCopy.h */,
  7003. EBC7BF9323ED2E5200678A66 /* UILabelCopy.m */,
  7004. C74BCC7A238FA1FF00169982 /* UILabel+RightAndLeft.h */,
  7005. C74BCC7B238FA1FF00169982 /* UILabel+RightAndLeft.m */,
  7006. C7D6BAF3235DA18900770E7C /* UITableViewCell+XL.h */,
  7007. C7D6BAE6235DA18900770E7C /* UITableViewCell+XL.m */,
  7008. C7D6BAFE235DA18900770E7C /* UIView+Corner.h */,
  7009. C7D6BAE9235DA18900770E7C /* UIView+Corner.m */,
  7010. C7D6BAFB235DA18900770E7C /* UIView+Frame.h */,
  7011. C7D6BAE7235DA18900770E7C /* UIView+Frame.m */,
  7012. C7AB8439235EBA0700F2363F /* UIViewController+TD.h */,
  7013. C7AB843A235EBA0700F2363F /* UIViewController+TD.m */,
  7014. C6F2E19B236C3444009E6903 /* UtilsTools.h */,
  7015. C6F2E19C236C3444009E6903 /* UtilsTools.m */,
  7016. C7D6BAE1235DA18900770E7C /* ZDTostView(提示窗) */,
  7017. C7D6BAF7235DA18900770E7C /* ZYCTool.h */,
  7018. C7D6BAE0235DA18900770E7C /* ZYCTool.m */,
  7019. );
  7020. path = Tools;
  7021. sourceTree = "<group>";
  7022. };
  7023. C7D6BADB235DA18900770E7C /* TDFileStorage */ = {
  7024. isa = PBXGroup;
  7025. children = (
  7026. C7D6BADC235DA18900770E7C /* TDFileStorage.m */,
  7027. C7D6BADD235DA18900770E7C /* TDFileStorage.h */,
  7028. );
  7029. path = TDFileStorage;
  7030. sourceTree = "<group>";
  7031. };
  7032. C7D6BAE1235DA18900770E7C /* ZDTostView(提示窗) */ = {
  7033. isa = PBXGroup;
  7034. children = (
  7035. C7D6BAE2235DA18900770E7C /* ZDChatroomAlertView.h */,
  7036. C7D6BAE5235DA18900770E7C /* ZDChatroomAlertView.m */,
  7037. C7D6BAE3235DA18900770E7C /* ZDTostView.h */,
  7038. C7D6BAE4235DA18900770E7C /* ZDTostView.m */,
  7039. );
  7040. path = "ZDTostView(提示窗)";
  7041. sourceTree = "<group>";
  7042. };
  7043. C7D6BAED235DA18900770E7C /* NSString+HTML */ = {
  7044. isa = PBXGroup;
  7045. children = (
  7046. C7D6BAEE235DA18900770E7C /* NSString+HTML.h */,
  7047. C7D6BAEF235DA18900770E7C /* GTMNSString+HTML.h */,
  7048. C7D6BAF0235DA18900770E7C /* GTMDefines.h */,
  7049. C7D6BAF1235DA18900770E7C /* NSString+HTML.m */,
  7050. C7D6BAF2235DA18900770E7C /* GTMNSString+HTML.m */,
  7051. );
  7052. path = "NSString+HTML";
  7053. sourceTree = "<group>";
  7054. };
  7055. C7D6BAF4235DA18900770E7C /* HttpManager */ = {
  7056. isa = PBXGroup;
  7057. children = (
  7058. C7D6BAF5235DA18900770E7C /* HttpManager.h */,
  7059. C7D6BAF6235DA18900770E7C /* HttpManager.m */,
  7060. );
  7061. path = HttpManager;
  7062. sourceTree = "<group>";
  7063. };
  7064. C7D6BAFF235DA18A00770E7C /* Base */ = {
  7065. isa = PBXGroup;
  7066. children = (
  7067. EB7F3754247E869F00E7FAD6 /* hanjian.ttf */,
  7068. C7D6BB00235DA18A00770E7C /* SubClass */,
  7069. );
  7070. path = Base;
  7071. sourceTree = "<group>";
  7072. };
  7073. C7D6BB00235DA18A00770E7C /* SubClass */ = {
  7074. isa = PBXGroup;
  7075. children = (
  7076. EBBEE5582498599300B135E4 /* Circle */,
  7077. C7D6BB23235DA18A00770E7C /* BaseModel */,
  7078. C7D6BB20235DA18A00770E7C /* Button */,
  7079. C7D6BB0F235DA18A00770E7C /* CollectionViewFlowLayout */,
  7080. C7D6BB18235DA18A00770E7C /* Controller */,
  7081. C7D6BB15235DA18A00770E7C /* NavigationBar */,
  7082. C7D6BB0A235DA18A00770E7C /* NavigationController */,
  7083. C7D6BB12235DA18A00770E7C /* PickerView */,
  7084. C7D6BB01235DA18A00770E7C /* SearchBar */,
  7085. C7D6BB1B235DA18A00770E7C /* SearchView */,
  7086. C7AB8427235EA93B00F2363F /* SWQRCode */,
  7087. C7D6BB2C235DA18A00770E7C /* TabBarController */,
  7088. C7D6BB04235DA18A00770E7C /* TableView */,
  7089. C7D6BB26235DA18A00770E7C /* TableViewCell */,
  7090. C7D6BB29235DA18A00770E7C /* TextCalculateHelper */,
  7091. C7D6BB07235DA18A00770E7C /* TextView */,
  7092. );
  7093. path = SubClass;
  7094. sourceTree = "<group>";
  7095. };
  7096. C7D6BB01235DA18A00770E7C /* SearchBar */ = {
  7097. isa = PBXGroup;
  7098. children = (
  7099. C7D6BB02235DA18A00770E7C /* TDSearchBar.m */,
  7100. C7D6BB03235DA18A00770E7C /* TDSearchBar.h */,
  7101. );
  7102. path = SearchBar;
  7103. sourceTree = "<group>";
  7104. };
  7105. C7D6BB04235DA18A00770E7C /* TableView */ = {
  7106. isa = PBXGroup;
  7107. children = (
  7108. C7D6BB05235DA18A00770E7C /* TDTableView.h */,
  7109. C7D6BB06235DA18A00770E7C /* TDTableView.m */,
  7110. );
  7111. path = TableView;
  7112. sourceTree = "<group>";
  7113. };
  7114. C7D6BB07235DA18A00770E7C /* TextView */ = {
  7115. isa = PBXGroup;
  7116. children = (
  7117. C7D6BB08235DA18A00770E7C /* TDTextView.h */,
  7118. C7D6BB09235DA18A00770E7C /* TDTextView.m */,
  7119. );
  7120. path = TextView;
  7121. sourceTree = "<group>";
  7122. };
  7123. C7D6BB0A235DA18A00770E7C /* NavigationController */ = {
  7124. isa = PBXGroup;
  7125. children = (
  7126. C7D6BB0B235DA18A00770E7C /* NavigationBar.m */,
  7127. C7D6BB0C235DA18A00770E7C /* NavigationController.h */,
  7128. C7D6BB0D235DA18A00770E7C /* NavigationController.m */,
  7129. C7D6BB0E235DA18A00770E7C /* NavigationBar.h */,
  7130. );
  7131. path = NavigationController;
  7132. sourceTree = "<group>";
  7133. };
  7134. C7D6BB0F235DA18A00770E7C /* CollectionViewFlowLayout */ = {
  7135. isa = PBXGroup;
  7136. children = (
  7137. C7D6BB10235DA18A00770E7C /* TDHorizontalWaterFlowLayout.m */,
  7138. C7D6BB11235DA18A00770E7C /* TDHorizontalWaterFlowLayout.h */,
  7139. );
  7140. path = CollectionViewFlowLayout;
  7141. sourceTree = "<group>";
  7142. };
  7143. C7D6BB12235DA18A00770E7C /* PickerView */ = {
  7144. isa = PBXGroup;
  7145. children = (
  7146. C7D6BB13235DA18A00770E7C /* PickerView.h */,
  7147. C7D6BB14235DA18A00770E7C /* PickerView.m */,
  7148. );
  7149. path = PickerView;
  7150. sourceTree = "<group>";
  7151. };
  7152. C7D6BB15235DA18A00770E7C /* NavigationBar */ = {
  7153. isa = PBXGroup;
  7154. children = (
  7155. C7D6BB17235DA18A00770E7C /* TDNavigationBar.h */,
  7156. C7D6BB16235DA18A00770E7C /* TDNavigationBar.m */,
  7157. );
  7158. path = NavigationBar;
  7159. sourceTree = "<group>";
  7160. };
  7161. C7D6BB18235DA18A00770E7C /* Controller */ = {
  7162. isa = PBXGroup;
  7163. children = (
  7164. EB1D158624C8329D00C82FED /* MoveMegAlert.h */,
  7165. EB1D158524C8329D00C82FED /* MoveMegAlert.m */,
  7166. EB1D158724C8329D00C82FED /* MoveMegAlert.xib */,
  7167. EBE1E2C82494BE7500DB80BF /* HFAlert.h */,
  7168. EBE1E2C72494BE7500DB80BF /* HFAlert.m */,
  7169. EBE1E2C62494BE7500DB80BF /* HFAlert.xib */,
  7170. C7D6BB1A235DA18A00770E7C /* BaseViewController.h */,
  7171. C7D6BB19235DA18A00770E7C /* BaseViewController.m */,
  7172. C770406623AC9BC900BFF1B0 /* RefreshBaseViewController.h */,
  7173. C770406723AC9BC900BFF1B0 /* RefreshBaseViewController.m */,
  7174. EB820ADA23BC882B00B96C6C /* SearchBaseVC.h */,
  7175. EB820ADB23BC882B00B96C6C /* SearchBaseVC.m */,
  7176. EB85BF4B243DDAC6006C7A82 /* SearchTabBaseVC.h */,
  7177. EB85BF4C243DDAC6006C7A82 /* SearchTabBaseVC.m */,
  7178. EB85BF4E243DDB31006C7A82 /* SearchTabCell.h */,
  7179. EB85BF4F243DDB31006C7A82 /* SearchTabCell.m */,
  7180. EB2CC01E23BDBEAA0059F942 /* SearchCell.h */,
  7181. EB2CC01F23BDBEAA0059F942 /* SearchCell.m */,
  7182. );
  7183. path = Controller;
  7184. sourceTree = "<group>";
  7185. };
  7186. C7D6BB1B235DA18A00770E7C /* SearchView */ = {
  7187. isa = PBXGroup;
  7188. children = (
  7189. C7D6BB1F235DA18A00770E7C /* SurfaceSearchView.h */,
  7190. C7D6BB1D235DA18A00770E7C /* SurfaceSearchView.m */,
  7191. C7D6BB1C235DA18A00770E7C /* InfoSearchView.h */,
  7192. C7D6BB1E235DA18A00770E7C /* InfoSearchView.m */,
  7193. );
  7194. path = SearchView;
  7195. sourceTree = "<group>";
  7196. };
  7197. C7D6BB20235DA18A00770E7C /* Button */ = {
  7198. isa = PBXGroup;
  7199. children = (
  7200. EBAACA8E2406475100F44B67 /* ShowBtn.h */,
  7201. EBAACA8F2406475100F44B67 /* ShowBtn.m */,
  7202. C7D6BB21235DA18A00770E7C /* TDButton.h */,
  7203. C7D6BB22235DA18A00770E7C /* TDButton.m */,
  7204. );
  7205. path = Button;
  7206. sourceTree = "<group>";
  7207. };
  7208. C7D6BB23235DA18A00770E7C /* BaseModel */ = {
  7209. isa = PBXGroup;
  7210. children = (
  7211. C7D6BB25235DA18A00770E7C /* BaseModel.h */,
  7212. C7D6BB24235DA18A00770E7C /* BaseModel.m */,
  7213. );
  7214. path = BaseModel;
  7215. sourceTree = "<group>";
  7216. };
  7217. C7D6BB26235DA18A00770E7C /* TableViewCell */ = {
  7218. isa = PBXGroup;
  7219. children = (
  7220. C7D6BB27235DA18A00770E7C /* TDTableViewCell.m */,
  7221. C7D6BB28235DA18A00770E7C /* TDTableViewCell.h */,
  7222. );
  7223. path = TableViewCell;
  7224. sourceTree = "<group>";
  7225. };
  7226. C7D6BB29235DA18A00770E7C /* TextCalculateHelper */ = {
  7227. isa = PBXGroup;
  7228. children = (
  7229. C7D6BB2A235DA18A00770E7C /* XLTextCalculateHelper.h */,
  7230. C7D6BB2B235DA18A00770E7C /* XLTextCalculateHelper.m */,
  7231. );
  7232. path = TextCalculateHelper;
  7233. sourceTree = "<group>";
  7234. };
  7235. C7D6BB2C235DA18A00770E7C /* TabBarController */ = {
  7236. isa = PBXGroup;
  7237. children = (
  7238. C7D6BB2F235DA18A00770E7C /* TabBarController.h */,
  7239. C7D6BB2D235DA18A00770E7C /* TabBarController.m */,
  7240. C7743F8923A86BD300973D70 /* WorkFlowTabbarController.h */,
  7241. C7743F8A23A86BD300973D70 /* WorkFlowTabbarController.m */,
  7242. C7D6BB30235DA18A00770E7C /* TabBar.h */,
  7243. C7D6BB2E235DA18A00770E7C /* TabBar.m */,
  7244. );
  7245. path = TabBarController;
  7246. sourceTree = "<group>";
  7247. };
  7248. C7D6BBB9235DA1CD00770E7C /* WorkFlow */ = {
  7249. isa = PBXGroup;
  7250. children = (
  7251. C7F6162D238C07AE008AF22D /* OtherWorkFLowVC */,
  7252. C7974A18236BDEDE004D5470 /* Cell */,
  7253. C7974A17236BDECC004D5470 /* View */,
  7254. C7974A16236BDEBC004D5470 /* Model */,
  7255. C7974A15236BDEAC004D5470 /* VC */,
  7256. );
  7257. path = WorkFlow;
  7258. sourceTree = "<group>";
  7259. };
  7260. C7D6BBCB235DA1CD00770E7C /* ChatMessage */ = {
  7261. isa = PBXGroup;
  7262. children = (
  7263. EB8E2C22239666A800CDFBDA /* Chat */,
  7264. EB8E2B7B239666A800CDFBDA /* Helper */,
  7265. C625AA61236D98E60010E967 /* Controller */,
  7266. C625AA63236D98E60010E967 /* Model */,
  7267. C625AA62236D98E60010E967 /* View */,
  7268. C625AA5F236D98CE0010E967 /* ChatMsg.storyboard */,
  7269. );
  7270. path = ChatMessage;
  7271. sourceTree = "<group>";
  7272. };
  7273. C7D6BBD5235DA1CD00770E7C /* My */ = {
  7274. isa = PBXGroup;
  7275. children = (
  7276. C7D6BC5F235DA1CD00770E7C /* Learninglist */,
  7277. C7D6BBD6235DA1CD00770E7C /* Order */,
  7278. C7D6BBE2235DA1CD00770E7C /* Controller */,
  7279. C7D6BBE6235DA1CD00770E7C /* Notice */,
  7280. C7D6BBF2235DA1CD00770E7C /* MyPaper */,
  7281. C7D6BBFB235DA1CD00770E7C /* MyClubApplication */,
  7282. C7D6BC10235DA1CD00770E7C /* MyDetail */,
  7283. C7D6BC2B235DA1CD00770E7C /* Model */,
  7284. C7D6BC2E235DA1CD00770E7C /* View */,
  7285. C7D6BC32235DA1CD00770E7C /* Setting */,
  7286. C7D6BC68235DA1CD00770E7C /* Login */,
  7287. );
  7288. path = My;
  7289. sourceTree = "<group>";
  7290. };
  7291. C7D6BBD6235DA1CD00770E7C /* Order */ = {
  7292. isa = PBXGroup;
  7293. children = (
  7294. C7D6BBD7235DA1CD00770E7C /* Controller */,
  7295. C7D6BBDB235DA1CD00770E7C /* Model */,
  7296. C7D6BBDE235DA1CD00770E7C /* View */,
  7297. );
  7298. path = Order;
  7299. sourceTree = "<group>";
  7300. };
  7301. C7D6BBD7235DA1CD00770E7C /* Controller */ = {
  7302. isa = PBXGroup;
  7303. children = (
  7304. C7D6BBD8235DA1CD00770E7C /* MyOrderViewController.xib */,
  7305. C7D6BBD9235DA1CD00770E7C /* MyOrderViewController.m */,
  7306. C7D6BBDA235DA1CD00770E7C /* MyOrderViewController.h */,
  7307. );
  7308. path = Controller;
  7309. sourceTree = "<group>";
  7310. };
  7311. C7D6BBDB235DA1CD00770E7C /* Model */ = {
  7312. isa = PBXGroup;
  7313. children = (
  7314. C7D6BBDC235DA1CD00770E7C /* MyOrderModel.m */,
  7315. C7D6BBDD235DA1CD00770E7C /* MyOrderModel.h */,
  7316. );
  7317. path = Model;
  7318. sourceTree = "<group>";
  7319. };
  7320. C7D6BBDE235DA1CD00770E7C /* View */ = {
  7321. isa = PBXGroup;
  7322. children = (
  7323. C7D6BBDF235DA1CD00770E7C /* MyOrderTableViewCell.xib */,
  7324. C7D6BBE0235DA1CD00770E7C /* MyOrderTableViewCell.h */,
  7325. C7D6BBE1235DA1CD00770E7C /* MyOrderTableViewCell.m */,
  7326. );
  7327. path = View;
  7328. sourceTree = "<group>";
  7329. };
  7330. C7D6BBE2235DA1CD00770E7C /* Controller */ = {
  7331. isa = PBXGroup;
  7332. children = (
  7333. C7D6BBE3235DA1CD00770E7C /* MyViewController.xib */,
  7334. C7D6BBE4235DA1CD00770E7C /* MyViewController.h */,
  7335. C7D6BBE5235DA1CD00770E7C /* MyViewController.m */,
  7336. );
  7337. path = Controller;
  7338. sourceTree = "<group>";
  7339. };
  7340. C7D6BBE6235DA1CD00770E7C /* Notice */ = {
  7341. isa = PBXGroup;
  7342. children = (
  7343. C7D6BBE7235DA1CD00770E7C /* Controller */,
  7344. C7D6BBEB235DA1CD00770E7C /* Model */,
  7345. C7D6BBEE235DA1CD00770E7C /* View */,
  7346. );
  7347. path = Notice;
  7348. sourceTree = "<group>";
  7349. };
  7350. C7D6BBE7235DA1CD00770E7C /* Controller */ = {
  7351. isa = PBXGroup;
  7352. children = (
  7353. C7D6BBE8235DA1CD00770E7C /* NoticeViewController.h */,
  7354. C7D6BBE9235DA1CD00770E7C /* NoticeViewController.xib */,
  7355. C7D6BBEA235DA1CD00770E7C /* NoticeViewController.m */,
  7356. );
  7357. path = Controller;
  7358. sourceTree = "<group>";
  7359. };
  7360. C7D6BBEB235DA1CD00770E7C /* Model */ = {
  7361. isa = PBXGroup;
  7362. children = (
  7363. );
  7364. path = Model;
  7365. sourceTree = "<group>";
  7366. };
  7367. C7D6BBEE235DA1CD00770E7C /* View */ = {
  7368. isa = PBXGroup;
  7369. children = (
  7370. C7D6BBEF235DA1CD00770E7C /* NoticeTableViewCell.xib */,
  7371. C7D6BBF0235DA1CD00770E7C /* NoticeTableViewCell.m */,
  7372. C7D6BBF1235DA1CD00770E7C /* NoticeTableViewCell.h */,
  7373. );
  7374. path = View;
  7375. sourceTree = "<group>";
  7376. };
  7377. C7D6BBF2235DA1CD00770E7C /* MyPaper */ = {
  7378. isa = PBXGroup;
  7379. children = (
  7380. C7D6BBF3235DA1CD00770E7C /* Controller */,
  7381. C7D6BBF7235DA1CD00770E7C /* View */,
  7382. );
  7383. path = MyPaper;
  7384. sourceTree = "<group>";
  7385. };
  7386. C7D6BBF3235DA1CD00770E7C /* Controller */ = {
  7387. isa = PBXGroup;
  7388. children = (
  7389. C7D6BBF4235DA1CD00770E7C /* MyPaperViewController.m */,
  7390. C7D6BBF5235DA1CD00770E7C /* MyPaperViewController.xib */,
  7391. C7D6BBF6235DA1CD00770E7C /* MyPaperViewController.h */,
  7392. );
  7393. path = Controller;
  7394. sourceTree = "<group>";
  7395. };
  7396. C7D6BBF7235DA1CD00770E7C /* View */ = {
  7397. isa = PBXGroup;
  7398. children = (
  7399. C7D6BBF8235DA1CD00770E7C /* MyPaperTableViewCell.xib */,
  7400. C7D6BBF9235DA1CD00770E7C /* MyPaperTableViewCell.m */,
  7401. C7D6BBFA235DA1CD00770E7C /* MyPaperTableViewCell.h */,
  7402. );
  7403. path = View;
  7404. sourceTree = "<group>";
  7405. };
  7406. C7D6BBFB235DA1CD00770E7C /* MyClubApplication */ = {
  7407. isa = PBXGroup;
  7408. children = (
  7409. C7D6BBFC235DA1CD00770E7C /* Controller */,
  7410. C7D6BC00235DA1CD00770E7C /* View */,
  7411. C7D6BC04235DA1CD00770E7C /* ClubApplication */,
  7412. );
  7413. path = MyClubApplication;
  7414. sourceTree = "<group>";
  7415. };
  7416. C7D6BBFC235DA1CD00770E7C /* Controller */ = {
  7417. isa = PBXGroup;
  7418. children = (
  7419. C7D6BBFD235DA1CD00770E7C /* MyClubApplicationViewController.h */,
  7420. C7D6BBFE235DA1CD00770E7C /* MyClubApplicationViewController.xib */,
  7421. C7D6BBFF235DA1CD00770E7C /* MyClubApplicationViewController.m */,
  7422. );
  7423. path = Controller;
  7424. sourceTree = "<group>";
  7425. };
  7426. C7D6BC00235DA1CD00770E7C /* View */ = {
  7427. isa = PBXGroup;
  7428. children = (
  7429. C7D6BC01235DA1CD00770E7C /* MyClubApplicationTableViewCell.m */,
  7430. C7D6BC02235DA1CD00770E7C /* MyClubApplicationTableViewCell.h */,
  7431. C7D6BC03235DA1CD00770E7C /* MyClubApplicationTableViewCell.xib */,
  7432. );
  7433. path = View;
  7434. sourceTree = "<group>";
  7435. };
  7436. C7D6BC04235DA1CD00770E7C /* ClubApplication */ = {
  7437. isa = PBXGroup;
  7438. children = (
  7439. C7D6BC05235DA1CD00770E7C /* Controller */,
  7440. C7D6BC09235DA1CD00770E7C /* Model */,
  7441. C7D6BC0C235DA1CD00770E7C /* View */,
  7442. );
  7443. path = ClubApplication;
  7444. sourceTree = "<group>";
  7445. };
  7446. C7D6BC05235DA1CD00770E7C /* Controller */ = {
  7447. isa = PBXGroup;
  7448. children = (
  7449. C7D6BC06235DA1CD00770E7C /* ClubApplicationViewController.xib */,
  7450. C7D6BC07235DA1CD00770E7C /* ClubApplicationViewController.m */,
  7451. C7D6BC08235DA1CD00770E7C /* ClubApplicationViewController.h */,
  7452. );
  7453. path = Controller;
  7454. sourceTree = "<group>";
  7455. };
  7456. C7D6BC09235DA1CD00770E7C /* Model */ = {
  7457. isa = PBXGroup;
  7458. children = (
  7459. C7D6BC0A235DA1CD00770E7C /* ClubApplicationModel.m */,
  7460. C7D6BC0B235DA1CD00770E7C /* ClubApplicationModel.h */,
  7461. );
  7462. path = Model;
  7463. sourceTree = "<group>";
  7464. };
  7465. C7D6BC0C235DA1CD00770E7C /* View */ = {
  7466. isa = PBXGroup;
  7467. children = (
  7468. C7D6BC0D235DA1CD00770E7C /* ClubApplicationTableViewCell.xib */,
  7469. C7D6BC0E235DA1CD00770E7C /* ClubApplicationTableViewCell.h */,
  7470. C7D6BC0F235DA1CD00770E7C /* ClubApplicationTableViewCell.m */,
  7471. );
  7472. path = View;
  7473. sourceTree = "<group>";
  7474. };
  7475. C7D6BC10235DA1CD00770E7C /* MyDetail */ = {
  7476. isa = PBXGroup;
  7477. children = (
  7478. C7D6BC11235DA1CD00770E7C /* PersonalCertification */,
  7479. C7D6BC20235DA1CD00770E7C /* Controller */,
  7480. C7D6BC24235DA1CD00770E7C /* Model */,
  7481. C7D6BC27235DA1CD00770E7C /* View */,
  7482. );
  7483. path = MyDetail;
  7484. sourceTree = "<group>";
  7485. };
  7486. C7D6BC11235DA1CD00770E7C /* PersonalCertification */ = {
  7487. isa = PBXGroup;
  7488. children = (
  7489. C7D6BC12235DA1CD00770E7C /* Controller */,
  7490. C7D6BC16235DA1CD00770E7C /* Model */,
  7491. C7D6BC19235DA1CD00770E7C /* View */,
  7492. );
  7493. path = PersonalCertification;
  7494. sourceTree = "<group>";
  7495. };
  7496. C7D6BC12235DA1CD00770E7C /* Controller */ = {
  7497. isa = PBXGroup;
  7498. children = (
  7499. C7D6BC13235DA1CD00770E7C /* PersonalCertificationViewController.h */,
  7500. C7D6BC14235DA1CD00770E7C /* PersonalCertificationViewController.m */,
  7501. C7D6BC15235DA1CD00770E7C /* PersonalCertificationViewController.xib */,
  7502. );
  7503. path = Controller;
  7504. sourceTree = "<group>";
  7505. };
  7506. C7D6BC16235DA1CD00770E7C /* Model */ = {
  7507. isa = PBXGroup;
  7508. children = (
  7509. C7D6BC17235DA1CD00770E7C /* PersonalCertificationModel.m */,
  7510. C7D6BC18235DA1CD00770E7C /* PersonalCertificationModel.h */,
  7511. );
  7512. path = Model;
  7513. sourceTree = "<group>";
  7514. };
  7515. C7D6BC19235DA1CD00770E7C /* View */ = {
  7516. isa = PBXGroup;
  7517. children = (
  7518. C7D6BC1A235DA1CD00770E7C /* PersonalCertificationTableViewCell.h */,
  7519. C7D6BC1B235DA1CD00770E7C /* PersonalCertificationHeaderView.m */,
  7520. C7D6BC1C235DA1CD00770E7C /* PersonalCertificationHeaderView.xib */,
  7521. C7D6BC1D235DA1CD00770E7C /* PersonalCertificationHeaderView.h */,
  7522. C7D6BC1E235DA1CD00770E7C /* PersonalCertificationTableViewCell.m */,
  7523. C7D6BC1F235DA1CD00770E7C /* PersonalCertificationTableViewCell.xib */,
  7524. );
  7525. path = View;
  7526. sourceTree = "<group>";
  7527. };
  7528. C7D6BC20235DA1CD00770E7C /* Controller */ = {
  7529. isa = PBXGroup;
  7530. children = (
  7531. C7D6BC21235DA1CD00770E7C /* MyDetailViewController.h */,
  7532. C7D6BC22235DA1CD00770E7C /* MyDetailViewController.m */,
  7533. C7D6BC23235DA1CD00770E7C /* MyDetailViewController.xib */,
  7534. );
  7535. path = Controller;
  7536. sourceTree = "<group>";
  7537. };
  7538. C7D6BC24235DA1CD00770E7C /* Model */ = {
  7539. isa = PBXGroup;
  7540. children = (
  7541. C7D6BC25235DA1CD00770E7C /* MyDetailModel.m */,
  7542. C7D6BC26235DA1CD00770E7C /* MyDetailModel.h */,
  7543. );
  7544. path = Model;
  7545. sourceTree = "<group>";
  7546. };
  7547. C7D6BC27235DA1CD00770E7C /* View */ = {
  7548. isa = PBXGroup;
  7549. children = (
  7550. C7D6BC28235DA1CD00770E7C /* MyDetailTableViewCell.h */,
  7551. C7D6BC29235DA1CD00770E7C /* MyDetailTableViewCell.xib */,
  7552. C7D6BC2A235DA1CD00770E7C /* MyDetailTableViewCell.m */,
  7553. );
  7554. path = View;
  7555. sourceTree = "<group>";
  7556. };
  7557. C7D6BC2B235DA1CD00770E7C /* Model */ = {
  7558. isa = PBXGroup;
  7559. children = (
  7560. C7D6BC2C235DA1CD00770E7C /* MyModel.h */,
  7561. C7D6BC2D235DA1CD00770E7C /* MyModel.m */,
  7562. );
  7563. path = Model;
  7564. sourceTree = "<group>";
  7565. };
  7566. C7D6BC2E235DA1CD00770E7C /* View */ = {
  7567. isa = PBXGroup;
  7568. children = (
  7569. C7D6BC2F235DA1CD00770E7C /* MyTableViewCell.m */,
  7570. C7D6BC30235DA1CD00770E7C /* MyTableViewCell.h */,
  7571. C7D6BC31235DA1CD00770E7C /* MyTableViewCell.xib */,
  7572. );
  7573. path = View;
  7574. sourceTree = "<group>";
  7575. };
  7576. C7D6BC32235DA1CD00770E7C /* Setting */ = {
  7577. isa = PBXGroup;
  7578. children = (
  7579. C7D6BC33235DA1CD00770E7C /* About */,
  7580. C7D6BC37235DA1CD00770E7C /* Feedback */,
  7581. C7D6BC3B235DA1CD00770E7C /* Controller */,
  7582. C7D6BC3F235DA1CD00770E7C /* Blacklist */,
  7583. C7D6BC4B235DA1CD00770E7C /* Model */,
  7584. C7D6BC4E235DA1CD00770E7C /* AccountAndSecurity */,
  7585. );
  7586. path = Setting;
  7587. sourceTree = "<group>";
  7588. };
  7589. C7D6BC33235DA1CD00770E7C /* About */ = {
  7590. isa = PBXGroup;
  7591. children = (
  7592. C7D6BC34235DA1CD00770E7C /* AboutViewController.m */,
  7593. C7D6BC35235DA1CD00770E7C /* AboutViewController.h */,
  7594. C7D6BC36235DA1CD00770E7C /* AboutViewController.xib */,
  7595. );
  7596. path = About;
  7597. sourceTree = "<group>";
  7598. };
  7599. C7D6BC37235DA1CD00770E7C /* Feedback */ = {
  7600. isa = PBXGroup;
  7601. children = (
  7602. C7D6BC38235DA1CD00770E7C /* FeedbackViewController.xib */,
  7603. C7D6BC39235DA1CD00770E7C /* FeedbackViewController.h */,
  7604. C7D6BC3A235DA1CD00770E7C /* FeedbackViewController.m */,
  7605. );
  7606. path = Feedback;
  7607. sourceTree = "<group>";
  7608. };
  7609. C7D6BC3B235DA1CD00770E7C /* Controller */ = {
  7610. isa = PBXGroup;
  7611. children = (
  7612. C7D6BC3C235DA1CD00770E7C /* SettingViewController.h */,
  7613. C7D6BC3D235DA1CD00770E7C /* SettingViewController.xib */,
  7614. C7D6BC3E235DA1CD00770E7C /* SettingViewController.m */,
  7615. );
  7616. path = Controller;
  7617. sourceTree = "<group>";
  7618. };
  7619. C7D6BC3F235DA1CD00770E7C /* Blacklist */ = {
  7620. isa = PBXGroup;
  7621. children = (
  7622. C7D6BC40235DA1CD00770E7C /* Controller */,
  7623. C7D6BC44235DA1CD00770E7C /* Model */,
  7624. C7D6BC47235DA1CD00770E7C /* View */,
  7625. );
  7626. path = Blacklist;
  7627. sourceTree = "<group>";
  7628. };
  7629. C7D6BC40235DA1CD00770E7C /* Controller */ = {
  7630. isa = PBXGroup;
  7631. children = (
  7632. C7D6BC43235DA1CD00770E7C /* BlacklistViewController.h */,
  7633. C7D6BC41235DA1CD00770E7C /* BlacklistViewController.m */,
  7634. C7D6BC42235DA1CD00770E7C /* BlacklistViewController.xib */,
  7635. );
  7636. path = Controller;
  7637. sourceTree = "<group>";
  7638. };
  7639. C7D6BC44235DA1CD00770E7C /* Model */ = {
  7640. isa = PBXGroup;
  7641. children = (
  7642. C7D6BC45235DA1CD00770E7C /* BlacklistModel.h */,
  7643. C7D6BC46235DA1CD00770E7C /* BlacklistModel.m */,
  7644. );
  7645. path = Model;
  7646. sourceTree = "<group>";
  7647. };
  7648. C7D6BC47235DA1CD00770E7C /* View */ = {
  7649. isa = PBXGroup;
  7650. children = (
  7651. C7D6BC48235DA1CD00770E7C /* BlacklistTableViewCell.m */,
  7652. C7D6BC49235DA1CD00770E7C /* BlacklistTableViewCell.xib */,
  7653. C7D6BC4A235DA1CD00770E7C /* BlacklistTableViewCell.h */,
  7654. );
  7655. path = View;
  7656. sourceTree = "<group>";
  7657. };
  7658. C7D6BC4B235DA1CD00770E7C /* Model */ = {
  7659. isa = PBXGroup;
  7660. children = (
  7661. C7D6BC4C235DA1CD00770E7C /* SettingModel.h */,
  7662. C7D6BC4D235DA1CD00770E7C /* SettingModel.m */,
  7663. );
  7664. path = Model;
  7665. sourceTree = "<group>";
  7666. };
  7667. C7D6BC4E235DA1CD00770E7C /* AccountAndSecurity */ = {
  7668. isa = PBXGroup;
  7669. children = (
  7670. C7D6BC4F235DA1CD00770E7C /* Controller */,
  7671. C7D6BC53235DA1CD00770E7C /* Model */,
  7672. C7D6BC56235DA1CD00770E7C /* View */,
  7673. C7D6BC5A235DA1CD00770E7C /* ReplacePhoneNumber */,
  7674. );
  7675. path = AccountAndSecurity;
  7676. sourceTree = "<group>";
  7677. };
  7678. C7D6BC4F235DA1CD00770E7C /* Controller */ = {
  7679. isa = PBXGroup;
  7680. children = (
  7681. C7D6BC50235DA1CD00770E7C /* AccountAndSecurityViewController.h */,
  7682. C7D6BC51235DA1CD00770E7C /* AccountAndSecurityViewController.m */,
  7683. C7D6BC52235DA1CD00770E7C /* AccountAndSecurityViewController.xib */,
  7684. );
  7685. path = Controller;
  7686. sourceTree = "<group>";
  7687. };
  7688. C7D6BC53235DA1CD00770E7C /* Model */ = {
  7689. isa = PBXGroup;
  7690. children = (
  7691. C7D6BC54235DA1CD00770E7C /* AccountAndSecurityModel.h */,
  7692. C7D6BC55235DA1CD00770E7C /* AccountAndSecurityModel.m */,
  7693. );
  7694. path = Model;
  7695. sourceTree = "<group>";
  7696. };
  7697. C7D6BC56235DA1CD00770E7C /* View */ = {
  7698. isa = PBXGroup;
  7699. children = (
  7700. C7D6BC57235DA1CD00770E7C /* AccountAndSecurityTableViewCell.m */,
  7701. C7D6BC58235DA1CD00770E7C /* AccountAndSecurityTableViewCell.xib */,
  7702. C7D6BC59235DA1CD00770E7C /* AccountAndSecurityTableViewCell.h */,
  7703. );
  7704. path = View;
  7705. sourceTree = "<group>";
  7706. };
  7707. C7D6BC5A235DA1CD00770E7C /* ReplacePhoneNumber */ = {
  7708. isa = PBXGroup;
  7709. children = (
  7710. C7D6BC5B235DA1CD00770E7C /* Controller */,
  7711. );
  7712. path = ReplacePhoneNumber;
  7713. sourceTree = "<group>";
  7714. };
  7715. C7D6BC5B235DA1CD00770E7C /* Controller */ = {
  7716. isa = PBXGroup;
  7717. children = (
  7718. C7D6BC5C235DA1CD00770E7C /* ReplacePhoneNumberViewController.xib */,
  7719. C7D6BC5D235DA1CD00770E7C /* ReplacePhoneNumberViewController.h */,
  7720. C7D6BC5E235DA1CD00770E7C /* ReplacePhoneNumberViewController.m */,
  7721. );
  7722. path = Controller;
  7723. sourceTree = "<group>";
  7724. };
  7725. C7D6BC5F235DA1CD00770E7C /* Learninglist */ = {
  7726. isa = PBXGroup;
  7727. children = (
  7728. C7D6BC60235DA1CD00770E7C /* Controller */,
  7729. C7D6BC64235DA1CD00770E7C /* View */,
  7730. );
  7731. path = Learninglist;
  7732. sourceTree = "<group>";
  7733. };
  7734. C7D6BC60235DA1CD00770E7C /* Controller */ = {
  7735. isa = PBXGroup;
  7736. children = (
  7737. C7D6BC61235DA1CD00770E7C /* LearninglistViewController.xib */,
  7738. C7D6BC62235DA1CD00770E7C /* LearninglistViewController.h */,
  7739. C7D6BC63235DA1CD00770E7C /* LearninglistViewController.m */,
  7740. );
  7741. path = Controller;
  7742. sourceTree = "<group>";
  7743. };
  7744. C7D6BC64235DA1CD00770E7C /* View */ = {
  7745. isa = PBXGroup;
  7746. children = (
  7747. C7D6BC65235DA1CD00770E7C /* LearninglistTableViewCell.m */,
  7748. C7D6BC66235DA1CD00770E7C /* LearninglistTableViewCell.h */,
  7749. C7D6BC67235DA1CD00770E7C /* LearninglistTableViewCell.xib */,
  7750. );
  7751. path = View;
  7752. sourceTree = "<group>";
  7753. };
  7754. C7D6BC68235DA1CD00770E7C /* Login */ = {
  7755. isa = PBXGroup;
  7756. children = (
  7757. C7D6BC69235DA1CD00770E7C /* Controller */,
  7758. C7D6BC6D235DA1CD00770E7C /* BindMobile */,
  7759. );
  7760. path = Login;
  7761. sourceTree = "<group>";
  7762. };
  7763. C7D6BC69235DA1CD00770E7C /* Controller */ = {
  7764. isa = PBXGroup;
  7765. children = (
  7766. C7D6BC6A235DA1CD00770E7C /* LoginViewController.m */,
  7767. C7D6BC6B235DA1CD00770E7C /* LoginViewController.xib */,
  7768. C7D6BC6C235DA1CD00770E7C /* LoginViewController.h */,
  7769. );
  7770. path = Controller;
  7771. sourceTree = "<group>";
  7772. };
  7773. C7D6BC6D235DA1CD00770E7C /* BindMobile */ = {
  7774. isa = PBXGroup;
  7775. children = (
  7776. C7D6BC6E235DA1CD00770E7C /* Controller */,
  7777. );
  7778. path = BindMobile;
  7779. sourceTree = "<group>";
  7780. };
  7781. C7D6BC6E235DA1CD00770E7C /* Controller */ = {
  7782. isa = PBXGroup;
  7783. children = (
  7784. C7D6BC6F235DA1CD00770E7C /* BindMobileViewController.m */,
  7785. C7D6BC70235DA1CD00770E7C /* BindMobileViewController.xib */,
  7786. C7D6BC71235DA1CD00770E7C /* BindMobileViewController.h */,
  7787. );
  7788. path = Controller;
  7789. sourceTree = "<group>";
  7790. };
  7791. C7D6BCCB235DDF1400770E7C /* Drawer */ = {
  7792. isa = PBXGroup;
  7793. children = (
  7794. C7D6BCC8235DD7A700770E7C /* DrawerView.h */,
  7795. C7D6BCC9235DD7A700770E7C /* DrawerView.m */,
  7796. C7D6BCCC235DDF3F00770E7C /* DrawerCell.h */,
  7797. C7D6BCCD235DDF3F00770E7C /* DrawerCell.m */,
  7798. );
  7799. path = Drawer;
  7800. sourceTree = "<group>";
  7801. };
  7802. C7F61620238BF664008AF22D /* Resource */ = {
  7803. isa = PBXGroup;
  7804. children = (
  7805. EB9F24E7250A0B390017479A /* qinkuai_Music.mp3 */,
  7806. EB9F24E8250A0B390017479A /* rouhuo_Music.mp3 */,
  7807. EB9F24E9250A0B3A0017479A /* shushi_Music.mp3 */,
  7808. C7F61621238BF67B008AF22D /* SWForm.gif */,
  7809. );
  7810. path = Resource;
  7811. sourceTree = "<group>";
  7812. };
  7813. C7F61623238C046B008AF22D /* VCModel */ = {
  7814. isa = PBXGroup;
  7815. children = (
  7816. EB7DD226246261E100C6048F /* Source */,
  7817. EBDE08AD24581782005D426C /* common */,
  7818. C622157E23719C84006F5D7F /* Login */,
  7819. C7D6BBB9235DA1CD00770E7C /* WorkFlow */,
  7820. C6226FDA236C08E500E2E3BF /* My_Center */,
  7821. C7D6B9F7235DA18700770E7C /* Home */,
  7822. C7D6BBCB235DA1CD00770E7C /* ChatMessage */,
  7823. );
  7824. path = VCModel;
  7825. sourceTree = "<group>";
  7826. };
  7827. C7F61625238C068A008AF22D /* Model */ = {
  7828. isa = PBXGroup;
  7829. children = (
  7830. C7F6162A238C06F0008AF22D /* UserManager.h */,
  7831. C7F61629238C06F0008AF22D /* UserManager.m */,
  7832. C7F61627238C068A008AF22D /* AppUserModel.h */,
  7833. C7F61626238C068A008AF22D /* AppUserModel.m */,
  7834. EBC9BFA525343341000BD6F7 /* PushModel.h */,
  7835. EBC9BFA625343341000BD6F7 /* PushModel.m */,
  7836. );
  7837. path = Model;
  7838. sourceTree = "<group>";
  7839. };
  7840. C7F6162C238C070E008AF22D /* OtherHomeVC */ = {
  7841. isa = PBXGroup;
  7842. children = (
  7843. C76DB428236ACAD100369F5C /* MyTDTopic */,
  7844. C788F1802369444B0070A6B3 /* Favorites */,
  7845. C7037FE3236FB5ED008EA3E4 /* MySendInfo */,
  7846. C7D6BA03235DA18700770E7C /* HomeSearch */,
  7847. C7D6BCCB235DDF1400770E7C /* Drawer */,
  7848. C7938E4D2364433000746248 /* ClickOK */,
  7849. );
  7850. path = OtherHomeVC;
  7851. sourceTree = "<group>";
  7852. };
  7853. C7F6162D238C07AE008AF22D /* OtherWorkFLowVC */ = {
  7854. isa = PBXGroup;
  7855. children = (
  7856. C74BCC71238F7CB600169982 /* VersionData */,
  7857. C7CA60AA237311CD0062B8B8 /* WorkFlowSelect */,
  7858. C7473D662371059A0037DC39 /* WorkFlowSearch */,
  7859. C7974A39236C4C40004D5470 /* MyWorkWord */,
  7860. C7974A21236C243E004D5470 /* MyApprovalPage */,
  7861. );
  7862. name = OtherWorkFLowVC;
  7863. sourceTree = "<group>";
  7864. };
  7865. EB09BF2A23B1A30E001CCBC7 /* Model */ = {
  7866. isa = PBXGroup;
  7867. children = (
  7868. EB09BF2B23B1A32B001CCBC7 /* WaitWorkLabelModel.h */,
  7869. EB09BF2C23B1A32B001CCBC7 /* WaitWorkLabelModel.m */,
  7870. EBF1A8C623B1EF6700FA6F4B /* WaitWorkModel.h */,
  7871. EBF1A8C723B1EF6700FA6F4B /* WaitWorkModel.m */,
  7872. EB9D514524F633E500568932 /* GroupShowModel.h */,
  7873. EB9D514624F633E500568932 /* GroupShowModel.m */,
  7874. );
  7875. path = Model;
  7876. sourceTree = "<group>";
  7877. };
  7878. EB415134246BC59800030371 /* BookStore */ = {
  7879. isa = PBXGroup;
  7880. children = (
  7881. EB41513A246BC64800030371 /* BookStore.storyboard */,
  7882. EBD29F2925022A1600AEB04C /* BookDetail.storyboard */,
  7883. EB415135246BC5D800030371 /* Model */,
  7884. EB415136246BC5D800030371 /* VC */,
  7885. EB415137246BC5D800030371 /* View */,
  7886. );
  7887. path = BookStore;
  7888. sourceTree = "<group>";
  7889. };
  7890. EB415135246BC5D800030371 /* Model */ = {
  7891. isa = PBXGroup;
  7892. children = (
  7893. EB415144246BD1CB00030371 /* BookHomeModel.h */,
  7894. EB415145246BD1CB00030371 /* BookHomeModel.m */,
  7895. EB41514C246BDEB900030371 /* BookHomeSubModel.h */,
  7896. EB41514D246BDEB900030371 /* BookHomeSubModel.m */,
  7897. EB1E0F7D246D0FDB00D4C3DE /* BookContentLeftModel.h */,
  7898. EB1E0F7E246D0FDB00D4C3DE /* BookContentLeftModel.m */,
  7899. EB1E0F80246D0FF300D4C3DE /* BookContentTopModel.h */,
  7900. EB1E0F81246D0FF300D4C3DE /* BookContentTopModel.m */,
  7901. EB1E0F83246D100200D4C3DE /* BookContentModel.h */,
  7902. EB1E0F84246D100200D4C3DE /* BookContentModel.m */,
  7903. EBF7175D247237DF00ED1838 /* BookAlertModel.h */,
  7904. EBF7175E247237DF00ED1838 /* BookAlertModel.m */,
  7905. EBFDFE4E247778CC0046E847 /* BookSelectModel.h */,
  7906. EBFDFE4F247778CC0046E847 /* BookSelectModel.m */,
  7907. EBDF42A124ADB91D00D5F0E4 /* BookSelectSubModel.h */,
  7908. EBDF42A224ADB91D00D5F0E4 /* BookSelectSubModel.m */,
  7909. EB0A7397247BA42500DB75CB /* BookBillModel.h */,
  7910. EB0A7398247BA42500DB75CB /* BookBillModel.m */,
  7911. EB1810922488A5DF009EDEF5 /* BookTextBookModel.h */,
  7912. EB1810932488A5DF009EDEF5 /* BookTextBookModel.m */,
  7913. EB1D052824A9EA6C00796A7E /* BookNavModel.h */,
  7914. EB1D052924A9EA6C00796A7E /* BookNavModel.m */,
  7915. EBCE636824AEC7BB004C9B3B /* BookChanelModel.h */,
  7916. EBCE636924AEC7BB004C9B3B /* BookChanelModel.m */,
  7917. EBCE636B24AF2785004C9B3B /* BookChanelleftModel.h */,
  7918. EBCE636C24AF2785004C9B3B /* BookChanelleftModel.m */,
  7919. EBCE636E24AF281A004C9B3B /* BookChanelRightModel.h */,
  7920. EBCE636F24AF281A004C9B3B /* BookChanelRightModel.m */,
  7921. EBC4866524B3128B0013AEF7 /* BookMeidaModel.h */,
  7922. EBC4866624B3128B0013AEF7 /* BookMeidaModel.m */,
  7923. EBD29F2E2502420A00AEB04C /* BookListModel.h */,
  7924. EBD29F2F2502420A00AEB04C /* BookListModel.m */,
  7925. EBB360BC250736FC0018C830 /* BookListenModel.h */,
  7926. EBB360BD250736FC0018C830 /* BookListenModel.m */,
  7927. EBD4A1F8250B54FD0088D94F /* BookListenSubModel.h */,
  7928. EBD4A1F9250B54FD0088D94F /* BookListenSubModel.m */,
  7929. EBD4A1FB250B5B4D0088D94F /* BookRecommendModel.h */,
  7930. EBD4A1FC250B5B4D0088D94F /* BookRecommendModel.m */,
  7931. EB31796F251CA2D0001E01D3 /* BookBillListModel.h */,
  7932. EB31796E251CA2D0001E01D3 /* BookBillListModel.m */,
  7933. EBB588D025208A70005B3988 /* BookProblemModel.h */,
  7934. EBB588D125208A70005B3988 /* BookProblemModel.m */,
  7935. EB195A5F2521BA1600EA68D3 /* BookCommentHeadModel.h */,
  7936. EB195A602521BA1600EA68D3 /* BookCommentHeadModel.m */,
  7937. EBCBA9922522DF8100D3E405 /* BookQiKanListModel.h */,
  7938. EBCBA9932522DF8100D3E405 /* BookQiKanListModel.m */,
  7939. EBCBA9982522FCFF00D3E405 /* BookQiKanNavModel.h */,
  7940. EBCBA9972522FCFF00D3E405 /* BookQiKanNavModel.m */,
  7941. );
  7942. path = Model;
  7943. sourceTree = "<group>";
  7944. };
  7945. EB415136246BC5D800030371 /* VC */ = {
  7946. isa = PBXGroup;
  7947. children = (
  7948. EBBD5E632519A2E7007B174E /* BookSearch */,
  7949. EB95266D248A0B19003EFCCE /* BookRead */,
  7950. EBBD5E602519A2D8007B174E /* BookSearchVC.h */,
  7951. EBBD5E5F2519A2D8007B174E /* BookSearchVC.m */,
  7952. EB41513C246BC71500030371 /* BookStoreHome.h */,
  7953. EB41513D246BC71500030371 /* BookStoreHome.m */,
  7954. EB5F450324750765008D316D /* BookChanelVC.h */,
  7955. EB5F450424750765008D316D /* BookChanelVC.m */,
  7956. EB41514F246C001D00030371 /* BookMingVC.h */,
  7957. EB415150246C001D00030371 /* BookMingVC.m */,
  7958. EB415152246C071300030371 /* BookAllLookVC.h */,
  7959. EB415153246C071300030371 /* BookAllLookVC.m */,
  7960. EB1E0F75246CE49100D4C3DE /* BookContentNavVC.h */,
  7961. EB1E0F76246CE49100D4C3DE /* BookContentNavVC.m */,
  7962. EB6E84E0246FDF2400BE0524 /* BookPlayListVC.h */,
  7963. EB6E84E1246FDF2400BE0524 /* BookPlayListVC.m */,
  7964. EBC34D8625121CCF00A4F133 /* BookCustomListVC.h */,
  7965. EBC34D8725121CCF00A4F133 /* BookCustomListVC.m */,
  7966. EBF7175524722D4B00ED1838 /* BookWCDetailVC.h */,
  7967. EBF7175624722D4B00ED1838 /* BookWCDetailVC.m */,
  7968. EBC34D7F2511B41E00A4F133 /* BookTeacherDetailVC.h */,
  7969. EBC34D7E2511B41E00A4F133 /* BookTeacherDetailVC.m */,
  7970. EB6F002B2473B19300808484 /* BookWeiCourseListVC.h */,
  7971. EB6F002C2473B19300808484 /* BookWeiCourseListVC.m */,
  7972. EBCE637224AF388D004C9B3B /* BookChanelSubListVC.h */,
  7973. EBCE637124AF388D004C9B3B /* BookChanelSubListVC.m */,
  7974. EB5F44FB2474CCCA008D316D /* BookDetailVC.h */,
  7975. EB5F44FC2474CCCA008D316D /* BookDetailVC.m */,
  7976. EB0A738F247B8B8B00DB75CB /* BookBillboardVC.h */,
  7977. EB0A7390247B8B8B00DB75CB /* BookBillboardVC.m */,
  7978. EBB8D06F251E00600051C897 /* BookBillBoardSearchVC.h */,
  7979. EBB8D06E251E00600051C897 /* BookBillBoardSearchVC.m */,
  7980. EB440027247CB7AE0094C333 /* BookMingDetailVC.h */,
  7981. EB440028247CB7AE0094C333 /* BookMingDetailVC.m */,
  7982. EB44002A247D12630094C333 /* BookSubArticeVC.h */,
  7983. EB44002B247D12630094C333 /* BookSubArticeVC.m */,
  7984. EB44002D247D127B0094C333 /* BookSubVideoVC.h */,
  7985. EB44002E247D127B0094C333 /* BookSubVideoVC.m */,
  7986. EB440030247D12910094C333 /* BookSubMusicVC.h */,
  7987. EB440031247D12910094C333 /* BookSubMusicVC.m */,
  7988. EB7F373C247E05FC00E7FAD6 /* BookIntroductionVC.h */,
  7989. EB7F373D247E05FC00E7FAD6 /* BookIntroductionVC.m */,
  7990. EB7F373F247E357E00E7FAD6 /* BookMingArticeDetailVC.h */,
  7991. EB7F3740247E357E00E7FAD6 /* BookMingArticeDetailVC.m */,
  7992. EB5E18CA247F969C00EDB76E /* BookPeriodicaDetailVC.h */,
  7993. EB5E18CB247F969D00EDB76E /* BookPeriodicaDetailVC.m */,
  7994. EBB2402B2480A79700EECD15 /* BookPeriodicaListVC.h */,
  7995. EBB2402C2480A79700EECD15 /* BookPeriodicaListVC.m */,
  7996. EB18108A24888DC3009EDEF5 /* BookTextBookVC.h */,
  7997. EB18108B24888DC3009EDEF5 /* BookTextBookVC.m */,
  7998. EBD537AF2490A709000EDF2B /* BookTeacherListVC.h */,
  7999. EBD537B02490A709000EDF2B /* BookTeacherListVC.m */,
  8000. EBD537B22490AE1D000EDF2B /* BookListenDetailVC.h */,
  8001. EBD537B32490AE1D000EDF2B /* BookListenDetailVC.m */,
  8002. EBE1E2A72494707B00DB80BF /* BookHotSearchVC.h */,
  8003. EBE1E2A82494707B00DB80BF /* BookHotSearchVC.m */,
  8004. EBD29F2725021AF300AEB04C /* BookListDetailVC.h */,
  8005. EBD29F2625021AF300AEB04C /* BookListDetailVC.m */,
  8006. EBD29F2B25022B8C00AEB04C /* BookListenVC.h */,
  8007. EBD29F2C25022B8C00AEB04C /* BookListenVC.m */,
  8008. EB195A5C252185E000EA68D3 /* BookCommentVC.h */,
  8009. EB195A5B252185E000EA68D3 /* BookCommentVC.m */,
  8010. );
  8011. path = VC;
  8012. sourceTree = "<group>";
  8013. };
  8014. EB415137246BC5D800030371 /* View */ = {
  8015. isa = PBXGroup;
  8016. children = (
  8017. EB195A55252174D600EA68D3 /* BookCommentView.h */,
  8018. EB195A56252174D700EA68D3 /* BookCommentView.m */,
  8019. EB195A57252174D700EA68D3 /* BookCommentView.xib */,
  8020. EB7F3747247E426800E7FAD6 /* BookMingArticeListVC.h */,
  8021. EB7F3748247E426900E7FAD6 /* BookMingArticeListVC.m */,
  8022. EB7F3749247E426900E7FAD6 /* BookMingArticeListVC.xib */,
  8023. EBF7177424725EDE00ED1838 /* BookLoginPayAlert.h */,
  8024. EBF7177524725EDE00ED1838 /* BookLoginPayAlert.m */,
  8025. EBF7177624725EDE00ED1838 /* BookLoginPayAlert.xib */,
  8026. EBF7176F24725B7900ED1838 /* BookCardPayAlertCell.h */,
  8027. EBF7177024725B7900ED1838 /* BookCardPayAlertCell.m */,
  8028. EBF7177124725B7A00ED1838 /* BookCardPayAlertCell.xib */,
  8029. EBF7176024723CB900ED1838 /* BookCardPayAlert.h */,
  8030. EBF7176224723CB900ED1838 /* BookCardPayAlert.m */,
  8031. EBF7176324723CB900ED1838 /* BookCardPayAlert.xib */,
  8032. EBF71751247229FB00ED1838 /* PayBookAlert.h */,
  8033. EBF71752247229FB00ED1838 /* PayBookAlert.m */,
  8034. EBF71750247229FA00ED1838 /* PayBookAlert.xib */,
  8035. EB41513F246BCD6C00030371 /* BookHomeCell.h */,
  8036. EB415140246BCD6C00030371 /* BookHomeCell.m */,
  8037. EB415141246BCD6C00030371 /* BookHomeCell.xib */,
  8038. EB415147246BD58F00030371 /* BookHomeSubCell.h */,
  8039. EB415148246BD58F00030371 /* BookHomeSubCell.m */,
  8040. EB415149246BD58F00030371 /* BookHomeSubCell.xib */,
  8041. EB6A3D5324A8ADC50067DBFA /* BookHomeSubNumCell.h */,
  8042. EB6A3D5424A8ADC60067DBFA /* BookHomeSubNumCell.m */,
  8043. EB6A3D5524A8ADC60067DBFA /* BookHomeSubNumCell.xib */,
  8044. EB1E0F70246CD5A300D4C3DE /* BookAllLookCell.h */,
  8045. EB1E0F71246CD5A300D4C3DE /* BookAllLookCell.m */,
  8046. EB1E0F72246CD5A300D4C3DE /* BookAllLookCell.xib */,
  8047. EB1E0F78246D0DA700D4C3DE /* BookContentLeftCell.h */,
  8048. EB1E0F79246D0DA700D4C3DE /* BookContentLeftCell.m */,
  8049. EB1E0F7A246D0DA700D4C3DE /* BookContentLeftCell.xib */,
  8050. EB1E0F86246D17B600D4C3DE /* BookContentCell.h */,
  8051. EB1E0F87246D17B600D4C3DE /* BookContentCell.m */,
  8052. EB1E0F88246D17B600D4C3DE /* BookContentCell.xib */,
  8053. EB1E0F8B246D4A9700D4C3DE /* BookContentTopCell.h */,
  8054. EB1E0F8C246D4A9700D4C3DE /* BookContentTopCell.m */,
  8055. EB1E0F8D246D4A9700D4C3DE /* BookContentTopCell.xib */,
  8056. EBF717582472355700ED1838 /* PayBookAlertCell.h */,
  8057. EBF717592472355700ED1838 /* PayBookAlertCell.m */,
  8058. EBF7175A2472355700ED1838 /* PayBookAlertCell.xib */,
  8059. EB5F44FE2474CE0E008D316D /* BookDetailCell.h */,
  8060. EB5F44FF2474CE0E008D316D /* BookDetailCell.m */,
  8061. EB5F45002474CE0E008D316D /* BookDetailCell.xib */,
  8062. EB5F45062475093C008D316D /* BookChanelCell.h */,
  8063. EB5F45072475093C008D316D /* BookChanelCell.m */,
  8064. EB5F45082475093C008D316D /* BookChanelCell.xib */,
  8065. EBFDFE442477610F0046E847 /* BookSelectCell.h */,
  8066. EBFDFE452477610F0046E847 /* BookSelectCell.m */,
  8067. EBFDFE462477610F0046E847 /* BookSelectCell.xib */,
  8068. EBFDFE49247762280046E847 /* BookSelectCollectCell.h */,
  8069. EBFDFE4A247762280046E847 /* BookSelectCollectCell.m */,
  8070. EBFDFE4B247762280046E847 /* BookSelectCollectCell.xib */,
  8071. EB0A7392247B9F7600DB75CB /* BookBillCell.h */,
  8072. EB0A7393247B9F7600DB75CB /* BookBillCell.m */,
  8073. EB0A7394247B9F7600DB75CB /* BookBillCell.xib */,
  8074. EB0A739F247BC93800DB75CB /* BookBillBookCell.h */,
  8075. EB0A73A0247BC93800DB75CB /* BookBillBookCell.m */,
  8076. EB0A73A1247BC93800DB75CB /* BookBillBookCell.xib */,
  8077. EB317969251C6E00001E01D3 /* BookBillArticeCell.h */,
  8078. EB317968251C6E00001E01D3 /* BookBillArticeCell.m */,
  8079. EB31796A251C6E01001E01D3 /* BookBillArticeCell.xib */,
  8080. EB0A73A4247BC95900DB75CB /* BookBillCousreCell.h */,
  8081. EB0A73A5247BC95900DB75CB /* BookBillCousreCell.m */,
  8082. EB0A73A6247BC95900DB75CB /* BookBillCousreCell.xib */,
  8083. EB0A73A9247BC96C00DB75CB /* BookBillMusicCell.h */,
  8084. EB0A73AA247BC96C00DB75CB /* BookBillMusicCell.m */,
  8085. EB0A73AB247BC96C00DB75CB /* BookBillMusicCell.xib */,
  8086. EB440033247D15AD0094C333 /* BookSubArticeCell.h */,
  8087. EB440034247D15AD0094C333 /* BookSubArticeCell.m */,
  8088. EB440035247D15AD0094C333 /* BookSubArticeCell.xib */,
  8089. EB7F3742247E3BEE00E7FAD6 /* BookCardBuyCell.h */,
  8090. EB7F3743247E3BEE00E7FAD6 /* BookCardBuyCell.m */,
  8091. EB7F3744247E3BEE00E7FAD6 /* BookCardBuyCell.xib */,
  8092. EB5E18C2247F88E800EDB76E /* BookPublicBookCell.h */,
  8093. EB5E18C3247F88E800EDB76E /* BookPublicBookCell.m */,
  8094. EB5E18C4247F88E800EDB76E /* BookPublicBookCell.xib */,
  8095. EB5E18D0247FAB2100EDB76E /* BookSubPeriodicaCell.h */,
  8096. EB5E18D1247FAB2100EDB76E /* BookSubPeriodicaCell.m */,
  8097. EB5E18D2247FAB2100EDB76E /* BookSubPeriodicaCell.xib */,
  8098. EBB2402E2480B46A00EECD15 /* BookPeriodicaListCell.h */,
  8099. EBB2402F2480B46A00EECD15 /* BookPeriodicaListCell.m */,
  8100. EBB240302480B46A00EECD15 /* BookPeriodicaListCell.xib */,
  8101. EBF1771824826E5100C729DC /* BookPeriodicaCell.h */,
  8102. EBF1771924826E5100C729DC /* BookPeriodicaCell.m */,
  8103. EBF1771A24826E5100C729DC /* BookPeriodicaCell.xib */,
  8104. EB18108D248894F9009EDEF5 /* BookTextBookTopCell.h */,
  8105. EB18108E248894F9009EDEF5 /* BookTextBookTopCell.m */,
  8106. EB18108F248894F9009EDEF5 /* BookTextBookTopCell.xib */,
  8107. EB1810952488C0DB009EDEF5 /* BookTextBookCell.h */,
  8108. EB1810962488C0DB009EDEF5 /* BookTextBookCell.m */,
  8109. EB1810972488C0DB009EDEF5 /* BookTextBookCell.xib */,
  8110. EB18109A2488DB5F009EDEF5 /* BookTextTopCell.h */,
  8111. EB18109B2488DB5F009EDEF5 /* BookTextTopCell.m */,
  8112. EB18109C2488DB5F009EDEF5 /* BookTextTopCell.xib */,
  8113. EBE1E2AA2494747300DB80BF /* BookHotSearchCell.h */,
  8114. EBE1E2AB2494747300DB80BF /* BookHotSearchCell.m */,
  8115. EBE1E2AC2494747300DB80BF /* BookHotSearchCell.xib */,
  8116. EB9F24DF2509CDD90017479A /* PlayModelCell.h */,
  8117. EB9F24E02509CDD90017479A /* PlayModelCell.m */,
  8118. EB9F24E12509CDD90017479A /* PlayModelCell.xib */,
  8119. EBC34D812511EABD00A4F133 /* BookTeacherHeadCell.h */,
  8120. EBC34D822511EABD00A4F133 /* BookTeacherHeadCell.m */,
  8121. EBC34D832511EABD00A4F133 /* BookTeacherHeadCell.xib */,
  8122. EB9F24DC2509CD0C0017479A /* PlayModelVC.h */,
  8123. EB9F24DD2509CD0C0017479A /* PlayModelVC.m */,
  8124. EB9F24E42509F3EF0017479A /* CusPopoverBackgroundView.h */,
  8125. EB9F24E52509F3EF0017479A /* CusPopoverBackgroundView.m */,
  8126. EBBD5E6C2519D66A007B174E /* BookListCell.h */,
  8127. EBBD5E6D2519D66A007B174E /* BookListCell.m */,
  8128. EBBD5E6E2519D66A007B174E /* BookListCell.xib */,
  8129. EBBD5E722519D8BD007B174E /* BookListSubCell.h */,
  8130. EBBD5E732519D8BD007B174E /* BookListSubCell.m */,
  8131. EBBD5E742519D8BD007B174E /* BookListSubCell.xib */,
  8132. EB9E202A251F088000311E96 /* BookMingCell.h */,
  8133. EB9E202B251F088000311E96 /* BookMingCell.m */,
  8134. EB9E202C251F088000311E96 /* BookMingCell.xib */,
  8135. );
  8136. path = View;
  8137. sourceTree = "<group>";
  8138. };
  8139. EB44409724A1FF3C00B2E212 /* SubVC */ = {
  8140. isa = PBXGroup;
  8141. children = (
  8142. EBF2FB0324A327320028EA09 /* HomeDayGoodBookVC.h */,
  8143. EBF2FB0424A327330028EA09 /* HomeDayGoodBookVC.m */,
  8144. EB44409824A1FF7400B2E212 /* HomeRecommendVC.h */,
  8145. EB44409924A1FF7400B2E212 /* HomeRecommendVC.m */,
  8146. EB44409B24A2110D00B2E212 /* HomeBigshotVC.h */,
  8147. EB44409C24A2110D00B2E212 /* HomeBigshotVC.m */,
  8148. EBF2FB0724A32F880028EA09 /* HomeDayGoodArticeVC.h */,
  8149. EBF2FB0624A32F880028EA09 /* HomeDayGoodArticeVC.m */,
  8150. EBF2FB0924A33B6A0028EA09 /* HomeSpeakVC.h */,
  8151. EBF2FB0A24A33B6A0028EA09 /* HomeSpeakVC.m */,
  8152. EBF2FB0D24A3457A0028EA09 /* HomeWeiCousreVC.h */,
  8153. EBF2FB0C24A3457A0028EA09 /* HomeWeiCousreVC.m */,
  8154. EBF2FB1024A3498C0028EA09 /* HomeMingShiVC.h */,
  8155. EBF2FB0F24A3498C0028EA09 /* HomeMingShiVC.m */,
  8156. EBF2FB1224A34DD10028EA09 /* HomeUserVC.h */,
  8157. EBF2FB1324A34DD10028EA09 /* HomeUserVC.m */,
  8158. EBD623C42515A9BD007FF6BC /* HomeSchoolVC.h */,
  8159. EBD623C52515A9BE007FF6BC /* HomeSchoolVC.m */,
  8160. EBD623EB2515FF8F007FF6BC /* HomeSCDetailVC.h */,
  8161. EBD623EA2515FF8F007FF6BC /* HomeSCDetailVC.m */,
  8162. EB6A3D5024A864730067DBFA /* HomeProblemVC.h */,
  8163. EB6A3D5124A864740067DBFA /* HomeProblemVC.m */,
  8164. EBF3C52C25133FB900D40A66 /* IndexAllVC.h */,
  8165. EBF3C52D25133FB900D40A66 /* IndexAllVC.m */,
  8166. EBF3C5302513446A00D40A66 /* IndexSubVC.h */,
  8167. EBF3C5312513446A00D40A66 /* IndexSubVC.m */,
  8168. EBD623172514A21C007FF6BC /* IndexMoreVC.h */,
  8169. EBD623182514A21C007FF6BC /* IndexMoreVC.m */,
  8170. );
  8171. path = SubVC;
  8172. sourceTree = "<group>";
  8173. };
  8174. EB581CEB23A0F52D00C451B0 /* WaitWork */ = {
  8175. isa = PBXGroup;
  8176. children = (
  8177. EB581CF523A0F72000C451B0 /* WaitWork.storyboard */,
  8178. EB581CF023A0F5EB00C451B0 /* Cell */,
  8179. EB09BF2A23B1A30E001CCBC7 /* Model */,
  8180. EB581CF223A0F5F800C451B0 /* VC */,
  8181. EB581CF123A0F5F200C451B0 /* View */,
  8182. );
  8183. path = WaitWork;
  8184. sourceTree = "<group>";
  8185. };
  8186. EB581CF023A0F5EB00C451B0 /* Cell */ = {
  8187. isa = PBXGroup;
  8188. children = (
  8189. EB3EAFD123A10CE600C38AB4 /* WaitWorkCell.h */,
  8190. EB3EAFD223A10CE600C38AB4 /* WaitWorkCell.m */,
  8191. EB3EAFD323A10CE600C38AB4 /* WaitWorkCell.xib */,
  8192. EB3EAFD923A1DAB400C38AB4 /* MenuListCell.h */,
  8193. EB3EAFDA23A1DAB400C38AB4 /* MenuListCell.m */,
  8194. EB3EAFDB23A1DAB400C38AB4 /* MenuListCell.xib */,
  8195. EB92E87623B063AF008E94CF /* WaitWorkLabelCell.h */,
  8196. EB92E87723B063AF008E94CF /* WaitWorkLabelCell.m */,
  8197. EB92E87823B063AF008E94CF /* WaitWorkLabelCell.xib */,
  8198. );
  8199. path = Cell;
  8200. sourceTree = "<group>";
  8201. };
  8202. EB581CF123A0F5F200C451B0 /* View */ = {
  8203. isa = PBXGroup;
  8204. children = (
  8205. EB92E87D23B09AD4008E94CF /* GFCalendar */,
  8206. EBF1A8C923B23A4000FA6F4B /* lock.caf */,
  8207. EB3EAFD623A1D1FC00C38AB4 /* MenuListView.h */,
  8208. EB3EAFD723A1D1FC00C38AB4 /* MenuListView.m */,
  8209. EB1D158224C807A800C82FED /* TopicShowListView.h */,
  8210. EB1D158324C807A800C82FED /* TopicShowListView.m */,
  8211. EB9D514324F62BDB00568932 /* GroupShowListView.h */,
  8212. EB9D514224F62BDB00568932 /* GroupShowListView.m */,
  8213. EB92E89023B0CC77008E94CF /* WaitTimePicker.h */,
  8214. EB92E89123B0CC77008E94CF /* WaitTimePicker.m */,
  8215. EB0DBF0B23AE3D9700E977ED /* WaitWorkLevelView.h */,
  8216. EB0DBF0C23AE3D9700E977ED /* WaitWorkLevelView.m */,
  8217. EB0DBF0E23AE3DF800E977ED /* WaitWorkLevelView.xib */,
  8218. EB09BF2E23B1AA19001CCBC7 /* WaitWorkWarnAlert.h */,
  8219. EB09BF2F23B1AA19001CCBC7 /* WaitWorkWarnAlert.m */,
  8220. );
  8221. path = View;
  8222. sourceTree = "<group>";
  8223. };
  8224. EB581CF223A0F5F800C451B0 /* VC */ = {
  8225. isa = PBXGroup;
  8226. children = (
  8227. EB581CEC23A0F5C800C451B0 /* WaitWorkVC.h */,
  8228. EB581CED23A0F5C800C451B0 /* WaitWorkVC.m */,
  8229. EB0DBF0823AE1EF200E977ED /* NewWaitWorkVC.h */,
  8230. EB0DBF0923AE1EF200E977ED /* NewWaitWorkVC.m */,
  8231. EB92E87323B061E8008E94CF /* WaitWorkLabelVC.h */,
  8232. EB92E87423B061E8008E94CF /* WaitWorkLabelVC.m */,
  8233. );
  8234. path = VC;
  8235. sourceTree = "<group>";
  8236. };
  8237. EB7955C824C6959700EE9A55 /* TopicBook */ = {
  8238. isa = PBXGroup;
  8239. children = (
  8240. EB7955C924C695CB00EE9A55 /* MyTDTopicBookVC.h */,
  8241. EB7955CA24C695CB00EE9A55 /* MyTDTopicBookVC.m */,
  8242. EB7955D424C6CA6800EE9A55 /* MyTDTopicBookEditVC.h */,
  8243. EB7955D524C6CA6800EE9A55 /* MyTDTopicBookEditVC.m */,
  8244. EB3CB79824E5152800F399E7 /* NoteTopicDraftListVC.h */,
  8245. EB3CB79724E5152800F399E7 /* NoteTopicDraftListVC.m */,
  8246. EB3CB79A24E51FFC00F399E7 /* NoteTopicDraftSearchVC.h */,
  8247. EB3CB79B24E51FFC00F399E7 /* NoteTopicDraftSearchVC.m */,
  8248. );
  8249. path = TopicBook;
  8250. sourceTree = "<group>";
  8251. };
  8252. EB7DD226246261E100C6048F /* Source */ = {
  8253. isa = PBXGroup;
  8254. children = (
  8255. EB7DD23424629A1B00C6048F /* Source.storyboard */,
  8256. EB7DD227246261E100C6048F /* Controller */,
  8257. EB7DD228246261E100C6048F /* Model */,
  8258. EB7DD229246261E100C6048F /* View */,
  8259. );
  8260. path = Source;
  8261. sourceTree = "<group>";
  8262. };
  8263. EB7DD227246261E100C6048F /* Controller */ = {
  8264. isa = PBXGroup;
  8265. children = (
  8266. EB44982424E3AFE70040A9FF /* GroupSquareSearchVC.h */,
  8267. EB44982524E3AFE80040A9FF /* GroupSquareSearchVC.m */,
  8268. EB7DD2362462AB5B00C6048F /* GroupSquareVC.h */,
  8269. EB7DD2372462AB5B00C6048F /* GroupSquareVC.m */,
  8270. EB3CB79D24E5481B00F399E7 /* GroupSynopsisUserVC.h */,
  8271. EB3CB79E24E5481B00F399E7 /* GroupSynopsisUserVC.m */,
  8272. EB3CB7A024E54D8700F399E7 /* GroupSynopsisUserSearchVC.h */,
  8273. EB3CB7A124E54D8700F399E7 /* GroupSynopsisUserSearchVC.m */,
  8274. EB6D86D224977EFA001D3B6C /* GroupSynopsisVC.h */,
  8275. EB6D86D324977EFA001D3B6C /* GroupSynopsisVC.m */,
  8276. EB3CB79424E4F0F000F399E7 /* GroupVerifyVC.h */,
  8277. EB3CB79524E4F0F100F399E7 /* GroupVerifyVC.m */,
  8278. EBBE1CB324E786F200041E04 /* GroupInfoVC.h */,
  8279. EBBE1CB224E786F200041E04 /* GroupInfoVC.m */,
  8280. EBBE1CB524E78CE000041E04 /* GroupEditerVC.h */,
  8281. EBBE1CB624E78CE000041E04 /* GroupEditerVC.m */,
  8282. EB095CE124D175DA00493536 /* ReplayLikeSearchVC.h */,
  8283. EB095CE224D175DA00493536 /* ReplayLikeSearchVC.m */,
  8284. EBFA5EE92491F9B100AD38B0 /* ReplayMeLikeVC.h */,
  8285. EBFA5EEA2491F9B100AD38B0 /* ReplayMeLikeVC.m */,
  8286. EB095CDE24D1701600493536 /* ReplayMeSearchVC.h */,
  8287. EB095CDF24D1701600493536 /* ReplayMeSearchVC.m */,
  8288. EBFA5EE12491D6F300AD38B0 /* ReplayMeVC.h */,
  8289. EBFA5EE22491D6F300AD38B0 /* ReplayMeVC.m */,
  8290. EB4310B124CE7D1E00481097 /* SourceGroupSearchVC.h */,
  8291. EB4310B224CE7D1E00481097 /* SourceGroupSearchVC.m */,
  8292. EBAA1F222463A4F200272F13 /* SourceGroupVC.h */,
  8293. EBAA1F232463A4F200272F13 /* SourceGroupVC.m */,
  8294. EB7DD22A2462620100C6048F /* SourceHomeVC.h */,
  8295. EB7DD22B2462620100C6048F /* SourceHomeVC.m */,
  8296. );
  8297. path = Controller;
  8298. sourceTree = "<group>";
  8299. };
  8300. EB7DD228246261E100C6048F /* Model */ = {
  8301. isa = PBXGroup;
  8302. children = (
  8303. EB7DD23E2462BC8F00C6048F /* GroupSquareModel.h */,
  8304. EB7DD23F2462BC8F00C6048F /* GroupSquareModel.m */,
  8305. EBCC208F24B6EC7F001BDCDC /* GroupSquareSubModel.h */,
  8306. EBCC209024B6EC7F001BDCDC /* GroupSquareSubModel.m */,
  8307. EB095CDB24D13BBA00493536 /* ReplyModel.h */,
  8308. EB095CDC24D13BBA00493536 /* ReplyModel.m */,
  8309. );
  8310. path = Model;
  8311. sourceTree = "<group>";
  8312. };
  8313. EB7DD229246261E100C6048F /* View */ = {
  8314. isa = PBXGroup;
  8315. children = (
  8316. EB44982724E3E13C0040A9FF /* GroupListView.h */,
  8317. EB44982824E3E13D0040A9FF /* GroupListView.m */,
  8318. EBCC209324B726EC001BDCDC /* UILabel+YBAttributeTextTapAction.h */,
  8319. EBCC209224B726EC001BDCDC /* UILabel+YBAttributeTextTapAction.m */,
  8320. EB7DD2392462B62600C6048F /* GroupSquareCell.h */,
  8321. EB7DD23A2462B62600C6048F /* GroupSquareCell.m */,
  8322. EB7DD23B2462B62600C6048F /* GroupSquareCell.xib */,
  8323. EBFA5EE42491D8FA00AD38B0 /* ReplayMeCell.h */,
  8324. EBFA5EE52491D8FA00AD38B0 /* ReplayMeCell.m */,
  8325. EBFA5EE62491D8FA00AD38B0 /* ReplayMeCell.xib */,
  8326. EB6D86D524978392001D3B6C /* GroupSynopsisCell.h */,
  8327. EB6D86D624978392001D3B6C /* GroupSynopsisCell.m */,
  8328. EB6D86D724978392001D3B6C /* GroupSynopsisCell.xib */,
  8329. EBBEE55F2498763600B135E4 /* SynopsisCollectCell.h */,
  8330. EBBEE5602498763600B135E4 /* SynopsisCollectCell.m */,
  8331. EBBEE5612498763600B135E4 /* SynopsisCollectCell.xib */,
  8332. );
  8333. path = View;
  8334. sourceTree = "<group>";
  8335. };
  8336. EB8E2B7B239666A800CDFBDA /* Helper */ = {
  8337. isa = PBXGroup;
  8338. children = (
  8339. EB8E2B7C239666A800CDFBDA /* EMNotificationHelper.m */,
  8340. EB8E2B7D239666A800CDFBDA /* EMColorDefine.h */,
  8341. EB8E2B7E239666A800CDFBDA /* EMGlobalVariables.h */,
  8342. EB8E2B7F239666A800CDFBDA /* EMEmojiHelper.m */,
  8343. EB8E2B80239666A800CDFBDA /* EMConversationHelper.m */,
  8344. EB8E2B81239666A800CDFBDA /* Category */,
  8345. EB8E2B88239666A800CDFBDA /* EMDemoOptions.m */,
  8346. EB8E2B89239666A800CDFBDA /* EMEmoticonGroup.m */,
  8347. EB8E2B8A239666A800CDFBDA /* EMRemindManager.h */,
  8348. EB8E2B8B239666A800CDFBDA /* SharedImgs */,
  8349. EB8E2BA0239666A800CDFBDA /* EMChineseToPinyin.h */,
  8350. EB8E2BA1239666A800CDFBDA /* EMDateHelper.h */,
  8351. EB8E2BA2239666A800CDFBDA /* EMRealtimeSearch.h */,
  8352. EB8E2BA3239666A800CDFBDA /* EMGlobalVariables.m */,
  8353. EB8E2BA4239666A800CDFBDA /* EMNotificationHelper.h */,
  8354. EB8E2BA5239666A800CDFBDA /* View */,
  8355. EB8E2BAA239666A800CDFBDA /* EMConversationHelper.h */,
  8356. EB8E2BAB239666A800CDFBDA /* EMEmojiHelper.h */,
  8357. EB8E2BAC239666A800CDFBDA /* EMEmoticonGroup.h */,
  8358. EB8E2BAD239666A800CDFBDA /* 3rdParty */,
  8359. EB8E2BFB239666A800CDFBDA /* EMDefines.h */,
  8360. EB8E2BFC239666A800CDFBDA /* EMHeaders.h */,
  8361. EB8E2BFD239666A800CDFBDA /* ViewController */,
  8362. EB8E2C1D239666A800CDFBDA /* EMDemoOptions.h */,
  8363. EB8E2C1E239666A800CDFBDA /* EMRealtimeSearch.m */,
  8364. EB8E2C1F239666A800CDFBDA /* EMDateHelper.m */,
  8365. EB8E2C20239666A800CDFBDA /* EMChineseToPinyin.m */,
  8366. EB8E2C21239666A800CDFBDA /* EMRemindManager.m */,
  8367. );
  8368. path = Helper;
  8369. sourceTree = "<group>";
  8370. };
  8371. EB8E2B81239666A800CDFBDA /* Category */ = {
  8372. isa = PBXGroup;
  8373. children = (
  8374. EB8E2B82239666A800CDFBDA /* UIViewController+HUD.m */,
  8375. EB8E2B83239666A800CDFBDA /* NSObject+Alert.h */,
  8376. EB8E2B84239666A800CDFBDA /* UIViewController+Util.h */,
  8377. EB8E2B85239666A800CDFBDA /* UIViewController+HUD.h */,
  8378. EB8E2B86239666A800CDFBDA /* UIViewController+Util.m */,
  8379. EB8E2B87239666A800CDFBDA /* NSObject+Alert.m */,
  8380. );
  8381. path = Category;
  8382. sourceTree = "<group>";
  8383. };
  8384. EB8E2B8B239666A800CDFBDA /* SharedImgs */ = {
  8385. isa = PBXGroup;
  8386. children = (
  8387. EB8E2B8C239666A800CDFBDA /* close_gray@3x.png */,
  8388. EB8E2B8D239666A800CDFBDA /* uncheck@3x.png */,
  8389. EB8E2B8E239666A800CDFBDA /* back_gary@3x.png */,
  8390. EB8E2B8F239666A800CDFBDA /* user_avatar_blue@3x.png */,
  8391. EB8E2B90239666A800CDFBDA /* user_avatar_blue@2x.png */,
  8392. EB8E2B91239666A800CDFBDA /* back_gary@2x.png */,
  8393. EB8E2B92239666A800CDFBDA /* close_gray@2x.png */,
  8394. EB8E2B93239666A800CDFBDA /* uncheck@2x.png */,
  8395. EB8E2B94239666A800CDFBDA /* navbar_white@3x.png */,
  8396. EB8E2B95239666A800CDFBDA /* close_white@2x.png */,
  8397. EB8E2B96239666A800CDFBDA /* close_white@3x.png */,
  8398. EB8E2B97239666A800CDFBDA /* group_avatar@2x.png */,
  8399. EB8E2B98239666A800CDFBDA /* user_avatar_gray@3x.png */,
  8400. EB8E2B99239666A800CDFBDA /* search_gray@3x.png */,
  8401. EB8E2B9A239666A800CDFBDA /* user_avatar_gray@2x.png */,
  8402. EB8E2B9B239666A800CDFBDA /* search_gray@2x.png */,
  8403. EB8E2B9C239666A800CDFBDA /* group_avatar@3x.png */,
  8404. EB8E2B9D239666A800CDFBDA /* checked@3x.png */,
  8405. EB8E2B9E239666A800CDFBDA /* user_avatar_me@3x.png */,
  8406. EB8E2B9F239666A800CDFBDA /* checked@2x.png */,
  8407. );
  8408. path = SharedImgs;
  8409. sourceTree = "<group>";
  8410. };
  8411. EB8E2BA5239666A800CDFBDA /* View */ = {
  8412. isa = PBXGroup;
  8413. children = (
  8414. EB8E2BA6239666A800CDFBDA /* EMBadgeLabel.m */,
  8415. EB8E2BA7239666A800CDFBDA /* EMAvatarNameCell.h */,
  8416. EB8E2BA8239666A800CDFBDA /* EMBadgeLabel.h */,
  8417. EB8E2BA9239666A800CDFBDA /* EMAvatarNameCell.m */,
  8418. );
  8419. path = View;
  8420. sourceTree = "<group>";
  8421. };
  8422. EB8E2BAD239666A800CDFBDA /* 3rdParty */ = {
  8423. isa = PBXGroup;
  8424. children = (
  8425. EB8E2BAE239666A800CDFBDA /* VoiceConvert */,
  8426. EB8E2BBC239666A800CDFBDA /* MWPhotoBrowser */,
  8427. EB8E2BF8239666A800CDFBDA /* MulticastDelegate */,
  8428. );
  8429. path = 3rdParty;
  8430. sourceTree = "<group>";
  8431. };
  8432. EB8E2BAE239666A800CDFBDA /* VoiceConvert */ = {
  8433. isa = PBXGroup;
  8434. children = (
  8435. EB8E2BAF239666A800CDFBDA /* opencore-amrwb */,
  8436. EB8E2BB2239666A800CDFBDA /* libopencore-amrwb.a */,
  8437. EB8E2BB3239666A800CDFBDA /* libopencore-amrnb.a */,
  8438. EB8E2BB4239666A800CDFBDA /* opencore-amrnb */,
  8439. EB8E2BB7239666A800CDFBDA /* amrwapper */,
  8440. );
  8441. path = VoiceConvert;
  8442. sourceTree = "<group>";
  8443. };
  8444. EB8E2BAF239666A800CDFBDA /* opencore-amrwb */ = {
  8445. isa = PBXGroup;
  8446. children = (
  8447. EB8E2BB0239666A800CDFBDA /* if_rom.h */,
  8448. EB8E2BB1239666A800CDFBDA /* dec_if.h */,
  8449. );
  8450. path = "opencore-amrwb";
  8451. sourceTree = "<group>";
  8452. };
  8453. EB8E2BB4239666A800CDFBDA /* opencore-amrnb */ = {
  8454. isa = PBXGroup;
  8455. children = (
  8456. EB8E2BB5239666A800CDFBDA /* interf_dec.h */,
  8457. EB8E2BB6239666A800CDFBDA /* interf_enc.h */,
  8458. );
  8459. path = "opencore-amrnb";
  8460. sourceTree = "<group>";
  8461. };
  8462. EB8E2BB7239666A800CDFBDA /* amrwapper */ = {
  8463. isa = PBXGroup;
  8464. children = (
  8465. EB8E2BB8239666A800CDFBDA /* wav.mm */,
  8466. EB8E2BB9239666A800CDFBDA /* amrFileCodec.mm */,
  8467. EB8E2BBA239666A800CDFBDA /* amrFileCodec.h */,
  8468. EB8E2BBB239666A800CDFBDA /* wav.h */,
  8469. );
  8470. path = amrwapper;
  8471. sourceTree = "<group>";
  8472. };
  8473. EB8E2BBC239666A800CDFBDA /* MWPhotoBrowser */ = {
  8474. isa = PBXGroup;
  8475. children = (
  8476. EB8E2BBD239666A800CDFBDA /* Classes */,
  8477. EB8E2BD3239666A800CDFBDA /* Libraries */,
  8478. EB8E2BF7239666A800CDFBDA /* MWPhotoBrowser.bundle */,
  8479. );
  8480. path = MWPhotoBrowser;
  8481. sourceTree = "<group>";
  8482. };
  8483. EB8E2BBD239666A800CDFBDA /* Classes */ = {
  8484. isa = PBXGroup;
  8485. children = (
  8486. EB8E2BBE239666A800CDFBDA /* MWTapDetectingImageView.h */,
  8487. EB8E2BBF239666A800CDFBDA /* MWPhoto.h */,
  8488. EB8E2BC0239666A800CDFBDA /* MWPhotoProtocol.h */,
  8489. EB8E2BC1239666A800CDFBDA /* MWGridViewController.h */,
  8490. EB8E2BC2239666A800CDFBDA /* MWPhotoBrowser.m */,
  8491. EB8E2BC3239666A800CDFBDA /* MWCaptionView.m */,
  8492. EB8E2BC4239666A800CDFBDA /* MWTapDetectingView.h */,
  8493. EB8E2BC5239666A800CDFBDA /* MWPhotoBrowserPrivate.h */,
  8494. EB8E2BC6239666A800CDFBDA /* MWZoomingScrollView.m */,
  8495. EB8E2BC7239666A800CDFBDA /* UIImage+MWPhotoBrowser.m */,
  8496. EB8E2BC8239666A800CDFBDA /* MWGridCell.h */,
  8497. EB8E2BC9239666A800CDFBDA /* MWTapDetectingImageView.m */,
  8498. EB8E2BCA239666A800CDFBDA /* MWPhoto.m */,
  8499. EB8E2BCB239666A800CDFBDA /* MWTapDetectingView.m */,
  8500. EB8E2BCC239666A800CDFBDA /* MWCaptionView.h */,
  8501. EB8E2BCD239666A800CDFBDA /* MWGridViewController.m */,
  8502. EB8E2BCE239666A800CDFBDA /* MWPhotoBrowser.h */,
  8503. EB8E2BCF239666A800CDFBDA /* MWCommon.h */,
  8504. EB8E2BD0239666A800CDFBDA /* MWGridCell.m */,
  8505. EB8E2BD1239666A800CDFBDA /* UIImage+MWPhotoBrowser.h */,
  8506. EB8E2BD2239666A800CDFBDA /* MWZoomingScrollView.h */,
  8507. );
  8508. path = Classes;
  8509. sourceTree = "<group>";
  8510. };
  8511. EB8E2BD3239666A800CDFBDA /* Libraries */ = {
  8512. isa = PBXGroup;
  8513. children = (
  8514. EB8E2BD4239666A800CDFBDA /* DACircularProgress */,
  8515. EB8E2BD7239666A800CDFBDA /* PSTCollectionView */,
  8516. EB8E2BF4239666A800CDFBDA /* SDWebImage */,
  8517. );
  8518. path = Libraries;
  8519. sourceTree = "<group>";
  8520. };
  8521. EB8E2BD4239666A800CDFBDA /* DACircularProgress */ = {
  8522. isa = PBXGroup;
  8523. children = (
  8524. EB8E2BD5239666A800CDFBDA /* DACircularProgressView.m */,
  8525. EB8E2BD6239666A800CDFBDA /* DACircularProgressView.h */,
  8526. );
  8527. path = DACircularProgress;
  8528. sourceTree = "<group>";
  8529. };
  8530. EB8E2BD7239666A800CDFBDA /* PSTCollectionView */ = {
  8531. isa = PBXGroup;
  8532. children = (
  8533. EB8E2BD8239666A800CDFBDA /* PSTCollectionViewLayout+Internals.h */,
  8534. EB8E2BD9239666A800CDFBDA /* PSTCollectionViewItemKey.h */,
  8535. EB8E2BDA239666A800CDFBDA /* PSTGridLayoutSection.h */,
  8536. EB8E2BDB239666A800CDFBDA /* NSIndexPath+PSTCollectionViewAdditions.h */,
  8537. EB8E2BDC239666A800CDFBDA /* PSTCollectionViewUpdateItem.h */,
  8538. EB8E2BDD239666A800CDFBDA /* PSTCollectionViewController.m */,
  8539. EB8E2BDE239666A800CDFBDA /* PSTGridLayoutRow.h */,
  8540. EB8E2BDF239666A800CDFBDA /* PSTCollectionViewFlowLayout.m */,
  8541. EB8E2BE0239666A800CDFBDA /* PSTCollectionView.h */,
  8542. EB8E2BE1239666A800CDFBDA /* PSTCollectionViewCommon.h */,
  8543. EB8E2BE2239666A800CDFBDA /* PSTCollectionViewCell.m */,
  8544. EB8E2BE3239666A800CDFBDA /* PSTCollectionViewLayout.h */,
  8545. EB8E2BE4239666A800CDFBDA /* PSTGridLayoutItem.h */,
  8546. EB8E2BE5239666A800CDFBDA /* PSTGridLayoutInfo.m */,
  8547. EB8E2BE6239666A800CDFBDA /* PSTCollectionViewData.m */,
  8548. EB8E2BE7239666A800CDFBDA /* NSIndexPath+PSTCollectionViewAdditions.m */,
  8549. EB8E2BE8239666A800CDFBDA /* PSTCollectionViewUpdateItem.m */,
  8550. EB8E2BE9239666A800CDFBDA /* PSTGridLayoutSection.m */,
  8551. EB8E2BEA239666A800CDFBDA /* PSTCollectionViewItemKey.m */,
  8552. EB8E2BEB239666A800CDFBDA /* PSTCollectionView.m */,
  8553. EB8E2BEC239666A800CDFBDA /* PSTCollectionViewFlowLayout.h */,
  8554. EB8E2BED239666A800CDFBDA /* PSTGridLayoutRow.m */,
  8555. EB8E2BEE239666A800CDFBDA /* PSTCollectionViewController.h */,
  8556. EB8E2BEF239666A800CDFBDA /* PSTCollectionViewData.h */,
  8557. EB8E2BF0239666A800CDFBDA /* PSTGridLayoutInfo.h */,
  8558. EB8E2BF1239666A800CDFBDA /* PSTCollectionViewLayout.m */,
  8559. EB8E2BF2239666A800CDFBDA /* PSTGridLayoutItem.m */,
  8560. EB8E2BF3239666A800CDFBDA /* PSTCollectionViewCell.h */,
  8561. );
  8562. path = PSTCollectionView;
  8563. sourceTree = "<group>";
  8564. };
  8565. EB8E2BF4239666A800CDFBDA /* SDWebImage */ = {
  8566. isa = PBXGroup;
  8567. children = (
  8568. EB8E2BF5239666A800CDFBDA /* SDWebImageDecoder.m */,
  8569. EB8E2BF6239666A800CDFBDA /* SDWebImageDecoder.h */,
  8570. );
  8571. path = SDWebImage;
  8572. sourceTree = "<group>";
  8573. };
  8574. EB8E2BF8239666A800CDFBDA /* MulticastDelegate */ = {
  8575. isa = PBXGroup;
  8576. children = (
  8577. EB8E2BF9239666A800CDFBDA /* EMMulticastDelegate.h */,
  8578. EB8E2BFA239666A800CDFBDA /* EMMulticastDelegate.m */,
  8579. );
  8580. path = MulticastDelegate;
  8581. sourceTree = "<group>";
  8582. };
  8583. EB8E2BFD239666A800CDFBDA /* ViewController */ = {
  8584. isa = PBXGroup;
  8585. children = (
  8586. EB8E2BFE239666A800CDFBDA /* EMTextFieldViewController.h */,
  8587. EB8E2BFF239666A800CDFBDA /* EMTextView.m */,
  8588. EB8E2C00239666A800CDFBDA /* RefreshController */,
  8589. EB8E2C05239666A800CDFBDA /* EMTextViewController.h */,
  8590. EB8E2C06239666A800CDFBDA /* EMTextFieldViewController.m */,
  8591. EB8E2C07239666A800CDFBDA /* EMAlertController */,
  8592. EB8E2C12239666A800CDFBDA /* SearchController */,
  8593. EB8E2C1B239666A800CDFBDA /* EMTextView.h */,
  8594. EB8E2C1C239666A800CDFBDA /* EMTextViewController.m */,
  8595. );
  8596. path = ViewController;
  8597. sourceTree = "<group>";
  8598. };
  8599. EB8E2C00239666A800CDFBDA /* RefreshController */ = {
  8600. isa = PBXGroup;
  8601. children = (
  8602. EB8E2C01239666A800CDFBDA /* EMRefreshTableViewController.m */,
  8603. EB8E2C02239666A800CDFBDA /* EMRefreshViewController.h */,
  8604. EB8E2C03239666A800CDFBDA /* EMRefreshViewController.m */,
  8605. EB8E2C04239666A800CDFBDA /* EMRefreshTableViewController.h */,
  8606. );
  8607. path = RefreshController;
  8608. sourceTree = "<group>";
  8609. };
  8610. EB8E2C07239666A800CDFBDA /* EMAlertController */ = {
  8611. isa = PBXGroup;
  8612. children = (
  8613. EB8E2C08239666A800CDFBDA /* alert_error@2x.png */,
  8614. EB8E2C09239666A800CDFBDA /* alert_error@3x.png */,
  8615. EB8E2C0A239666A800CDFBDA /* alert_default@3x.png */,
  8616. EB8E2C0B239666A800CDFBDA /* alert_success@3x.png */,
  8617. EB8E2C0C239666A800CDFBDA /* EMAlertController.m */,
  8618. EB8E2C0D239666A800CDFBDA /* alert_success@2x.png */,
  8619. EB8E2C0E239666A800CDFBDA /* alert_default@2x.png */,
  8620. EB8E2C0F239666A800CDFBDA /* alert_info@3x.png */,
  8621. EB8E2C10239666A800CDFBDA /* alert_info@2x.png */,
  8622. EB8E2C11239666A800CDFBDA /* EMAlertController.h */,
  8623. );
  8624. path = EMAlertController;
  8625. sourceTree = "<group>";
  8626. };
  8627. EB8E2C12239666A800CDFBDA /* SearchController */ = {
  8628. isa = PBXGroup;
  8629. children = (
  8630. EB8E2C13239666A800CDFBDA /* UIViewController+Search.m */,
  8631. EB8E2C14239666A800CDFBDA /* EMSearchResultController.m */,
  8632. EB8E2C15239666A800CDFBDA /* EMSearchBar.m */,
  8633. EB8E2C16239666A800CDFBDA /* EMSearchViewController.m */,
  8634. EB8E2C17239666A800CDFBDA /* EMSearchBar.h */,
  8635. EB8E2C18239666A800CDFBDA /* EMSearchResultController.h */,
  8636. EB8E2C19239666A800CDFBDA /* UIViewController+Search.h */,
  8637. EB8E2C1A239666A800CDFBDA /* EMSearchViewController.h */,
  8638. );
  8639. path = SearchController;
  8640. sourceTree = "<group>";
  8641. };
  8642. EB8E2C22239666A800CDFBDA /* Chat */ = {
  8643. isa = PBXGroup;
  8644. children = (
  8645. EB8E2C27239666A800CDFBDA /* ChatBar */,
  8646. EB8E2CC4239666A800CDFBDA /* ChatImgs */,
  8647. EB8E2C26239666A800CDFBDA /* EMAtGroupMembersViewController.h */,
  8648. EB8E2CCC239666A800CDFBDA /* EMAtGroupMembersViewController.m */,
  8649. EB56DA0523BB31AF00FE7262 /* EMChatFileShowVC.h */,
  8650. EB56DA0623BB31AF00FE7262 /* EMChatFileShowVC.m */,
  8651. EB8E2C24239666A800CDFBDA /* EMChatViewController.h */,
  8652. EB8E2CCA239666A800CDFBDA /* EMChatViewController.m */,
  8653. EB8E2C25239666A800CDFBDA /* EMLocationViewController.h */,
  8654. EB8E2CC3239666A800CDFBDA /* EMLocationViewController.m */,
  8655. EB8E2C23239666A800CDFBDA /* EMMessageModel.h */,
  8656. EB8E2CCB239666A800CDFBDA /* EMMessageModel.m */,
  8657. EB8E2CC2239666A800CDFBDA /* EMMsgTranspondViewController.h */,
  8658. EB8E2CD2239666A800CDFBDA /* EMMsgTranspondViewController.m */,
  8659. EB8E2CCD239666A800CDFBDA /* Helper */,
  8660. EB8E2C89239666A800CDFBDA /* MessageCell */,
  8661. );
  8662. path = Chat;
  8663. sourceTree = "<group>";
  8664. };
  8665. EB8E2C27239666A800CDFBDA /* ChatBar */ = {
  8666. isa = PBXGroup;
  8667. children = (
  8668. EB8E2C28239666A800CDFBDA /* EMChatBar.h */,
  8669. EB8E2C88239666A800CDFBDA /* EMChatBar.m */,
  8670. EB8E2C29239666A800CDFBDA /* MoreView */,
  8671. EB8E2DB1239762C100CDFBDA /* AudioShowView.h */,
  8672. EB8E2DB2239762C100CDFBDA /* AudioShowView.m */,
  8673. );
  8674. path = ChatBar;
  8675. sourceTree = "<group>";
  8676. };
  8677. EB8E2C29239666A800CDFBDA /* MoreView */ = {
  8678. isa = PBXGroup;
  8679. children = (
  8680. EB8E2C6B239666A800CDFBDA /* ChatBarImgs */,
  8681. EB8E2C2B239666A800CDFBDA /* MoreFunction */,
  8682. EB8E2C3A239666A800CDFBDA /* Emoticon */,
  8683. EB8E2C61239666A800CDFBDA /* AudioRecord */,
  8684. EB8E2C6A239666A800CDFBDA /* EMChatBarItem.h */,
  8685. EB8E2C2A239666A800CDFBDA /* EMChatBarItem.m */,
  8686. );
  8687. path = MoreView;
  8688. sourceTree = "<group>";
  8689. };
  8690. EB8E2C2B239666A800CDFBDA /* MoreFunction */ = {
  8691. isa = PBXGroup;
  8692. children = (
  8693. EB8E2C2C239666A800CDFBDA /* EMReadReceiptMemberModel.h */,
  8694. EB8E2C2D239666A800CDFBDA /* images */,
  8695. EB8E2C33239666A800CDFBDA /* EMMoreFunctionView.m */,
  8696. EB8E2C34239666A800CDFBDA /* EMReadReceiptMsgViewController.m */,
  8697. EB8E2C35239666A800CDFBDA /* EMReadReceiptTableViewCell.m */,
  8698. EB8E2C36239666A800CDFBDA /* EMReadReceiptMemberModel.m */,
  8699. EB8E2C37239666A800CDFBDA /* EMMoreFunctionView.h */,
  8700. EB8E2C38239666A800CDFBDA /* EMReadReceiptMsgViewController.h */,
  8701. EB8E2C39239666A800CDFBDA /* EMReadReceiptTableViewCell.h */,
  8702. );
  8703. path = MoreFunction;
  8704. sourceTree = "<group>";
  8705. };
  8706. EB8E2C2D239666A800CDFBDA /* images */ = {
  8707. isa = PBXGroup;
  8708. children = (
  8709. EB8E2C2E239666A800CDFBDA /* pin-red.png */,
  8710. EB8E2C2F239666A800CDFBDA /* closed@2x.png */,
  8711. EB8E2C30239666A800CDFBDA /* pin-white.png */,
  8712. EB8E2C31239666A800CDFBDA /* close@3x.png */,
  8713. EB8E2C32239666A800CDFBDA /* close@2x.png */,
  8714. );
  8715. path = images;
  8716. sourceTree = "<group>";
  8717. };
  8718. EB8E2C3A239666A800CDFBDA /* Emoticon */ = {
  8719. isa = PBXGroup;
  8720. children = (
  8721. EB8E2C3B239666A800CDFBDA /* EMChatBarEmoticonView.h */,
  8722. EB8E2C3C239666A800CDFBDA /* Images */,
  8723. EB8E2C5D239666A800CDFBDA /* Emoji */,
  8724. EB8E2C60239666A800CDFBDA /* EMChatBarEmoticonView.m */,
  8725. );
  8726. path = Emoticon;
  8727. sourceTree = "<group>";
  8728. };
  8729. EB8E2C3C239666A800CDFBDA /* Images */ = {
  8730. isa = PBXGroup;
  8731. children = (
  8732. EB8E2C3D239666A800CDFBDA /* icon_010_cover.png */,
  8733. EB8E2C3E239666A800CDFBDA /* icon_040_cover.png */,
  8734. EB8E2C3F239666A800CDFBDA /* icon_002_cover.png */,
  8735. EB8E2C40239666A800CDFBDA /* icon_029_cover.png */,
  8736. EB8E2C41239666A800CDFBDA /* icon_002.gif */,
  8737. EB8E2C42239666A800CDFBDA /* icon_030_cover.png */,
  8738. EB8E2C43239666A800CDFBDA /* icon_029.gif */,
  8739. EB8E2C44239666A800CDFBDA /* icon_024_cover.png */,
  8740. EB8E2C45239666A800CDFBDA /* icon_010.gif */,
  8741. EB8E2C46239666A800CDFBDA /* icon_012.gif */,
  8742. EB8E2C47239666A800CDFBDA /* icon_022_cover.png */,
  8743. EB8E2C48239666A800CDFBDA /* icon_013.gif */,
  8744. EB8E2C49239666A800CDFBDA /* icon_007.gif */,
  8745. EB8E2C4A239666A800CDFBDA /* icon_022.gif */,
  8746. EB8E2C4B239666A800CDFBDA /* icon_027_cover.png */,
  8747. EB8E2C4C239666A800CDFBDA /* icon_035.gif */,
  8748. EB8E2C4D239666A800CDFBDA /* icon_021.gif */,
  8749. EB8E2C4E239666A800CDFBDA /* icon_012_cover.png */,
  8750. EB8E2C4F239666A800CDFBDA /* icon_020.gif */,
  8751. EB8E2C50239666A800CDFBDA /* icon_019_cover.png */,
  8752. EB8E2C51239666A800CDFBDA /* icon_018.gif */,
  8753. EB8E2C52239666A800CDFBDA /* icon_030.gif */,
  8754. EB8E2C53239666A800CDFBDA /* icon_024.gif */,
  8755. EB8E2C54239666A800CDFBDA /* icon_019.gif */,
  8756. EB8E2C55239666A800CDFBDA /* icon_027.gif */,
  8757. EB8E2C56239666A800CDFBDA /* icon_021_cover.png */,
  8758. EB8E2C57239666A800CDFBDA /* icon_035_cover.png */,
  8759. EB8E2C58239666A800CDFBDA /* icon_040.gif */,
  8760. EB8E2C59239666A800CDFBDA /* icon_007_cover.png */,
  8761. EB8E2C5A239666A800CDFBDA /* icon_013_cover.png */,
  8762. EB8E2C5B239666A800CDFBDA /* icon_018_cover.png */,
  8763. EB8E2C5C239666A800CDFBDA /* icon_020_cover.png */,
  8764. );
  8765. path = Images;
  8766. sourceTree = "<group>";
  8767. };
  8768. EB8E2C5D239666A800CDFBDA /* Emoji */ = {
  8769. isa = PBXGroup;
  8770. children = (
  8771. EB8E2C5E239666A800CDFBDA /* EaseEmotionEscape.h */,
  8772. EB8E2C5F239666A800CDFBDA /* EaseEmotionEscape.m */,
  8773. );
  8774. path = Emoji;
  8775. sourceTree = "<group>";
  8776. };
  8777. EB8E2C61239666A800CDFBDA /* AudioRecord */ = {
  8778. isa = PBXGroup;
  8779. children = (
  8780. EB8E2C62239666A800CDFBDA /* chat_audio_red@2x.png */,
  8781. EB8E2C63239666A800CDFBDA /* EMChatBarRecordAudioView.h */,
  8782. EB8E2C64239666A800CDFBDA /* EMAudioRecordHelper.h */,
  8783. EB8E2C65239666A800CDFBDA /* chat_audio_red@3x.png */,
  8784. EB8E2C66239666A800CDFBDA /* EMAudioRecordHelper.mm */,
  8785. EB8E2C67239666A800CDFBDA /* EMChatBarRecordAudioView.m */,
  8786. EB8E2C68239666A800CDFBDA /* chat_audio_blue@2x.png */,
  8787. EB8E2C69239666A800CDFBDA /* chat_audio_blue@3x.png */,
  8788. );
  8789. path = AudioRecord;
  8790. sourceTree = "<group>";
  8791. };
  8792. EB8E2C6B239666A800CDFBDA /* ChatBarImgs */ = {
  8793. isa = PBXGroup;
  8794. children = (
  8795. EB8E2C6C239666A800CDFBDA /* chatbar_camera@2x.png */,
  8796. EB8E2C6D239666A800CDFBDA /* chatbar_photo@3x.png */,
  8797. EB8E2C6E239666A800CDFBDA /* chatbar_map_blue@2x.png */,
  8798. EB8E2C6F239666A800CDFBDA /* chatbar_call_blue@3x.png */,
  8799. EB8E2C70239666A800CDFBDA /* chatbar_call_blue@2x.png */,
  8800. EB8E2C71239666A800CDFBDA /* chatbar_map_blue@3x.png */,
  8801. EB8E2C72239666A800CDFBDA /* chatbar_photo@2x.png */,
  8802. EB8E2C73239666A800CDFBDA /* chatbar_camera@3x.png */,
  8803. EB8E2C74239666A800CDFBDA /* chatbar_face@2x.png */,
  8804. EB8E2C75239666A800CDFBDA /* chatbar_face@3x.png */,
  8805. EB8E2C76239666A800CDFBDA /* chatbar_extend_blue@2x.png */,
  8806. EB8E2C77239666A800CDFBDA /* chatbar_audio_blue@2x.png */,
  8807. EB8E2C78239666A800CDFBDA /* chatbar_extend@2x.png */,
  8808. EB8E2C79239666A800CDFBDA /* chatbar_photo_blue@3x.png */,
  8809. EB8E2C7A239666A800CDFBDA /* chatbar_audio@3x.png */,
  8810. EB8E2C7B239666A800CDFBDA /* chatbar_audio@2x.png */,
  8811. EB8E2C7C239666A800CDFBDA /* chatbar_photo_blue@2x.png */,
  8812. EB8E2C7D239666A800CDFBDA /* chatbar_extend@3x.png */,
  8813. EB8E2C7E239666A800CDFBDA /* chatbar_audio_blue@3x.png */,
  8814. EB8E2C7F239666A800CDFBDA /* chatbar_extend_blue@3x.png */,
  8815. EB8E2C80239666A800CDFBDA /* chatbar_call@3x.png */,
  8816. EB8E2C81239666A800CDFBDA /* chatbar_face_blue@2x.png */,
  8817. EB8E2C82239666A800CDFBDA /* chatbar_camera_blue@3x.png */,
  8818. EB8E2C83239666A800CDFBDA /* chatbar_map@3x.png */,
  8819. EB8E2C84239666A800CDFBDA /* chatbar_map@2x.png */,
  8820. EB8E2C85239666A800CDFBDA /* chatbar_camera_blue@2x.png */,
  8821. EB8E2C86239666A800CDFBDA /* chatbar_face_blue@3x.png */,
  8822. EB8E2C87239666A800CDFBDA /* chatbar_call@2x.png */,
  8823. );
  8824. path = ChatBarImgs;
  8825. sourceTree = "<group>";
  8826. };
  8827. EB8E2C89239666A800CDFBDA /* MessageCell */ = {
  8828. isa = PBXGroup;
  8829. children = (
  8830. EB8E2C8E239666A800CDFBDA /* BubbleView */,
  8831. EB8E2CA1239666A800CDFBDA /* EMMessageCell.h */,
  8832. EB8E2C8B239666A800CDFBDA /* EMMessageCell.m */,
  8833. EB8E2CC1239666A800CDFBDA /* EMMessageStatusView.h */,
  8834. EB8E2C8C239666A800CDFBDA /* EMMessageStatusView.m */,
  8835. EB8E2C8A239666A800CDFBDA /* EMMessageTimeCell.h */,
  8836. EB8E2C8D239666A800CDFBDA /* EMMessageTimeCell.m */,
  8837. EB8E2CA2239666A800CDFBDA /* MsgCellImgs */,
  8838. );
  8839. path = MessageCell;
  8840. sourceTree = "<group>";
  8841. };
  8842. EB8E2C8E239666A800CDFBDA /* BubbleView */ = {
  8843. isa = PBXGroup;
  8844. children = (
  8845. EB8E2C92239666A800CDFBDA /* EMMessageBubbleView.h */,
  8846. EB8E2C9D239666A800CDFBDA /* EMMessageBubbleView.m */,
  8847. EB8E2C9B239666A800CDFBDA /* EMMsgAudioBubbleView.h */,
  8848. EB8E2C94239666A800CDFBDA /* EMMsgAudioBubbleView.m */,
  8849. EB8E2C98239666A800CDFBDA /* EMMsgExtGifBubbleView.h */,
  8850. EB8E2C91239666A800CDFBDA /* EMMsgExtGifBubbleView.m */,
  8851. EB8E2CA0239666A800CDFBDA /* EMMsgFileBubbleView.h */,
  8852. EB8E2C97239666A800CDFBDA /* EMMsgFileBubbleView.m */,
  8853. EBC2E141243C2DF30054E422 /* EMMsgExtSmartBubbleView.h */,
  8854. EBC2E142243C2DF30054E422 /* EMMsgExtSmartBubbleView.m */,
  8855. EB8E2C90239666A800CDFBDA /* EMMsgImageBubbleView.h */,
  8856. EB8E2C99239666A800CDFBDA /* EMMsgImageBubbleView.m */,
  8857. EB8E2C96239666A800CDFBDA /* EMMsgLocationBubbleView.h */,
  8858. EB8E2C9E239666A800CDFBDA /* EMMsgLocationBubbleView.m */,
  8859. EB8E2C9A239666A800CDFBDA /* EMMsgRecallBubbleView.h */,
  8860. EB8E2C8F239666A800CDFBDA /* EMMsgRecallBubbleView.m */,
  8861. EB8E2C93239666A800CDFBDA /* EMMsgTextBubbleView.h */,
  8862. EB8E2C9C239666A800CDFBDA /* EMMsgTextBubbleView.m */,
  8863. EB8E2C9F239666A800CDFBDA /* EMMsgVideoBubbleView.h */,
  8864. EB8E2C95239666A800CDFBDA /* EMMsgVideoBubbleView.m */,
  8865. );
  8866. path = BubbleView;
  8867. sourceTree = "<group>";
  8868. };
  8869. EB8E2CA2239666A800CDFBDA /* MsgCellImgs */ = {
  8870. isa = PBXGroup;
  8871. children = (
  8872. EBC2E145243C70520054E422 /* msg_bg_app@2x.png */,
  8873. EBC2E144243C70520054E422 /* msg_bg_app@3x.png */,
  8874. EB8E2CA3239666A800CDFBDA /* msg_recv_audio02@2x.png */,
  8875. EB8E2CA4239666A800CDFBDA /* msg_location@2x.png */,
  8876. EB8E2CA5239666A800CDFBDA /* msg_location_white@3x.png */,
  8877. EB8E2CA6239666A800CDFBDA /* msg_bg_send@3x.png */,
  8878. EB8E2CA7239666A800CDFBDA /* msg_send_audio02@3x.png */,
  8879. EB8E2CA8239666A800CDFBDA /* msg_send_audio02@2x.png */,
  8880. EB8E2CA9239666A800CDFBDA /* msg_bg_send@2x.png */,
  8881. EB8E2CAA239666A800CDFBDA /* msg_location_white@2x.png */,
  8882. EB8E2CAB239666A800CDFBDA /* msg_recv_audio02@3x.png */,
  8883. EB8E2CAC239666A800CDFBDA /* msg_location@3x.png */,
  8884. EB8E2CAD239666A800CDFBDA /* msg_fail@2x.png */,
  8885. EB8E2CAE239666A800CDFBDA /* msg_fail@3x.png */,
  8886. EB8E2CAF239666A800CDFBDA /* msg_send_audio@3x.png */,
  8887. EB8E2CB0239666A800CDFBDA /* msg_send_audio01@2x.png */,
  8888. EB8E2CB1239666A800CDFBDA /* msg_recv_audio01@3x.png */,
  8889. EB8E2CB2239666A800CDFBDA /* msg_recv_audio01@2x.png */,
  8890. EB8E2CB3239666A800CDFBDA /* msg_send_audio01@3x.png */,
  8891. EB8E2CB4239666A800CDFBDA /* msg_send_audio@2x.png */,
  8892. EB8E2CB5239666A800CDFBDA /* msg_recv_audio@3x.png */,
  8893. EB8E2CB6239666A800CDFBDA /* msg_file_white@2x.png */,
  8894. EB8E2CB7239666A800CDFBDA /* msg_file@3x.png */,
  8895. EB8E2CB8239666A800CDFBDA /* msg_img_broken@2x.png */,
  8896. EB8E2CB9239666A800CDFBDA /* msg_video_white@2x.png */,
  8897. EB8E2CBA239666A800CDFBDA /* msg_bg_recv@3x.png */,
  8898. EB8E2CBB239666A800CDFBDA /* msg_bg_recv@2x.png */,
  8899. EB8E2CBC239666A800CDFBDA /* msg_video_white@3x.png */,
  8900. EB8E2CBD239666A800CDFBDA /* msg_img_broken@3x.png */,
  8901. EB8E2CBE239666A800CDFBDA /* msg_file@2x.png */,
  8902. EB8E2CBF239666A800CDFBDA /* msg_file_white@3x.png */,
  8903. EB8E2CC0239666A800CDFBDA /* msg_recv_audio@2x.png */,
  8904. );
  8905. path = MsgCellImgs;
  8906. sourceTree = "<group>";
  8907. };
  8908. EB8E2CC4239666A800CDFBDA /* ChatImgs */ = {
  8909. isa = PBXGroup;
  8910. children = (
  8911. EB8E2CC5239666A800CDFBDA /* image@2x.png */,
  8912. EB8E2CC6239666A800CDFBDA /* chat_info@3x.png */,
  8913. EB8E2CC7239666A800CDFBDA /* chat_info@2x.png */,
  8914. EB8E2CC8239666A800CDFBDA /* chat_clear@3x.png */,
  8915. EB8E2CC9239666A800CDFBDA /* chat_clear@2x.png */,
  8916. );
  8917. path = ChatImgs;
  8918. sourceTree = "<group>";
  8919. };
  8920. EB8E2CCD239666A800CDFBDA /* Helper */ = {
  8921. isa = PBXGroup;
  8922. children = (
  8923. EB8E2CCE239666A800CDFBDA /* EMImageBrowser.m */,
  8924. EB8E2CCF239666A800CDFBDA /* EMImageBrowser.h */,
  8925. EB8E2CD0239666A800CDFBDA /* EMAudioPlayerHelper.h */,
  8926. EB8E2CD1239666A800CDFBDA /* EMAudioPlayerHelper.mm */,
  8927. );
  8928. path = Helper;
  8929. sourceTree = "<group>";
  8930. };
  8931. EB92E87D23B09AD4008E94CF /* GFCalendar */ = {
  8932. isa = PBXGroup;
  8933. children = (
  8934. EB92E88123B09AD4008E94CF /* GFCalendar.h */,
  8935. EB92E88723B09AD4008E94CF /* GFCalendar.m */,
  8936. EB92E88623B09AD4008E94CF /* GFCalendarCell.h */,
  8937. EB92E88223B09AD4008E94CF /* GFCalendarCell.m */,
  8938. EB92E88023B09AD4008E94CF /* GFCalendarMonth.h */,
  8939. EB92E88823B09AD4008E94CF /* GFCalendarMonth.m */,
  8940. EB92E88423B09AD4008E94CF /* GFCalendarScrollView.h */,
  8941. EB92E87E23B09AD4008E94CF /* GFCalendarScrollView.m */,
  8942. EB92E88923B09AD4008E94CF /* GFCalendarView.h */,
  8943. EB92E88323B09AD4008E94CF /* GFCalendarView.m */,
  8944. EB92E87F23B09AD4008E94CF /* NSDate+GFCalendar.h */,
  8945. EB92E88523B09AD4008E94CF /* NSDate+GFCalendar.m */,
  8946. );
  8947. path = GFCalendar;
  8948. sourceTree = "<group>";
  8949. };
  8950. EB95266D248A0B19003EFCCE /* BookRead */ = {
  8951. isa = PBXGroup;
  8952. children = (
  8953. EBA0FA58249CC34B0022AFA3 /* UIGestureRecognizer+SSUtil.h */,
  8954. EBA0FA57249CC34B0022AFA3 /* UIGestureRecognizer+SSUtil.m */,
  8955. EBA0FA56249CC34B0022AFA3 /* UIView+LYLayout.h */,
  8956. EBA0FA59249CC34C0022AFA3 /* UIView+LYLayout.m */,
  8957. EB95268A248A12F1003EFCCE /* 龙王传说.txt */,
  8958. EB952687248A0CA5003EFCCE /* DCFileTool.h */,
  8959. EB952688248A0CA5003EFCCE /* DCFileTool.m */,
  8960. EB952686248A0C52003EFCCE /* Header.h */,
  8961. EB95267C248A0BA6003EFCCE /* model */,
  8962. EB952673248A0BA6003EFCCE /* view */,
  8963. EB95266E248A0BA6003EFCCE /* viewcontroller */,
  8964. );
  8965. path = BookRead;
  8966. sourceTree = "<group>";
  8967. };
  8968. EB95266E248A0BA6003EFCCE /* viewcontroller */ = {
  8969. isa = PBXGroup;
  8970. children = (
  8971. EB95266A248A0A2A003EFCCE /* BookReadVC.h */,
  8972. EB95266B248A0A2A003EFCCE /* BookReadVC.m */,
  8973. EB952672248A0BA6003EFCCE /* DCContentVC.h */,
  8974. EB952670248A0BA6003EFCCE /* DCContentVC.m */,
  8975. EBA0FA53249CC22C0022AFA3 /* SSScrollViewController.h */,
  8976. EBA0FA54249CC22C0022AFA3 /* SSScrollViewController.m */,
  8977. );
  8978. path = viewcontroller;
  8979. sourceTree = "<group>";
  8980. };
  8981. EB952673248A0BA6003EFCCE /* view */ = {
  8982. isa = PBXGroup;
  8983. children = (
  8984. EBABAC8E248B7A300033B985 /* HKFloatBall */,
  8985. EB9D65A9248E46FE00636BAC /* BookPlayAlert.h */,
  8986. EB9D65AA248E46FE00636BAC /* BookPlayAlert.m */,
  8987. EB9D65A8248E46FE00636BAC /* BookPlayAlert.xib */,
  8988. EB9D65A3248E358900636BAC /* BookReadFontNameAlert.h */,
  8989. EB9D65A0248E358900636BAC /* BookReadFontNameAlert.m */,
  8990. EB9D65A2248E358900636BAC /* BookReadFontNameAlert.xib */,
  8991. EB9D659E248E358800636BAC /* BookReadListAlert.h */,
  8992. EB9D659F248E358800636BAC /* BookReadListAlert.m */,
  8993. EB9D65A1248E358900636BAC /* BookReadListAlert.xib */,
  8994. EBABAC88248B30E50033B985 /* BookReadFontAlert.h */,
  8995. EBABAC86248B30E50033B985 /* BookReadFontAlert.m */,
  8996. EBABAC87248B30E50033B985 /* BookReadFontAlert.xib */,
  8997. EB9D658C248DE60500636BAC /* BookReadStlyeAlert.h */,
  8998. EB9D6588248DE60400636BAC /* BookReadStlyeAlert.m */,
  8999. EB9D658F248DE60500636BAC /* BookReadStlyeAlert.xib */,
  9000. EBABAC83248B2FDF0033B985 /* CLSlider.h */,
  9001. EBABAC84248B2FDF0033B985 /* CLSlider.m */,
  9002. EB95268F248A560E003EFCCE /* BookReadSearchAlert.h */,
  9003. EB952691248A560E003EFCCE /* BookReadSearchAlert.m */,
  9004. EB952690248A560E003EFCCE /* BookReadSearchAlert.xib */,
  9005. EB952679248A0BA6003EFCCE /* DCBookListView.h */,
  9006. EB952675248A0BA6003EFCCE /* DCBookListView.m */,
  9007. EB95267A248A0BA6003EFCCE /* DCPageBottomView.h */,
  9008. EB952674248A0BA6003EFCCE /* DCPageBottomView.m */,
  9009. EB95267B248A0BA6003EFCCE /* DCPageTopView.h */,
  9010. EB952677248A0BA6003EFCCE /* DCPageTopView.m */,
  9011. EB95268C248A4B41003EFCCE /* BookReadTextView.h */,
  9012. EB95268D248A4B41003EFCCE /* BookReadTextView.m */,
  9013. EB9D6596248E003000636BAC /* BookReadStlyeCell.h */,
  9014. EB9D6597248E003000636BAC /* BookReadStlyeCell.m */,
  9015. EB9D6598248E003000636BAC /* BookReadStlyeCell.xib */,
  9016. );
  9017. path = view;
  9018. sourceTree = "<group>";
  9019. };
  9020. EB95267C248A0BA6003EFCCE /* model */ = {
  9021. isa = PBXGroup;
  9022. children = (
  9023. EB95267D248A0BA6003EFCCE /* DCBookModel.h */,
  9024. EB95267E248A0BA6003EFCCE /* DCBookModel.m */,
  9025. EB9D659B248E032C00636BAC /* BookReadStlyeModel.h */,
  9026. EB9D659C248E032C00636BAC /* BookReadStlyeModel.m */,
  9027. EBCCEC552508CAAE00DC6B6F /* BookSetPlayTimeModel.h */,
  9028. EBCCEC562508CAAE00DC6B6F /* BookSetPlayTimeModel.m */,
  9029. );
  9030. path = model;
  9031. sourceTree = "<group>";
  9032. };
  9033. EB9DA125250333240062FEB8 /* TableViewCells */ = {
  9034. isa = PBXGroup;
  9035. children = (
  9036. EB9DA126250333240062FEB8 /* SwitchTableViewCell.m */,
  9037. EB9DA127250333240062FEB8 /* NavigationTableViewCell.m */,
  9038. EB9DA128250333240062FEB8 /* SelectionTableViewCell.m */,
  9039. EB9DA129250333240062FEB8 /* SliderTableViewCell.m */,
  9040. EB9DA12A250333240062FEB8 /* InputTableViewCell.m */,
  9041. EB9DA12B250333240062FEB8 /* NavigationTableViewCell.h */,
  9042. EB9DA12C250333240062FEB8 /* SwitchTableViewCell.h */,
  9043. EB9DA12D250333240062FEB8 /* SliderTableViewCell.h */,
  9044. EB9DA12E250333240062FEB8 /* SelectionTableViewCell.h */,
  9045. EB9DA12F250333240062FEB8 /* InputTableViewCell.h */,
  9046. );
  9047. path = TableViewCells;
  9048. sourceTree = "<group>";
  9049. };
  9050. EBAB7CAF2500FAC000923FBA /* BaiduAIBD */ = {
  9051. isa = PBXGroup;
  9052. children = (
  9053. EB9DA125250333240062FEB8 /* TableViewCells */,
  9054. EB9DA1212503330B0062FEB8 /* TTSConfigViewController.h */,
  9055. EB9DA1202503330B0062FEB8 /* TTSConfigViewController.m */,
  9056. EBD29F7E250259A500AEB04C /* BDSResource */,
  9057. EBAB7CB02500FAC000923FBA /* BDSClientHeaders */,
  9058. EBAB7CCA2500FAC000923FBA /* BDSClientLib */,
  9059. );
  9060. path = BaiduAIBD;
  9061. sourceTree = "<group>";
  9062. };
  9063. EBAB7CB02500FAC000923FBA /* BDSClientHeaders */ = {
  9064. isa = PBXGroup;
  9065. children = (
  9066. EBAB7CB12500FAC000923FBA /* ASR */,
  9067. EBAB7CBF2500FAC000923FBA /* TTS */,
  9068. );
  9069. path = BDSClientHeaders;
  9070. sourceTree = "<group>";
  9071. };
  9072. EBAB7CB12500FAC000923FBA /* ASR */ = {
  9073. isa = PBXGroup;
  9074. children = (
  9075. EBAB7CB22500FAC000923FBA /* BDSWakeupParameters.h */,
  9076. EBAB7CB32500FAC000923FBA /* BDSASRParameters.h */,
  9077. EBAB7CB42500FAC000923FBA /* BDSEventManager.h */,
  9078. EBAB7CB52500FAC000923FBA /* .gitIgnore */,
  9079. EBAB7CB62500FAC000923FBA /* BDSUploaderDefines.h */,
  9080. EBAB7CB72500FAC000923FBA /* BDSASRDefines.h */,
  9081. EBAB7CB82500FAC000923FBA /* BDSUploaderParameters.h */,
  9082. EBAB7CB92500FAC000923FBA /* BDSWakeupDefines.h */,
  9083. EBAB7CBA2500FAC000923FBA /* UIHeaders */,
  9084. );
  9085. path = ASR;
  9086. sourceTree = "<group>";
  9087. };
  9088. EBAB7CBA2500FAC000923FBA /* UIHeaders */ = {
  9089. isa = PBXGroup;
  9090. children = (
  9091. EBAB7CBB2500FAC000923FBA /* BDRecognizerViewParamsObject.h */,
  9092. EBAB7CBC2500FAC000923FBA /* BDRecognizerViewController.h */,
  9093. EBAB7CBD2500FAC000923FBA /* BDTheme.h */,
  9094. EBAB7CBE2500FAC000923FBA /* BDRecognizerViewDelegate.h */,
  9095. );
  9096. path = UIHeaders;
  9097. sourceTree = "<group>";
  9098. };
  9099. EBAB7CBF2500FAC000923FBA /* TTS */ = {
  9100. isa = PBXGroup;
  9101. children = (
  9102. EBAB7CC02500FAC000923FBA /* BDSSynthesizerStatusNotifications.h */,
  9103. EBAB7CC12500FAC000923FBA /* BDSSpeechSynthesizerDelegate.h */,
  9104. EBAB7CC22500FAC000923FBA /* BDS_EttsModelManagerInterface.h */,
  9105. EBAB7CC32500FAC000923FBA /* BDSBuiltInPlayer.h */,
  9106. EBAB7CC42500FAC000923FBA /* BDSMixedModeSynthesizer.h */,
  9107. EBAB7CC52500FAC000923FBA /* BDSSpeechSynthesizer.h */,
  9108. EBAB7CC62500FAC000923FBA /* BDSSpeechSynthesizerParams.h */,
  9109. EBAB7CC72500FAC000923FBA /* BDSSynthesizerLogLevel.h */,
  9110. EBAB7CC82500FAC000923FBA /* BDSTTSEventManager.h */,
  9111. EBAB7CC92500FAC000923FBA /* BDSSpeechSynthesizerErrors.h */,
  9112. );
  9113. path = TTS;
  9114. sourceTree = "<group>";
  9115. };
  9116. EBAB7CCA2500FAC000923FBA /* BDSClientLib */ = {
  9117. isa = PBXGroup;
  9118. children = (
  9119. EBAB7CCB2500FAC000923FBA /* libBaiduSpeechSDK.a */,
  9120. EBAB7CCC2500FAC000923FBA /* .gitignore */,
  9121. );
  9122. path = BDSClientLib;
  9123. sourceTree = "<group>";
  9124. };
  9125. EBABAC8E248B7A300033B985 /* HKFloatBall */ = {
  9126. isa = PBXGroup;
  9127. children = (
  9128. EBABAC9E248B7A300033B985 /* HKFloatManager.h */,
  9129. EBABAC98248B7A300033B985 /* HKFloatManager.m */,
  9130. EBABAC94248B7A300033B985 /* Ohter */,
  9131. EBABAC8F248B7A300033B985 /* Transition */,
  9132. EBABAC99248B7A300033B985 /* View */,
  9133. );
  9134. path = HKFloatBall;
  9135. sourceTree = "<group>";
  9136. };
  9137. EBABAC8F248B7A300033B985 /* Transition */ = {
  9138. isa = PBXGroup;
  9139. children = (
  9140. EBABAC93248B7A300033B985 /* HKTransitionPop.h */,
  9141. EBABAC91248B7A300033B985 /* HKTransitionPop.m */,
  9142. EBABAC92248B7A300033B985 /* HKTransitionPush.h */,
  9143. EBABAC90248B7A300033B985 /* HKTransitionPush.m */,
  9144. );
  9145. path = Transition;
  9146. sourceTree = "<group>";
  9147. };
  9148. EBABAC94248B7A300033B985 /* Ohter */ = {
  9149. isa = PBXGroup;
  9150. children = (
  9151. EBABAC95248B7A300033B985 /* NSObject+hkvc.m */,
  9152. EBABAC96248B7A300033B985 /* NSObject+hkvc.h */,
  9153. EBABAC97248B7A300033B985 /* HKMarco.h */,
  9154. );
  9155. path = Ohter;
  9156. sourceTree = "<group>";
  9157. };
  9158. EBABAC99248B7A300033B985 /* View */ = {
  9159. isa = PBXGroup;
  9160. children = (
  9161. EB848E932508DE2D006A3ECD /* BookSetPlaySpeedAlert.h */,
  9162. EB848E942508DE2E006A3ECD /* BookSetPlaySpeedAlert.m */,
  9163. EB848E952508DE2E006A3ECD /* BookSetPlaySpeedAlert.xib */,
  9164. EBCCEC4B2508C3D700DC6B6F /* BookSetPlayTimeAlert.h */,
  9165. EBCCEC4C2508C3D700DC6B6F /* BookSetPlayTimeAlert.m */,
  9166. EBCCEC4D2508C3D800DC6B6F /* BookSetPlayTimeAlert.xib */,
  9167. EB03C7F92493703100B2EF18 /* BookSelectMusicAlert.h */,
  9168. EB03C7FA2493703100B2EF18 /* BookSelectMusicAlert.m */,
  9169. EB03C7FB2493703100B2EF18 /* BookSelectMusicAlert.xib */,
  9170. EB03C7F524936AA800B2EF18 /* BookSetBgMusicAlert.h */,
  9171. EB03C7F624936AA800B2EF18 /* BookSetBgMusicAlert.m */,
  9172. EB03C7F424936AA800B2EF18 /* BookSetBgMusicAlert.xib */,
  9173. EB03C7F12493637300B2EF18 /* BookVideoSetAlert.h */,
  9174. EB03C7EF2493637300B2EF18 /* BookVideoSetAlert.m */,
  9175. EB03C7F02493637300B2EF18 /* BookVideoSetAlert.xib */,
  9176. EBABAC9B248B7A300033B985 /* HKFloatAreaView.h */,
  9177. EBABAC9C248B7A300033B985 /* HKFloatAreaView.m */,
  9178. EBABAC9D248B7A300033B985 /* HKFloatBall.h */,
  9179. EBABAC9A248B7A300033B985 /* HKFloatBall.m */,
  9180. EB03C7FE249375A400B2EF18 /* BookSelectMusicCell.h */,
  9181. EB03C7FF249375A400B2EF18 /* BookSelectMusicCell.m */,
  9182. EB03C800249375A400B2EF18 /* BookSelectMusicCell.xib */,
  9183. EB03C80324937C2000B2EF18 /* BookSelectMusicModel.h */,
  9184. EB03C80424937C2000B2EF18 /* BookSelectMusicModel.m */,
  9185. EBCCEC502508C6D400DC6B6F /* BookSetPlayTimeCell.h */,
  9186. EBCCEC512508C6D400DC6B6F /* BookSetPlayTimeCell.m */,
  9187. EBCCEC522508C6D400DC6B6F /* BookSetPlayTimeCell.xib */,
  9188. );
  9189. path = View;
  9190. sourceTree = "<group>";
  9191. };
  9192. EBB6883523C9C0C300E24DD9 /* RichTextEdit */ = {
  9193. isa = PBXGroup;
  9194. children = (
  9195. EBB6886423C9C0C300E24DD9 /* categories */,
  9196. EBB6883C23C9C0C300E24DD9 /* config */,
  9197. EBB6883723C9C0C300E24DD9 /* databases */,
  9198. EBB6884823C9C0C300E24DD9 /* model */,
  9199. EBB6888223C9E4DD00E24DD9 /* RichModel.h */,
  9200. EBB6888323C9E4DD00E24DD9 /* RichModel.m */,
  9201. EB12500723CC359400143436 /* RichFileCell.h */,
  9202. EB12500823CC359400143436 /* RichFileCell.m */,
  9203. EBB6888023C9C1C900E24DD9 /* RichTextEditViewController.h */,
  9204. EBB6887F23C9C1C900E24DD9 /* RichTextEditViewController.m */,
  9205. EBB6884023C9C0C300E24DD9 /* utils */,
  9206. EBB6885323C9C0C300E24DD9 /* view */,
  9207. );
  9208. path = RichTextEdit;
  9209. sourceTree = "<group>";
  9210. };
  9211. EBB6883723C9C0C300E24DD9 /* databases */ = {
  9212. isa = PBXGroup;
  9213. children = (
  9214. EBB6883823C9C0C300E24DD9 /* MMDatabaseConn.m */,
  9215. EBB6883923C9C0C300E24DD9 /* MMDatabaseConn+Initial.h */,
  9216. EBB6883A23C9C0C300E24DD9 /* MMDatabaseConn+Initial.m */,
  9217. EBB6883B23C9C0C300E24DD9 /* MMDatabaseConn.h */,
  9218. );
  9219. path = databases;
  9220. sourceTree = "<group>";
  9221. };
  9222. EBB6883C23C9C0C300E24DD9 /* config */ = {
  9223. isa = PBXGroup;
  9224. children = (
  9225. EBB6883D23C9C0C300E24DD9 /* MMRichTextConfig.h */,
  9226. EBB6883E23C9C0C300E24DD9 /* MMRichTextConfig.m */,
  9227. EBB6883F23C9C0C300E24DD9 /* UtilMacro.h */,
  9228. );
  9229. path = config;
  9230. sourceTree = "<group>";
  9231. };
  9232. EBB6884023C9C0C300E24DD9 /* utils */ = {
  9233. isa = PBXGroup;
  9234. children = (
  9235. EBB6884123C9C0C300E24DD9 /* MMDraftUtil.h */,
  9236. EBB6884223C9C0C300E24DD9 /* MMRichContentUtil.m */,
  9237. EBB6884323C9C0C300E24DD9 /* MMFileUploadUtil.h */,
  9238. EBB6884423C9C0C300E24DD9 /* MMFileUploadUtil.m */,
  9239. EBB6884523C9C0C300E24DD9 /* MMRichContentUtil.h */,
  9240. EBB6884623C9C0C300E24DD9 /* MMDraftUtil.m */,
  9241. );
  9242. path = utils;
  9243. sourceTree = "<group>";
  9244. };
  9245. EBB6884823C9C0C300E24DD9 /* model */ = {
  9246. isa = PBXGroup;
  9247. children = (
  9248. EBB6884923C9C0C300E24DD9 /* MMBaseRichContentModel.h */,
  9249. EBB6884E23C9C0C300E24DD9 /* MMBaseRichContentModel.m */,
  9250. EBB6884B23C9C0C300E24DD9 /* MMDraftModel.h */,
  9251. EBB6885023C9C0C300E24DD9 /* MMDraftModel.m */,
  9252. EBB6885123C9C0C300E24DD9 /* MMRichImageModel.h */,
  9253. EBB6884A23C9C0C300E24DD9 /* MMRichImageModel.m */,
  9254. EBB6884D23C9C0C300E24DD9 /* MMRichTextModel.h */,
  9255. EBB6885223C9C0C300E24DD9 /* MMRichTextModel.m */,
  9256. EBB6884F23C9C0C300E24DD9 /* MMRichTitleModel.h */,
  9257. EBB6884C23C9C0C300E24DD9 /* MMRichTitleModel.m */,
  9258. );
  9259. path = model;
  9260. sourceTree = "<group>";
  9261. };
  9262. EBB6885323C9C0C300E24DD9 /* view */ = {
  9263. isa = PBXGroup;
  9264. children = (
  9265. EBB6885423C9C0C300E24DD9 /* MMBaseRichContentCell.h */,
  9266. EBB6885F23C9C0C300E24DD9 /* MMBaseRichContentCell.m */,
  9267. EBB6886123C9C0C300E24DD9 /* MMPlaceHolderTextView.h */,
  9268. EBB6885B23C9C0C300E24DD9 /* MMPlaceHolderTextView.m */,
  9269. EBB6886223C9C0C300E24DD9 /* MMRichEditAccessoryView.h */,
  9270. EBB6885A23C9C0C300E24DD9 /* MMRichEditAccessoryView.m */,
  9271. EBB6885923C9C0C300E24DD9 /* MMRichImageCell.h */,
  9272. EBB6886323C9C0C300E24DD9 /* MMRichImageCell.m */,
  9273. EBB6885523C9C0C300E24DD9 /* MMRichTextCell.h */,
  9274. EBB6885E23C9C0C300E24DD9 /* MMRichTextCell.m */,
  9275. EBB6885C23C9C0C300E24DD9 /* MMRichTitleCell.h */,
  9276. EBB6885723C9C0C300E24DD9 /* MMRichTitleCell.m */,
  9277. EBB6885D23C9C0C300E24DD9 /* MMTextView.h */,
  9278. EBB6885623C9C0C300E24DD9 /* MMTextView.m */,
  9279. EBB6885823C9C0C300E24DD9 /* UITextView+RCSBackWord.h */,
  9280. EBB6886023C9C0C300E24DD9 /* UITextView+RCSBackWord.m */,
  9281. );
  9282. path = view;
  9283. sourceTree = "<group>";
  9284. };
  9285. EBB6886423C9C0C300E24DD9 /* categories */ = {
  9286. isa = PBXGroup;
  9287. children = (
  9288. EBB6886523C9C0C300E24DD9 /* NSString+NSDate.m */,
  9289. EBB6886623C9C0C300E24DD9 /* UIImage+Util.h */,
  9290. EBB6886723C9C0C300E24DD9 /* NSString+NSDate.h */,
  9291. EBB6886823C9C0C300E24DD9 /* UIImage+Util.m */,
  9292. );
  9293. path = categories;
  9294. sourceTree = "<group>";
  9295. };
  9296. EBBD5E632519A2E7007B174E /* BookSearch */ = {
  9297. isa = PBXGroup;
  9298. children = (
  9299. EBBD5E652519A392007B174E /* BookSearchSubVC.h */,
  9300. EBBD5E642519A392007B174E /* BookSearchSubVC.m */,
  9301. EBBD5E682519CB4E007B174E /* BookLabelAllVC.h */,
  9302. EBBD5E692519CB4E007B174E /* BookLabelAllVC.m */,
  9303. EBB8D06B251D818A0051C897 /* BookLabelSearchVC.h */,
  9304. EBB8D06A251D818A0051C897 /* BookLabelSearchVC.m */,
  9305. EB9E2031251F0BBA00311E96 /* BookMingSearchVC.h */,
  9306. EB9E2030251F0BBA00311E96 /* BookMingSearchVC.m */,
  9307. EBB588CC252064B9005B3988 /* BookGongzhSearchVC.h */,
  9308. EBB588CD252064B9005B3988 /* BookGongzhSearchVC.m */,
  9309. );
  9310. path = BookSearch;
  9311. sourceTree = "<group>";
  9312. };
  9313. EBBEE5582498599300B135E4 /* Circle */ = {
  9314. isa = PBXGroup;
  9315. children = (
  9316. EBBEE55C249859E600B135E4 /* UICountingLabel.h */,
  9317. EBBEE55D249859E600B135E4 /* UICountingLabel.m */,
  9318. EBBEE5592498599300B135E4 /* PNCircleChart.m */,
  9319. EBBEE55A2498599300B135E4 /* PNCircleChart.h */,
  9320. );
  9321. path = Circle;
  9322. sourceTree = "<group>";
  9323. };
  9324. EBD29F7E250259A500AEB04C /* BDSResource */ = {
  9325. isa = PBXGroup;
  9326. children = (
  9327. EBD29F9F25025A0600AEB04C /* bd_etts_common_speech_m15_mand_eng_high_am-mgc_v3.6.0_20190117.dat */,
  9328. EBD29F8625025A0200AEB04C /* bd_etts_common_text_txt_all_mand_eng_middle_big_v3.4.2_20190710.dat */,
  9329. EBD29F9B25025A0600AEB04C /* bds_easr_basic_model.dat */,
  9330. EBD29F9225025A0400AEB04C /* bds_easr_dnn_wakeup_model.dat */,
  9331. EBD29F9A25025A0500AEB04C /* bds_easr_gramm.dat */,
  9332. EBD29F8A25025A0300AEB04C /* bds_easr_input_model.dat */,
  9333. EBD29F9325025A0400AEB04C /* bds_easr_mfe_cmvn.dat */,
  9334. EBD29F8525025A0200AEB04C /* bds_easr_mfe_dnn.dat */,
  9335. EBD29F8125025A0200AEB04C /* bds_easr_wakeup_words.dat */,
  9336. EBD29F9625025A0500AEB04C /* bds_license.dat */,
  9337. EBD29F9725025A0500AEB04C /* Chinese_And_English_Speech_Male.dat */,
  9338. EBD29F9025025A0400AEB04C /* Chinese_And_English_Text.dat */,
  9339. EBD29F8325025A0200AEB04C /* Chinese_Speech_Male.dat */,
  9340. EBD29F9825025A0500AEB04C /* chinese_speech.dat */,
  9341. EBD29F8225025A0200AEB04C /* Chinese_Text.dat */,
  9342. EBD29F8E25025A0400AEB04C /* English_Speech_Female.dat */,
  9343. EBD29F8F25025A0400AEB04C /* English_Speech_Male.dat */,
  9344. EBD29F9425025A0400AEB04C /* English_Text.dat */,
  9345. );
  9346. path = BDSResource;
  9347. sourceTree = "<group>";
  9348. };
  9349. EBD623A725159A66007FF6BC /* WMZPageController */ = {
  9350. isa = PBXGroup;
  9351. children = (
  9352. EBD623A825159A66007FF6BC /* Navi */,
  9353. EBD623AD25159A66007FF6BC /* Controller */,
  9354. EBD623BA25159A66007FF6BC /* PageController.bundle */,
  9355. );
  9356. path = WMZPageController;
  9357. sourceTree = "<group>";
  9358. };
  9359. EBD623A825159A66007FF6BC /* Navi */ = {
  9360. isa = PBXGroup;
  9361. children = (
  9362. EBD623A925159A66007FF6BC /* WMZPageLoopView.h */,
  9363. EBD623AA25159A66007FF6BC /* WMZPageNaviBtn.h */,
  9364. EBD623AB25159A66007FF6BC /* WMZPageLoopView.m */,
  9365. EBD623AC25159A66007FF6BC /* WMZPageNaviBtn.m */,
  9366. );
  9367. path = Navi;
  9368. sourceTree = "<group>";
  9369. };
  9370. EBD623AD25159A66007FF6BC /* Controller */ = {
  9371. isa = PBXGroup;
  9372. children = (
  9373. EBD623AE25159A66007FF6BC /* WMZPageScroller.h */,
  9374. EBD623AF25159A66007FF6BC /* WMZPageConfig.h */,
  9375. EBD623B025159A66007FF6BC /* WMZPageController.h */,
  9376. EBD623B125159A66007FF6BC /* NSObject+SafeKVO.m */,
  9377. EBD623B225159A66007FF6BC /* WMZPageParam.m */,
  9378. EBD623B325159A66007FF6BC /* WMZPageProtocol.h */,
  9379. EBD623B425159A66007FF6BC /* UIView+PageRect.h */,
  9380. EBD623B525159A66007FF6BC /* WMZPageController.m */,
  9381. EBD623B625159A66007FF6BC /* WMZPageScroller.m */,
  9382. EBD623B725159A66007FF6BC /* NSObject+SafeKVO.h */,
  9383. EBD623B825159A66007FF6BC /* WMZPageParam.h */,
  9384. EBD623B925159A66007FF6BC /* UIView+PageRect.m */,
  9385. );
  9386. path = Controller;
  9387. sourceTree = "<group>";
  9388. };
  9389. EBD623D12515CBA3007FF6BC /* HomeSchoolSubVC */ = {
  9390. isa = PBXGroup;
  9391. children = (
  9392. EBCFCDE625185001002CD1B8 /* HomeSchollVideoVC.h */,
  9393. EBCFCDE725185001002CD1B8 /* HomeSchollVideoVC.m */,
  9394. EBD623F2251605F7007FF6BC /* CenterTouchTableView.h */,
  9395. EBD623F3251605F7007FF6BC /* CenterTouchTableView.m */,
  9396. EBD623EE251603CD007FF6BC /* SegmentVController.h */,
  9397. EBD623EF251603CD007FF6BC /* SegmentVController.m */,
  9398. EBD623E32515CC41007FF6BC /* FirstViewController.h */,
  9399. EBD623E22515CC41007FF6BC /* FirstViewController.m */,
  9400. EBD623D22515CBA3007FF6BC /* SecondViewController.h */,
  9401. EBD623D82515CBA3007FF6BC /* SecondViewController.m */,
  9402. EBD623D32515CBA3007FF6BC /* SegmentHeaderView.h */,
  9403. EBD623D72515CBA3007FF6BC /* SegmentHeaderView.m */,
  9404. EBD623D42515CBA3007FF6BC /* SegmentView.h */,
  9405. EBD623DB2515CBA3007FF6BC /* SegmentView.m */,
  9406. EBD623D62515CBA3007FF6BC /* ThirdViewController.h */,
  9407. EBD623D92515CBA3007FF6BC /* ThirdViewController.m */,
  9408. EBD623E62515CE24007FF6BC /* HomeSchoolHeadView.h */,
  9409. EBD623E72515CE24007FF6BC /* HomeSchoolHeadView.m */,
  9410. );
  9411. path = HomeSchoolSubVC;
  9412. sourceTree = "<group>";
  9413. };
  9414. EBDE08AD24581782005D426C /* common */ = {
  9415. isa = PBXGroup;
  9416. children = (
  9417. EBDE08B724581FF4005D426C /* Controller */,
  9418. EBDE08B624581FEA005D426C /* Model */,
  9419. EBDE08B524581FDB005D426C /* View */,
  9420. EBDE08B32458192C005D426C /* Common.storyboard */,
  9421. );
  9422. path = common;
  9423. sourceTree = "<group>";
  9424. };
  9425. EBDE08B524581FDB005D426C /* View */ = {
  9426. isa = PBXGroup;
  9427. children = (
  9428. EBDE08B82458203A005D426C /* CommonBarCell.h */,
  9429. EBDE08B92458203A005D426C /* CommonBarCell.m */,
  9430. EBDE08BA2458203A005D426C /* CommonBarCell.xib */,
  9431. EBDE08C024582BA6005D426C /* CommonListCell.h */,
  9432. EBDE08C124582BA6005D426C /* CommonListCell.m */,
  9433. EBDE08C224582BA6005D426C /* CommonListCell.xib */,
  9434. );
  9435. path = View;
  9436. sourceTree = "<group>";
  9437. };
  9438. EBDE08B624581FEA005D426C /* Model */ = {
  9439. isa = PBXGroup;
  9440. children = (
  9441. EBDE08BD24582163005D426C /* CommonBarModel.h */,
  9442. EBDE08BE24582163005D426C /* CommonBarModel.m */,
  9443. EBDE08C5245837BF005D426C /* CommonListModel.h */,
  9444. EBDE08C6245837BF005D426C /* CommonListModel.m */,
  9445. );
  9446. path = Model;
  9447. sourceTree = "<group>";
  9448. };
  9449. EBDE08B724581FF4005D426C /* Controller */ = {
  9450. isa = PBXGroup;
  9451. children = (
  9452. EBFF89BB24CC102D00018E76 /* CommomSearchVC.h */,
  9453. EBFF89BA24CC102D00018E76 /* CommomSearchVC.m */,
  9454. EBDE08AE2458179B005D426C /* CommonHomeVC.h */,
  9455. EBDE08AF2458179B005D426C /* CommonHomeVC.m */,
  9456. EBDE08C824583D47005D426C /* CommonWorkVC.h */,
  9457. EBDE08C924583D47005D426C /* CommonWorkVC.m */,
  9458. EBDE08CB24583D6B005D426C /* CommonToolVC.h */,
  9459. EBDE08CC24583D6B005D426C /* CommonToolVC.m */,
  9460. EBE5EF172459478A00AD59C4 /* CommonToolMoveVC.h */,
  9461. EBE5EF182459478A00AD59C4 /* CommonToolMoveVC.m */,
  9462. EBE5EF1A2459645800AD59C4 /* CommonNoteVC.h */,
  9463. EBE5EF1B2459645800AD59C4 /* CommonNoteVC.m */,
  9464. EBFE261624D934CA00FC4A10 /* NoteDraftVC.h */,
  9465. EBFE261724D934CA00FC4A10 /* NoteDraftVC.m */,
  9466. );
  9467. path = Controller;
  9468. sourceTree = "<group>";
  9469. };
  9470. /* End PBXGroup section */
  9471. /* Begin PBXNativeTarget section */
  9472. C7D6B9C6235D7D7200770E7C /* smartRhino */ = {
  9473. isa = PBXNativeTarget;
  9474. buildConfigurationList = C7D6B9E0235D7D7600770E7C /* Build configuration list for PBXNativeTarget "smartRhino" */;
  9475. buildPhases = (
  9476. 6D9753116FD8B9C5DEAC98C9 /* [CP] Check Pods Manifest.lock */,
  9477. C7D6B9C3235D7D7200770E7C /* Sources */,
  9478. C7D6B9C4235D7D7200770E7C /* Frameworks */,
  9479. C7D6B9C5235D7D7200770E7C /* Resources */,
  9480. 5F93C23D600ABD048EE06B78 /* [CP] Embed Pods Frameworks */,
  9481. 950B8DF80FF748A0FC7053B0 /* [CP] Copy Pods Resources */,
  9482. );
  9483. buildRules = (
  9484. );
  9485. dependencies = (
  9486. );
  9487. name = smartRhino;
  9488. productName = smartRhino;
  9489. productReference = C7D6B9C7235D7D7200770E7C /* 泰德信源.app */;
  9490. productType = "com.apple.product-type.application";
  9491. };
  9492. /* End PBXNativeTarget section */
  9493. /* Begin PBXProject section */
  9494. C7D6B9BF235D7D7200770E7C /* Project object */ = {
  9495. isa = PBXProject;
  9496. attributes = {
  9497. LastUpgradeCheck = 1110;
  9498. ORGANIZATIONNAME = tederen;
  9499. TargetAttributes = {
  9500. C7D6B9C6235D7D7200770E7C = {
  9501. CreatedOnToolsVersion = 11.1;
  9502. LastSwiftMigration = 1110;
  9503. };
  9504. };
  9505. };
  9506. buildConfigurationList = C7D6B9C2235D7D7200770E7C /* Build configuration list for PBXProject "smartRhino" */;
  9507. compatibilityVersion = "Xcode 9.3";
  9508. developmentRegion = en;
  9509. hasScannedForEncodings = 0;
  9510. knownRegions = (
  9511. en,
  9512. Base,
  9513. "zh-Hans",
  9514. );
  9515. mainGroup = C7D6B9BE235D7D7200770E7C;
  9516. productRefGroup = C7D6B9C8235D7D7200770E7C /* Products */;
  9517. projectDirPath = "";
  9518. projectRoot = "";
  9519. targets = (
  9520. C7D6B9C6235D7D7200770E7C /* smartRhino */,
  9521. );
  9522. };
  9523. /* End PBXProject section */
  9524. /* Begin PBXResourcesBuildPhase section */
  9525. C7D6B9C5235D7D7200770E7C /* Resources */ = {
  9526. isa = PBXResourcesBuildPhase;
  9527. buildActionMask = 2147483647;
  9528. files = (
  9529. EB8E2D14239666A900CDFBDA /* alert_error@2x.png in Resources */,
  9530. EB8E2D19239666A900CDFBDA /* alert_success@2x.png in Resources */,
  9531. EB5F45022474CE0E008D316D /* BookDetailCell.xib in Resources */,
  9532. EB8E2D46239666A900CDFBDA /* icon_024.gif in Resources */,
  9533. EB96B89923BF56C900EE09D7 /* TDGroupInfoListCell.xib in Resources */,
  9534. C69A8E39237546310098FA26 /* ChatSearchFindbyPhotoCell.xib in Resources */,
  9535. C69A8DE523740AB80098FA26 /* ChatMsgDetailChatCell.xib in Resources */,
  9536. C7974A38236C3199004D5470 /* MyApprovalBCell.xib in Resources */,
  9537. EBFA5EE82491D8FB00AD38B0 /* ReplayMeCell.xib in Resources */,
  9538. 324D962E23A24E3700C7D9E8 /* FindShareTypeCell.xib in Resources */,
  9539. EBB240322480B46A00EECD15 /* BookPeriodicaListCell.xib in Resources */,
  9540. EBD29FB725025A0700AEB04C /* bds_license.dat in Resources */,
  9541. EB8E2CEC239666A900CDFBDA /* checked@3x.png in Resources */,
  9542. C79C6D3C23BF16C500BE4156 /* MeetingDetailsTimeCell.xib in Resources */,
  9543. EBFDFE4D247762280046E847 /* BookSelectCollectCell.xib in Resources */,
  9544. EBF7177D24726A4500ED1838 /* HomeWeiCousreCollectCell.xib in Resources */,
  9545. EBF7177324725B7A00ED1838 /* BookCardPayAlertCell.xib in Resources */,
  9546. C7799F1D23AB99C500270988 /* WorkFlowPersonnelListHeadView.xib in Resources */,
  9547. C7D6BC8B235DA1CE00770E7C /* MyPaperTableViewCell.xib in Resources */,
  9548. EBB83E4F23B35FD300A8C4BC /* ChangeTopicCell.xib in Resources */,
  9549. C7D6BC91235DA1CE00770E7C /* ClubApplicationViewController.xib in Resources */,
  9550. EB8E2D9A239666A900CDFBDA /* msg_video_white@3x.png in Resources */,
  9551. EB8E2D44239666A900CDFBDA /* icon_018.gif in Resources */,
  9552. EB38514724653A2200E28172 /* TDGroupLabelCell.xib in Resources */,
  9553. EB8E2D49239666A900CDFBDA /* icon_021_cover.png in Resources */,
  9554. EB8E2D62239666A900CDFBDA /* chatbar_extend_blue@2x.png in Resources */,
  9555. EB8E2CE4239666A900CDFBDA /* close_white@2x.png in Resources */,
  9556. EB8E2D4B239666A900CDFBDA /* icon_040.gif in Resources */,
  9557. EB8E2D5B239666A900CDFBDA /* chatbar_call_blue@3x.png in Resources */,
  9558. 324D961023A206B900C7D9E8 /* TestinCell.xib in Resources */,
  9559. EB8E2CDC239666A900CDFBDA /* uncheck@3x.png in Resources */,
  9560. EB8E2CE6239666A900CDFBDA /* group_avatar@2x.png in Resources */,
  9561. EB8E2D95239666A900CDFBDA /* msg_file@3x.png in Resources */,
  9562. EB5F44F52474BFAD008D316D /* HomeGoodBookCell.xib in Resources */,
  9563. C7743FA323A8C03D00973D70 /* WorkFlowSearchItemCell.xib in Resources */,
  9564. EB8E2D56239666A900CDFBDA /* chat_audio_blue@2x.png in Resources */,
  9565. EB8E2D40239666A900CDFBDA /* icon_021.gif in Resources */,
  9566. C7D6BC84235DA1CE00770E7C /* NoticeViewController.xib in Resources */,
  9567. C625AA6B236D9D990010E967 /* ChatMsgListCell.xib in Resources */,
  9568. EB8E2D58239666A900CDFBDA /* chatbar_camera@2x.png in Resources */,
  9569. EB8E2D31239666A900CDFBDA /* icon_040_cover.png in Resources */,
  9570. C69A8DC42372D45F0098FA26 /* MailListByZuCell.xib in Resources */,
  9571. C7799EFA23AB1DF100270988 /* WorkFlowOrderCell.xib in Resources */,
  9572. EB8E2D4A239666A900CDFBDA /* icon_035_cover.png in Resources */,
  9573. C7D6BCA9235DA1CE00770E7C /* SettingViewController.xib in Resources */,
  9574. EB8E2D8F239666A900CDFBDA /* msg_recv_audio01@3x.png in Resources */,
  9575. C7037FFD236FD33F008EA3E4 /* SendGroupBCell.xib in Resources */,
  9576. EB8E2D85239666A900CDFBDA /* msg_send_audio02@3x.png in Resources */,
  9577. C57264822382A6370054EE66 /* ArticleImageCell.xib in Resources */,
  9578. EBD29FB025025A0700AEB04C /* English_Speech_Male.dat in Resources */,
  9579. C7799EF523AB19EA00270988 /* WorkFlowOrderTopCell.xib in Resources */,
  9580. C6227092236C09FC00E2E3BF /* mj_sun@3x.png in Resources */,
  9581. EB77B298239FCAF90050A3C0 /* ChatNewRowCell.xib in Resources */,
  9582. C622158623719C84006F5D7F /* Login.storyboard in Resources */,
  9583. EB9D65AB248E46FE00636BAC /* BookPlayAlert.xib in Resources */,
  9584. C7799EFF23AB2A1600270988 /* WorkFlowOrderItemCell.xib in Resources */,
  9585. EB8E2CED239666A900CDFBDA /* user_avatar_me@3x.png in Resources */,
  9586. EB0DBF0323ADA8A200E977ED /* MyTDTopicSelectExtentCell.xib in Resources */,
  9587. EBD6231225148231007FF6BC /* IndexGoodBookCell.xib in Resources */,
  9588. EBF1771C24826E5100C729DC /* BookPeriodicaCell.xib in Resources */,
  9589. C76CC9E223BCA03D003B23DC /* MeetingRecordTitleCell.xib in Resources */,
  9590. EB5E18C6247F88E800EDB76E /* BookPublicBookCell.xib in Resources */,
  9591. EB8E2CE8239666A900CDFBDA /* search_gray@3x.png in Resources */,
  9592. C7D6BC9A235DA1CE00770E7C /* PersonalCertificationHeaderView.xib in Resources */,
  9593. C69A8DD72374047E0098FA26 /* ChatMsgDetail.storyboard in Resources */,
  9594. EB8E2D94239666A900CDFBDA /* msg_file_white@2x.png in Resources */,
  9595. EB8E2D5E239666A900CDFBDA /* chatbar_photo@2x.png in Resources */,
  9596. EBD29FA325025A0700AEB04C /* Chinese_Text.dat in Resources */,
  9597. EB8143C324407A3E00C439A9 /* AddChanelNoDataCell.xib in Resources */,
  9598. C72F2A59236D829D00F6ADE2 /* AddFileTableViewCell.xib in Resources */,
  9599. EB8E2CE3239666A900CDFBDA /* navbar_white@3x.png in Resources */,
  9600. EB8E2D70239666A900CDFBDA /* chatbar_map@2x.png in Resources */,
  9601. EB8E2D16239666A900CDFBDA /* alert_default@3x.png in Resources */,
  9602. C783740E23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.xib in Resources */,
  9603. C783740423AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.xib in Resources */,
  9604. C7C0673D236D7BC50049C50C /* InPutTextCell.xib in Resources */,
  9605. EB440FD123A36BCE006BCB95 /* TDGroupInfo.storyboard in Resources */,
  9606. EB3EAFD523A10CE600C38AB4 /* WaitWorkCell.xib in Resources */,
  9607. EB96B8A423BF5ACB00EE09D7 /* MyTDTopicExtent.storyboard in Resources */,
  9608. C7D6BCAC235DA1CE00770E7C /* BlacklistViewController.xib in Resources */,
  9609. C79C6D3723BF0A6100BE4156 /* MyMeetingTimeView.xib in Resources */,
  9610. EB8E2D1B239666A900CDFBDA /* alert_info@3x.png in Resources */,
  9611. C76CC9D823BC9C7A003B23DC /* MeetingRecordJoinCell.xib in Resources */,
  9612. EB1E0F8A246D17B600D4C3DE /* BookContentCell.xib in Resources */,
  9613. EB8E2D59239666A900CDFBDA /* chatbar_photo@3x.png in Resources */,
  9614. C6227098236C09FC00E2E3BF /* mj_car@3x.png in Resources */,
  9615. C625AA85236FCD680010E967 /* ChatMsgSearch.storyboard in Resources */,
  9616. EB8E2D81239666A900CDFBDA /* msg_recv_audio02@2x.png in Resources */,
  9617. C7799F1823AB849F00270988 /* WorkFlowPersonnelListCell.xib in Resources */,
  9618. C752D21623751FB200913F97 /* NextApprovalViewController.xib in Resources */,
  9619. EBC34D852511EABD00A4F133 /* BookTeacherHeadCell.xib in Resources */,
  9620. C72F3903236DADDC00933828 /* SettingCell.xib in Resources */,
  9621. EB8E2CEA239666A900CDFBDA /* search_gray@2x.png in Resources */,
  9622. EB8143BE2440502B00C439A9 /* HomeListWorkCell.xib in Resources */,
  9623. EBE1E2B824947E0800DB80BF /* HomeBigshotCollectCell.xib in Resources */,
  9624. C7E3E2F6237179AA0013BBDD /* FootCollectionReusableView.xib in Resources */,
  9625. C77E218B23AE3776009A230C /* WorkFlowOrderSelectedTimeCell.xib in Resources */,
  9626. C7D6B9DA235D7D7600770E7C /* LaunchScreen.storyboard in Resources */,
  9627. C625AA96236FD1A90010E967 /* ChatMsgSearchHistoryCell.xib in Resources */,
  9628. EB8E2D88239666A900CDFBDA /* msg_location_white@2x.png in Resources */,
  9629. C78373F123A9D82E0096AFE2 /* HistoricalWorkFlowListController.xib in Resources */,
  9630. EB1E0F74246CD5A300D4C3DE /* BookAllLookCell.xib in Resources */,
  9631. C622157D237169E3006F5D7F /* NoticeNewGroupMenuCell.xib in Resources */,
  9632. EBD623152514A175007FF6BC /* home.storyboard in Resources */,
  9633. C7743F9223A86D7000973D70 /* MyWorkFlowListController.xib in Resources */,
  9634. EB9D65A7248E358900636BAC /* BookReadFontNameAlert.xib in Resources */,
  9635. EB8E2CE1239666A900CDFBDA /* close_gray@2x.png in Resources */,
  9636. C6227093236C09FC00E2E3BF /* mj_sun_black@2x.png in Resources */,
  9637. C7D6BCAF235DA1CE00770E7C /* BlacklistTableViewCell.xib in Resources */,
  9638. EB8E2D27239666A900CDFBDA /* pin-red.png in Resources */,
  9639. EB8E2D6A239666A900CDFBDA /* chatbar_audio_blue@3x.png in Resources */,
  9640. EB6F0020247381FD00808484 /* HomeProblemTopCell.xib in Resources */,
  9641. EBD29FC025025A0700AEB04C /* bd_etts_common_speech_m15_mand_eng_high_am-mgc_v3.6.0_20190117.dat in Resources */,
  9642. EB6A3D5724A8ADC60067DBFA /* BookHomeSubNumCell.xib in Resources */,
  9643. C78373F723A9F5430096AFE2 /* HistoricalWorkFlowListCell.xib in Resources */,
  9644. C7D6BCBD235DA1CE00770E7C /* LoginViewController.xib in Resources */,
  9645. EB8E2D28239666A900CDFBDA /* closed@2x.png in Resources */,
  9646. EB3EAFE223A22EBF00C38AB4 /* TDGroup.storyboard in Resources */,
  9647. EB8E2CDB239666A900CDFBDA /* close_gray@3x.png in Resources */,
  9648. 324F176B239B3B4D0025CAE7 /* NoticeSelectCell.xib in Resources */,
  9649. EBF71753247229FB00ED1838 /* PayBookAlert.xib in Resources */,
  9650. EB31796C251C6E01001E01D3 /* BookBillArticeCell.xib in Resources */,
  9651. EBDE08C424582BA6005D426C /* CommonListCell.xib in Resources */,
  9652. C7D6BC90235DA1CE00770E7C /* MyClubApplicationTableViewCell.xib in Resources */,
  9653. EB415143246BCD6C00030371 /* BookHomeCell.xib in Resources */,
  9654. EB8E2D47239666A900CDFBDA /* icon_019.gif in Resources */,
  9655. EB6E84DB246FD1BF00BE0524 /* HomeWeiCousreCell.xib in Resources */,
  9656. C622708C236C09FC00E2E3BF /* mj_house@3x.png in Resources */,
  9657. EB8E2D3F239666A900CDFBDA /* icon_035.gif in Resources */,
  9658. C7743F9923A86DAE00973D70 /* WorkFlowFecordController.xib in Resources */,
  9659. EB8E2D2B239666A900CDFBDA /* close@2x.png in Resources */,
  9660. C783741823AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.xib in Resources */,
  9661. EB8E2D30239666A900CDFBDA /* icon_010_cover.png in Resources */,
  9662. EB8E2DA1239666A900CDFBDA /* chat_info@3x.png in Resources */,
  9663. 3264782723BF0B9600E0DC2D /* ArtticleComentCell.xib in Resources */,
  9664. EB8E2D5C239666A900CDFBDA /* chatbar_call_blue@2x.png in Resources */,
  9665. C7799F0423AB2C6E00270988 /* WorkFlowOrderController.xib in Resources */,
  9666. EBBD5E702519D66A007B174E /* BookListCell.xib in Resources */,
  9667. EB8E2D0E239666A900CDFBDA /* MWPhotoBrowser.bundle in Resources */,
  9668. C622708D236C09FC00E2E3BF /* mj_house_black@3x.png in Resources */,
  9669. EBBEE5632498763600B135E4 /* SynopsisCollectCell.xib in Resources */,
  9670. C703801223701018008EA3E4 /* MyApprovalDetailCell.xib in Resources */,
  9671. EBCFCDE425184621002CD1B8 /* HomeSchoolContentCell.xib in Resources */,
  9672. EBC2E146243C70520054E422 /* msg_bg_app@3x.png in Resources */,
  9673. C6227095236C09FC00E2E3BF /* mj_house@2x.png in Resources */,
  9674. EB8E2D96239666A900CDFBDA /* msg_img_broken@2x.png in Resources */,
  9675. 32580E6323ADB814005DF500 /* NoteBookSelectFinderCell.xib in Resources */,
  9676. EB8E2CEE239666A900CDFBDA /* checked@2x.png in Resources */,
  9677. EB0A73A3247BC93800DB75CB /* BookBillBookCell.xib in Resources */,
  9678. EBD29FB425025A0700AEB04C /* bds_easr_mfe_cmvn.dat in Resources */,
  9679. C7D6BCA0235DA1CE00770E7C /* MyDetailTableViewCell.xib in Resources */,
  9680. EBC2E147243C70520054E422 /* msg_bg_app@2x.png in Resources */,
  9681. EB8E2D3E239666A900CDFBDA /* icon_027_cover.png in Resources */,
  9682. EB2E46FE23A46B5F00CAF0D3 /* TDGroupSearchCell.xib in Resources */,
  9683. EB9E202E251F088000311E96 /* BookMingCell.xib in Resources */,
  9684. EB8E2D5A239666A900CDFBDA /* chatbar_map_blue@2x.png in Resources */,
  9685. EB8E2D72239666A900CDFBDA /* chatbar_face_blue@3x.png in Resources */,
  9686. C625AAB5236FFFAA0010E967 /* WorkingGroup.storyboard in Resources */,
  9687. EB1E0F7C246D0DA700D4C3DE /* BookContentLeftCell.xib in Resources */,
  9688. C7EE367923BB2D57002EB3BF /* NewMeetingFecordDetailsController.xib in Resources */,
  9689. EBAB7CCF2500FAC000923FBA /* .gitignore in Resources */,
  9690. 324D963E23A4D47F00C7D9E8 /* NoteBook.storyboard in Resources */,
  9691. EBE96EC1245ABEB6008BDBA8 /* PayAlert.xib in Resources */,
  9692. EB03C7F32493637300B2EF18 /* BookVideoSetAlert.xib in Resources */,
  9693. C7D6BC9E235DA1CE00770E7C /* MyDetailViewController.xib in Resources */,
  9694. EB8E2D84239666A900CDFBDA /* msg_bg_send@3x.png in Resources */,
  9695. EB5F450A2475093C008D316D /* BookChanelCell.xib in Resources */,
  9696. EB8E2D3A239666A900CDFBDA /* icon_022_cover.png in Resources */,
  9697. EB8E2D15239666A900CDFBDA /* alert_error@3x.png in Resources */,
  9698. EB8E2D53239666A900CDFBDA /* chat_audio_red@3x.png in Resources */,
  9699. EB8E2CDD239666A900CDFBDA /* back_gary@3x.png in Resources */,
  9700. EBE1E2B324947C2800DB80BF /* HomeBigshotCell.xib in Resources */,
  9701. EBE96EC9245AD77B008BDBA8 /* PayAlertCell.xib in Resources */,
  9702. C622708E236C09FC00E2E3BF /* mj_sun_black@3x.png in Resources */,
  9703. C6227090236C09FC00E2E3BF /* mj_air@3x.png in Resources */,
  9704. EBFC605C23FE52EE00A6874B /* HomeCommentView.xib in Resources */,
  9705. EBF7175C2472355700ED1838 /* PayBookAlertCell.xib in Resources */,
  9706. EB8E2D65239666A900CDFBDA /* chatbar_photo_blue@3x.png in Resources */,
  9707. C69A8DF023743B9B0098FA26 /* ChatMsgDetailChatInfoCell.xib in Resources */,
  9708. C7938E572364446B00746248 /* ClickOKCell.xib in Resources */,
  9709. C7743FB323A9078100973D70 /* historicalRecordCell.xib in Resources */,
  9710. EB8E2D37239666A900CDFBDA /* icon_024_cover.png in Resources */,
  9711. C62215932372A32B006F5D7F /* NoticeUnreadCell.xib in Resources */,
  9712. EB195A59252174D700EA68D3 /* BookCommentView.xib in Resources */,
  9713. EB8E2D4C239666A900CDFBDA /* icon_007_cover.png in Resources */,
  9714. EBFDFE482477610F0046E847 /* BookSelectCell.xib in Resources */,
  9715. EBD29FA425025A0700AEB04C /* Chinese_Speech_Male.dat in Resources */,
  9716. EB8E2CDF239666A900CDFBDA /* user_avatar_blue@2x.png in Resources */,
  9717. 327E375E23A9C86600842F47 /* NoteBookCell.xib in Resources */,
  9718. EB440FC623A32302006BCB95 /* TDGroupInfoDetailCell.xib in Resources */,
  9719. C783741323AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.xib in Resources */,
  9720. C74BCC75238F88A200169982 /* VersionData.storyboard in Resources */,
  9721. EB8E2D6B239666A900CDFBDA /* chatbar_extend_blue@3x.png in Resources */,
  9722. EBD29FAF25025A0700AEB04C /* English_Speech_Female.dat in Resources */,
  9723. C6F2E18C236C2EE3009E6903 /* ShowPhotoCameraAlertView.xib in Resources */,
  9724. C625AAC3237003F80010E967 /* ShowNewGroupAlert.xib in Resources */,
  9725. EB8E2D1A239666A900CDFBDA /* alert_default@2x.png in Resources */,
  9726. C72F38FB236DADDC00933828 /* Setting.storyboard in Resources */,
  9727. C6F2E187236C26EC009E6903 /* MyInfoCell.xib in Resources */,
  9728. C7D6B9D7235D7D7600770E7C /* Assets.xcassets in Resources */,
  9729. EBD29FBB25025A0700AEB04C /* bds_easr_gramm.dat in Resources */,
  9730. EB8E2D8A239666A900CDFBDA /* msg_location@3x.png in Resources */,
  9731. C7D6BCA6235DA1CE00770E7C /* AboutViewController.xib in Resources */,
  9732. EB8E2D98239666A900CDFBDA /* msg_bg_recv@3x.png in Resources */,
  9733. C7799F0923AB5C5A00270988 /* WorkFlowOrderInputCell.xib in Resources */,
  9734. EBD29FB525025A0700AEB04C /* English_Text.dat in Resources */,
  9735. 3220A0C723CC8F7C005A347C /* shoujianrenResultViewCell.xib in Resources */,
  9736. EB0FA5D1241F6DBD00BF8558 /* HomeScrCell.xib in Resources */,
  9737. C6227097236C09FC00E2E3BF /* mj_air_black@2x.png in Resources */,
  9738. EB0A73A8247BC95900DB75CB /* BookBillCousreCell.xib in Resources */,
  9739. EBD29FB125025A0700AEB04C /* Chinese_And_English_Text.dat in Resources */,
  9740. EBD623C225159A66007FF6BC /* PageController.bundle in Resources */,
  9741. EB568FC2239B40C7000827B0 /* FindResultViewCell.xib in Resources */,
  9742. C7743F8823A86A8600973D70 /* WorkFlowHomeListController.xib in Resources */,
  9743. EB96B8A323BF5ACB00EE09D7 /* MyTDTopic.storyboard in Resources */,
  9744. C7D6BB3C235DA18A00770E7C /* MyChanelCollectionReusableViewTop.xib in Resources */,
  9745. C76CC9DD23BC9E25003B23DC /* MeetingRecordUserCell.xib in Resources */,
  9746. C7D6BC7D235DA1CE00770E7C /* MyOrderViewController.xib in Resources */,
  9747. C6227094236C09FC00E2E3BF /* mj_house_black@2x.png in Resources */,
  9748. EBD537AE24908CD3000EDF2B /* HomeTeacherCell.xib in Resources */,
  9749. C7F61622238BF67B008AF22D /* SWForm.gif in Resources */,
  9750. EB8E2D8B239666A900CDFBDA /* msg_fail@2x.png in Resources */,
  9751. EB8E2D4F239666A900CDFBDA /* icon_020_cover.png in Resources */,
  9752. EBD29FA225025A0700AEB04C /* bds_easr_wakeup_words.dat in Resources */,
  9753. C7D6BC94235DA1CE00770E7C /* ClubApplicationTableViewCell.xib in Resources */,
  9754. EB8E2D60239666A900CDFBDA /* chatbar_face@2x.png in Resources */,
  9755. 3237321A23BC6B2700CC048D /* WZSendInfoCell.xib in Resources */,
  9756. C622708F236C09FC00E2E3BF /* mj_sun@2x.png in Resources */,
  9757. EBE5EF242459853100AD59C4 /* MyAccountCell.xib in Resources */,
  9758. C6227099236C09FC00E2E3BF /* mj_car@2x.png in Resources */,
  9759. EB8E2D6F239666A900CDFBDA /* chatbar_map@3x.png in Resources */,
  9760. EB03C7FD2493703100B2EF18 /* BookSelectMusicAlert.xib in Resources */,
  9761. EB8E2D1C239666A900CDFBDA /* alert_info@2x.png in Resources */,
  9762. EB8E2DA0239666A900CDFBDA /* image@2x.png in Resources */,
  9763. EBD29FB825025A0700AEB04C /* Chinese_And_English_Speech_Male.dat in Resources */,
  9764. EB8E2D9D239666A900CDFBDA /* msg_file_white@3x.png in Resources */,
  9765. C788F1892369451A0070A6B3 /* FavoritesViewController.xib in Resources */,
  9766. EB41513B246BC64800030371 /* BookStore.storyboard in Resources */,
  9767. C78373FC23AA287C0096AFE2 /* FecordJoinWorkFlowListController.xib in Resources */,
  9768. EBDE08B42458192C005D426C /* Common.storyboard in Resources */,
  9769. EB8E2D89239666A900CDFBDA /* msg_recv_audio02@3x.png in Resources */,
  9770. C7E03AD623CD89EA00A97589 /* InputGongwenFileCell.xib in Resources */,
  9771. EB8E2DA2239666A900CDFBDA /* chat_info@2x.png in Resources */,
  9772. EB9D65A6248E358900636BAC /* BookReadListAlert.xib in Resources */,
  9773. C7037FF8236FC847008EA3E4 /* SendInfoGroupCell.xib in Resources */,
  9774. EB8E2D66239666A900CDFBDA /* chatbar_audio@3x.png in Resources */,
  9775. EB8E2D61239666A900CDFBDA /* chatbar_face@3x.png in Resources */,
  9776. 327E376623A9D9C900842F47 /* CreateNoteBookCell.xib in Resources */,
  9777. EB8E2D48239666A900CDFBDA /* icon_027.gif in Resources */,
  9778. EBD29FAB25025A0700AEB04C /* bds_easr_input_model.dat in Resources */,
  9779. EB9F24EA250A0B3A0017479A /* qinkuai_Music.mp3 in Resources */,
  9780. EBDE08BC2458203A005D426C /* CommonBarCell.xib in Resources */,
  9781. EB8E2D8C239666A900CDFBDA /* msg_fail@3x.png in Resources */,
  9782. C625AA60236D98CE0010E967 /* ChatMsg.storyboard in Resources */,
  9783. C62215962372C0CC006F5D7F /* MailList.storyboard in Resources */,
  9784. C622709B236C09FC00E2E3BF /* mj_shoe@3x.png in Resources */,
  9785. C622709A236C09FC00E2E3BF /* mj_shoe@2x.png in Resources */,
  9786. EB8E2D71239666A900CDFBDA /* chatbar_camera_blue@2x.png in Resources */,
  9787. EB9D659A248E003000636BAC /* BookReadStlyeCell.xib in Resources */,
  9788. EB8E2D6C239666A900CDFBDA /* chatbar_call@3x.png in Resources */,
  9789. EB0F64CD23A9DAD000AD56A0 /* TopicGroupManageCell.xib in Resources */,
  9790. EB8E2D67239666A900CDFBDA /* chatbar_audio@2x.png in Resources */,
  9791. EB8E2D83239666A900CDFBDA /* msg_location_white@3x.png in Resources */,
  9792. EB8E2D57239666A900CDFBDA /* chat_audio_blue@3x.png in Resources */,
  9793. EB8E2D35239666A900CDFBDA /* icon_030_cover.png in Resources */,
  9794. EB18109E2488DB5F009EDEF5 /* BookTextTopCell.xib in Resources */,
  9795. C69A8DCC2373AFB50098FA26 /* MailListDetailCell.xib in Resources */,
  9796. EB7DD23D2462B62600C6048F /* GroupSquareCell.xib in Resources */,
  9797. C7525DE62388F25F004B9D71 /* MyWordCell.xib in Resources */,
  9798. EBE1E2AE2494747300DB80BF /* BookHotSearchCell.xib in Resources */,
  9799. C701EE4B23C2D97800082463 /* InPutGongWenImageCell.xib in Resources */,
  9800. C625AAC6237011D50010E967 /* ChatMsgNotice.storyboard in Resources */,
  9801. EB1E0F8F246D4A9700D4C3DE /* BookContentTopCell.xib in Resources */,
  9802. C7D6BCBB235DA1CE00770E7C /* LearninglistTableViewCell.xib in Resources */,
  9803. EB96B8A023BF584300EE09D7 /* TDInterLeterHome.storyboard in Resources */,
  9804. C6227096236C09FC00E2E3BF /* mj_air_black@3x.png in Resources */,
  9805. C69A8E00237506C30098FA26 /* ChatInfoUserSearchCell.xib in Resources */,
  9806. C7EE367423BAFE6E002EB3BF /* FecordDetailsGoodsCell.xib in Resources */,
  9807. C7D6BC8A235DA1CE00770E7C /* MyPaperViewController.xib in Resources */,
  9808. EBF1A8CA23B23A4100FA6F4B /* lock.caf in Resources */,
  9809. C7EE366A23BAFA71002EB3BF /* MeetingDetailsHeadCell.xib in Resources */,
  9810. EB03C7F724936AA900B2EF18 /* BookSetBgMusicAlert.xib in Resources */,
  9811. EB8E2D3C239666A900CDFBDA /* icon_007.gif in Resources */,
  9812. EB3EAFDD23A1DAB400C38AB4 /* MenuListCell.xib in Resources */,
  9813. EB0A73AD247BC96C00DB75CB /* BookBillMusicCell.xib in Resources */,
  9814. C7743FAE23A9018200973D70 /* MyWorkFlowListCell.xib in Resources */,
  9815. C625AAAF236FF35B0010E967 /* ChatMsgSearchReseltContentCell.xib in Resources */,
  9816. C7CA60B2237312A50062B8B8 /* WorkFlowSelectCollectCell.xib in Resources */,
  9817. EB440037247D15AD0094C333 /* BookSubArticeCell.xib in Resources */,
  9818. EB8E2D6E239666A900CDFBDA /* chatbar_camera_blue@3x.png in Resources */,
  9819. EB8E2D3B239666A900CDFBDA /* icon_013.gif in Resources */,
  9820. C7914DCE236D8573000CD5CA /* AddPeopleToGongWenCell.xib in Resources */,
  9821. C7EE366F23BAFD2E002EB3BF /* FecordDetailsContentCell.xib in Resources */,
  9822. EB9F24E32509CDD90017479A /* PlayModelCell.xib in Resources */,
  9823. EB8E2DA4239666A900CDFBDA /* chat_clear@2x.png in Resources */,
  9824. EB6E84D6246FB90300BE0524 /* HomeUserPrivilegeCell.xib in Resources */,
  9825. EBE36C3823A7208E002BE674 /* NewTopicCell.xib in Resources */,
  9826. EBE1E2C52494AF2B00DB80BF /* MailCourseCell.xib in Resources */,
  9827. C7799F1323AB7E6500270988 /* WorkFlowPersonnelListController.xib in Resources */,
  9828. EB7F3755247E86A000E7FAD6 /* hanjian.ttf in Resources */,
  9829. EB5E18D4247FAB2100EDB76E /* BookSubPeriodicaCell.xib in Resources */,
  9830. C69A8E3E23754A660098FA26 /* FindPhotoOrVideoHeaderView.xib in Resources */,
  9831. EB8E2D8E239666A900CDFBDA /* msg_send_audio01@2x.png in Resources */,
  9832. EB8E2D69239666A900CDFBDA /* chatbar_extend@3x.png in Resources */,
  9833. C7EE366523BAF631002EB3BF /* MeetingFecordDetailsController.xib in Resources */,
  9834. EB8E2CE9239666A900CDFBDA /* user_avatar_gray@2x.png in Resources */,
  9835. EB6D86D924978392001D3B6C /* GroupSynopsisCell.xib in Resources */,
  9836. EB8E2D36239666A900CDFBDA /* icon_029.gif in Resources */,
  9837. EB8E2D68239666A900CDFBDA /* chatbar_photo_blue@2x.png in Resources */,
  9838. C76CC9E723BCA6B6003B23DC /* MeetingRecordContentCell.xib in Resources */,
  9839. C6F2E17F236C14B0009E6903 /* My_CenterCell.xib in Resources */,
  9840. C7404E78238E1BCF00DB19AC /* MyApprovalFileCell.xib in Resources */,
  9841. C69A8E4323754F7A0098FA26 /* ChatSearchFindbyFuJCell.xib in Resources */,
  9842. EB96B89E23BF573B00EE09D7 /* NoteBookDetailCell.xib in Resources */,
  9843. EB7F3746247E3BEE00E7FAD6 /* BookCardBuyCell.xib in Resources */,
  9844. EB8E2CDE239666A900CDFBDA /* user_avatar_blue@3x.png in Resources */,
  9845. EB41514B246BD58F00030371 /* BookHomeSubCell.xib in Resources */,
  9846. EB8E2D39239666A900CDFBDA /* icon_012.gif in Resources */,
  9847. EB8E2D73239666A900CDFBDA /* chatbar_call@2x.png in Resources */,
  9848. C57264872382A6520054EE66 /* ArticleTextCell.xib in Resources */,
  9849. C625AA7B236FB5A40010E967 /* ChatMsgCollectionCell.xib in Resources */,
  9850. EB8E2CE2239666A900CDFBDA /* uncheck@2x.png in Resources */,
  9851. EB2E470323A47B9000CAF0D3 /* NewRowUserCell.xib in Resources */,
  9852. EBD29FA725025A0700AEB04C /* bd_etts_common_text_txt_all_mand_eng_middle_big_v3.4.2_20190710.dat in Resources */,
  9853. EB8E2D3D239666A900CDFBDA /* icon_022.gif in Resources */,
  9854. EB9F24EB250A0B3A0017479A /* rouhuo_Music.mp3 in Resources */,
  9855. EB6F002524738F0100808484 /* HomeProblemTopCollectCell.xib in Resources */,
  9856. C75049F3236027DA0096B15B /* HomeContentCell.xib in Resources */,
  9857. EBF7177824725EDF00ED1838 /* BookLoginPayAlert.xib in Resources */,
  9858. C7AB8437235EA93B00F2363F /* SWQRCode.bundle in Resources */,
  9859. C6226FDC236C08F700E2E3BF /* My_Center.storyboard in Resources */,
  9860. EBABAC8A248B30E50033B985 /* BookReadFontAlert.xib in Resources */,
  9861. 324D962623A245A100C7D9E8 /* MyFavoriteViewCell.xib in Resources */,
  9862. C7D6BC80235DA1CE00770E7C /* MyOrderTableViewCell.xib in Resources */,
  9863. C7C06738236D70700049C50C /* SelectTextCell.xib in Resources */,
  9864. EB8E2D97239666A900CDFBDA /* msg_video_white@2x.png in Resources */,
  9865. EB8E2D29239666A900CDFBDA /* pin-white.png in Resources */,
  9866. EB92E87A23B063AF008E94CF /* WaitWorkLabelCell.xib in Resources */,
  9867. EB8E2CE0239666A900CDFBDA /* back_gary@2x.png in Resources */,
  9868. EB95268B248A12F1003EFCCE /* 龙王传说.txt in Resources */,
  9869. C77229A023B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.xib in Resources */,
  9870. EB8E2CE5239666A900CDFBDA /* close_white@3x.png in Resources */,
  9871. EB1D158924C8329D00C82FED /* MoveMegAlert.xib in Resources */,
  9872. C6227091236C09FC00E2E3BF /* mj_air@2x.png in Resources */,
  9873. EBD29FB925025A0700AEB04C /* chinese_speech.dat in Resources */,
  9874. EB2B5A73242B0CA40087E1E7 /* MyNewFindUserCell.xib in Resources */,
  9875. EB0A7396247B9F7600DB75CB /* BookBillCell.xib in Resources */,
  9876. C783740923AA42C00096AFE2 /* WorkFlowDetailsController.xib in Resources */,
  9877. C7D6BC9C235DA1CE00770E7C /* PersonalCertificationTableViewCell.xib in Resources */,
  9878. EB8E2D17239666A900CDFBDA /* alert_success@3x.png in Resources */,
  9879. EB8E2D5D239666A900CDFBDA /* chatbar_map_blue@3x.png in Resources */,
  9880. EB581CF623A0F72000C451B0 /* WaitWork.storyboard in Resources */,
  9881. EBE1E2C92494BE7500DB80BF /* HFAlert.xib in Resources */,
  9882. EB9F24EC250A0B3A0017479A /* shushi_Music.mp3 in Resources */,
  9883. C7E17CC1236D7F7800C53DB8 /* InPutGongWenCell.xib in Resources */,
  9884. C62270A2236C09FC00E2E3BF /* CarRefreshHeadView.xib in Resources */,
  9885. EB03C802249375A400B2EF18 /* BookSelectMusicCell.xib in Resources */,
  9886. C7525DEB238907D6004B9D71 /* MyWorkAppApprovalCell.xib in Resources */,
  9887. EBE1E2BC2494A40200DB80BF /* HomeBigshotListCell.xib in Resources */,
  9888. EB8E2D82239666A900CDFBDA /* msg_location@2x.png in Resources */,
  9889. EBFA5EF5246E374A00915D5F /* HomeMusicCell.xib in Resources */,
  9890. EB8E2D41239666A900CDFBDA /* icon_012_cover.png in Resources */,
  9891. EB8E2D8D239666A900CDFBDA /* msg_send_audio@3x.png in Resources */,
  9892. EB848E972508DE2E006A3ECD /* BookSetPlaySpeedAlert.xib in Resources */,
  9893. EB8E2D91239666A900CDFBDA /* msg_send_audio01@3x.png in Resources */,
  9894. C7D6BCB5235DA1CE00770E7C /* AccountAndSecurityTableViewCell.xib in Resources */,
  9895. 324D961323A232A200C7D9E8 /* Favorite.storyboard in Resources */,
  9896. EB181091248894F9009EDEF5 /* BookTextBookTopCell.xib in Resources */,
  9897. 325BB82E23CEFB34006F3972 /* HomeTableViewCell.xib in Resources */,
  9898. C622158B237278BD006F5D7F /* ShowKeepNoticeAlert.xib in Resources */,
  9899. C7974A20236BFBD0004D5470 /* WorkFLowCell.xib in Resources */,
  9900. EB8E2D2A239666A900CDFBDA /* close@3x.png in Resources */,
  9901. EB8E2D93239666A900CDFBDA /* msg_recv_audio@3x.png in Resources */,
  9902. EB8E2D52239666A900CDFBDA /* chat_audio_red@2x.png in Resources */,
  9903. EB7F3750247E63DC00E7FAD6 /* SearchDetailViewCell.xib in Resources */,
  9904. EB8E2CEB239666A900CDFBDA /* group_avatar@3x.png in Resources */,
  9905. EBCCEC542508C6D400DC6B6F /* BookSetPlayTimeCell.xib in Resources */,
  9906. C7D6BC97235DA1CE00770E7C /* PersonalCertificationViewController.xib in Resources */,
  9907. EB7955D024C6B0BB00EE9A55 /* TopicBookCell.xib in Resources */,
  9908. EBD29FB325025A0700AEB04C /* bds_easr_dnn_wakeup_model.dat in Resources */,
  9909. C72F3905236DADDC00933828 /* BlacklistCell.xib in Resources */,
  9910. EB8E2D92239666A900CDFBDA /* msg_send_audio@2x.png in Resources */,
  9911. C7D6BCA7235DA1CE00770E7C /* FeedbackViewController.xib in Resources */,
  9912. C625AAD4237017650010E967 /* ChatMsgNoticeCell.xib in Resources */,
  9913. C6F2E1A5236C4554009E6903 /* ShowGenderAlertView.xib in Resources */,
  9914. EB8E2D9C239666A900CDFBDA /* msg_file@2x.png in Resources */,
  9915. C7D6BCB2235DA1CE00770E7C /* AccountAndSecurityViewController.xib in Resources */,
  9916. EBF7176824723CBA00ED1838 /* BookCardPayAlert.xib in Resources */,
  9917. C62215682371147A006F5D7F /* MoreAppCell.xib in Resources */,
  9918. EB8E2D6D239666A900CDFBDA /* chatbar_face_blue@2x.png in Resources */,
  9919. EB9D6595248DE60600636BAC /* BookReadStlyeAlert.xib in Resources */,
  9920. EBCCEC4F2508C3D800DC6B6F /* BookSetPlayTimeAlert.xib in Resources */,
  9921. EB6E84D1246F99A200BE0524 /* HomeSchoolCell.xib in Resources */,
  9922. C7D6BC87235DA1CE00770E7C /* NoticeTableViewCell.xib in Resources */,
  9923. EB8E2D4D239666A900CDFBDA /* icon_013_cover.png in Resources */,
  9924. EBD29FA625025A0700AEB04C /* bds_easr_mfe_dnn.dat in Resources */,
  9925. C7525DF023890A8B004B9D71 /* MyWorkSpaceCell.xib in Resources */,
  9926. EB5F44FA2474C52C008D316D /* HomeGoodBookCollectCell.xib in Resources */,
  9927. C74E72EB23D2FF2B00BD1271 /* DepartureController.xib in Resources */,
  9928. EB8E2D90239666A900CDFBDA /* msg_recv_audio01@2x.png in Resources */,
  9929. EB8E2D45239666A900CDFBDA /* icon_030.gif in Resources */,
  9930. EB8E2D34239666A900CDFBDA /* icon_002.gif in Resources */,
  9931. EB8E2D43239666A900CDFBDA /* icon_019_cover.png in Resources */,
  9932. EB0DBF0F23AE3DF800E977ED /* WaitWorkLevelView.xib in Resources */,
  9933. EB8E2D87239666A900CDFBDA /* msg_bg_send@2x.png in Resources */,
  9934. EB8E2D63239666A900CDFBDA /* chatbar_audio_blue@2x.png in Resources */,
  9935. 324F17F6239E5B540025CAE7 /* App.pdf in Resources */,
  9936. EB7F374B247E426900E7FAD6 /* BookMingArticeListVC.xib in Resources */,
  9937. EBEC966D23D69CC5001115FE /* MyFavoriteCell.xib in Resources */,
  9938. 324D963823A3BD1E00C7D9E8 /* MyCenterSearch.storyboard in Resources */,
  9939. EB8E2D9B239666A900CDFBDA /* msg_img_broken@3x.png in Resources */,
  9940. EB8E2DA3239666A900CDFBDA /* chat_clear@3x.png in Resources */,
  9941. EB8E2D4E239666A900CDFBDA /* icon_018_cover.png in Resources */,
  9942. EB8E2D9E239666A900CDFBDA /* msg_recv_audio@2x.png in Resources */,
  9943. C7D6BCBF235DA1CE00770E7C /* BindMobileViewController.xib in Resources */,
  9944. EBF3C53825134DBB00D40A66 /* IndexAllCell.xib in Resources */,
  9945. EB8E2D99239666A900CDFBDA /* msg_bg_recv@2x.png in Resources */,
  9946. C7D6BCB8235DA1CE00770E7C /* LearninglistViewController.xib in Resources */,
  9947. C751012923837FB100E4429B /* MyZanCell.xib in Resources */,
  9948. C7743F9E23A8B2D800973D70 /* WorkFlowHomeCell.xib in Resources */,
  9949. EBD29F2A25022A1600AEB04C /* BookDetail.storyboard in Resources */,
  9950. C77E218023ADEE51009A230C /* WorkFlowOrderSelectedCell.xib in Resources */,
  9951. EB8E2D42239666A900CDFBDA /* icon_020.gif in Resources */,
  9952. EB8E2D86239666A900CDFBDA /* msg_send_audio02@2x.png in Resources */,
  9953. C62215A12372C27B006F5D7F /* MailListCell.xib in Resources */,
  9954. EB8E2D64239666A900CDFBDA /* chatbar_extend@2x.png in Resources */,
  9955. C7D6BB3A235DA18A00770E7C /* MyChanelCollectionViewCell.xib in Resources */,
  9956. EB8E2CE7239666A900CDFBDA /* user_avatar_gray@3x.png in Resources */,
  9957. EBAB7CCD2500FAC000923FBA /* .gitIgnore in Resources */,
  9958. C7D6BC82235DA1CE00770E7C /* MyViewController.xib in Resources */,
  9959. EB7DD23524629A1B00C6048F /* Source.storyboard in Resources */,
  9960. EB952692248A560E003EFCCE /* BookReadSearchAlert.xib in Resources */,
  9961. C7974A4B236C4D2A004D5470 /* MyWorkWordCell.xib in Resources */,
  9962. C7D6BCA4235DA1CE00770E7C /* MyTableViewCell.xib in Resources */,
  9963. C7D6BC8D235DA1CE00770E7C /* MyClubApplicationViewController.xib in Resources */,
  9964. EB8E2D5F239666A900CDFBDA /* chatbar_camera@3x.png in Resources */,
  9965. EBBD5E762519D8BD007B174E /* BookListSubCell.xib in Resources */,
  9966. EB8E2D33239666A900CDFBDA /* icon_029_cover.png in Resources */,
  9967. EB1810992488C0DB009EDEF5 /* BookTextBookCell.xib in Resources */,
  9968. C7404E70238D23A600DB19AC /* AddPictureCell.xib in Resources */,
  9969. EBD29FBC25025A0700AEB04C /* bds_easr_basic_model.dat in Resources */,
  9970. C62270AC236C09FC00E2E3BF /* DatePikerView.xib in Resources */,
  9971. EB8E2D38239666A900CDFBDA /* icon_010.gif in Resources */,
  9972. C69A8DF8237446670098FA26 /* ChatInfoUserCollectionCell.xib in Resources */,
  9973. C7D6BCB6235DA1CE00770E7C /* ReplacePhoneNumberViewController.xib in Resources */,
  9974. EB8E2D32239666A900CDFBDA /* icon_002_cover.png in Resources */,
  9975. );
  9976. runOnlyForDeploymentPostprocessing = 0;
  9977. };
  9978. /* End PBXResourcesBuildPhase section */
  9979. /* Begin PBXShellScriptBuildPhase section */
  9980. 5F93C23D600ABD048EE06B78 /* [CP] Embed Pods Frameworks */ = {
  9981. isa = PBXShellScriptBuildPhase;
  9982. buildActionMask = 2147483647;
  9983. files = (
  9984. );
  9985. inputFileListPaths = (
  9986. "${PODS_ROOT}/Target Support Files/Pods-smartRhino/Pods-smartRhino-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  9987. );
  9988. name = "[CP] Embed Pods Frameworks";
  9989. outputFileListPaths = (
  9990. "${PODS_ROOT}/Target Support Files/Pods-smartRhino/Pods-smartRhino-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  9991. );
  9992. runOnlyForDeploymentPostprocessing = 0;
  9993. shellPath = /bin/sh;
  9994. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-smartRhino/Pods-smartRhino-frameworks.sh\"\n";
  9995. showEnvVarsInLog = 0;
  9996. };
  9997. 6D9753116FD8B9C5DEAC98C9 /* [CP] Check Pods Manifest.lock */ = {
  9998. isa = PBXShellScriptBuildPhase;
  9999. buildActionMask = 2147483647;
  10000. files = (
  10001. );
  10002. inputFileListPaths = (
  10003. );
  10004. inputPaths = (
  10005. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  10006. "${PODS_ROOT}/Manifest.lock",
  10007. );
  10008. name = "[CP] Check Pods Manifest.lock";
  10009. outputFileListPaths = (
  10010. );
  10011. outputPaths = (
  10012. "$(DERIVED_FILE_DIR)/Pods-smartRhino-checkManifestLockResult.txt",
  10013. );
  10014. runOnlyForDeploymentPostprocessing = 0;
  10015. shellPath = /bin/sh;
  10016. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  10017. showEnvVarsInLog = 0;
  10018. };
  10019. 950B8DF80FF748A0FC7053B0 /* [CP] Copy Pods Resources */ = {
  10020. isa = PBXShellScriptBuildPhase;
  10021. buildActionMask = 2147483647;
  10022. files = (
  10023. );
  10024. inputFileListPaths = (
  10025. "${PODS_ROOT}/Target Support Files/Pods-smartRhino/Pods-smartRhino-resources-${CONFIGURATION}-input-files.xcfilelist",
  10026. );
  10027. name = "[CP] Copy Pods Resources";
  10028. outputFileListPaths = (
  10029. "${PODS_ROOT}/Target Support Files/Pods-smartRhino/Pods-smartRhino-resources-${CONFIGURATION}-output-files.xcfilelist",
  10030. );
  10031. runOnlyForDeploymentPostprocessing = 0;
  10032. shellPath = /bin/sh;
  10033. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-smartRhino/Pods-smartRhino-resources.sh\"\n";
  10034. showEnvVarsInLog = 0;
  10035. };
  10036. /* End PBXShellScriptBuildPhase section */
  10037. /* Begin PBXSourcesBuildPhase section */
  10038. C7D6B9C3235D7D7200770E7C /* Sources */ = {
  10039. isa = PBXSourcesBuildPhase;
  10040. buildActionMask = 2147483647;
  10041. files = (
  10042. C69A8DFF237506C30098FA26 /* ChatInfoUserSearchCell.m in Sources */,
  10043. EB09BF3023B1AA19001CCBC7 /* WaitWorkWarnAlert.m in Sources */,
  10044. EB9BCC0C24EBACD1005D7499 /* SelectSaveSearchVC.m in Sources */,
  10045. C6F2E18A236C2D7A009E6903 /* ShowPhotoCameraAlertView.m in Sources */,
  10046. C7038015237044B8008EA3E4 /* MyApprovalDetailModel.m in Sources */,
  10047. C77F3E58236D55D10015C412 /* AutoLayoutScrollView.m in Sources */,
  10048. C7D6BC98235DA1CE00770E7C /* PersonalCertificationModel.m in Sources */,
  10049. C7D6BB98235DA18A00770E7C /* H5ViewController.m in Sources */,
  10050. EBCE637324AF388E004C9B3B /* BookChanelSubListVC.m in Sources */,
  10051. EBB6887723C9C0C300E24DD9 /* MMRichEditAccessoryView.m in Sources */,
  10052. C7D6BB9D235DA18A00770E7C /* ZDTostView.m in Sources */,
  10053. EBDE08CD24583D6B005D426C /* CommonToolVC.m in Sources */,
  10054. C7037FED236FC1E6008EA3E4 /* SendInfoGroupModel.m in Sources */,
  10055. C625AAA4236FEF130010E967 /* ZLCellFakeView.m in Sources */,
  10056. EBA25D5024D7FA3800CBEBF2 /* ShowSysVC.m in Sources */,
  10057. C59D0C0623825DE1007D0760 /* YYFrameImage.m in Sources */,
  10058. EB0DBF0A23AE1EF200E977ED /* NewWaitWorkVC.m in Sources */,
  10059. EBBD5E6F2519D66A007B174E /* BookListCell.m in Sources */,
  10060. 324D961923A233A300C7D9E8 /* MyFavoriteVC.m in Sources */,
  10061. EB92E88C23B09AD4008E94CF /* GFCalendarView.m in Sources */,
  10062. C7D6BB45235DA18A00770E7C /* CommentModel.m in Sources */,
  10063. C6F2E1A0236C3C32009E6903 /* EditUserNickVC.m in Sources */,
  10064. C76B01282387B9C400AD6E28 /* WorkFilterModel.m in Sources */,
  10065. EB44982624E3AFE80040A9FF /* GroupSquareSearchVC.m in Sources */,
  10066. EB18108C24888DC3009EDEF5 /* BookTextBookVC.m in Sources */,
  10067. EB6E84D5246FB90300BE0524 /* HomeUserPrivilegeCell.m in Sources */,
  10068. EBF7177724725EDF00ED1838 /* BookLoginPayAlert.m in Sources */,
  10069. EB9DA132250333240062FEB8 /* SelectionTableViewCell.m in Sources */,
  10070. EB7F3741247E357E00E7FAD6 /* BookMingArticeDetailVC.m in Sources */,
  10071. EBF2FB1124A3498C0028EA09 /* HomeMingShiVC.m in Sources */,
  10072. C7E125AA23793AA60067F275 /* JpushTool.m in Sources */,
  10073. C625AA66236D99170010E967 /* ChatMsgListVC.m in Sources */,
  10074. EB38514224652EB000E28172 /* TDGroupLabelVC.m in Sources */,
  10075. C62270A3236C09FC00E2E3BF /* GHRefreshTableView.m in Sources */,
  10076. C75958A0237FF2BF00AE85C0 /* HomeTopImageModel.m in Sources */,
  10077. EB44408A24A1CBB600B2E212 /* HomeSubItemModel.m in Sources */,
  10078. EB8E2D26239666A900CDFBDA /* EMChatBarItem.m in Sources */,
  10079. EBB6887523C9C0C300E24DD9 /* MMTextView.m in Sources */,
  10080. C7D6BBA5235DA18A00770E7C /* GTMNSString+HTML.m in Sources */,
  10081. C59D0C3A23825DE1007D0760 /* NSObject+YYAddForARC.m in Sources */,
  10082. EB12500A23CC359400143436 /* RichFileCell.m in Sources */,
  10083. C59D0C3223825DE1007D0760 /* NSArray+YYAdd.m in Sources */,
  10084. C7D6BC96235DA1CE00770E7C /* PersonalCertificationViewController.m in Sources */,
  10085. C6F2E19D236C3444009E6903 /* UtilsTools.m in Sources */,
  10086. C751012F2383BEA200E4429B /* FormFieldsModel.m in Sources */,
  10087. EBC34D8825121CD000A4F133 /* BookCustomListVC.m in Sources */,
  10088. C75F9F2C236875CB002867A2 /* ComentSubCell.m in Sources */,
  10089. C76745162373A6C4001675FA /* WorkFLowCollectionSelectView.m in Sources */,
  10090. EB6A3D5224A864740067DBFA /* HomeProblemVC.m in Sources */,
  10091. EBE36C4723A863FC002BE674 /* NewTopicTextView.m in Sources */,
  10092. C7D6BBA0235DA18A00770E7C /* UIView+Frame.m in Sources */,
  10093. C7954B4A237E799200EDC479 /* AddressBookGroupModel.m in Sources */,
  10094. EBFE261824D934CA00FC4A10 /* NoteDraftVC.m in Sources */,
  10095. C625AABE237000010010E967 /* WorkingGroupMainVC.m in Sources */,
  10096. C69A8DC72373AB470098FA26 /* MailListDetailVC.m in Sources */,
  10097. EB1E0F77246CE49100D4C3DE /* BookContentNavVC.m in Sources */,
  10098. EB0F64D623AA528A00AD56A0 /* TopicListItemModel.m in Sources */,
  10099. EB7F373E247E05FC00E7FAD6 /* BookIntroductionVC.m in Sources */,
  10100. EB2E470923A4B55D00CAF0D3 /* SmartBar.m in Sources */,
  10101. C62215632371057F006F5D7F /* MoreAppModel.m in Sources */,
  10102. EB38514A24653F5D00E28172 /* AddGroupLabelVC.m in Sources */,
  10103. 32580E5E23ADB3D2005DF500 /* NoteBookSelectFinderVC.m in Sources */,
  10104. C59D0C2A23825DE1007D0760 /* UIScrollView+YYAdd.m in Sources */,
  10105. EBB6887D23C9C0C300E24DD9 /* NSString+NSDate.m in Sources */,
  10106. EBE5EF232459853100AD59C4 /* MyAccountCell.m in Sources */,
  10107. EB5A587323AB7D5800B93149 /* MyTDTopicSearchVC.m in Sources */,
  10108. EB7F3745247E3BEE00E7FAD6 /* BookCardBuyCell.m in Sources */,
  10109. EBB83E4E23B35FD300A8C4BC /* ChangeTopicCell.m in Sources */,
  10110. C59D0C1523825DE1007D0760 /* YYTextLayout.m in Sources */,
  10111. EBBC59DD25318F7A00AB12EF /* ShowImageVC.m in Sources */,
  10112. EBE1E2CA2494BE7500DB80BF /* HFAlert.m in Sources */,
  10113. C6227127236C11A800E2E3BF /* UIViewController+GHTheme.m in Sources */,
  10114. EB3DCA52245552AE000A0189 /* ShareCusVC.m in Sources */,
  10115. C7E3E2F5237179AA0013BBDD /* FootCollectionReusableView.m in Sources */,
  10116. C6F2E1EA236D1353009E6903 /* UITableView+HeadSet.m in Sources */,
  10117. C7974A37236C3199004D5470 /* MyApprovalBCell.m in Sources */,
  10118. C59D0C4923825DE1007D0760 /* YYGestureRecognizer.m in Sources */,
  10119. EB8E2DA8239666A900CDFBDA /* EMImageBrowser.m in Sources */,
  10120. C6F2E1DB236D126B009E6903 /* UIViewController+GH.m in Sources */,
  10121. EB77B293239F9A4F0050A3C0 /* ChatNewRowVC.m in Sources */,
  10122. C6F2E1E6236D126B009E6903 /* UIView+XTExtension.m in Sources */,
  10123. 327E375D23A9C86600842F47 /* NoteBookCell.m in Sources */,
  10124. EB7DD2382462AB5B00C6048F /* GroupSquareVC.m in Sources */,
  10125. EB1D052A24A9EA6C00796A7E /* BookNavModel.m in Sources */,
  10126. EBC34D842511EABD00A4F133 /* BookTeacherHeadCell.m in Sources */,
  10127. C7D6BBA4235DA18A00770E7C /* NSString+HTML.m in Sources */,
  10128. C6F2E186236C26EC009E6903 /* MyInfoCell.m in Sources */,
  10129. EB8E2D51239666A900CDFBDA /* EMChatBarEmoticonView.m in Sources */,
  10130. EB952685248A0BA6003EFCCE /* DCBookModel.m in Sources */,
  10131. EB2E471223A4D32400CAF0D3 /* NewTopicVC.m in Sources */,
  10132. EBE1E2C42494AF2B00DB80BF /* MailCourseCell.m in Sources */,
  10133. C7D6BCB3235DA1CE00770E7C /* AccountAndSecurityModel.m in Sources */,
  10134. C7819D5A23B0549300300297 /* NSDate+JKExtension.m in Sources */,
  10135. C6227132236C122500E2E3BF /* My_CenterVC.m in Sources */,
  10136. C57264812382A6370054EE66 /* ArticleImageCell.m in Sources */,
  10137. C59D0C2823825DE1007D0760 /* UIApplication+YYAdd.m in Sources */,
  10138. C7D6BC7F235DA1CE00770E7C /* MyOrderModel.m in Sources */,
  10139. EB0A73AC247BC96C00DB75CB /* BookBillMusicCell.m in Sources */,
  10140. EB4310B324CE7D1F00481097 /* SourceGroupSearchVC.m in Sources */,
  10141. C7743F9823A86DAE00973D70 /* WorkFlowFecordController.m in Sources */,
  10142. EBCCEC4E2508C3D800DC6B6F /* BookSetPlayTimeAlert.m in Sources */,
  10143. EBF3C53725134DBB00D40A66 /* IndexAllCell.m in Sources */,
  10144. EB8E2D24239666A900CDFBDA /* EMChineseToPinyin.m in Sources */,
  10145. EBD623BE25159A66007FF6BC /* WMZPageParam.m in Sources */,
  10146. EB952680248A0BA6003EFCCE /* DCContentVC.m in Sources */,
  10147. EB9DA130250333240062FEB8 /* SwitchTableViewCell.m in Sources */,
  10148. C5598D2523869D2300BC7185 /* NoticeModel.m in Sources */,
  10149. C59D0A402382468A007D0760 /* JSONValueTransformer.m in Sources */,
  10150. 32C384C223B0E24B00BBC733 /* NoteBookShareVC.m in Sources */,
  10151. C69A8DEB23743AC80098FA26 /* ChatMsgDetailChatInfoVC.m in Sources */,
  10152. C75ACEE3236AAE9300CB6374 /* MyTDGroupView.m in Sources */,
  10153. EBDE08C324582BA6005D426C /* CommonListCell.m in Sources */,
  10154. EB0BBB7C23D2978F005C850C /* ChatMsgNoticeSearchVC.m in Sources */,
  10155. EBD537B12490A709000EDF2B /* BookTeacherListVC.m in Sources */,
  10156. C625AA91236FCDEE0010E967 /* ChatMsgSearchResultVC.m in Sources */,
  10157. C69A8DE02374050D0098FA26 /* ChatMsgDetailChatVC.m in Sources */,
  10158. EBF48A3124CFCD0300A91850 /* ChatSearchModel.m in Sources */,
  10159. C72F38FD236DADDC00933828 /* BlacklistVC.m in Sources */,
  10160. C6F2E1E2236D126B009E6903 /* UIViewController+NavBar.m in Sources */,
  10161. C72F3906236DADDC00933828 /* SettingCell.m in Sources */,
  10162. EB1E0F89246D17B600D4C3DE /* BookContentCell.m in Sources */,
  10163. C5598D1C23865E4500BC7185 /* DepartmentModel.m in Sources */,
  10164. C625AAAA236FF23E0010E967 /* ChatMsgSearchReseltContentVC.m in Sources */,
  10165. C7974A43236C4CD5004D5470 /* MyWorkWordView.m in Sources */,
  10166. EB95266C248A0A2A003EFCCE /* BookReadVC.m in Sources */,
  10167. EB7955D624C6CA6800EE9A55 /* MyTDTopicBookEditVC.m in Sources */,
  10168. C7974A2A236C2617004D5470 /* MyApprovalPageVC.m in Sources */,
  10169. EBB6887823C9C0C300E24DD9 /* MMPlaceHolderTextView.m in Sources */,
  10170. C69A8E3123753AD60098FA26 /* ChatSearchFindbyFuJVC.m in Sources */,
  10171. EBF2FB0824A32F880028EA09 /* HomeDayGoodArticeVC.m in Sources */,
  10172. C7404E73238D2FA700DB19AC /* SelectImageModel.m in Sources */,
  10173. EB8E2D06239666A900CDFBDA /* PSTCollectionViewUpdateItem.m in Sources */,
  10174. 326B92DC239F8EFD004230EB /* NoticeFindModel.m in Sources */,
  10175. EBD623DF2515CBA3007FF6BC /* ThirdViewController.m in Sources */,
  10176. EB9D659D248E032C00636BAC /* BookReadStlyeModel.m in Sources */,
  10177. C7EE367323BAFE6E002EB3BF /* FecordDetailsGoodsCell.m in Sources */,
  10178. C69A8E3D23754A660098FA26 /* FindPhotoOrVideoHeaderView.m in Sources */,
  10179. C732D3A62394B3BE0097A059 /* ScanResultModel.m in Sources */,
  10180. EB6E84DA246FD1BF00BE0524 /* HomeWeiCousreCell.m in Sources */,
  10181. C69A8E0923751B490098FA26 /* ChatSearchCenterVC.m in Sources */,
  10182. 324D960523A1139300C7D9E8 /* ChatMsgSearchModelSub.m in Sources */,
  10183. C7974A46236C4CFA004D5470 /* MyWorkWordModel.m in Sources */,
  10184. C5598D2223869D1400BC7185 /* NoticeListModel.m in Sources */,
  10185. C7525DE12388DC9E004B9D71 /* LMJHorizontalScrollText.m in Sources */,
  10186. C744D23F2369AABE00D51EDD /* MyFavoriteFindCell.m in Sources */,
  10187. EB415154246C071300030371 /* BookAllLookVC.m in Sources */,
  10188. EBC4866724B3128B0013AEF7 /* BookMeidaModel.m in Sources */,
  10189. C788F18C236957890070A6B3 /* FavoriteFindModel.m in Sources */,
  10190. EB440FC523A32302006BCB95 /* TDGroupInfoDetailCell.m in Sources */,
  10191. C7037FFC236FD33F008EA3E4 /* SendGroupBCell.m in Sources */,
  10192. EB820ADC23BC882B00B96C6C /* SearchBaseVC.m in Sources */,
  10193. C7D6BBA3235DA18A00770E7C /* NSString+CGSize.m in Sources */,
  10194. EBB8D070251E00600051C897 /* BookBillBoardSearchVC.m in Sources */,
  10195. C59D0C3523825DE1007D0760 /* NSObject+YYAdd.m in Sources */,
  10196. EB8E2D0A239666A900CDFBDA /* PSTGridLayoutRow.m in Sources */,
  10197. C783740323AA31E60096AFE2 /* JoinHistoricalWorkFlowListCell.m in Sources */,
  10198. 324D960B23A2062700C7D9E8 /* TestinModel.m in Sources */,
  10199. EB8E2D75239666A900CDFBDA /* EMMessageCell.m in Sources */,
  10200. C7D6BC8C235DA1CE00770E7C /* MyPaperTableViewCell.m in Sources */,
  10201. C788F1882369451A0070A6B3 /* FavoritesViewController.m in Sources */,
  10202. C7D6B9CC235D7D7200770E7C /* AppDelegate.m in Sources */,
  10203. C770406823AC9BC900BFF1B0 /* RefreshBaseViewController.m in Sources */,
  10204. EB9F24E62509F3EF0017479A /* CusPopoverBackgroundView.m in Sources */,
  10205. EB0F64CC23A9DAD000AD56A0 /* TopicGroupManageCell.m in Sources */,
  10206. C625AAA3236FEF130010E967 /* ZLCollectionViewFlowLayout.m in Sources */,
  10207. C72F38FC236DADDC00933828 /* DisplaySettingsVC.m in Sources */,
  10208. EB8E2CFE239666A900CDFBDA /* MWGridCell.m in Sources */,
  10209. C62270A8236C09FC00E2E3BF /* GHBlankView.m in Sources */,
  10210. C59D0C2723825DE1007D0760 /* UIDevice+YYAdd.m in Sources */,
  10211. C7D6BB40235DA18A00770E7C /* SearchHistoryCell.m in Sources */,
  10212. EBE96EC4245ABECB008BDBA8 /* PayAlert.m in Sources */,
  10213. EB0DBF0423ADA8A200E977ED /* MyTDTopicSelectExtentCell.m in Sources */,
  10214. EB52714E2428555C00B37D2A /* TDInterLeterSearchVC.m in Sources */,
  10215. EBFA5EE72491D8FA00AD38B0 /* ReplayMeCell.m in Sources */,
  10216. C7D6BBB6235DA18A00770E7C /* XLTextCalculateHelper.m in Sources */,
  10217. C76DB43B236ACCF600369F5C /* MyTDTopicCellView.m in Sources */,
  10218. C622158523719C84006F5D7F /* LoginVC.m in Sources */,
  10219. EB195A612521BA1600EA68D3 /* BookCommentHeadModel.m in Sources */,
  10220. EB1E0F73246CD5A300D4C3DE /* BookAllLookCell.m in Sources */,
  10221. EB96B89823BF56C800EE09D7 /* TDGroupInfoListCell.m in Sources */,
  10222. C59D0A442382468A007D0760 /* JSONModelArray.m in Sources */,
  10223. EB6F001F247381FD00808484 /* HomeProblemTopCell.m in Sources */,
  10224. C7F61628238C068A008AF22D /* AppUserModel.m in Sources */,
  10225. EBF7175B2472355700ED1838 /* PayBookAlertCell.m in Sources */,
  10226. EBF2D55A23C2E92A00EC35C4 /* MHTopic.m in Sources */,
  10227. C69A8E1C23753A150098FA26 /* CalenderHeaderView.m in Sources */,
  10228. C7AB8441235EE65600F2363F /* WorkListCell.m in Sources */,
  10229. C7D6BCA3235DA1CE00770E7C /* MyTableViewCell.m in Sources */,
  10230. C7D6BBA6235DA18A00770E7C /* HttpManager.m in Sources */,
  10231. C59D0A422382468A007D0760 /* JSONModel.m in Sources */,
  10232. C7D6BC81235DA1CE00770E7C /* MyOrderTableViewCell.m in Sources */,
  10233. C7743F8B23A86BD300973D70 /* WorkFlowTabbarController.m in Sources */,
  10234. EB8E2CF1239666A900CDFBDA /* EMAvatarNameCell.m in Sources */,
  10235. C62270AF236C09FC00E2E3BF /* LeeTagItem.m in Sources */,
  10236. EB9BCC1224EBDD92005D7499 /* NoteBookEditSearchVC.m in Sources */,
  10237. EB3EAFF123A31C7D00C38AB4 /* TDGroupInfoDetailVC.m in Sources */,
  10238. EBABACA2248B7A300033B985 /* HKFloatManager.m in Sources */,
  10239. EBF3C52E25133FB900D40A66 /* IndexAllVC.m in Sources */,
  10240. C72F3904236DADDC00933828 /* BlacklistCell.m in Sources */,
  10241. C59D0C4523825DE1007D0760 /* YYSentinel.m in Sources */,
  10242. C59D0C2323825DE1007D0760 /* YYTextRubyAnnotation.m in Sources */,
  10243. C59D0C1223825DE1007D0760 /* YYTextContainerView.m in Sources */,
  10244. EB3CB79C24E51FFC00F399E7 /* NoteTopicDraftSearchVC.m in Sources */,
  10245. C7974A1B236BE250004D5470 /* WorkFLowModel.m in Sources */,
  10246. EB952689248A0CA5003EFCCE /* DCFileTool.m in Sources */,
  10247. EB2CC02323BDDE490059F942 /* ChatGroupSearchVC.m in Sources */,
  10248. EB9DA133250333240062FEB8 /* SliderTableViewCell.m in Sources */,
  10249. EBF2FB0E24A3457A0028EA09 /* HomeWeiCousreVC.m in Sources */,
  10250. EB8E2CFF239666A900CDFBDA /* DACircularProgressView.m in Sources */,
  10251. EB3DCA4724551B0E000A0189 /* ShareListVC.m in Sources */,
  10252. EBF3C52725133D8200D40A66 /* SegmentViewController.m in Sources */,
  10253. EBBEE55B2498599300B135E4 /* PNCircleChart.m in Sources */,
  10254. EBB6887B23C9C0C300E24DD9 /* UITextView+RCSBackWord.m in Sources */,
  10255. EB56DA0723BB31AF00FE7262 /* EMChatFileShowVC.m in Sources */,
  10256. EBF1771B24826E5100C729DC /* BookPeriodicaCell.m in Sources */,
  10257. EBD623C125159A66007FF6BC /* UIView+PageRect.m in Sources */,
  10258. 324F176A239B3B4D0025CAE7 /* NoticeSelectCell.m in Sources */,
  10259. EB5F45012474CE0E008D316D /* BookDetailCell.m in Sources */,
  10260. C7D6BB9C235DA18A00770E7C /* ZYCTool.m in Sources */,
  10261. EBD623BC25159A66007FF6BC /* WMZPageNaviBtn.m in Sources */,
  10262. C7D6BBA8235DA18A00770E7C /* TDSearchBar.m in Sources */,
  10263. EB0F64D023A9EE5900AD56A0 /* TopicGroupManageModel.m in Sources */,
  10264. EB5F45092475093C008D316D /* BookChanelCell.m in Sources */,
  10265. C62270A4236C09FC00E2E3BF /* WQNavigationBar.m in Sources */,
  10266. EBF64A79241C810A0074FD55 /* FecordSearchVC.m in Sources */,
  10267. EBA25D5324D81BC200CBEBF2 /* ShowUserVC.m in Sources */,
  10268. C59D0C2023825DE1007D0760 /* UIPasteboard+YYText.m in Sources */,
  10269. EB8E2D07239666A900CDFBDA /* PSTGridLayoutSection.m in Sources */,
  10270. EBEC966C23D69CC5001115FE /* MyFavoriteCell.m in Sources */,
  10271. EB8E2CFA239666A900CDFBDA /* MWTapDetectingImageView.m in Sources */,
  10272. C7D6BCBE235DA1CE00770E7C /* BindMobileViewController.m in Sources */,
  10273. EBABAC85248B2FDF0033B985 /* CLSlider.m in Sources */,
  10274. EBCFCDE325184621002CD1B8 /* HomeSchoolContentCell.m in Sources */,
  10275. EBF7175724722D4B00ED1838 /* BookWCDetailVC.m in Sources */,
  10276. EBF2D55D23C2E9AC00EC35C4 /* MHCommentReply.m in Sources */,
  10277. C770406D23AC9F7300BFF1B0 /* MeetingListModel.m in Sources */,
  10278. EBF3C5322513446A00D40A66 /* IndexSubVC.m in Sources */,
  10279. C70B6D6623CEBB6A008D5C48 /* ZFReOrderTableView.m in Sources */,
  10280. C62215A02372C27B006F5D7F /* MailListCell.m in Sources */,
  10281. EB0F64C523A9DA2B00AD56A0 /* MyTDTopicGroupManageVC.m in Sources */,
  10282. C59D0C1C23825DE1007D0760 /* YYTextUtilities.m in Sources */,
  10283. EBE1E2C02494AE2500DB80BF /* MailCourseVC.m in Sources */,
  10284. EBB6887623C9C0C300E24DD9 /* MMRichTitleCell.m in Sources */,
  10285. C7914DCD236D8573000CD5CA /* AddPeopleToGongWenCell.m in Sources */,
  10286. EB3CB79624E4F0F100F399E7 /* GroupVerifyVC.m in Sources */,
  10287. C59D0C1E23825DE1007D0760 /* YYTextParser.m in Sources */,
  10288. C59D0C1723825DE1007D0760 /* YYTextSelectionView.m in Sources */,
  10289. C7602276239249270069414C /* TDWaitWorkModel.m in Sources */,
  10290. C57264862382A6520054EE66 /* ArticleTextCell.m in Sources */,
  10291. C75ACEDD236AAE7800CB6374 /* MyTDGroupModel.m in Sources */,
  10292. EB85BF4D243DDAC6006C7A82 /* SearchTabBaseVC.m in Sources */,
  10293. C7D6BCA8235DA1CE00770E7C /* FeedbackViewController.m in Sources */,
  10294. C59D0C3B23825DE1007D0760 /* NSDate+YYAdd.m in Sources */,
  10295. C59D0A482382468A007D0760 /* JSONModel+networking.m in Sources */,
  10296. EB3EAFE823A2437E00C38AB4 /* TDGroupSearchResultVC.m in Sources */,
  10297. C62215782371688C006F5D7F /* NoticeNewGroupMenuModel.m in Sources */,
  10298. EB8E2D1F239666A900CDFBDA /* EMSearchBar.m in Sources */,
  10299. C622709E236C09FC00E2E3BF /* GHRefreshFooter.m in Sources */,
  10300. C7743FA223A8C03D00973D70 /* WorkFlowSearchItemCell.m in Sources */,
  10301. C625AA6A236D9D990010E967 /* ChatMsgListCell.m in Sources */,
  10302. C703800B23700CA7008EA3E4 /* MyApprovalPageDetail.m in Sources */,
  10303. C7AB8448235EFC6700F2363F /* UILabel+TD.m in Sources */,
  10304. EBDE08C7245837BF005D426C /* CommonListModel.m in Sources */,
  10305. 324D963123A3887100C7D9E8 /* MyFavoriteModel.m in Sources */,
  10306. C7799F1B23AB991100270988 /* WorkFlowPersonnelListHeadView.m in Sources */,
  10307. C75ACEE0236AAE8A00CB6374 /* MyTDGroupCell.m in Sources */,
  10308. C62270B0236C09FC00E2E3BF /* LeeTagView.m in Sources */,
  10309. C59D0C3E23825DE1007D0760 /* NSDictionary+YYAdd.m in Sources */,
  10310. 32A72DB323BA02510018BA9D /* WZContactModel.m in Sources */,
  10311. C6F2E1DE236D126B009E6903 /* UIView+GH.m in Sources */,
  10312. C76CC9DC23BC9E25003B23DC /* MeetingRecordUserCell.m in Sources */,
  10313. C7D6BB9A235DA18A00770E7C /* UIControl+Blocks.m in Sources */,
  10314. C59D0C4023825DE1007D0760 /* YYCGUtilities.m in Sources */,
  10315. EBB6887A23C9C0C300E24DD9 /* MMBaseRichContentCell.m in Sources */,
  10316. C6F2E1E1236D126B009E6903 /* UIColor+XTExtension.m in Sources */,
  10317. C75F9F28236861A9002867A2 /* CommentSubModel.m in Sources */,
  10318. EBF7177224725B7A00ED1838 /* BookCardPayAlertCell.m in Sources */,
  10319. C7974A1F236BFBD0004D5470 /* WorkFLowCell.m in Sources */,
  10320. C59D0C0C23825DE1007D0760 /* YYAnimatedImageView.m in Sources */,
  10321. EBB588D225208A70005B3988 /* BookProblemModel.m in Sources */,
  10322. EB9E202D251F088000311E96 /* BookMingCell.m in Sources */,
  10323. EBF2D56323C2FB8F00EC35C4 /* MHConstant.m in Sources */,
  10324. C7D6BCA1235DA1CE00770E7C /* MyDetailTableViewCell.m in Sources */,
  10325. C59D0C0E23825DE1007D0760 /* NSObject+YYModel.m in Sources */,
  10326. C7D6BCB9235DA1CE00770E7C /* LearninglistViewController.m in Sources */,
  10327. EB8E2D7B239666A900CDFBDA /* EMMsgVideoBubbleView.m in Sources */,
  10328. C59D0C3123825DE1007D0760 /* UIFont+YYAdd.m in Sources */,
  10329. C7D6BBAB235DA18A00770E7C /* NavigationBar.m in Sources */,
  10330. EB8E2CD6239666A900CDFBDA /* UIViewController+HUD.m in Sources */,
  10331. 320FF48323A720C50009043B /* NoteBookVC.m in Sources */,
  10332. EB8E2CF9239666A900CDFBDA /* UIImage+MWPhotoBrowser.m in Sources */,
  10333. C76CC9D723BC9C7A003B23DC /* MeetingRecordJoinCell.m in Sources */,
  10334. C59D0A412382468A007D0760 /* JSONKeyMapper.m in Sources */,
  10335. EB4B652524C003050041A82C /* MailAddUserSearch.m in Sources */,
  10336. EB2E470623A48BAB00CAF0D3 /* TDQrJoinVC.m in Sources */,
  10337. C7B8646B23C9CE810090F2A3 /* SwipeTableCell.m in Sources */,
  10338. C7743F8723A86A8600973D70 /* WorkFlowHomeListController.m in Sources */,
  10339. C6F2E1AB236C528E009E6903 /* MyQRCodeVC.m in Sources */,
  10340. EB5F44F92474C52C008D316D /* HomeGoodBookCollectCell.m in Sources */,
  10341. C6F2E1E3236D126B009E6903 /* NSObject+XTExtension.m in Sources */,
  10342. EBD4A1FD250B5B4D0088D94F /* BookRecommendModel.m in Sources */,
  10343. C69A8DFB2374FBBE0098FA26 /* DetailChatInfoAllUserVC.m in Sources */,
  10344. EB820ADF23BC97BA00B96C6C /* MyTDTopicUserSearchVC.m in Sources */,
  10345. EB1810982488C0DB009EDEF5 /* BookTextBookCell.m in Sources */,
  10346. C76DB432236ACC1200369F5C /* MyTDTopicModel.m in Sources */,
  10347. C572647723828C5C0054EE66 /* NSArray+NilSafe.m in Sources */,
  10348. EB9BBE4D23D1A5D400436A0E /* MailListMoveVC.m in Sources */,
  10349. C59D0BFD23825DE1007D0760 /* YYDiskCache.m in Sources */,
  10350. EB9DA131250333240062FEB8 /* NavigationTableViewCell.m in Sources */,
  10351. C7D6BBAD235DA18A00770E7C /* TDHorizontalWaterFlowLayout.m in Sources */,
  10352. C59D0C0423825DE1007D0760 /* YYImage.m in Sources */,
  10353. 32580E6223ADB814005DF500 /* NoteBookSelectFinderCell.m in Sources */,
  10354. C752D21523751FB200913F97 /* NextApprovalViewController.m in Sources */,
  10355. C7D6BCA2235DA1CE00770E7C /* MyModel.m in Sources */,
  10356. C6F2E17E236C14B0009E6903 /* My_CenterCell.m in Sources */,
  10357. C76DB438236ACCC400369F5C /* MyTDTopicTitleView.m in Sources */,
  10358. EB8E2CD5239666A800CDFBDA /* EMConversationHelper.m in Sources */,
  10359. EB9D514724F633E500568932 /* GroupShowModel.m in Sources */,
  10360. C7D6BC9F235DA1CE00770E7C /* MyDetailModel.m in Sources */,
  10361. C76745132373A6C4001675FA /* SKUCollectionCell.m in Sources */,
  10362. EBF71754247229FB00ED1838 /* PayBookAlert.m in Sources */,
  10363. C59D0C1B23825DE1007D0760 /* YYTextRunDelegate.m in Sources */,
  10364. C708DC062371A46D005CC822 /* WorkFlowSearchView.m in Sources */,
  10365. EB9F24E22509CDD90017479A /* PlayModelCell.m in Sources */,
  10366. 327E376523A9D9C900842F47 /* CreateNoteBookCell.m in Sources */,
  10367. EB50DAE223C8967400A14FED /* ReadListVC.m in Sources */,
  10368. EBABAC9F248B7A300033B985 /* HKTransitionPush.m in Sources */,
  10369. C7743FAD23A9018200973D70 /* MyWorkFlowListCell.m in Sources */,
  10370. EB85BF4A243DB566006C7A82 /* ChatMsgPersonInfoVC.m in Sources */,
  10371. EBCCEC572508CAAE00DC6B6F /* BookSetPlayTimeModel.m in Sources */,
  10372. C7819D5D23B0597500300297 /* TimeSourceModel.m in Sources */,
  10373. C78373FB23AA287C0096AFE2 /* FecordJoinWorkFlowListController.m in Sources */,
  10374. EB4B653124C19A060041A82C /* MailGroupListVC.m in Sources */,
  10375. EB0A7399247BA42500DB75CB /* BookBillModel.m in Sources */,
  10376. EBB6888423C9E4DD00E24DD9 /* RichModel.m in Sources */,
  10377. C72351C12382907B0037E4F6 /* NSImage+WebCache.m in Sources */,
  10378. EB8E2D2E239666A900CDFBDA /* EMReadReceiptTableViewCell.m in Sources */,
  10379. EB8E2CD7239666A900CDFBDA /* UIViewController+Util.m in Sources */,
  10380. EBE5EF1F2459841B00AD59C4 /* MyAccountVC.m in Sources */,
  10381. EB98E7B524061CD00087C4E2 /* NoteBookSearchVC.m in Sources */,
  10382. EB1E0F8E246D4A9700D4C3DE /* BookContentTopCell.m in Sources */,
  10383. EBF2D55123C2E85600EC35C4 /* MHTopicFrame.m in Sources */,
  10384. C7D6BB42235DA18A00770E7C /* SearchTypeCell.m in Sources */,
  10385. EBE5EF2724598F8600AD59C4 /* MyCardVC.m in Sources */,
  10386. C625AA8E236FCDD30010E967 /* ChatMsgSearchHistoryVC.m in Sources */,
  10387. C59D0C3D23825DE1007D0760 /* NSNotificationCenter+YYAdd.m in Sources */,
  10388. EB41513E246BC71500030371 /* BookStoreHome.m in Sources */,
  10389. EBCBA9942522DF8200D3E405 /* BookQiKanListModel.m in Sources */,
  10390. C62270AE236C09FC00E2E3BF /* LeeTagItemViewModel.m in Sources */,
  10391. C7D6BB3D235DA18A00770E7C /* MyChanelCollectionReusableViewTop.m in Sources */,
  10392. C7D6BC99235DA1CE00770E7C /* PersonalCertificationHeaderView.m in Sources */,
  10393. EB1E0F7F246D0FDB00D4C3DE /* BookContentLeftModel.m in Sources */,
  10394. EBD537B42490AE1D000EDF2B /* BookListenDetailVC.m in Sources */,
  10395. C59D0C4B23825DE1007D0760 /* YYTimer.m in Sources */,
  10396. C59D0C2223825DE1007D0760 /* YYTextArchiver.m in Sources */,
  10397. C6221589237278A8006F5D7F /* ShowKeepNoticeAlert.m in Sources */,
  10398. C625AAD3237017650010E967 /* ChatMsgNoticeCell.m in Sources */,
  10399. EB8E2DBC2398DC6900CDFBDA /* ChatGroupAddVC.m in Sources */,
  10400. C7CA60B1237312A50062B8B8 /* WorkFlowSelectCollectCell.m in Sources */,
  10401. C7D6BCB7235DA1CE00770E7C /* ReplacePhoneNumberViewController.m in Sources */,
  10402. C59D0C3823825DE1007D0760 /* NSKeyedUnarchiver+YYAdd.m in Sources */,
  10403. 324F17F4239E57010025CAE7 /* HomeTestViewController.m in Sources */,
  10404. EB8E2D00239666A900CDFBDA /* PSTCollectionViewController.m in Sources */,
  10405. C7C0673C236D7BC50049C50C /* InPutTextCell.m in Sources */,
  10406. EB7955D324C6BB4E00EE9A55 /* TopicBookModel.m in Sources */,
  10407. EB5E18D3247FAB2100EDB76E /* BookSubPeriodicaCell.m in Sources */,
  10408. C59D0C4C23825DE1007D0760 /* YYThreadSafeArray.m in Sources */,
  10409. EBFF89BC24CC102D00018E76 /* CommomSearchVC.m in Sources */,
  10410. C622157C237169E3006F5D7F /* NoticeNewGroupMenuCell.m in Sources */,
  10411. EB5A587023AB512100B93149 /* MyTDTopicDetailVC.m in Sources */,
  10412. C7D6BBA9235DA18A00770E7C /* TDTableView.m in Sources */,
  10413. EB92E88E23B09AD5008E94CF /* GFCalendar.m in Sources */,
  10414. EB568FBD239B369D000827B0 /* FindChatItemsModel.m in Sources */,
  10415. C7525DE52388F25F004B9D71 /* MyWordCell.m in Sources */,
  10416. EB4310B624CEAF6D00481097 /* MyTDTopicGroupSearchVC.m in Sources */,
  10417. EB7DD2402462BC8F00C6048F /* GroupSquareModel.m in Sources */,
  10418. C622159C2372C0F9006F5D7F /* MailListVC.m in Sources */,
  10419. EB71EEFC240E565B0089B1A6 /* FlowAttachmentsModel.m in Sources */,
  10420. EBE36C4423A791A9002BE674 /* ChatMsgWorkModel.m in Sources */,
  10421. EB8E2D0B239666A900CDFBDA /* PSTCollectionViewLayout.m in Sources */,
  10422. EBE1E2AD2494747300DB80BF /* BookHotSearchCell.m in Sources */,
  10423. C7A84AFD2386374000FB0F82 /* HomeWaitWorkModel.m in Sources */,
  10424. C59D0C4423825DE1007D0760 /* YYThreadSafeDictionary.m in Sources */,
  10425. C59D0C3323825DE1007D0760 /* NSNumber+YYAdd.m in Sources */,
  10426. C7037FEA236FB65A008EA3E4 /* SendInfoGroupVC.m in Sources */,
  10427. EBE5EF1C2459645800AD59C4 /* CommonNoteVC.m in Sources */,
  10428. EB6D1C1623F6B590000D2EF8 /* FileOpenViewController.m in Sources */,
  10429. EBFDDADA241B9DA100875D8A /* ReadSearchVC.m in Sources */,
  10430. C59D0C0723825DE1007D0760 /* _YYWebImageSetter.m in Sources */,
  10431. EB8E2DA7239666A900CDFBDA /* EMAtGroupMembersViewController.m in Sources */,
  10432. EB92E89223B0CC77008E94CF /* WaitTimePicker.m in Sources */,
  10433. 32AB488623A5036E00A1E9F7 /* MyFindModel.m in Sources */,
  10434. EB095CE324D175DA00493536 /* ReplayLikeSearchVC.m in Sources */,
  10435. EB92E87523B061E8008E94CF /* WaitWorkLabelVC.m in Sources */,
  10436. C59D0C4723825DE1007D0760 /* YYDispatchQueuePool.m in Sources */,
  10437. EBD623C62515A9BE007FF6BC /* HomeSchoolVC.m in Sources */,
  10438. EB1810942488A5DF009EDEF5 /* BookTextBookModel.m in Sources */,
  10439. C788F19A236963980070A6B3 /* FavoriteTextCell.m in Sources */,
  10440. C7D6BCA5235DA1CE00770E7C /* AboutViewController.m in Sources */,
  10441. 326B92D6239F4B35004230EB /* FWZFileGetTool.m in Sources */,
  10442. C74BCC83238FB6C900169982 /* VersionDataSub.m in Sources */,
  10443. 3220A0C623CC8F7C005A347C /* shoujianrenResultViewCell.m in Sources */,
  10444. C76DB43E236ACF5700369F5C /* MyTDTopicModelSub.m in Sources */,
  10445. EB1BA21323FFD6E500202452 /* H6ViewController.m in Sources */,
  10446. EB8E2D54239666A900CDFBDA /* EMAudioRecordHelper.mm in Sources */,
  10447. EBF7177C24726A4500ED1838 /* HomeWeiCousreCollectCell.m in Sources */,
  10448. C7D6BCCE235DDF3F00770E7C /* DrawerCell.m in Sources */,
  10449. C768AFB62379778F00E0A066 /* MyTableView.m in Sources */,
  10450. C7743F9123A86D7000973D70 /* MyWorkFlowListController.m in Sources */,
  10451. EBFA5EE32491D6F300AD38B0 /* ReplayMeVC.m in Sources */,
  10452. C69A8DEF23743B9B0098FA26 /* ChatMsgDetailChatInfoCell.m in Sources */,
  10453. EB8E2D23239666A900CDFBDA /* EMDateHelper.m in Sources */,
  10454. EBCC49C824EFC47500837F5F /* InterMailEditSearchVC.m in Sources */,
  10455. EBC7BF9423ED2E5200678A66 /* UILabelCopy.m in Sources */,
  10456. EB8E2D79239666A900CDFBDA /* EMMsgExtGifBubbleView.m in Sources */,
  10457. C7D6BBB8235DA18A00770E7C /* TabBar.m in Sources */,
  10458. C69A8E1D23753A150098FA26 /* CalenderWeekView.m in Sources */,
  10459. EBB6888123C9C1C900E24DD9 /* RichTextEditViewController.m in Sources */,
  10460. EBD623E02515CBA3007FF6BC /* SegmentView.m in Sources */,
  10461. C62270A1236C09FC00E2E3BF /* GHRefreshCollectionView.m in Sources */,
  10462. C625AACF2370125D0010E967 /* ChatMsgNoticeVC.m in Sources */,
  10463. EBD623192514A21C007FF6BC /* IndexMoreVC.m in Sources */,
  10464. C56AC85F2384DB1000D46052 /* EaseSDKHelper.m in Sources */,
  10465. EBAA1F242463A4F200272F13 /* SourceGroupVC.m in Sources */,
  10466. EBC9BFA725343341000BD6F7 /* PushModel.m in Sources */,
  10467. EB8E2CF4239666A900CDFBDA /* wav.mm in Sources */,
  10468. C62215A42372CC89006F5D7F /* MailListByZuVC.m in Sources */,
  10469. EBD623C025159A66007FF6BC /* WMZPageScroller.m in Sources */,
  10470. C7D6BC85235DA1CE00770E7C /* NoticeViewController.m in Sources */,
  10471. C76DB42F236ACB4B00369F5C /* MyTDTopicViewController.m in Sources */,
  10472. EBFDFE4C247762280046E847 /* BookSelectCollectCell.m in Sources */,
  10473. EB0A73A7247BC95900DB75CB /* BookBillCousreCell.m in Sources */,
  10474. C69A8E1923753A150098FA26 /* CalenderView.m in Sources */,
  10475. EB38513F24652BA700E28172 /* TDGroupRoleVC.m in Sources */,
  10476. C7F6162B238C06F0008AF22D /* UserManager.m in Sources */,
  10477. EB3EAFEE23A26B9B00C38AB4 /* TDGroupInfoListVC.m in Sources */,
  10478. C7525DEA238907D6004B9D71 /* MyWorkAppApprovalCell.m in Sources */,
  10479. EB44002F247D127B0094C333 /* BookSubVideoVC.m in Sources */,
  10480. C783740D23AA46470096AFE2 /* HistoricalWorkFlowDetailsTitleCell.m in Sources */,
  10481. C7799F1723AB849F00270988 /* WorkFlowPersonnelListCell.m in Sources */,
  10482. C6221572237157B8006F5D7F /* NoticeNewGroupVC.m in Sources */,
  10483. EB2B5A72242B0CA40087E1E7 /* MyNewFindUserCell.m in Sources */,
  10484. EB8E2D08239666A900CDFBDA /* PSTCollectionViewItemKey.m in Sources */,
  10485. C69A8DE823741AD90098FA26 /* ChatMsgDetailChatModel.m in Sources */,
  10486. C7D6BB4B235DA18A00770E7C /* ChannelModel.m in Sources */,
  10487. EBB6887023C9C0C300E24DD9 /* MMRichImageModel.m in Sources */,
  10488. C59D0C4D23825DE1007D0760 /* YYReachability.m in Sources */,
  10489. EBCC209124B6EC7F001BDCDC /* GroupSquareSubModel.m in Sources */,
  10490. EB85BF53243DDD38006C7A82 /* ChatMsgTopSearchVC.m in Sources */,
  10491. EB8E2D78239666A900CDFBDA /* EMMsgRecallBubbleView.m in Sources */,
  10492. EBD623E82515CE24007FF6BC /* HomeSchoolHeadView.m in Sources */,
  10493. 32C384D223B3636100BBC733 /* CreateInterLeterVC.m in Sources */,
  10494. EBD29F2D25022B8C00AEB04C /* BookListenVC.m in Sources */,
  10495. EBF2D56023C2EC1800EC35C4 /* MHDivider.m in Sources */,
  10496. EB8E2D12239666A900CDFBDA /* EMRefreshViewController.m in Sources */,
  10497. 324D962523A245A100C7D9E8 /* MyFavoriteViewCell.m in Sources */,
  10498. EBBD5E662519A393007B174E /* BookSearchSubVC.m in Sources */,
  10499. C59D0C0523825DE1007D0760 /* YYImageCoder.m in Sources */,
  10500. EB440029247CB7AE0094C333 /* BookMingDetailVC.m in Sources */,
  10501. C7D6BB4E235DA18A00770E7C /* HorizonScroll.m in Sources */,
  10502. C69A8E1E23753A150098FA26 /* NSDate+Extension.m in Sources */,
  10503. C59D0C3C23825DE1007D0760 /* NSString+YYAdd.m in Sources */,
  10504. EB8E2CF7239666A900CDFBDA /* MWCaptionView.m in Sources */,
  10505. C744D2422369B97E00D51EDD /* FavoriteHeaderView.m in Sources */,
  10506. EB6E84E2246FDF2400BE0524 /* BookPlayListVC.m in Sources */,
  10507. C783741223AA46730096AFE2 /* HistoricalWorkFlowDetailsContentCell.m in Sources */,
  10508. C7954B4C237E799200EDC479 /* Department.m in Sources */,
  10509. 324D960423A1139300C7D9E8 /* ChatMsgSearchModel.m in Sources */,
  10510. EB5F450524750765008D316D /* BookChanelVC.m in Sources */,
  10511. EBF2D54A23C2E76600EC35C4 /* MHTopicCommentCell.m in Sources */,
  10512. C6F2E1D9236D126B009E6903 /* NSString+XTExtension.m in Sources */,
  10513. C7D6BB9E235DA18A00770E7C /* ZDChatroomAlertView.m in Sources */,
  10514. EB8E2CEF239666A900CDFBDA /* EMGlobalVariables.m in Sources */,
  10515. C7D6BBAF235DA18A00770E7C /* TDNavigationBar.m in Sources */,
  10516. EBABACA4248B7A300033B985 /* HKFloatAreaView.m in Sources */,
  10517. EBE1E2B724947E0800DB80BF /* HomeBigshotCollectCell.m in Sources */,
  10518. EBAACA902406475100F44B67 /* ShowBtn.m in Sources */,
  10519. C74BCC80238FB69B00169982 /* VersionDataModel.m in Sources */,
  10520. EB4B652824C01DCE0041A82C /* MailVerifyVC.m in Sources */,
  10521. EBCE637024AF281A004C9B3B /* BookChanelRightModel.m in Sources */,
  10522. C72F3900236DADDC00933828 /* MyAboutVC.m in Sources */,
  10523. C62270A5236C09FC00E2E3BF /* DGThumbUpButton.m in Sources */,
  10524. EBD627D52429DD6500D91C9E /* ChatQrcodeVC.m in Sources */,
  10525. EBBD5E612519A2D8007B174E /* BookSearchVC.m in Sources */,
  10526. C7D6BB43235DA18A00770E7C /* HomeDetailController.m in Sources */,
  10527. EB92E87923B063AF008E94CF /* WaitWorkLabelCell.m in Sources */,
  10528. C69A8E4223754F7A0098FA26 /* ChatSearchFindbyFuJCell.m in Sources */,
  10529. C625AAAE236FF35B0010E967 /* ChatMsgSearchReseltContentCell.m in Sources */,
  10530. C7D6BB47235DA18A00770E7C /* CommentSetView.m in Sources */,
  10531. EB317970251CA2D0001E01D3 /* BookBillListModel.m in Sources */,
  10532. C59D0C3023825DE1007D0760 /* UIControl+YYAdd.m in Sources */,
  10533. C708DC0A2371BE36005CC822 /* WorkFlowSearchDetailVC.m in Sources */,
  10534. C59D0C2423825DE1007D0760 /* UITextField+YYAdd.m in Sources */,
  10535. EB8E2CD8239666A900CDFBDA /* NSObject+Alert.m in Sources */,
  10536. EBF3C5192513356400D40A66 /* IndexSearchVC.m in Sources */,
  10537. EB8E2D21239666A900CDFBDA /* EMTextViewController.m in Sources */,
  10538. C701EE4A23C2D97800082463 /* InPutGongWenImageCell.m in Sources */,
  10539. EBD623F0251603CD007FF6BC /* SegmentVController.m in Sources */,
  10540. C7799EF423AB19EA00270988 /* WorkFlowOrderTopCell.m in Sources */,
  10541. EBCCD86424C2D7CD000D6689 /* MailGroupVC.m in Sources */,
  10542. EB8E2DA5239666A900CDFBDA /* EMChatViewController.m in Sources */,
  10543. C59D0C1A23825DE1007D0760 /* YYLabel.m in Sources */,
  10544. C7799F0823AB5C5A00270988 /* WorkFlowOrderInputCell.m in Sources */,
  10545. C7D6BCC2235DA28500770E7C /* WorkFlowController.m in Sources */,
  10546. C7AB8436235EA93B00F2363F /* SWQRCodeViewController.m in Sources */,
  10547. C62270AD236C09FC00E2E3BF /* DeviceInfo.m in Sources */,
  10548. C622158E2372A179006F5D7F /* NoticeUnreadVC.m in Sources */,
  10549. EB440FC923A3324F006BCB95 /* createSearchBarView.m in Sources */,
  10550. C795C62C2374348E0042300F /* MyWorkFlowFooterView.m in Sources */,
  10551. C7D6BC83235DA1CE00770E7C /* MyViewController.m in Sources */,
  10552. EB8E2D77239666A900CDFBDA /* EMMessageTimeCell.m in Sources */,
  10553. EB8E2DAA239666A900CDFBDA /* EMMsgTranspondViewController.m in Sources */,
  10554. EBBE1CBD24E7D4CC00041E04 /* TDGroupDraftSearchVC.m in Sources */,
  10555. C7D6BC95235DA1CE00770E7C /* ClubApplicationTableViewCell.m in Sources */,
  10556. C625AAA6236FEF130010E967 /* ZLCollectionReusableView.m in Sources */,
  10557. EBF2FB1424A34DD10028EA09 /* HomeUserVC.m in Sources */,
  10558. EBBD5E6A2519CB4E007B174E /* BookLabelAllVC.m in Sources */,
  10559. C7D6BC89235DA1CE00770E7C /* MyPaperViewController.m in Sources */,
  10560. C7D6BBAA235DA18A00770E7C /* TDTextView.m in Sources */,
  10561. C772299B23B5A7A700007B21 /* MyMeetingListModel.m in Sources */,
  10562. EBA25D5624D8255800CBEBF2 /* ShowDesVC.m in Sources */,
  10563. EBBEE55E249859E600B135E4 /* UICountingLabel.m in Sources */,
  10564. EB3EAFD423A10CE600C38AB4 /* WaitWorkCell.m in Sources */,
  10565. EBB6886D23C9C0C300E24DD9 /* MMRichContentUtil.m in Sources */,
  10566. C59D0C2B23825DE1007D0760 /* UIScreen+YYAdd.m in Sources */,
  10567. C7AB843B235EBA0700F2363F /* UIViewController+TD.m in Sources */,
  10568. EB8E2DA6239666A900CDFBDA /* EMMessageModel.m in Sources */,
  10569. C59D0C2623825DE1007D0760 /* UIColor+YYAdd.m in Sources */,
  10570. EB8E2D0F239666A900CDFBDA /* EMMulticastDelegate.m in Sources */,
  10571. EB3CB7A224E54D8700F399E7 /* GroupSynopsisUserSearchVC.m in Sources */,
  10572. EBB83E5223B3668C00A8C4BC /* ChangeTopicModel.m in Sources */,
  10573. EB8E2D03239666A900CDFBDA /* PSTGridLayoutInfo.m in Sources */,
  10574. EB8E2DB3239762C100CDFBDA /* AudioShowView.m in Sources */,
  10575. EB8E2CF0239666A900CDFBDA /* EMBadgeLabel.m in Sources */,
  10576. C69A8E1B23753A150098FA26 /* CalenderModel.m in Sources */,
  10577. EB440032247D12910094C333 /* BookSubMusicVC.m in Sources */,
  10578. EB8E2DB92398D23100CDFBDA /* ChatGroupDeleteVC.m in Sources */,
  10579. C59D0C3923825DE1007D0760 /* NSTimer+YYAdd.m in Sources */,
  10580. C7EE366E23BAFD2E002EB3BF /* FecordDetailsContentCell.m in Sources */,
  10581. C7D6BB9F235DA18A00770E7C /* UITableViewCell+XL.m in Sources */,
  10582. C6F2E1E7236D126B009E6903 /* UIImage+GH.m in Sources */,
  10583. C69A8E2523753A890098FA26 /* ChatSearchFindbyPhotoVC.m in Sources */,
  10584. EBE36C3B23A72AFA002BE674 /* NewTopicModel.m in Sources */,
  10585. C772299F23B6076D00007B21 /* HistoricalWorkFlowDetailsMessageCell.m in Sources */,
  10586. EB03C7F22493637300B2EF18 /* BookVideoSetAlert.m in Sources */,
  10587. EBB6886A23C9C0C300E24DD9 /* MMDatabaseConn.m in Sources */,
  10588. C7974A2F236C2A2C004D5470 /* MyApprovalModel.m in Sources */,
  10589. C7D6BB49235DA18A00770E7C /* DetailTitleView.m in Sources */,
  10590. EBB6887C23C9C0C300E24DD9 /* MMRichImageCell.m in Sources */,
  10591. EB8E2D0C239666A900CDFBDA /* PSTGridLayoutItem.m in Sources */,
  10592. EBFA5EF4246E374A00915D5F /* HomeMusicCell.m in Sources */,
  10593. C6F2E19A236C334A009E6903 /* UIImage+Crop.m in Sources */,
  10594. EBA0FA55249CC22C0022AFA3 /* SSScrollViewController.m in Sources */,
  10595. EBD623BD25159A66007FF6BC /* NSObject+SafeKVO.m in Sources */,
  10596. C751012823837FB100E4429B /* MyZanCell.m in Sources */,
  10597. EB3CB79F24E5481B00F399E7 /* GroupSynopsisUserVC.m in Sources */,
  10598. EB1D158424C807A800C82FED /* TopicShowListView.m in Sources */,
  10599. EB952693248A560E003EFCCE /* BookReadSearchAlert.m in Sources */,
  10600. C7974A40236C4CC0004D5470 /* MyWorkWordVC.m in Sources */,
  10601. C7D6BBB2235DA18A00770E7C /* InfoSearchView.m in Sources */,
  10602. EB9E2032251F0BBA00311E96 /* BookMingSearchVC.m in Sources */,
  10603. EB9BBE5023D1BF1A00436A0E /* MailListSearchVC.m in Sources */,
  10604. EB440036247D15AD0094C333 /* BookSubArticeCell.m in Sources */,
  10605. C6F2E1D7236D126B009E6903 /* UILabel+GHConfig.m in Sources */,
  10606. EB2E470C23A4B78300CAF0D3 /* SmartBarModel.m in Sources */,
  10607. C69A8DCB2373AFB50098FA26 /* MailListDetailCell.m in Sources */,
  10608. EB8E2D50239666A900CDFBDA /* EaseEmotionEscape.m in Sources */,
  10609. EB4ECF12241101A000B60F05 /* CountDataVC.m in Sources */,
  10610. EB8E2D1E239666A900CDFBDA /* EMSearchResultController.m in Sources */,
  10611. C77E218A23AE3776009A230C /* WorkFlowOrderSelectedTimeCell.m in Sources */,
  10612. EB9D65A5248E358900636BAC /* BookReadFontNameAlert.m in Sources */,
  10613. EBF2D55023C2E85600EC35C4 /* MHCommentFrame.m in Sources */,
  10614. EBD4A1FA250B54FD0088D94F /* BookListenSubModel.m in Sources */,
  10615. EB7955CB24C695CB00EE9A55 /* MyTDTopicBookVC.m in Sources */,
  10616. C788F18F236957E70070A6B3 /* FavoriteTextModel.m in Sources */,
  10617. EBD537AD24908CD3000EDF2B /* HomeTeacherCell.m in Sources */,
  10618. C7D6BCAD235DA1CE00770E7C /* BlacklistModel.m in Sources */,
  10619. EB56DA0A23BB431500FE7262 /* ChatListMoveVC.m in Sources */,
  10620. C770405B23AC655700BFF1B0 /* UIView+BYIBInspectable.m in Sources */,
  10621. EB0A73A2247BC93800DB75CB /* BookBillBookCell.m in Sources */,
  10622. C7235186238244B20037E4F6 /* ArticleBlocks.m in Sources */,
  10623. EB31796B251C6E01001E01D3 /* BookBillArticeCell.m in Sources */,
  10624. EB09BF2D23B1A32B001CCBC7 /* WaitWorkLabelModel.m in Sources */,
  10625. C7D6BC92235DA1CE00770E7C /* ClubApplicationViewController.m in Sources */,
  10626. EBE1E2B224947C2800DB80BF /* HomeBigshotCell.m in Sources */,
  10627. EBDE08BB2458203A005D426C /* CommonBarCell.m in Sources */,
  10628. C751012C2383A02F00E4429B /* FormFields.m in Sources */,
  10629. C59D0C0923825DE1007D0760 /* UIImageView+YYWebImage.m in Sources */,
  10630. C625AA82236FBF670010E967 /* YCMenuView.m in Sources */,
  10631. EBCBA9992522FCFF00D3E405 /* BookQiKanNavModel.m in Sources */,
  10632. EB4B652B24C04DED0041A82C /* MailEditVC.m in Sources */,
  10633. C69A8DD32373C2C00098FA26 /* SearchBarDisplayCenter.m in Sources */,
  10634. C74BCC7C238FA1FF00169982 /* UILabel+RightAndLeft.m in Sources */,
  10635. EBFFE22924234238008D4312 /* OtherFavoriteVC.m in Sources */,
  10636. C59D0C1D23825DE1007D0760 /* NSParagraphStyle+YYText.m in Sources */,
  10637. EB92E88F23B09AD5008E94CF /* GFCalendarMonth.m in Sources */,
  10638. C7B8646D23C9CE810090F2A3 /* SwipeButton.m in Sources */,
  10639. EB848E962508DE2E006A3ECD /* BookSetPlaySpeedAlert.m in Sources */,
  10640. 324D963423A38A4A00C7D9E8 /* MyFavoriteSubModel.m in Sources */,
  10641. C7525DEF23890A8B004B9D71 /* MyWorkSpaceCell.m in Sources */,
  10642. EBBC59D925315E4500AB12EF /* LoginPCVC.m in Sources */,
  10643. C7EE367823BB2D57002EB3BF /* NewMeetingFecordDetailsController.m in Sources */,
  10644. C625AAD723701ECE0010E967 /* ChatMsgNoticeTypeVC.m in Sources */,
  10645. EB8E2CDA239666A900CDFBDA /* EMEmoticonGroup.m in Sources */,
  10646. EBDD70BB23B4876F00AC0BF4 /* MyWorkCarVC.m in Sources */,
  10647. C752D21123751F1600913F97 /* DownFileViewController.m in Sources */,
  10648. EBE96EC8245AD77B008BDBA8 /* PayAlertCell.m in Sources */,
  10649. EBCFA0FA23ACEBE600A62645 /* MyTDTopicCreateVC.m in Sources */,
  10650. C6F2E197236C334A009E6903 /* LYLPhotoTailoringTool.m in Sources */,
  10651. C59D0C0B23825DE1007D0760 /* CALayer+YYWebImage.m in Sources */,
  10652. C7D6BB4C235DA18A00770E7C /* DocumentModel.m in Sources */,
  10653. C72F390A236DAE1D00933828 /* UIPlaceHolderTextView.m in Sources */,
  10654. C59D0C0223825DE1007D0760 /* YYWebImageManager.m in Sources */,
  10655. C7CA60AD237312680062B8B8 /* WorkFlowSelectView.m in Sources */,
  10656. C75049F2236027DA0096B15B /* HomeContentCell.m in Sources */,
  10657. C75ACED2236A842400CB6374 /* TDShareButtonView.m in Sources */,
  10658. EB0A7395247B9F7600DB75CB /* BookBillCell.m in Sources */,
  10659. C625AA71236FB2930010E967 /* ChatMsgCollectionModel.m in Sources */,
  10660. C72F2A58236D829D00F6ADE2 /* AddFileTableViewCell.m in Sources */,
  10661. C625AAA5236FEF130010E967 /* ZLCollectionViewLayoutAttributes.m in Sources */,
  10662. EB8E2D10239666A900CDFBDA /* EMTextView.m in Sources */,
  10663. C7404E6F238D23A600DB19AC /* AddPictureCell.m in Sources */,
  10664. 3264782223BEF4C900E0DC2D /* UIAlertController+TapGesAlertController.m in Sources */,
  10665. EB440FCC23A33970006BCB95 /* TDGroupInfoListModel.m in Sources */,
  10666. EBF2FB0B24A33B6A0028EA09 /* HomeSpeakVC.m in Sources */,
  10667. C7EE366423BAF631002EB3BF /* MeetingFecordDetailsController.m in Sources */,
  10668. C59D0C1023825DE1007D0760 /* YYTextView.m in Sources */,
  10669. EB568FC1239B40C7000827B0 /* FindResultViewCell.m in Sources */,
  10670. EB8E2D7D239666A900CDFBDA /* EMMsgImageBubbleView.m in Sources */,
  10671. C625AAB2236FFCC60010E967 /* ChatMsgSerchReseltByIMVC.m in Sources */,
  10672. C75958A3237FFC9700AE85C0 /* HomeArticleModel.m in Sources */,
  10673. EB7F374A247E426900E7FAD6 /* BookMingArticeListVC.m in Sources */,
  10674. EB41514A246BD58F00030371 /* BookHomeSubCell.m in Sources */,
  10675. C7D6BBB1235DA18A00770E7C /* SurfaceSearchView.m in Sources */,
  10676. C703801123701018008EA3E4 /* MyApprovalDetailCell.m in Sources */,
  10677. EB5F44F42474BFAD008D316D /* HomeGoodBookCell.m in Sources */,
  10678. C622709F236C09FC00E2E3BF /* XLDot.m in Sources */,
  10679. C7D6BC8F235DA1CE00770E7C /* MyClubApplicationTableViewCell.m in Sources */,
  10680. C59D0C4123825DE1007D0760 /* CALayer+YYAdd.m in Sources */,
  10681. C7D6BB9B235DA18A00770E7C /* NSString+RegexCategory.m in Sources */,
  10682. EBCFA0FD23ACF06A00A62645 /* MyTDTopicSelectExtentVC.m in Sources */,
  10683. C7C06737236D70700049C50C /* SelectTextCell.m in Sources */,
  10684. C59D0C3423825DE1007D0760 /* NSBundle+YYAdd.m in Sources */,
  10685. C62270A6236C09FC00E2E3BF /* DGExplodeAnimationView.m in Sources */,
  10686. C62270A0236C09FC00E2E3BF /* XLDotLoading.m in Sources */,
  10687. EBB6887423C9C0C300E24DD9 /* MMRichTextModel.m in Sources */,
  10688. C69A8DBF2372CFE70098FA26 /* ChineseString.m in Sources */,
  10689. EB8E2D2D239666A900CDFBDA /* EMReadReceiptMsgViewController.m in Sources */,
  10690. EBD623E42515CC41007FF6BC /* FirstViewController.m in Sources */,
  10691. EBB6887923C9C0C300E24DD9 /* MMRichTextCell.m in Sources */,
  10692. EB8E2D01239666A900CDFBDA /* PSTCollectionViewFlowLayout.m in Sources */,
  10693. C625AA7A236FB5A40010E967 /* ChatMsgCollectionCell.m in Sources */,
  10694. C75958A6237FFCC200AE85C0 /* Item.m in Sources */,
  10695. C77E217F23ADEE51009A230C /* WorkFlowOrderSelectedCell.m in Sources */,
  10696. EBD623DD2515CBA3007FF6BC /* SegmentHeaderView.m in Sources */,
  10697. EBD623BF25159A66007FF6BC /* WMZPageController.m in Sources */,
  10698. C75ACEDA236AAE5F00CB6374 /* MyTDGroupViewController.m in Sources */,
  10699. 326B92D9239F78B8004230EB /* MoveViewController.m in Sources */,
  10700. C625AA7E236FB9080010E967 /* UIView+Extension.m in Sources */,
  10701. EBAACA932406730C00F44B67 /* MyFavoriteSearchVC.m in Sources */,
  10702. C59D0C0323825DE1007D0760 /* YYSpriteSheetImage.m in Sources */,
  10703. EBF7175F247237DF00ED1838 /* BookAlertModel.m in Sources */,
  10704. C78373F623A9F5430096AFE2 /* HistoricalWorkFlowListCell.m in Sources */,
  10705. C625AAC1237003EE0010E967 /* ShowNewGroupAlert.m in Sources */,
  10706. C59D0C1923825DE1007D0760 /* YYTextDebugOption.m in Sources */,
  10707. EBBE1CB724E78CE000041E04 /* GroupEditerVC.m in Sources */,
  10708. EB568FC8239B7470000827B0 /* ChatJoinGroupVC.m in Sources */,
  10709. 32580E5323AB9977005DF500 /* NoteBookDetailVC.m in Sources */,
  10710. EB96B89D23BF573B00EE09D7 /* NoteBookDetailCell.m in Sources */,
  10711. EBCFCDE825185002002CD1B8 /* HomeSchollVideoVC.m in Sources */,
  10712. EB629DFF2416206200A5E0EE /* _NoInputAccessoryView.m in Sources */,
  10713. EBF1A8C823B1EF6700FA6F4B /* WaitWorkModel.m in Sources */,
  10714. EB8E2D09239666A900CDFBDA /* PSTCollectionView.m in Sources */,
  10715. EB8E2CD9239666A900CDFBDA /* EMDemoOptions.m in Sources */,
  10716. C76B01252387B0C500AD6E28 /* WorkNumberModel.m in Sources */,
  10717. C6F2E1A8236C4CB7009E6903 /* EditMySignOrBriefVC.m in Sources */,
  10718. C76DB435236ACC8100369F5C /* MyTDTopicSelectGroupVIew.m in Sources */,
  10719. C7799EFE23AB2A1600270988 /* WorkFlowOrderItemCell.m in Sources */,
  10720. C783741723AA46900096AFE2 /* HistoricalWorkFlowDetailsMoreCell.m in Sources */,
  10721. 32580E6623ADCF35005DF500 /* NoteBooKSelectNoteBookVC.m in Sources */,
  10722. EBFDFE50247778CC0046E847 /* BookSelectModel.m in Sources */,
  10723. EB8E2D76239666A900CDFBDA /* EMMessageStatusView.m in Sources */,
  10724. EB41514E246BDEB900030371 /* BookHomeSubModel.m in Sources */,
  10725. C69A8E1A23753A150098FA26 /* CalenderCollectionCell.m in Sources */,
  10726. C77E218E23AE4CC2009A230C /* WorkFlowOrderModel.m in Sources */,
  10727. EB9D514424F62BDB00568932 /* GroupShowListView.m in Sources */,
  10728. EB3B6C8524BD993B00FA60F8 /* MailSubModel.m in Sources */,
  10729. EB95268E248A4B41003EFCCE /* BookReadTextView.m in Sources */,
  10730. EBB6886C23C9C0C300E24DD9 /* MMRichTextConfig.m in Sources */,
  10731. EB2B5A76242B36010087E1E7 /* OtherNoteBookVC.m in Sources */,
  10732. C75F9F222367FAD3002867A2 /* DetailContentView.m in Sources */,
  10733. EB7F374F247E63DC00E7FAD6 /* SearchDetailViewCell.m in Sources */,
  10734. EBABAC89248B30E50033B985 /* BookReadFontAlert.m in Sources */,
  10735. EBB6887323C9C0C300E24DD9 /* MMDraftModel.m in Sources */,
  10736. C6F2E198236C334A009E6903 /* PhotoMaskView.m in Sources */,
  10737. C768AFB323796C0C00E0A066 /* IgnoreHeaderTouchTableView.m in Sources */,
  10738. EB8E2D11239666A900CDFBDA /* EMRefreshTableViewController.m in Sources */,
  10739. EB3EAFDC23A1DAB400C38AB4 /* MenuListCell.m in Sources */,
  10740. EBC64DD123C6B78D00558368 /* SelectSaveVC.m in Sources */,
  10741. 3264782623BF0B9600E0DC2D /* ArtticleComentCell.m in Sources */,
  10742. EB0F64D923AA529400AD56A0 /* TopicListSubModel.m in Sources */,
  10743. EBDE08B02458179B005D426C /* CommonHomeVC.m in Sources */,
  10744. C59D0C3623825DE1007D0760 /* NSData+YYAdd.m in Sources */,
  10745. EBD623EC2515FF8F007FF6BC /* HomeSCDetailVC.m in Sources */,
  10746. C7743F9D23A8B2D800973D70 /* WorkFlowHomeCell.m in Sources */,
  10747. EBF2D55423C2E8A000EC35C4 /* MHComment.m in Sources */,
  10748. EB38514624653A2200E28172 /* TDGroupLabelCell.m in Sources */,
  10749. EBDE08CA24583D47005D426C /* CommonWorkVC.m in Sources */,
  10750. C59D0C4623825DE1007D0760 /* YYTransaction.m in Sources */,
  10751. C59D0A432382468A007D0760 /* JSONModelError.m in Sources */,
  10752. C59D0C1123825DE1007D0760 /* YYTextMagnifier.m in Sources */,
  10753. EB8E2CFD239666A900CDFBDA /* MWGridViewController.m in Sources */,
  10754. C7D6BB3B235DA18A00770E7C /* MyChanelCollectionViewCell.m in Sources */,
  10755. C783740823AA42C00096AFE2 /* WorkFlowDetailsController.m in Sources */,
  10756. C69A8DE423740AB80098FA26 /* ChatMsgDetailChatCell.m in Sources */,
  10757. C7D6BB99235DA18A00770E7C /* TDFileStorage.m in Sources */,
  10758. C7743FB223A9078100973D70 /* historicalRecordCell.m in Sources */,
  10759. EB9BCC0F24EBD117005D7499 /* MyFavoriteEditSearchVC.m in Sources */,
  10760. EB5F44FD2474CCCA008D316D /* BookDetailVC.m in Sources */,
  10761. C7973958237BB5AB008BA2DF /* APIPOPOPO.m in Sources */,
  10762. EBCFA0F723AC6CBC00A62645 /* MyTDTopicUserMoveVC.m in Sources */,
  10763. C7D6BBB3235DA18A00770E7C /* TDButton.m in Sources */,
  10764. C59D0C4323825DE1007D0760 /* YYAsyncLayer.m in Sources */,
  10765. EB7DD22C2462620100C6048F /* SourceHomeVC.m in Sources */,
  10766. C7D6BCAB235DA1CE00770E7C /* BlacklistViewController.m in Sources */,
  10767. EB581CEE23A0F5C800C451B0 /* WaitWorkVC.m in Sources */,
  10768. EBF2D55723C2E8F200EC35C4 /* MHUser.m in Sources */,
  10769. C7EE366923BAFA71002EB3BF /* MeetingDetailsHeadCell.m in Sources */,
  10770. EB8E2D7F239666A900CDFBDA /* EMMessageBubbleView.m in Sources */,
  10771. EB568FC5239B47A3000827B0 /* ChatResultVC.m in Sources */,
  10772. C76FD29C238506E100E858F6 /* NodesModel.m in Sources */,
  10773. EB415146246BD1CB00030371 /* BookHomeModel.m in Sources */,
  10774. EBBD5E752519D8BD007B174E /* BookListSubCell.m in Sources */,
  10775. EB44409A24A1FF7400B2E212 /* HomeRecommendVC.m in Sources */,
  10776. C7D6BCB1235DA1CE00770E7C /* AccountAndSecurityViewController.m in Sources */,
  10777. C77E218323ADF55F009A230C /* SelectedTimeModel.m in Sources */,
  10778. EB3EAFE023A22E4100C38AB4 /* TDGroupQrcodeVC.m in Sources */,
  10779. C69A8DC32372D45F0098FA26 /* MailListByZuCell.m in Sources */,
  10780. EB8E2CD3239666A800CDFBDA /* EMNotificationHelper.m in Sources */,
  10781. 32C384D523B4B84B00BBC733 /* TDInterLeterDetailVC.m in Sources */,
  10782. C6F2E182236C266F009E6903 /* MyInfoVC.m in Sources */,
  10783. EBABACA0248B7A300033B985 /* HKTransitionPop.m in Sources */,
  10784. C6F2E1ED236D1401009E6903 /* UILabel+Extension.m in Sources */,
  10785. EB8E2D2F239666A900CDFBDA /* EMReadReceiptMemberModel.m in Sources */,
  10786. C622157523716492006F5D7F /* NoticeNewGroupMenuVC.m in Sources */,
  10787. C7D6BB4A235DA18A00770E7C /* TextInputView.m in Sources */,
  10788. EB1E0F7B246D0DA700D4C3DE /* BookContentLeftCell.m in Sources */,
  10789. C7D6BC93235DA1CE00770E7C /* ClubApplicationModel.m in Sources */,
  10790. C59D0C1823825DE1007D0760 /* YYTextKeyboardManager.m in Sources */,
  10791. 32C384C823B1AE9500BBC733 /* NoteBookCommentVC.m in Sources */,
  10792. C7D6BC8E235DA1CE00770E7C /* MyClubApplicationViewController.m in Sources */,
  10793. C7E03AD523CD89EA00A97589 /* InputGongwenFileCell.m in Sources */,
  10794. EBA0FA5A249CC34C0022AFA3 /* UIGestureRecognizer+SSUtil.m in Sources */,
  10795. EB18109D2488DB5F009EDEF5 /* BookTextTopCell.m in Sources */,
  10796. C77229A323B63B3500007B21 /* WorkFlowPersonnelListModel.m in Sources */,
  10797. EBB6886B23C9C0C300E24DD9 /* MMDatabaseConn+Initial.m in Sources */,
  10798. EB0DBF0D23AE3D9700E977ED /* WaitWorkLevelView.m in Sources */,
  10799. C7AB8438235EA93B00F2363F /* SWScannerView.m in Sources */,
  10800. EBB6887223C9C0C300E24DD9 /* MMBaseRichContentModel.m in Sources */,
  10801. EB96B8A723BF73AF00EE09D7 /* TopicListFolderResultModel.m in Sources */,
  10802. 324D962923A24C7F00C7D9E8 /* MyFavoriteNewFindVC.m in Sources */,
  10803. EB952682248A0BA6003EFCCE /* DCBookListView.m in Sources */,
  10804. C7D6BBA1235DA18A00770E7C /* UIImage+Extension.m in Sources */,
  10805. EB6D86D824978392001D3B6C /* GroupSynopsisCell.m in Sources */,
  10806. C59D0C0F23825DE1007D0760 /* YYClassInfo.m in Sources */,
  10807. EB05E109240CEDAF00D9E276 /* MyPcUpdata.m in Sources */,
  10808. C6227128236C11A800E2E3BF /* UIView+GHTheme.m in Sources */,
  10809. EB03C7F824936AA900B2EF18 /* BookSetBgMusicAlert.m in Sources */,
  10810. C7473D6A237105F30037DC39 /* WorkFlowSearchVC.m in Sources */,
  10811. C6F2E1DC236D126B009E6903 /* NSNumber+Formatter.m in Sources */,
  10812. C7D6BB4D235DA18A00770E7C /* HomeTableViewCell.m in Sources */,
  10813. EB98E7B22405FF090087C4E2 /* MyUserIconVC.m in Sources */,
  10814. EB195A58252174D700EA68D3 /* BookCommentView.m in Sources */,
  10815. EB8E2D22239666A900CDFBDA /* EMRealtimeSearch.m in Sources */,
  10816. C62270A9236C09FC00E2E3BF /* UIView+GHBlank.m in Sources */,
  10817. EBCCEC532508C6D400DC6B6F /* BookSetPlayTimeCell.m in Sources */,
  10818. C752D2192375337E00913F97 /* AgreeApprovalViewControllerSub.m in Sources */,
  10819. C7DBAE4F237A87E100D427DD /* FwzBaseView.m in Sources */,
  10820. EBCCD86A24C2DA55000D6689 /* MailChatModel.m in Sources */,
  10821. C59D0C0D23825DE1007D0760 /* YYWebImageOperation.m in Sources */,
  10822. C72F3901236DADDC00933828 /* SettingVC.m in Sources */,
  10823. EBB2402D2480A79700EECD15 /* BookPeriodicaListVC.m in Sources */,
  10824. EB9D65AC248E46FE00636BAC /* BookPlayAlert.m in Sources */,
  10825. EB440FD423A36D4C006BCB95 /* TDGroupInfoChangeVc.m in Sources */,
  10826. EB8E2D20239666A900CDFBDA /* EMSearchViewController.m in Sources */,
  10827. EBDE08BF24582163005D426C /* CommonBarModel.m in Sources */,
  10828. C59D0C0A23825DE1007D0760 /* MKAnnotationView+YYWebImage.m in Sources */,
  10829. C752D20E2375118700913F97 /* AgreeApprovalViewController.m in Sources */,
  10830. C74BCC6F238F611700169982 /* AddChannelController.m in Sources */,
  10831. C7E1001F236DB2D700803CFA /* TaasdasdbleVieasdsawCell.m in Sources */,
  10832. C59D0C2E23825DE1007D0760 /* UIGestureRecognizer+YYAdd.m in Sources */,
  10833. C69A8E0323750D770098FA26 /* ChatImNameUpdateVC.m in Sources */,
  10834. EB1E0F85246D100200D4C3DE /* BookContentModel.m in Sources */,
  10835. C572647623828C5C0054EE66 /* NSDictionary+NilSafe.m in Sources */,
  10836. EB8E2D9F239666A900CDFBDA /* EMLocationViewController.m in Sources */,
  10837. C77E218623AE0ED5009A230C /* SelectedTimeSourceModel.m in Sources */,
  10838. C7D6B9DD235D7D7600770E7C /* main.m in Sources */,
  10839. C59D0C1F23825DE1007D0760 /* NSAttributedString+YYText.m in Sources */,
  10840. EB8E2CFB239666A900CDFBDA /* MWPhoto.m in Sources */,
  10841. EB2CC02023BDBEAA0059F942 /* SearchCell.m in Sources */,
  10842. 3237321923BC6B2700CC048D /* WZSendInfoCell.m in Sources */,
  10843. C7D6BCAE235DA1CE00770E7C /* BlacklistTableViewCell.m in Sources */,
  10844. EB181090248894F9009EDEF5 /* BookTextBookTopCell.m in Sources */,
  10845. EB8E2CF6239666A900CDFBDA /* MWPhotoBrowser.m in Sources */,
  10846. EBE1E2A92494707B00DB80BF /* BookHotSearchVC.m in Sources */,
  10847. EBB83E4A23B358DD00A8C4BC /* ChangeTopicVC.m in Sources */,
  10848. C75F9F2523681DD8002867A2 /* ClickOKView.m in Sources */,
  10849. EBE36C4F23A8E413002BE674 /* TopicListModel.m in Sources */,
  10850. C6F2E1E4236D126B009E6903 /* NSDate+XTExtension.m in Sources */,
  10851. EBF2FB0524A327330028EA09 /* HomeDayGoodBookVC.m in Sources */,
  10852. 3274780323A87E97003B5F49 /* FileLookupVC.m in Sources */,
  10853. C7938E562364446B00746248 /* ClickOKCell.m in Sources */,
  10854. EB095CDD24D13BBA00493536 /* ReplyModel.m in Sources */,
  10855. C59D0C0023825DE1007D0760 /* YYMemoryCache.m in Sources */,
  10856. C7D6BBB0235DA18A00770E7C /* BaseViewController.m in Sources */,
  10857. EBCE636D24AF2785004C9B3B /* BookChanelleftModel.m in Sources */,
  10858. EB6F002424738F0100808484 /* HomeProblemTopCollectCell.m in Sources */,
  10859. C62215922372A32B006F5D7F /* NoticeUnreadCell.m in Sources */,
  10860. C59D0C4823825DE1007D0760 /* YYKeychain.m in Sources */,
  10861. EBF7176724723CBA00ED1838 /* BookCardPayAlert.m in Sources */,
  10862. EBD623BB25159A66007FF6BC /* WMZPageLoopView.m in Sources */,
  10863. C7D6BB41235DA18A00770E7C /* SearchTypeSection.m in Sources */,
  10864. EB9DA134250333240062FEB8 /* InputTableViewCell.m in Sources */,
  10865. EBCE636A24AEC7BB004C9B3B /* BookChanelModel.m in Sources */,
  10866. C5598D1F23865E7400BC7185 /* AddressBookGroupsModel.m in Sources */,
  10867. C6F2E1DA236D126B009E6903 /* NSString+Tools.m in Sources */,
  10868. EB92E88B23B09AD4008E94CF /* GFCalendarCell.m in Sources */,
  10869. C7D6BB48235DA18A00770E7C /* HomeDetailCommentCell.m in Sources */,
  10870. C625AADD2371029A0010E967 /* MoreAppVC.m in Sources */,
  10871. C62215672371147A006F5D7F /* MoreAppCell.m in Sources */,
  10872. EBB6887123C9C0C300E24DD9 /* MMRichTitleModel.m in Sources */,
  10873. EB44408724A1CA5E00B2E212 /* HomeSubModel.m in Sources */,
  10874. EBF2D54B23C2E76600EC35C4 /* MHTopicCell.m in Sources */,
  10875. C6F2E1B1236D1214009E6903 /* ToolFoundation.m in Sources */,
  10876. EB952681248A0BA6003EFCCE /* DCPageBottomView.m in Sources */,
  10877. C7D6BC88235DA1CE00770E7C /* NoticeTableViewCell.m in Sources */,
  10878. EBBE1CBA24E7C7F100041E04 /* TDGroupDraftListVC.m in Sources */,
  10879. C7D6BC9B235DA1CE00770E7C /* PersonalCertificationTableViewCell.m in Sources */,
  10880. EB674D07242E126C003FEC6D /* MoveSearchVC.m in Sources */,
  10881. C7F61619238B62FF008AF22D /* AddLookUpUserSecondVC.m in Sources */,
  10882. C59D0C2123825DE1007D0760 /* YYTextAttribute.m in Sources */,
  10883. EBB360BE250736FC0018C830 /* BookListenModel.m in Sources */,
  10884. C7D6BC9D235DA1CE00770E7C /* MyDetailViewController.m in Sources */,
  10885. EB85BF50243DDB31006C7A82 /* SearchTabCell.m in Sources */,
  10886. EB8E2CF5239666A900CDFBDA /* amrFileCodec.mm in Sources */,
  10887. EB8E2D25239666A900CDFBDA /* EMRemindManager.m in Sources */,
  10888. 32580E5B23ACA98A005DF500 /* MyNoteBookDetailModel.m in Sources */,
  10889. C7D6BCCA235DD7A700770E7C /* DrawerView.m in Sources */,
  10890. EB9D65A4248E358900636BAC /* BookReadListAlert.m in Sources */,
  10891. C723518923824EDA0037E4F6 /* ArticleZanModel.m in Sources */,
  10892. EB8E2D7E239666A900CDFBDA /* EMMsgTextBubbleView.m in Sources */,
  10893. C7D6BBAE235DA18A00770E7C /* PickerView.m in Sources */,
  10894. C6F2E1AE236C594A009E6903 /* EditPhoneOrEmailVC.m in Sources */,
  10895. EBB6887E23C9C0C300E24DD9 /* UIImage+Util.m in Sources */,
  10896. EBFA5EEB2491F9B100AD38B0 /* ReplayMeLikeVC.m in Sources */,
  10897. EBABACA3248B7A300033B985 /* HKFloatBall.m in Sources */,
  10898. 320FF48723A7283B0009043B /* MyNoteBookModel.m in Sources */,
  10899. EB8E2D7C239666A900CDFBDA /* EMMsgFileBubbleView.m in Sources */,
  10900. C59D0C2C23825DE1007D0760 /* UIView+YYAdd.m in Sources */,
  10901. C72F38FF236DADDC00933828 /* NewMsgAlertVC.m in Sources */,
  10902. C76CC9E123BCA03D003B23DC /* MeetingRecordTitleCell.m in Sources */,
  10903. EBE36C3723A7208E002BE674 /* NewTopicCell.m in Sources */,
  10904. C76745152373A6C4001675FA /* BYHLabelsLayout.m in Sources */,
  10905. EB9F24DE2509CD0C0017479A /* PlayModelVC.m in Sources */,
  10906. C625AAA7236FEF130010E967 /* SPPageMenu.m in Sources */,
  10907. EB0A7391247B8B8B00DB75CB /* BookBillboardVC.m in Sources */,
  10908. C69A8DF32374455C0098FA26 /* ChatInfoUserModel.m in Sources */,
  10909. EB7DD23C2462B62600C6048F /* GroupSquareCell.m in Sources */,
  10910. EB0F64D323AA096A00AD56A0 /* MyTDTopicGroupUserVC.m in Sources */,
  10911. EB8E2D1D239666A900CDFBDA /* UIViewController+Search.m in Sources */,
  10912. EB8E2D0D239666A900CDFBDA /* SDWebImageDecoder.m in Sources */,
  10913. EBC34D802511B41E00A4F133 /* BookTeacherDetailVC.m in Sources */,
  10914. C783741B23AA48F50096AFE2 /* HistoricalWorkFlowDetailsBaseCell.m in Sources */,
  10915. C622709D236C09FC00E2E3BF /* GHRefreshHeader.m in Sources */,
  10916. EB9D6591248DE60600636BAC /* BookReadStlyeAlert.m in Sources */,
  10917. C72F38FE236DADDC00933828 /* AccountSecurityVC.m in Sources */,
  10918. EB1E0F82246D0FF300D4C3DE /* BookContentTopModel.m in Sources */,
  10919. C6F2E1DF236D126B009E6903 /* XTSystem.m in Sources */,
  10920. EBABACA1248B7A300033B985 /* NSObject+hkvc.m in Sources */,
  10921. C7743FA623A8CAA500973D70 /* CollectionViewSpaceLayout.m in Sources */,
  10922. EB8E2D13239666A900CDFBDA /* EMTextFieldViewController.m in Sources */,
  10923. 324D960823A204B300C7D9E8 /* ChatTestingVC.m in Sources */,
  10924. C7D6BCAA235DA1CE00770E7C /* SettingViewController.m in Sources */,
  10925. C7799F0323AB2C6E00270988 /* WorkFlowOrderController.m in Sources */,
  10926. 32580E6923ADF744005DF500 /* FWZGetNoteBookTool.m in Sources */,
  10927. C75958AA2380223B00AE85C0 /* ThesaurusName.m in Sources */,
  10928. C59D0C0823825DE1007D0760 /* UIButton+YYWebImage.m in Sources */,
  10929. C7799F1223AB7E6500270988 /* WorkFlowPersonnelListController.m in Sources */,
  10930. EB44409D24A2110D00B2E212 /* HomeBigshotVC.m in Sources */,
  10931. C59D0C2923825DE1007D0760 /* UITableView+YYAdd.m in Sources */,
  10932. C59D0A452382468A007D0760 /* JSONModelClassProperty.m in Sources */,
  10933. EB8143C224407A3E00C439A9 /* AddChanelNoDataCell.m in Sources */,
  10934. EBBE1CB424E786F200041E04 /* GroupInfoVC.m in Sources */,
  10935. EB8E2D80239666A900CDFBDA /* EMMsgLocationBubbleView.m in Sources */,
  10936. C7716AF923B3435C00D6D45D /* MeetingSummaryListModel.m in Sources */,
  10937. EB8E2D2C239666A900CDFBDA /* EMMoreFunctionView.m in Sources */,
  10938. EBA0FA5B249CC34C0022AFA3 /* UIView+LYLayout.m in Sources */,
  10939. EB8E2CF8239666A900CDFBDA /* MWZoomingScrollView.m in Sources */,
  10940. C59D0C2D23825DE1007D0760 /* UIBarButtonItem+YYAdd.m in Sources */,
  10941. C7D6BBAC235DA18A00770E7C /* NavigationController.m in Sources */,
  10942. EBD6231125148231007FF6BC /* IndexGoodBookCell.m in Sources */,
  10943. C79C6D3B23BF16C500BE4156 /* MeetingDetailsTimeCell.m in Sources */,
  10944. C625AA95236FD1A90010E967 /* ChatMsgSearchHistoryCell.m in Sources */,
  10945. EB4B653424C19E4B0041A82C /* MailGroupListSerachVC.m in Sources */,
  10946. 3220A0C223CC7F34005A347C /* shoujianrenResultView.m in Sources */,
  10947. EB92E88D23B09AD5008E94CF /* NSDate+GFCalendar.m in Sources */,
  10948. 3264781F23BDB47E00E0DC2D /* ChatMsgNoticeDetailVC.m in Sources */,
  10949. EB095CE024D1701600493536 /* ReplayMeSearchVC.m in Sources */,
  10950. C69A8E06237513330098FA26 /* GroupManagementVC.m in Sources */,
  10951. 327E376123A9C90900842F47 /* CreateNoteBookVC.m in Sources */,
  10952. EB03C801249375A400B2EF18 /* BookSelectMusicCell.m in Sources */,
  10953. C69A8DBE2372CFE70098FA26 /* pinyin.m in Sources */,
  10954. C752D21C23755B4400913F97 /* FWZViewController.m in Sources */,
  10955. EB6D86D424977EFA001D3B6C /* GroupSynopsisVC.m in Sources */,
  10956. EBFC605A23FE52DE00A6874B /* HomeCommentView.m in Sources */,
  10957. EB44002C247D12630094C333 /* BookSubArticeVC.m in Sources */,
  10958. C62270AB236C09FC00E2E3BF /* BSAlertView.m in Sources */,
  10959. 324D960F23A206B900C7D9E8 /* TestinCell.m in Sources */,
  10960. C7235185238244B20037E4F6 /* DatasModel.m in Sources */,
  10961. C7D6BB44235DA18A00770E7C /* ReplyDetailController.m in Sources */,
  10962. EBE1E2BD2494A40200DB80BF /* HomeBigshotListCell.m in Sources */,
  10963. C622711F236C0BBC00E2E3BF /* ShowtipTool.m in Sources */,
  10964. EBFDFE472477610F0046E847 /* BookSelectCell.m in Sources */,
  10965. C78373F023A9D82E0096AFE2 /* HistoricalWorkFlowListController.m in Sources */,
  10966. C6F2E199236C334A009E6903 /* LYLPhotoTailoringViewController.m in Sources */,
  10967. C76CC9E623BCA6B6003B23DC /* MeetingRecordContentCell.m in Sources */,
  10968. C59D0C1323825DE1007D0760 /* YYTextEffectWindow.m in Sources */,
  10969. EBBEE5622498763600B135E4 /* SynopsisCollectCell.m in Sources */,
  10970. C69A8E38237546310098FA26 /* ChatSearchFindbyPhotoCell.m in Sources */,
  10971. EB415142246BCD6C00030371 /* BookHomeCell.m in Sources */,
  10972. C768AFB223796C0C00E0A066 /* IgnoreHeaderTouchAndRecognizeSimultaneousTableView.m in Sources */,
  10973. EB77B297239FCAF90050A3C0 /* ChatNewRowCell.m in Sources */,
  10974. C7D6BB46235DA18A00770E7C /* ThirdSharedView.m in Sources */,
  10975. C6F2E1A3236C44D8009E6903 /* ShowGenderAlertView.m in Sources */,
  10976. EB8E2D74239666A900CDFBDA /* EMChatBar.m in Sources */,
  10977. EBF3C53F251353DB00D40A66 /* IndexAllModel.m in Sources */,
  10978. C7D6BBA7235DA18A00770E7C /* UIColor+HexCustomer.m in Sources */,
  10979. C7AB8435235EA93B00F2363F /* SWQRCodeManager.m in Sources */,
  10980. EB8E2D7A239666A900CDFBDA /* EMMsgAudioBubbleView.m in Sources */,
  10981. C6F2E1DD236D126B009E6903 /* UIButton+XTExtension.m in Sources */,
  10982. EB0BDF4D244D49F1009F6434 /* MailListSortVC.m in Sources */,
  10983. C69A8DF7237446670098FA26 /* ChatInfoUserCollectionCell.m in Sources */,
  10984. EB6E84D0246F99A200BE0524 /* HomeSchoolCell.m in Sources */,
  10985. C7D6BCB0235DA1CE00770E7C /* SettingModel.m in Sources */,
  10986. C59D0C0123825DE1007D0760 /* YYImageCache.m in Sources */,
  10987. C59D0C4A23825DE1007D0760 /* YYFileHash.m in Sources */,
  10988. C59D0A462382468A007D0760 /* JSONHTTPClient.m in Sources */,
  10989. C622709C236C09FC00E2E3BF /* CarRefreshHeadView.m in Sources */,
  10990. EB8E2D55239666A900CDFBDA /* EMChatBarRecordAudioView.m in Sources */,
  10991. C59D0C2523825DE1007D0760 /* UIBezierPath+YYAdd.m in Sources */,
  10992. EB9D6599248E003000636BAC /* BookReadStlyeCell.m in Sources */,
  10993. EBFA3765240391A900A584FC /* WebDetailCell.m in Sources */,
  10994. C7D6BB3E235DA18A00770E7C /* HomeSearchController.m in Sources */,
  10995. EB8E2DB623989B1900CDFBDA /* chatInfoGroupChatModel.m in Sources */,
  10996. EBD623F4251605F7007FF6BC /* CenterTouchTableView.m in Sources */,
  10997. EB7955CF24C6B0BB00EE9A55 /* TopicBookCell.m in Sources */,
  10998. C795C62F23744CD00042300F /* GoDisscussView.m in Sources */,
  10999. C7D6BC7E235DA1CE00770E7C /* MyOrderViewController.m in Sources */,
  11000. C59D0C1623825DE1007D0760 /* YYTextLine.m in Sources */,
  11001. EBB8D06C251D818B0051C897 /* BookLabelSearchVC.m in Sources */,
  11002. EB6A3D5624A8ADC60067DBFA /* BookHomeSubNumCell.m in Sources */,
  11003. EBE5EF192459478A00AD59C4 /* CommonToolMoveVC.m in Sources */,
  11004. EBB6886F23C9C0C300E24DD9 /* MMDraftUtil.m in Sources */,
  11005. EB3B6C8224BD985800FA60F8 /* MailModel.m in Sources */,
  11006. C74E72EA23D2FF2B00BD1271 /* DepartureController.m in Sources */,
  11007. EB8E2D02239666A900CDFBDA /* PSTCollectionViewCell.m in Sources */,
  11008. C7B8646C23C9CE810090F2A3 /* SwipeView.m in Sources */,
  11009. C69A8E2223753A700098FA26 /* ChatSearchFindbyDateVC.m in Sources */,
  11010. C732D3A92394E8C20097A059 /* WorkFlowFileModel.m in Sources */,
  11011. 324D962D23A24E3700C7D9E8 /* FindShareTypeCell.m in Sources */,
  11012. C6227129236C11A800E2E3BF /* GHThemeManager.m in Sources */,
  11013. EB8E2CFC239666A900CDFBDA /* MWTapDetectingView.m in Sources */,
  11014. EB03C80524937C2000B2EF18 /* BookSelectMusicModel.m in Sources */,
  11015. C62270A7236C09FC00E2E3BF /* StoryboardManager.m in Sources */,
  11016. C7D6BBA2235DA18A00770E7C /* UIView+Corner.m in Sources */,
  11017. EB8E2D04239666A900CDFBDA /* PSTCollectionViewData.m in Sources */,
  11018. C7D6BBB7235DA18A00770E7C /* TabBarController.m in Sources */,
  11019. 32C384CF23B3416800BBC733 /* InterLeterModel.m in Sources */,
  11020. EB8E2CD4239666A800CDFBDA /* EMEmojiHelper.m in Sources */,
  11021. EB03C7FC2493703100B2EF18 /* BookSelectMusicAlert.m in Sources */,
  11022. EBD29F2825021AF400AEB04C /* BookListDetailVC.m in Sources */,
  11023. C7974A4A236C4D2A004D5470 /* MyWorkWordCell.m in Sources */,
  11024. C622156C23714B00006F5D7F /* ChatMsgListImModel.m in Sources */,
  11025. EBD29F302502420A00AEB04C /* BookListModel.m in Sources */,
  11026. EB3DCA4F24555299000A0189 /* ShareSysVC.m in Sources */,
  11027. EB415151246C001D00030371 /* BookMingVC.m in Sources */,
  11028. C79C6D3523BF0A5500BE4156 /* MyMeetingTimeView.m in Sources */,
  11029. C72F3902236DADDC00933828 /* FeedBackVC.m in Sources */,
  11030. EB8E2D18239666A900CDFBDA /* EMAlertController.m in Sources */,
  11031. C7954B4B237E799200EDC479 /* Addressbookgroup.m in Sources */,
  11032. EB6F002D2473B19300808484 /* BookWeiCourseListVC.m in Sources */,
  11033. EB0FA5D0241F6DBD00BF8558 /* HomeScrCell.m in Sources */,
  11034. C7404E77238E1BCF00DB19AC /* MyApprovalFileCell.m in Sources */,
  11035. EB5E18C5247F88E800EDB76E /* BookPublicBookCell.m in Sources */,
  11036. EB820AD523BC48CF00B96C6C /* ChatMoveModel.m in Sources */,
  11037. EB8E2D05239666A900CDFBDA /* NSIndexPath+PSTCollectionViewAdditions.m in Sources */,
  11038. EBCC209424B726EC001BDCDC /* UILabel+YBAttributeTextTapAction.m in Sources */,
  11039. EBD623DE2515CBA3007FF6BC /* SecondViewController.m in Sources */,
  11040. EB1D158824C8329D00C82FED /* MoveMegAlert.m in Sources */,
  11041. EBDF42A324ADB91D00D5F0E4 /* BookSelectSubModel.m in Sources */,
  11042. C7E17CC0236D7F7800C53DB8 /* InPutGongWenCell.m in Sources */,
  11043. EB440FCF23A33982006BCB95 /* TDGroupInfoModel.m in Sources */,
  11044. C59D0BFF23825DE1007D0760 /* YYKVStorage.m in Sources */,
  11045. 324D963B23A3BD5700C7D9E8 /* MyCenterSearchVC.m in Sources */,
  11046. EB8E2DA9239666A900CDFBDA /* EMAudioPlayerHelper.mm in Sources */,
  11047. C7525DF923895918004B9D71 /* SelectModel.m in Sources */,
  11048. C7037FF3236FC3DC008EA3E4 /* SendInfoGroupSubTwoModel.m in Sources */,
  11049. EB9DA1222503330B0062FEB8 /* TTSConfigViewController.m in Sources */,
  11050. C7D6BCB4235DA1CE00770E7C /* AccountAndSecurityTableViewCell.m in Sources */,
  11051. C59D0C3F23825DE1007D0760 /* NSObject+YYAddForKVO.m in Sources */,
  11052. EBB240312480B46A00EECD15 /* BookPeriodicaListCell.m in Sources */,
  11053. EB952683248A0BA6003EFCCE /* DCPageTopView.m in Sources */,
  11054. EB629DFC2415E28900A5E0EE /* MeetingDataModel.m in Sources */,
  11055. C7938E51236443AA00746248 /* ClickOKViewController.m in Sources */,
  11056. EBC2E143243C2DF30054E422 /* EMMsgExtSmartBubbleView.m in Sources */,
  11057. C69A8E1F23753A150098FA26 /* UIColor+Extension.m in Sources */,
  11058. C7037FF0236FC317008EA3E4 /* SendInfoGroupSubModel.m in Sources */,
  11059. EB2E470223A47B9000CAF0D3 /* NewRowUserCell.m in Sources */,
  11060. C59D0A3F2382468A007D0760 /* NSArray+JSONModel.m in Sources */,
  11061. C59D0C3723825DE1007D0760 /* NSThread+YYAdd.m in Sources */,
  11062. C59D0C4223825DE1007D0760 /* YYWeakProxy.m in Sources */,
  11063. 32C384CB23B329E700BBC733 /* TDInterLeterTypeVC.m in Sources */,
  11064. C746485B2376E7F200876BA2 /* TDInterLeterHomeViewController.m in Sources */,
  11065. C7D6BCBC235DA1CE00770E7C /* LoginViewController.m in Sources */,
  11066. C59D0C2F23825DE1007D0760 /* UIImage+YYAdd.m in Sources */,
  11067. EB92E88A23B09AD4008E94CF /* GFCalendarScrollView.m in Sources */,
  11068. C7AB8434235EA93B00F2363F /* SWQRCodeConfig.m in Sources */,
  11069. C7D6BBB5235DA18A00770E7C /* TDTableViewCell.m in Sources */,
  11070. EB44982924E3E13D0040A9FF /* GroupListView.m in Sources */,
  11071. EBB6886E23C9C0C300E24DD9 /* MMFileUploadUtil.m in Sources */,
  11072. EBF64A76241C73510074FD55 /* WorkFlowFecordSearchVC.m in Sources */,
  11073. EB2E46FD23A46B5F00CAF0D3 /* TDGroupSearchCell.m in Sources */,
  11074. EB44409624A1F5D200B2E212 /* IndexViewController.m in Sources */,
  11075. C7037FF7236FC847008EA3E4 /* SendInfoGroupCell.m in Sources */,
  11076. C7D6BCBA235DA1CE00770E7C /* LearninglistTableViewCell.m in Sources */,
  11077. C622156F2371501E006F5D7F /* ChatNewGroupVC.m in Sources */,
  11078. EBCCD86D24C2DC57000D6689 /* MailChatVC.m in Sources */,
  11079. EB5E18CC247F969D00EDB76E /* BookPeriodicaDetailVC.m in Sources */,
  11080. EB3EAFD823A1D1FC00C38AB4 /* MenuListView.m in Sources */,
  11081. C7D6BBB4235DA18A00770E7C /* BaseModel.m in Sources */,
  11082. C62270AA236C09FC00E2E3BF /* DatePikerView.m in Sources */,
  11083. C7799EF923AB1DF100270988 /* WorkFlowOrderCell.m in Sources */,
  11084. EB0DBF0723ADA8EE00E977ED /* MyTDTSEModel.m in Sources */,
  11085. C59D0BFE23825DE1007D0760 /* YYCache.m in Sources */,
  11086. EB3CB79924E5152800F399E7 /* NoteTopicDraftListVC.m in Sources */,
  11087. C7954B4F237EAD0A00EDC479 /* AddressUserModel.m in Sources */,
  11088. EB8143BD2440502B00C439A9 /* HomeListWorkCell.m in Sources */,
  11089. C59D0A472382468A007D0760 /* JSONAPI.m in Sources */,
  11090. EB195A5D252185E000EA68D3 /* BookCommentVC.m in Sources */,
  11091. C59D0C1423825DE1007D0760 /* YYTextInput.m in Sources */,
  11092. EBB588CE252064B9005B3988 /* BookGongzhSearchVC.m in Sources */,
  11093. );
  11094. runOnlyForDeploymentPostprocessing = 0;
  11095. };
  11096. /* End PBXSourcesBuildPhase section */
  11097. /* Begin PBXVariantGroup section */
  11098. C7D6B9D8235D7D7600770E7C /* LaunchScreen.storyboard */ = {
  11099. isa = PBXVariantGroup;
  11100. children = (
  11101. C7D6B9D9235D7D7600770E7C /* Base */,
  11102. EBC55C5B2441A17200CE4F86 /* zh-Hans */,
  11103. );
  11104. name = LaunchScreen.storyboard;
  11105. sourceTree = "<group>";
  11106. };
  11107. /* End PBXVariantGroup section */
  11108. /* Begin XCBuildConfiguration section */
  11109. C7D6B9DE235D7D7600770E7C /* Debug */ = {
  11110. isa = XCBuildConfiguration;
  11111. buildSettings = {
  11112. ALWAYS_SEARCH_USER_PATHS = NO;
  11113. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  11114. CLANG_ANALYZER_NONNULL = YES;
  11115. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  11116. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  11117. CLANG_CXX_LIBRARY = "libc++";
  11118. CLANG_ENABLE_MODULES = YES;
  11119. CLANG_ENABLE_OBJC_ARC = YES;
  11120. CLANG_ENABLE_OBJC_WEAK = YES;
  11121. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  11122. CLANG_WARN_BOOL_CONVERSION = YES;
  11123. CLANG_WARN_COMMA = YES;
  11124. CLANG_WARN_CONSTANT_CONVERSION = YES;
  11125. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  11126. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  11127. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  11128. CLANG_WARN_EMPTY_BODY = YES;
  11129. CLANG_WARN_ENUM_CONVERSION = YES;
  11130. CLANG_WARN_INFINITE_RECURSION = YES;
  11131. CLANG_WARN_INT_CONVERSION = YES;
  11132. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  11133. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  11134. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  11135. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  11136. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  11137. CLANG_WARN_STRICT_PROTOTYPES = YES;
  11138. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  11139. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  11140. CLANG_WARN_UNREACHABLE_CODE = YES;
  11141. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  11142. COPY_PHASE_STRIP = NO;
  11143. DEBUG_INFORMATION_FORMAT = dwarf;
  11144. ENABLE_STRICT_OBJC_MSGSEND = YES;
  11145. ENABLE_TESTABILITY = YES;
  11146. GCC_C_LANGUAGE_STANDARD = gnu11;
  11147. GCC_DYNAMIC_NO_PIC = NO;
  11148. GCC_NO_COMMON_BLOCKS = YES;
  11149. GCC_OPTIMIZATION_LEVEL = 0;
  11150. GCC_PREPROCESSOR_DEFINITIONS = (
  11151. "SD_WEBP=1",
  11152. "DEBUG=1",
  11153. "$(inherited)",
  11154. );
  11155. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  11156. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  11157. GCC_WARN_UNDECLARED_SELECTOR = YES;
  11158. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  11159. GCC_WARN_UNUSED_FUNCTION = YES;
  11160. GCC_WARN_UNUSED_VARIABLE = YES;
  11161. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  11162. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  11163. MTL_FAST_MATH = YES;
  11164. ONLY_ACTIVE_ARCH = YES;
  11165. SDKROOT = iphoneos;
  11166. };
  11167. name = Debug;
  11168. };
  11169. C7D6B9DF235D7D7600770E7C /* Release */ = {
  11170. isa = XCBuildConfiguration;
  11171. buildSettings = {
  11172. ALWAYS_SEARCH_USER_PATHS = NO;
  11173. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  11174. CLANG_ANALYZER_NONNULL = YES;
  11175. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  11176. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  11177. CLANG_CXX_LIBRARY = "libc++";
  11178. CLANG_ENABLE_MODULES = YES;
  11179. CLANG_ENABLE_OBJC_ARC = YES;
  11180. CLANG_ENABLE_OBJC_WEAK = YES;
  11181. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  11182. CLANG_WARN_BOOL_CONVERSION = YES;
  11183. CLANG_WARN_COMMA = YES;
  11184. CLANG_WARN_CONSTANT_CONVERSION = YES;
  11185. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  11186. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  11187. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  11188. CLANG_WARN_EMPTY_BODY = YES;
  11189. CLANG_WARN_ENUM_CONVERSION = YES;
  11190. CLANG_WARN_INFINITE_RECURSION = YES;
  11191. CLANG_WARN_INT_CONVERSION = YES;
  11192. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  11193. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  11194. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  11195. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  11196. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  11197. CLANG_WARN_STRICT_PROTOTYPES = YES;
  11198. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  11199. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  11200. CLANG_WARN_UNREACHABLE_CODE = YES;
  11201. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  11202. COPY_PHASE_STRIP = NO;
  11203. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  11204. ENABLE_NS_ASSERTIONS = NO;
  11205. ENABLE_STRICT_OBJC_MSGSEND = YES;
  11206. GCC_C_LANGUAGE_STANDARD = gnu11;
  11207. GCC_NO_COMMON_BLOCKS = YES;
  11208. GCC_PREPROCESSOR_DEFINITIONS = "SD_WEBP=1";
  11209. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  11210. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  11211. GCC_WARN_UNDECLARED_SELECTOR = YES;
  11212. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  11213. GCC_WARN_UNUSED_FUNCTION = YES;
  11214. GCC_WARN_UNUSED_VARIABLE = YES;
  11215. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  11216. MTL_ENABLE_DEBUG_INFO = NO;
  11217. MTL_FAST_MATH = YES;
  11218. ONLY_ACTIVE_ARCH = YES;
  11219. SDKROOT = iphoneos;
  11220. VALIDATE_PRODUCT = YES;
  11221. };
  11222. name = Release;
  11223. };
  11224. C7D6B9E1235D7D7600770E7C /* Debug */ = {
  11225. isa = XCBuildConfiguration;
  11226. baseConfigurationReference = 08851DEDD839FAF399E8A0D5 /* Pods-smartRhino.debug.xcconfig */;
  11227. buildSettings = {
  11228. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  11229. CLANG_ENABLE_MODULES = YES;
  11230. CODE_SIGN_ENTITLEMENTS = "smartRhino/泰德信源.entitlements";
  11231. CODE_SIGN_IDENTITY = "Apple Development";
  11232. CODE_SIGN_STYLE = Automatic;
  11233. CURRENT_PROJECT_VERSION = 1.0;
  11234. DEVELOPMENT_TEAM = 6L67QMCKYQ;
  11235. FRAMEWORK_SEARCH_PATHS = (
  11236. "$(inherited)",
  11237. "$(PROJECT_DIR)/smartRhino/Project/VCModel/ChatMessage/Controller/ChatMsg/Chat/Helper",
  11238. );
  11239. GCC_INCREASE_PRECOMPILED_HEADER_SHARING = NO;
  11240. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  11241. GCC_PREFIX_HEADER = "$(SRCROOT)/smartRhino/SmartRhino-Prefix.pch";
  11242. GCC_PREPROCESSOR_DEFINITIONS = (
  11243. "$(inherited)",
  11244. "COCOAPODS=1",
  11245. "SD_WEBP=1",
  11246. );
  11247. INFOPLIST_FILE = smartRhino/Info.plist;
  11248. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  11249. LD_RUNPATH_SEARCH_PATHS = (
  11250. "$(inherited)",
  11251. "@executable_path/Frameworks",
  11252. );
  11253. LIBRARY_SEARCH_PATHS = (
  11254. "$(inherited)",
  11255. "$(PROJECT_DIR)/smartRhino/Project/Other/Third/libwebp-0.5.1-ios-framework",
  11256. "$(PROJECT_DIR)/smartRhino/Project/ChatMessage/Controller/Helper/3rdParty/VoiceConvert",
  11257. "$(PROJECT_DIR)/smartRhino/Project/ChatMessage/Controller/EMChat/Helper/3rdParty/VoiceConvert",
  11258. "$(PROJECT_DIR)/smartRhino/Project/VCModel/ChatMessage/Controller/ChatMsg/Helper/3rdParty/VoiceConvert",
  11259. "$(PROJECT_DIR)/smartRhino/Project/VCModel/ChatMessage/Controller/Helper/3rdParty/VoiceConvert",
  11260. "$(PROJECT_DIR)/smartRhino/Project/VCModel/ChatMessage/Helper/3rdParty/VoiceConvert",
  11261. "$(PROJECT_DIR)/smartRhino/Project/Other/Third/BaiduAIBD/BDSClientLib",
  11262. );
  11263. MACH_O_TYPE = mh_execute;
  11264. OTHER_LDFLAGS = (
  11265. "$(inherited)",
  11266. "-ObjC",
  11267. "-l\"resolv\"",
  11268. "-l\"z\"",
  11269. "-framework",
  11270. "\"AFNetworking\"",
  11271. "-framework",
  11272. "\"CFNetwork\"",
  11273. "-framework",
  11274. "\"CoreFoundation\"",
  11275. "-framework",
  11276. "\"CoreGraphics\"",
  11277. "-framework",
  11278. "\"CoreTelephony\"",
  11279. "-framework",
  11280. "\"FDFullscreenPopGesture\"",
  11281. "-framework",
  11282. "\"Foundation\"",
  11283. "-framework",
  11284. "\"ImageIO\"",
  11285. "-framework",
  11286. "\"MJRefresh\"",
  11287. "-framework",
  11288. "\"MOFSPickerManager\"",
  11289. "-framework",
  11290. "\"Masonry\"",
  11291. "-framework",
  11292. "\"MobileCoreServices\"",
  11293. "-framework",
  11294. "\"PGDatePicker\"",
  11295. "-framework",
  11296. "\"PGPickerView\"",
  11297. "-framework",
  11298. "\"QuartzCore\"",
  11299. "-framework",
  11300. "\"SDCycleScrollView\"",
  11301. "-framework",
  11302. "\"SDWebImage\"",
  11303. "-framework",
  11304. "\"SVProgressHUD\"",
  11305. "-framework",
  11306. "\"Security\"",
  11307. "-framework",
  11308. "\"SystemConfiguration\"",
  11309. "-framework",
  11310. "\"UIKit\"",
  11311. "-weak_framework",
  11312. "\"UserNotifications\"",
  11313. "-all_load",
  11314. );
  11315. PRODUCT_BUNDLE_IDENTIFIER = com.tedehezhong.tdxy;
  11316. PRODUCT_NAME = "泰德信源";
  11317. PROVISIONING_PROFILE_SPECIFIER = "";
  11318. SWIFT_OBJC_BRIDGING_HEADER = "smartRhino/smartRhino-Bridging-Header.h";
  11319. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  11320. SWIFT_VERSION = 5.0;
  11321. TARGETED_DEVICE_FAMILY = 1;
  11322. };
  11323. name = Debug;
  11324. };
  11325. C7D6B9E2235D7D7600770E7C /* Release */ = {
  11326. isa = XCBuildConfiguration;
  11327. baseConfigurationReference = A2ECBA5887EB2D678A3A928A /* Pods-smartRhino.release.xcconfig */;
  11328. buildSettings = {
  11329. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  11330. CLANG_ENABLE_MODULES = YES;
  11331. CODE_SIGN_ENTITLEMENTS = "smartRhino/泰德信源.entitlements";
  11332. CODE_SIGN_IDENTITY = "Apple Development";
  11333. CODE_SIGN_STYLE = Automatic;
  11334. CURRENT_PROJECT_VERSION = 1.0;
  11335. DEVELOPMENT_TEAM = 6L67QMCKYQ;
  11336. FRAMEWORK_SEARCH_PATHS = (
  11337. "$(inherited)",
  11338. "$(PROJECT_DIR)/smartRhino/Project/VCModel/ChatMessage/Controller/ChatMsg/Chat/Helper",
  11339. );
  11340. GCC_INCREASE_PRECOMPILED_HEADER_SHARING = NO;
  11341. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  11342. GCC_PREFIX_HEADER = "$(SRCROOT)/smartRhino/SmartRhino-Prefix.pch";
  11343. GCC_PREPROCESSOR_DEFINITIONS = (
  11344. "$(inherited)",
  11345. "COCOAPODS=1",
  11346. "SD_WEBP=1",
  11347. );
  11348. INFOPLIST_FILE = smartRhino/Info.plist;
  11349. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  11350. LD_RUNPATH_SEARCH_PATHS = (
  11351. "$(inherited)",
  11352. "@executable_path/Frameworks",
  11353. );
  11354. LIBRARY_SEARCH_PATHS = (
  11355. "$(inherited)",
  11356. "$(PROJECT_DIR)/smartRhino/Project/Other/Third/libwebp-0.5.1-ios-framework",
  11357. "$(PROJECT_DIR)/smartRhino/Project/ChatMessage/Controller/Helper/3rdParty/VoiceConvert",
  11358. "$(PROJECT_DIR)/smartRhino/Project/ChatMessage/Controller/EMChat/Helper/3rdParty/VoiceConvert",
  11359. "$(PROJECT_DIR)/smartRhino/Project/VCModel/ChatMessage/Controller/ChatMsg/Helper/3rdParty/VoiceConvert",
  11360. "$(PROJECT_DIR)/smartRhino/Project/VCModel/ChatMessage/Controller/Helper/3rdParty/VoiceConvert",
  11361. "$(PROJECT_DIR)/smartRhino/Project/VCModel/ChatMessage/Helper/3rdParty/VoiceConvert",
  11362. "$(PROJECT_DIR)/smartRhino/Project/Other/Third/BaiduAIBD/BDSClientLib",
  11363. );
  11364. MACH_O_TYPE = mh_execute;
  11365. OTHER_LDFLAGS = (
  11366. "$(inherited)",
  11367. "-ObjC",
  11368. "-l\"resolv\"",
  11369. "-l\"z\"",
  11370. "-framework",
  11371. "\"AFNetworking\"",
  11372. "-framework",
  11373. "\"CFNetwork\"",
  11374. "-framework",
  11375. "\"CoreFoundation\"",
  11376. "-framework",
  11377. "\"CoreGraphics\"",
  11378. "-framework",
  11379. "\"CoreTelephony\"",
  11380. "-framework",
  11381. "\"FDFullscreenPopGesture\"",
  11382. "-framework",
  11383. "\"Foundation\"",
  11384. "-framework",
  11385. "\"ImageIO\"",
  11386. "-framework",
  11387. "\"MJRefresh\"",
  11388. "-framework",
  11389. "\"MOFSPickerManager\"",
  11390. "-framework",
  11391. "\"Masonry\"",
  11392. "-framework",
  11393. "\"MobileCoreServices\"",
  11394. "-framework",
  11395. "\"PGDatePicker\"",
  11396. "-framework",
  11397. "\"PGPickerView\"",
  11398. "-framework",
  11399. "\"QuartzCore\"",
  11400. "-framework",
  11401. "\"SDCycleScrollView\"",
  11402. "-framework",
  11403. "\"SDWebImage\"",
  11404. "-framework",
  11405. "\"SVProgressHUD\"",
  11406. "-framework",
  11407. "\"Security\"",
  11408. "-framework",
  11409. "\"SystemConfiguration\"",
  11410. "-framework",
  11411. "\"UIKit\"",
  11412. "-weak_framework",
  11413. "\"UserNotifications\"",
  11414. "-all_load",
  11415. );
  11416. PRODUCT_BUNDLE_IDENTIFIER = com.tedehezhong.tdxy;
  11417. PRODUCT_NAME = "泰德信源";
  11418. PROVISIONING_PROFILE_SPECIFIER = "";
  11419. SWIFT_OBJC_BRIDGING_HEADER = "smartRhino/smartRhino-Bridging-Header.h";
  11420. SWIFT_VERSION = 5.0;
  11421. TARGETED_DEVICE_FAMILY = 1;
  11422. };
  11423. name = Release;
  11424. };
  11425. /* End XCBuildConfiguration section */
  11426. /* Begin XCConfigurationList section */
  11427. C7D6B9C2235D7D7200770E7C /* Build configuration list for PBXProject "smartRhino" */ = {
  11428. isa = XCConfigurationList;
  11429. buildConfigurations = (
  11430. C7D6B9DE235D7D7600770E7C /* Debug */,
  11431. C7D6B9DF235D7D7600770E7C /* Release */,
  11432. );
  11433. defaultConfigurationIsVisible = 0;
  11434. defaultConfigurationName = Release;
  11435. };
  11436. C7D6B9E0235D7D7600770E7C /* Build configuration list for PBXNativeTarget "smartRhino" */ = {
  11437. isa = XCConfigurationList;
  11438. buildConfigurations = (
  11439. C7D6B9E1235D7D7600770E7C /* Debug */,
  11440. C7D6B9E2235D7D7600770E7C /* Release */,
  11441. );
  11442. defaultConfigurationIsVisible = 0;
  11443. defaultConfigurationName = Release;
  11444. };
  11445. /* End XCConfigurationList section */
  11446. };
  11447. rootObject = C7D6B9BF235D7D7200770E7C /* Project object */;
  11448. }