project.pbxproj 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 77;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. A80327B02D813A0200AF7878 /* TSTTPSelectStyleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327AF2D8139FC00AF7878 /* TSTTPSelectStyleCell.swift */; };
  10. A80327B32D813D4900AF7878 /* TSTTPInputVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327B22D813D4800AF7878 /* TSTTPInputVC.swift */; };
  11. A80327B62D813D8700AF7878 /* TSTTPInputVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327B52D813D8100AF7878 /* TSTTPInputVM.swift */; };
  12. A80327BF2D81578900AF7878 /* TSPromptTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327BE2D81576C00AF7878 /* TSPromptTextView.swift */; };
  13. A80327C12D8157CB00AF7878 /* TSTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327C02D8157C500AF7878 /* TSTitleView.swift */; };
  14. A80327C32D81581D00AF7878 /* TSTTPStyleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327C22D81580800AF7878 /* TSTTPStyleView.swift */; };
  15. A80327C52D81584500AF7878 /* TSGeneralBtnView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327C42D81582F00AF7878 /* TSGeneralBtnView.swift */; };
  16. A80E721A2D3F393A00C64288 /* DiyStickerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72192D3F393500C64288 /* DiyStickerModel.swift */; };
  17. A80E721E2D3F3A7500C64288 /* DiyElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E721D2D3F3A7500C64288 /* DiyElement.swift */; };
  18. A80E72202D3F3A8600C64288 /* DiyElementBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E721F2D3F3A8600C64288 /* DiyElementBaseView.swift */; };
  19. A80E72222D3F3A9200C64288 /* DiyStickerElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72212D3F3A9200C64288 /* DiyStickerElement.swift */; };
  20. A80E72262D3F3A9A00C64288 /* HYHAddImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = A80E72252D3F3A9A00C64288 /* HYHAddImageView.m */; };
  21. A80E72272D3F3A9A00C64288 /* DiyTextElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72232D3F3A9A00C64288 /* DiyTextElement.swift */; };
  22. A80E722F2D3F3E1400C64288 /* TSDiyCanvasView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E722E2D3F3E0C00C64288 /* TSDiyCanvasView.swift */; };
  23. A80E72352D3F473400C64288 /* DiyPaperTemplateBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72342D3F473400C64288 /* DiyPaperTemplateBaseView.swift */; };
  24. A80E72362D3F473400C64288 /* DiyPaperTemplate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72332D3F473400C64288 /* DiyPaperTemplate.swift */; };
  25. A80E72382D3F473B00C64288 /* DiyPaperProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72372D3F473B00C64288 /* DiyPaperProtocol.swift */; };
  26. A80E723C2D3F4CAA00C64288 /* Food🍔.json in Resources */ = {isa = PBXBuildFile; fileRef = A80E723B2D3F4CA700C64288 /* Food🍔.json */; };
  27. A80E723F2D3F4D3700C64288 /* Universe🌍.json in Resources */ = {isa = PBXBuildFile; fileRef = A80E723E2D3F4D3000C64288 /* Universe🌍.json */; };
  28. A80E72462D3F4EED00C64288 /* sticker.json in Resources */ = {isa = PBXBuildFile; fileRef = A80E72452D3F4EED00C64288 /* sticker.json */; };
  29. A80E72482D3F4F0A00C64288 /* templates.json in Resources */ = {isa = PBXBuildFile; fileRef = A80E72472D3F4F0500C64288 /* templates.json */; };
  30. A80E724F2D3F6D7F00C64288 /* DiyFixedTextElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E724E2D3F6D6000C64288 /* DiyFixedTextElement.swift */; };
  31. A80E72532D3F985E00C64288 /* TSWallpaperVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72522D3F985D00C64288 /* TSWallpaperVC.swift */; };
  32. A80E72562D3F98D700C64288 /* TSDiyKeyboardViewVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72552D3F98D600C64288 /* TSDiyKeyboardViewVC.swift */; };
  33. A80E72592D3FA67800C64288 /* TSWallpaperViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72582D3FA65E00C64288 /* TSWallpaperViewModel.swift */; };
  34. A80E725C2D3FB09400C64288 /* TSKeyboardView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E725B2D3FB09100C64288 /* TSKeyboardView.swift */; };
  35. A80E72632D40925000C64288 /* TSDiyKeyboardVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72622D40924500C64288 /* TSDiyKeyboardVM.swift */; };
  36. A80E72652D409B0D00C64288 /* DiyStaticElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72642D409B0D00C64288 /* DiyStaticElement.swift */; };
  37. A80E72672D409C7D00C64288 /* Template+More.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72662D409C7D00C64288 /* Template+More.swift */; };
  38. A80E726A2D409E5400C64288 /* TSDiyTLYFlowersView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72692D409D9400C64288 /* TSDiyTLYFlowersView.swift */; };
  39. A80E726C2D409E8300C64288 /* TSDiyTLPinkAnimalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E726B2D409E8000C64288 /* TSDiyTLPinkAnimalView.swift */; };
  40. A80E726F2D40DE2B00C64288 /* TSWallpaperPreviewVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E726E2D40DE2900C64288 /* TSWallpaperPreviewVC.swift */; };
  41. A80E72722D40F86000C64288 /* TSLaunchVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72712D40F86000C64288 /* TSLaunchVC.swift */; };
  42. A80E72772D41EFF900C64288 /* TSEmojisTutorialsVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72762D41EFF700C64288 /* TSEmojisTutorialsVC.swift */; };
  43. A80E72792D42285500C64288 /* TSBootPageVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72782D42285500C64288 /* TSBootPageVC.swift */; };
  44. A80E73E12D533E5800C64288 /* TSPurchaseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E73D82D533E5800C64288 /* TSPurchaseVC.swift */; };
  45. A80E73E42D533EB000C64288 /* TSPurchaseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E73E22D533EB000C64288 /* TSPurchaseManager.swift */; };
  46. A80E73E62D5348D000C64288 /* SettingPurchaseTopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E73E52D5348CF00C64288 /* SettingPurchaseTopView.swift */; };
  47. A80EDD032D6C282B003CD332 /* TSMarkDownTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD022D6C281E003CD332 /* TSMarkDownTool.swift */; };
  48. A80EDD462D6C3F82003CD332 /* MarkdownEscaping.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD1B2D6C3F82003CD332 /* MarkdownEscaping.swift */; };
  49. A80EDD472D6C3F82003CD332 /* MarkdownItalic.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD202D6C3F82003CD332 /* MarkdownItalic.swift */; };
  50. A80EDD482D6C3F82003CD332 /* MarkdownBold.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD162D6C3F82003CD332 /* MarkdownBold.swift */; };
  51. A80EDD4A2D6C3F82003CD332 /* MarkdownLevelElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD302D6C3F82003CD332 /* MarkdownLevelElement.swift */; };
  52. A80EDD4B2D6C3F82003CD332 /* MarkdownParser+AppKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD142D6C3F82003CD332 /* MarkdownParser+AppKit.swift */; };
  53. A80EDD4C2D6C3F82003CD332 /* Typealias.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD352D6C3F82003CD332 /* Typealias.swift */; };
  54. A80EDD4D2D6C3F82003CD332 /* MarkdownStrikethrough.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD292D6C3F82003CD332 /* MarkdownStrikethrough.swift */; };
  55. A80EDD4E2D6C3F82003CD332 /* MarkdownUnescaping.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD1C2D6C3F82003CD332 /* MarkdownUnescaping.swift */; };
  56. A80EDD4F2D6C3F82003CD332 /* MarkdownParser+UIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD402D6C3F82003CD332 /* MarkdownParser+UIKit.swift */; };
  57. A80EDD502D6C3F82003CD332 /* MarkdownFont+Traits.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD122D6C3F82003CD332 /* MarkdownFont+Traits.swift */; };
  58. A80EDD512D6C3F82003CD332 /* MarkdownCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD182D6C3F82003CD332 /* MarkdownCode.swift */; };
  59. A80EDD522D6C3F82003CD332 /* MarkdownCode+AppKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD0B2D6C3F82003CD332 /* MarkdownCode+AppKit.swift */; };
  60. A80EDD532D6C3F82003CD332 /* MarkdownHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD1E2D6C3F82003CD332 /* MarkdownHeader.swift */; };
  61. A80EDD542D6C3F82003CD332 /* MarkdownQuote.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD272D6C3F82003CD332 /* MarkdownQuote.swift */; };
  62. A80EDD552D6C3F82003CD332 /* UIFont+Traits.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD3E2D6C3F82003CD332 /* UIFont+Traits.swift */; };
  63. A80EDD562D6C3F82003CD332 /* MarkdownHeader+AppKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD0D2D6C3F82003CD332 /* MarkdownHeader+AppKit.swift */; };
  64. A80EDD572D6C3F82003CD332 /* MarkdownCode+UIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD372D6C3F82003CD332 /* MarkdownCode+UIKit.swift */; };
  65. A80EDD582D6C3F82003CD332 /* String+UTF16.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD2C2D6C3F82003CD332 /* String+UTF16.swift */; };
  66. A80EDD592D6C3F82003CD332 /* MarkdownLink+UIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD3B2D6C3F82003CD332 /* MarkdownLink+UIKit.swift */; };
  67. A80EDD5A2D6C3F82003CD332 /* MarkdownParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD342D6C3F82003CD332 /* MarkdownParser.swift */; };
  68. A80EDD5B2D6C3F82003CD332 /* MarkdownCommonElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD2E2D6C3F82003CD332 /* MarkdownCommonElement.swift */; };
  69. A80EDD5C2D6C3F82003CD332 /* MarkdownList.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD252D6C3F82003CD332 /* MarkdownList.swift */; };
  70. A80EDD5D2D6C3F82003CD332 /* MarkdownCodeEscaping.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD1A2D6C3F82003CD332 /* MarkdownCodeEscaping.swift */; };
  71. A80EDD5E2D6C3F82003CD332 /* MarkdownLinkElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD312D6C3F82003CD332 /* MarkdownLinkElement.swift */; };
  72. A80EDD5F2D6C3F82003CD332 /* MarkdownHeader+UIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD392D6C3F82003CD332 /* MarkdownHeader+UIKit.swift */; };
  73. A80EDD602D6C3F82003CD332 /* MarkdownElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD2F2D6C3F82003CD332 /* MarkdownElement.swift */; };
  74. A80EDD612D6C3F82003CD332 /* MarkdownLink+AppKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD0F2D6C3F82003CD332 /* MarkdownLink+AppKit.swift */; };
  75. A80EDD622D6C3F82003CD332 /* MarkdownLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD232D6C3F82003CD332 /* MarkdownLink.swift */; };
  76. A80EDD632D6C3F82003CD332 /* MarkdownAutomaticLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD222D6C3F82003CD332 /* MarkdownAutomaticLink.swift */; };
  77. A80EDD642D6C3F82003CD332 /* MarkdownStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD322D6C3F82003CD332 /* MarkdownStyle.swift */; };
  78. A80EDD682D6C5098003CD332 /* TSChatMsgBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD672D6C507D003CD332 /* TSChatMsgBaseView.swift */; };
  79. A80EDD6A2D6C518E003CD332 /* TSChatMsgToolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD692D6C5176003CD332 /* TSChatMsgToolView.swift */; };
  80. A80EDDE02D6EB1B9003CD332 /* TSPTPGeneratorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDDF2D6EB1B8003CD332 /* TSPTPGeneratorCell.swift */; };
  81. A80EDDE22D6EB8D8003CD332 /* TSPTPUploadCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDE12D6EB8C7003CD332 /* TSPTPUploadCell.swift */; };
  82. A80EDDE42D6EB8FA003CD332 /* TSPTPSelectStyleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDE32D6EB8DC003CD332 /* TSPTPSelectStyleCell.swift */; };
  83. A80EDDE72D6EBFC1003CD332 /* TSPTPGeneratorVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDE62D6EBFBE003CD332 /* TSPTPGeneratorVM.swift */; };
  84. A80EDDEB2D6EC014003CD332 /* TSPhotoToPhotoVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDEA2D6EC012003CD332 /* TSPhotoToPhotoVC.swift */; };
  85. A80EDDF02D6EC045003CD332 /* TSPTPStyleModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDEF2D6EC044003CD332 /* TSPTPStyleModel.swift */; };
  86. A80EDDF62D6EC1ED003CD332 /* TSPhotoToPhotoVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDF52D6EC1E8003CD332 /* TSPhotoToPhotoVM.swift */; };
  87. A80EDDFD2D6EF34F003CD332 /* photo_to_photo_style.json in Resources */ = {isa = PBXBuildFile; fileRef = A80EDDFC2D6EF34C003CD332 /* photo_to_photo_style.json */; };
  88. A80EDE002D6EFD22003CD332 /* TSPhotoPickerManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDFF2D6EFD20003CD332 /* TSPhotoPickerManager.swift */; };
  89. A80EDE022D6F1CCD003CD332 /* TSPTPGeneratorVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDE012D6F1CCB003CD332 /* TSPTPGeneratorVC.swift */; };
  90. A80EDE062D6F3491003CD332 /* TSPTPBrowseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDE052D6F3490003CD332 /* TSPTPBrowseVC.swift */; };
  91. A80EDE082D700395003CD332 /* rotatingAnimation.gif in Resources */ = {isa = PBXBuildFile; fileRef = A80EDE072D700395003CD332 /* rotatingAnimation.gif */; };
  92. A83404C82D9BEC0E00C140E4 /* UIFont+TSEx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404C72D9BEC0700C140E4 /* UIFont+TSEx.swift */; };
  93. A83404CC2D9BEED800C140E4 /* Poppins-BlackItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A83404CB2D9BEED800C140E4 /* Poppins-BlackItalic.ttf */; };
  94. A83404D12D9D16FA00C140E4 /* TSAIPhotoGeneratorBaseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404D02D9D16F800C140E4 /* TSAIPhotoGeneratorBaseVC.swift */; };
  95. A83404D32D9D23FA00C140E4 /* TSGeneratorloadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404D22D9D23CA00C140E4 /* TSGeneratorloadingView.swift */; };
  96. A83404D52D9D28D700C140E4 /* TSAIPhotoBrowseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404D42D9D28CE00C140E4 /* TSAIPhotoBrowseVC.swift */; };
  97. A83404D82D9D34ED00C140E4 /* Kelsi-fill.otf in Resources */ = {isa = PBXBuildFile; fileRef = A83404D62D9D34ED00C140E4 /* Kelsi-fill.otf */; };
  98. A83404D92D9D34ED00C140E4 /* Kelsi-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = A83404D72D9D34ED00C140E4 /* Kelsi-Regular.otf */; };
  99. A83404DB2D9D382200C140E4 /* AccentURW-Reg.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A83404DA2D9D382200C140E4 /* AccentURW-Reg.ttf */; };
  100. A83404DD2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404DC2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift */; };
  101. A83404FE2DA35BFE00C140E4 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A83404FC2DA35BFE00C140E4 /* Localizable.strings */; };
  102. A83405032DA35CB700C140E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A83405012DA35CB700C140E4 /* InfoPlist.strings */; };
  103. A83405202DA3ADA900C140E4 /* TSPhotoSizeHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A834051F2DA3ADA600C140E4 /* TSPhotoSizeHelper.swift */; };
  104. A85E478F2D67115A0018D62D /* TSTextGeneralPictureVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E478E2D6711590018D62D /* TSTextGeneralPictureVC.swift */; };
  105. A85E47922D6728A00018D62D /* TSTextGeneralPictureVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47912D67289F0018D62D /* TSTextGeneralPictureVM.swift */; };
  106. A85E47962D672ADA0018D62D /* TSTextPicGennerateVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47952D672AD90018D62D /* TSTextPicGennerateVC.swift */; };
  107. A85E47982D672AE70018D62D /* TSTextPicGennerateVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47972D672AE40018D62D /* TSTextPicGennerateVM.swift */; };
  108. A85E479B2D6808C40018D62D /* TSBigIconBrowseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E479A2D6808C30018D62D /* TSBigIconBrowseVC.swift */; };
  109. A85E479D2D6809DC0018D62D /* TSBigIconBrowseCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E479C2D6809DA0018D62D /* TSBigIconBrowseCell.swift */; };
  110. A85E479F2D6859FA0018D62D /* TSRandomTextPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E479E2D6859F80018D62D /* TSRandomTextPicker.swift */; };
  111. A85E47BE2D68999B0018D62D /* ShareActivityItemProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47BD2D68999B0018D62D /* ShareActivityItemProvider.swift */; };
  112. A85E47C02D6961BB0018D62D /* TSChatMessageUIModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47BF2D6961B90018D62D /* TSChatMessageUIModel.swift */; };
  113. A85E47C32D6964A50018D62D /* TSMSGAIDefaultHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47C22D69646D0018D62D /* TSMSGAIDefaultHeaderView.swift */; };
  114. A85E47C62D697E750018D62D /* SwiftUIX in Frameworks */ = {isa = PBXBuildFile; productRef = A85E47C52D697E750018D62D /* SwiftUIX */; };
  115. A875870F2D81689A00286A66 /* TSPTPEnterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A875870E2D81689600286A66 /* TSPTPEnterView.swift */; };
  116. A87587122D81702700286A66 /* TSUserDefaultData.swift in Sources */ = {isa = PBXBuildFile; fileRef = A87587102D81702700286A66 /* TSUserDefaultData.swift */; };
  117. A87587162D81734300286A66 /* text_to_photo_style.json in Resources */ = {isa = PBXBuildFile; fileRef = A87587152D81733C00286A66 /* text_to_photo_style.json */; };
  118. A87587182D81814500286A66 /* TSAIThinkingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A87587172D81812C00286A66 /* TSAIThinkingView.swift */; };
  119. A899D34A2D827A0E00AB9C1C /* TSChatThinkingModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A899D3492D8279FB00AB9C1C /* TSChatThinkingModel.swift */; };
  120. A89EA64B2D59A588000EB181 /* MessageKit in Frameworks */ = {isa = PBXBuildFile; productRef = A89EA64A2D59A588000EB181 /* MessageKit */; };
  121. A89EA6542D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA64F2D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift */; };
  122. A89EA6552D59A9F4000EB181 /* TSChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6502D59A9F4000EB181 /* TSChatMessage.swift */; };
  123. A89EA6562D59A9F4000EB181 /* TSChatUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6522D59A9F4000EB181 /* TSChatUser.swift */; };
  124. A89EA6582D59A9F4000EB181 /* TSLayoutSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA64E2D59A9F4000EB181 /* TSLayoutSizeCalculator.swift */; };
  125. A89EA6592D59A9F4000EB181 /* CustomMessageFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA64C2D59A9F4000EB181 /* CustomMessageFlowLayout.swift */; };
  126. A89EA65F2D59AA11000EB181 /* TSChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA65E2D59AA11000EB181 /* TSChatViewController.swift */; };
  127. A89EA6692D59AA31000EB181 /* CameraInputBarAccessoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6632D59AA31000EB181 /* CameraInputBarAccessoryView.swift */; };
  128. A89EA66B2D59AA31000EB181 /* TSTextMessageContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6662D59AA31000EB181 /* TSTextMessageContentCell.swift */; };
  129. A89EA66C2D59AA31000EB181 /* TSMessageContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6652D59AA31000EB181 /* TSMessageContentCell.swift */; };
  130. A89EA66D2D59AA31000EB181 /* TableViewCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6672D59AA31000EB181 /* TableViewCells.swift */; };
  131. A89EA67A2D59D25F000EB181 /* TSAIChatVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6792D59D248000EB181 /* TSAIChatVM.swift */; };
  132. A89EA67D2D59F1AF000EB181 /* StreamPostRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA67C2D59F1AC000EB181 /* StreamPostRequest.swift */; };
  133. A89EA6832D59F4F9000EB181 /* TSChatViewController+ChatDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6822D59F4F1000EB181 /* TSChatViewController+ChatDelegate.swift */; };
  134. A89EA6982D5B1A01000EB181 /* Butterfly🦋.json in Resources */ = {isa = PBXBuildFile; fileRef = A89EA6972D5B19F0000EB181 /* Butterfly🦋.json */; };
  135. A89EA6A32D5B26E3000EB181 /* TSDBAIChatList.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6A22D5B26E3000EB181 /* TSDBAIChatList.swift */; };
  136. A89EA6AC2D5B3EFB000EB181 /* TSRealmManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6AB2D5B3EFA000EB181 /* TSRealmManager.swift */; };
  137. A89EA6B12D5C9D0C000EB181 /* TSAIChatHistoryVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6B02D5C9D0B000EB181 /* TSAIChatHistoryVC.swift */; };
  138. A89EA6B42D5C9D43000EB181 /* TSAIChatHistoryVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6B32D5C9D3D000EB181 /* TSAIChatHistoryVM.swift */; };
  139. A89EA6B82D5D7EE9000EB181 /* TSAIChatHistoryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6B72D5D7EE4000EB181 /* TSAIChatHistoryModel.swift */; };
  140. A89EA6BA2D5DDE5B000EB181 /* TSPageNullView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6B92D5DDE4E000EB181 /* TSPageNullView.swift */; };
  141. A89EA6BC2D5DFB12000EB181 /* TSViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6BB2D5DFB0D000EB181 /* TSViewController.swift */; };
  142. A89EA6BF2D5E03D6000EB181 /* Notification+Ex.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6BE2D5E03D3000EB181 /* Notification+Ex.swift */; };
  143. A89EA6C12D5ED289000EB181 /* TSChatCellConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C02D5ED278000EB181 /* TSChatCellConfig.swift */; };
  144. A89EA6C42D5F40CC000EB181 /* TSChatInputBarVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C32D5F40CB000EB181 /* TSChatInputBarVC.swift */; };
  145. A89EA6C62D5F5C22000EB181 /* TSChatInputFullScreenVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C52D5F5C21000EB181 /* TSChatInputFullScreenVC.swift */; };
  146. A89EA6C82D6359ED000EB181 /* TSChatViewController+VipView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C72D6359EA000EB181 /* TSChatViewController+VipView.swift */; };
  147. A89EA6CA2D642C0A000EB181 /* TSChatViewController+SendMsg.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C92D642C03000EB181 /* TSChatViewController+SendMsg.swift */; };
  148. A89EA6CC2D642CE2000EB181 /* TSChatViewController+NaviBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6CB2D642CD4000EB181 /* TSChatViewController+NaviBar.swift */; };
  149. A89EA6CF2D6430F3000EB181 /* TSChatViewController+Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6CE2D6430EE000EB181 /* TSChatViewController+Keyboard.swift */; };
  150. A8EEADD42D3E6C660032C5A0 /* Flower💐.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADD32D3E6C610032C5A0 /* Flower💐.json */; };
  151. A8EEADD62D3E6CD80032C5A0 /* Fish🐠.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADD52D3E6CD30032C5A0 /* Fish🐠.json */; };
  152. A8EEADD82D3E74D20032C5A0 /* Pink🩷.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADD72D3E74CB0032C5A0 /* Pink🩷.json */; };
  153. A8EEADDE2D3E75610032C5A0 /* Fruit🍊.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADDD2D3E755C0032C5A0 /* Fruit🍊.json */; };
  154. A8EEADE02D3E75900032C5A0 /* Crystal🔮.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADDF2D3E75870032C5A0 /* Crystal🔮.json */; };
  155. A8EEADE22D3E76110032C5A0 /* Dog🐕.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADE12D3E760C0032C5A0 /* Dog🐕.json */; };
  156. A8EEADE72D3E76860032C5A0 /* Drink🥤.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADE62D3E767E0032C5A0 /* Drink🥤.json */; };
  157. A8EEADE92D3E76D90032C5A0 /* Beauty👸.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADE82D3E76D30032C5A0 /* Beauty👸.json */; };
  158. A8F7748B2D38E8B700AA6E93 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774812D38E8B700AA6E93 /* AppDelegate.swift */; };
  159. A8F7748E2D38E8B700AA6E93 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A8F774822D38E8B700AA6E93 /* Assets.xcassets */; };
  160. A8F774902D38E8B700AA6E93 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A8F774852D38E8B700AA6E93 /* LaunchScreen.storyboard */; };
  161. A8F774E02D38EA8C00AA6E93 /* TSCommonTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774C72D38EA8C00AA6E93 /* TSCommonTool.swift */; };
  162. A8F774E12D38EA8C00AA6E93 /* TSFileManagerTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774CA2D38EA8C00AA6E93 /* TSFileManagerTool.swift */; };
  163. A8F775002D38EA8C00AA6E93 /* WindowHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774CD2D38EA8C00AA6E93 /* WindowHelper.swift */; };
  164. A8F775032D38EA8C00AA6E93 /* GlobalImports.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774B42D38EA8C00AA6E93 /* GlobalImports.swift */; };
  165. A8F7750A2D38EA8C00AA6E93 /* TSNetworkTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774CB2D38EA8C00AA6E93 /* TSNetworkTool.swift */; };
  166. A8F775172D38EB7400AA6E93 /* TSTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775162D38EB7400AA6E93 /* TSTabBarController.swift */; };
  167. A8F775192D38EC6800AA6E93 /* TSEmojisVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775182D38EC6700AA6E93 /* TSEmojisVC.swift */; };
  168. A8F7751B2D38EC9800AA6E93 /* TSGenmojiVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7751A2D38EC9700AA6E93 /* TSGenmojiVC.swift */; };
  169. A8F775252D38ED8300AA6E93 /* TSConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775232D38ED8300AA6E93 /* TSConfig.swift */; };
  170. A8F775352D38FC9A00AA6E93 /* TSViewTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775342D38FC9A00AA6E93 /* TSViewTool.swift */; };
  171. A8F775382D390C3C00AA6E93 /* TSNetworkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775372D390C3C00AA6E93 /* TSNetworkManager.swift */; };
  172. A8F7753B2D3918DE00AA6E93 /* TSNetworkManager+Loading.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7753A2D3918D700AA6E93 /* TSNetworkManager+Loading.swift */; };
  173. A8F7753D2D3918F800AA6E93 /* TSNetWork+Business.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7753C2D3918E200AA6E93 /* TSNetWork+Business.swift */; };
  174. A8F7753F2D39340E00AA6E93 /* TSSetingVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7753E2D39340D00AA6E93 /* TSSetingVC.swift */; };
  175. A8F775432D39346400AA6E93 /* TSSetingModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775422D39346100AA6E93 /* TSSetingModel.swift */; };
  176. A8F775452D39347100AA6E93 /* TSSetingViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775442D39346700AA6E93 /* TSSetingViewModel.swift */; };
  177. A8F775492D3935D600AA6E93 /* TSBusinessWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775472D3935D600AA6E93 /* TSBusinessWebVC.swift */; };
  178. A8F7754B2D39376800AA6E93 /* TSSettingListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7754A2D39376700AA6E93 /* TSSettingListView.swift */; };
  179. A8F7754E2D39E59100AA6E93 /* TSGenmojiModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7754D2D39E58B00AA6E93 /* TSGenmojiModel.swift */; };
  180. A8F775502D39ECED00AA6E93 /* PhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7754F2D39ECED00AA6E93 /* PhotoManager.swift */; };
  181. A8F776212D3A3F0200AA6E93 /* TSEmojisChildVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776202D3A3F0100AA6E93 /* TSEmojisChildVC.swift */; };
  182. A8F7762B2D3A70B200AA6E93 /* PaddedLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7762A2D3A70AF00AA6E93 /* PaddedLabel.swift */; };
  183. A8F7762D2D3A74A100AA6E93 /* TSGenmojiGennerateCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7762C2D3A748800AA6E93 /* TSGenmojiGennerateCell.swift */; };
  184. A8F7762F2D3A765400AA6E93 /* TSGenmojiViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7762E2D3A764E00AA6E93 /* TSGenmojiViewModel.swift */; };
  185. A8F776322D3A771400AA6E93 /* TSGenmojiCollectionViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776312D3A771100AA6E93 /* TSGenmojiCollectionViewModel.swift */; };
  186. A8F776352D3A7C2B00AA6E93 /* TSGenmojiColSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776342D3A7C1C00AA6E93 /* TSGenmojiColSectionView.swift */; };
  187. A8F776372D3A806E00AA6E93 /* TSGenmojiItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776362D3A805700AA6E93 /* TSGenmojiItemCell.swift */; };
  188. A8F776392D3B38E600AA6E93 /* TSGenmojiGennerateVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776382D3B38D600AA6E93 /* TSGenmojiGennerateVC.swift */; };
  189. A8F7763C2D3B429B00AA6E93 /* TSCommonloadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7763B2D3B429A00AA6E93 /* TSCommonloadingView.swift */; };
  190. A8F7763F2D3B68E100AA6E93 /* TSGenmojiGennerateViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7763E2D3B68E000AA6E93 /* TSGenmojiGennerateViewModel.swift */; };
  191. A8F776422D3B75FC00AA6E93 /* TSBottomAlertVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776412D3B75EF00AA6E93 /* TSBottomAlertVC.swift */; };
  192. A8F776452D3DE8A800AA6E93 /* TSSmallIconBrowseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776442D3DE8A600AA6E93 /* TSSmallIconBrowseVC.swift */; };
  193. A8F776482D3DE9F600AA6E93 /* TSSmallIconBrowseCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776472D3DE9C200AA6E93 /* TSSmallIconBrowseCell.swift */; };
  194. A8F7764B2D3E008500AA6E93 /* TSEmojisChildColViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7764A2D3E007100AA6E93 /* TSEmojisChildColViewModel.swift */; };
  195. A8F7764E2D3E00A800AA6E93 /* TSEmojisColViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7764D2D3E00A000AA6E93 /* TSEmojisColViewModel.swift */; };
  196. A8FB02B32D3E39A40031A396 /* TSEmojisModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8FB02B22D3E399F0031A396 /* TSEmojisModel.swift */; };
  197. A8FB02B72D3E3A3D0031A396 /* TSEmojisChildViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8FB02B62D3E3A3B0031A396 /* TSEmojisChildViewModel.swift */; };
  198. A8FB02BA2D3E3BB20031A396 /* TSEmojisCoLItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8FB02B92D3E3BB00031A396 /* TSEmojisCoLItemCell.swift */; };
  199. A8FB02D12D3E6B2A0031A396 /* Cat🐱.json in Resources */ = {isa = PBXBuildFile; fileRef = A8FB02D02D3E6B240031A396 /* Cat🐱.json */; };
  200. D34BB2B8FE0DBF83E06A3FC4 /* Pods_AIEmoji.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86FB4D6AEFDDA7A2017F307C /* Pods_AIEmoji.framework */; };
  201. /* End PBXBuildFile section */
  202. /* Begin PBXFileReference section */
  203. 6E77A292B548CD79E381757E /* Pods-AIEmoji.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AIEmoji.release.xcconfig"; path = "Target Support Files/Pods-AIEmoji/Pods-AIEmoji.release.xcconfig"; sourceTree = "<group>"; };
  204. 86FB4D6AEFDDA7A2017F307C /* Pods_AIEmoji.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AIEmoji.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  205. A80327AF2D8139FC00AF7878 /* TSTTPSelectStyleCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTTPSelectStyleCell.swift; sourceTree = "<group>"; };
  206. A80327B22D813D4800AF7878 /* TSTTPInputVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTTPInputVC.swift; sourceTree = "<group>"; };
  207. A80327B52D813D8100AF7878 /* TSTTPInputVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTTPInputVM.swift; sourceTree = "<group>"; };
  208. A80327BE2D81576C00AF7878 /* TSPromptTextView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPromptTextView.swift; sourceTree = "<group>"; };
  209. A80327C02D8157C500AF7878 /* TSTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTitleView.swift; sourceTree = "<group>"; };
  210. A80327C22D81580800AF7878 /* TSTTPStyleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTTPStyleView.swift; sourceTree = "<group>"; };
  211. A80327C42D81582F00AF7878 /* TSGeneralBtnView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGeneralBtnView.swift; sourceTree = "<group>"; };
  212. A80E72192D3F393500C64288 /* DiyStickerModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyStickerModel.swift; sourceTree = "<group>"; };
  213. A80E721D2D3F3A7500C64288 /* DiyElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyElement.swift; sourceTree = "<group>"; };
  214. A80E721F2D3F3A8600C64288 /* DiyElementBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyElementBaseView.swift; sourceTree = "<group>"; };
  215. A80E72212D3F3A9200C64288 /* DiyStickerElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyStickerElement.swift; sourceTree = "<group>"; };
  216. A80E72232D3F3A9A00C64288 /* DiyTextElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyTextElement.swift; sourceTree = "<group>"; };
  217. A80E72242D3F3A9A00C64288 /* HYHAddImageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HYHAddImageView.h; sourceTree = "<group>"; };
  218. A80E72252D3F3A9A00C64288 /* HYHAddImageView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HYHAddImageView.m; sourceTree = "<group>"; };
  219. A80E72282D3F3A9C00C64288 /* AIEmoji-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "AIEmoji-Bridging-Header.h"; sourceTree = "<group>"; };
  220. A80E722E2D3F3E0C00C64288 /* TSDiyCanvasView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyCanvasView.swift; sourceTree = "<group>"; };
  221. A80E72332D3F473400C64288 /* DiyPaperTemplate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyPaperTemplate.swift; sourceTree = "<group>"; };
  222. A80E72342D3F473400C64288 /* DiyPaperTemplateBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyPaperTemplateBaseView.swift; sourceTree = "<group>"; };
  223. A80E72372D3F473B00C64288 /* DiyPaperProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyPaperProtocol.swift; sourceTree = "<group>"; };
  224. A80E723B2D3F4CA700C64288 /* Food🍔.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Food🍔.json"; sourceTree = "<group>"; };
  225. A80E723E2D3F4D3000C64288 /* Universe🌍.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Universe🌍.json"; sourceTree = "<group>"; };
  226. A80E72452D3F4EED00C64288 /* sticker.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = sticker.json; sourceTree = "<group>"; };
  227. A80E72472D3F4F0500C64288 /* templates.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = templates.json; sourceTree = "<group>"; };
  228. A80E724E2D3F6D6000C64288 /* DiyFixedTextElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyFixedTextElement.swift; sourceTree = "<group>"; };
  229. A80E72522D3F985D00C64288 /* TSWallpaperVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSWallpaperVC.swift; sourceTree = "<group>"; };
  230. A80E72552D3F98D600C64288 /* TSDiyKeyboardViewVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyKeyboardViewVC.swift; sourceTree = "<group>"; };
  231. A80E72582D3FA65E00C64288 /* TSWallpaperViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSWallpaperViewModel.swift; sourceTree = "<group>"; };
  232. A80E725B2D3FB09100C64288 /* TSKeyboardView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSKeyboardView.swift; sourceTree = "<group>"; };
  233. A80E72622D40924500C64288 /* TSDiyKeyboardVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyKeyboardVM.swift; sourceTree = "<group>"; };
  234. A80E72642D409B0D00C64288 /* DiyStaticElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyStaticElement.swift; sourceTree = "<group>"; };
  235. A80E72662D409C7D00C64288 /* Template+More.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Template+More.swift"; sourceTree = "<group>"; };
  236. A80E72692D409D9400C64288 /* TSDiyTLYFlowersView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyTLYFlowersView.swift; sourceTree = "<group>"; };
  237. A80E726B2D409E8000C64288 /* TSDiyTLPinkAnimalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyTLPinkAnimalView.swift; sourceTree = "<group>"; };
  238. A80E726E2D40DE2900C64288 /* TSWallpaperPreviewVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSWallpaperPreviewVC.swift; sourceTree = "<group>"; };
  239. A80E72712D40F86000C64288 /* TSLaunchVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSLaunchVC.swift; sourceTree = "<group>"; };
  240. A80E72762D41EFF700C64288 /* TSEmojisTutorialsVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisTutorialsVC.swift; sourceTree = "<group>"; };
  241. A80E72782D42285500C64288 /* TSBootPageVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBootPageVC.swift; sourceTree = "<group>"; };
  242. A80E73D82D533E5800C64288 /* TSPurchaseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPurchaseVC.swift; sourceTree = "<group>"; };
  243. A80E73E22D533EB000C64288 /* TSPurchaseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPurchaseManager.swift; sourceTree = "<group>"; };
  244. A80E73E52D5348CF00C64288 /* SettingPurchaseTopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingPurchaseTopView.swift; sourceTree = "<group>"; };
  245. A80EDD022D6C281E003CD332 /* TSMarkDownTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSMarkDownTool.swift; sourceTree = "<group>"; };
  246. A80EDD042D6C3F82003CD332 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  247. A80EDD052D6C3F82003CD332 /* MarkdownKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MarkdownKit.h; sourceTree = "<group>"; };
  248. A80EDD072D6C3F82003CD332 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  249. A80EDD082D6C3F82003CD332 /* MarkdownKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MarkdownKit.h; sourceTree = "<group>"; };
  250. A80EDD0B2D6C3F82003CD332 /* MarkdownCode+AppKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownCode+AppKit.swift"; sourceTree = "<group>"; };
  251. A80EDD0D2D6C3F82003CD332 /* MarkdownHeader+AppKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownHeader+AppKit.swift"; sourceTree = "<group>"; };
  252. A80EDD0F2D6C3F82003CD332 /* MarkdownLink+AppKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownLink+AppKit.swift"; sourceTree = "<group>"; };
  253. A80EDD122D6C3F82003CD332 /* MarkdownFont+Traits.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownFont+Traits.swift"; sourceTree = "<group>"; };
  254. A80EDD142D6C3F82003CD332 /* MarkdownParser+AppKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownParser+AppKit.swift"; sourceTree = "<group>"; };
  255. A80EDD162D6C3F82003CD332 /* MarkdownBold.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownBold.swift; sourceTree = "<group>"; };
  256. A80EDD182D6C3F82003CD332 /* MarkdownCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownCode.swift; sourceTree = "<group>"; };
  257. A80EDD1A2D6C3F82003CD332 /* MarkdownCodeEscaping.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownCodeEscaping.swift; sourceTree = "<group>"; };
  258. A80EDD1B2D6C3F82003CD332 /* MarkdownEscaping.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownEscaping.swift; sourceTree = "<group>"; };
  259. A80EDD1C2D6C3F82003CD332 /* MarkdownUnescaping.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownUnescaping.swift; sourceTree = "<group>"; };
  260. A80EDD1E2D6C3F82003CD332 /* MarkdownHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownHeader.swift; sourceTree = "<group>"; };
  261. A80EDD202D6C3F82003CD332 /* MarkdownItalic.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownItalic.swift; sourceTree = "<group>"; };
  262. A80EDD222D6C3F82003CD332 /* MarkdownAutomaticLink.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownAutomaticLink.swift; sourceTree = "<group>"; };
  263. A80EDD232D6C3F82003CD332 /* MarkdownLink.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownLink.swift; sourceTree = "<group>"; };
  264. A80EDD252D6C3F82003CD332 /* MarkdownList.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownList.swift; sourceTree = "<group>"; };
  265. A80EDD272D6C3F82003CD332 /* MarkdownQuote.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownQuote.swift; sourceTree = "<group>"; };
  266. A80EDD292D6C3F82003CD332 /* MarkdownStrikethrough.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownStrikethrough.swift; sourceTree = "<group>"; };
  267. A80EDD2C2D6C3F82003CD332 /* String+UTF16.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+UTF16.swift"; sourceTree = "<group>"; };
  268. A80EDD2E2D6C3F82003CD332 /* MarkdownCommonElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownCommonElement.swift; sourceTree = "<group>"; };
  269. A80EDD2F2D6C3F82003CD332 /* MarkdownElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownElement.swift; sourceTree = "<group>"; };
  270. A80EDD302D6C3F82003CD332 /* MarkdownLevelElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownLevelElement.swift; sourceTree = "<group>"; };
  271. A80EDD312D6C3F82003CD332 /* MarkdownLinkElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownLinkElement.swift; sourceTree = "<group>"; };
  272. A80EDD322D6C3F82003CD332 /* MarkdownStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownStyle.swift; sourceTree = "<group>"; };
  273. A80EDD342D6C3F82003CD332 /* MarkdownParser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownParser.swift; sourceTree = "<group>"; };
  274. A80EDD352D6C3F82003CD332 /* Typealias.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Typealias.swift; sourceTree = "<group>"; };
  275. A80EDD372D6C3F82003CD332 /* MarkdownCode+UIKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownCode+UIKit.swift"; sourceTree = "<group>"; };
  276. A80EDD392D6C3F82003CD332 /* MarkdownHeader+UIKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownHeader+UIKit.swift"; sourceTree = "<group>"; };
  277. A80EDD3B2D6C3F82003CD332 /* MarkdownLink+UIKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownLink+UIKit.swift"; sourceTree = "<group>"; };
  278. A80EDD3E2D6C3F82003CD332 /* UIFont+Traits.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIFont+Traits.swift"; sourceTree = "<group>"; };
  279. A80EDD402D6C3F82003CD332 /* MarkdownParser+UIKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownParser+UIKit.swift"; sourceTree = "<group>"; };
  280. A80EDD672D6C507D003CD332 /* TSChatMsgBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatMsgBaseView.swift; sourceTree = "<group>"; };
  281. A80EDD692D6C5176003CD332 /* TSChatMsgToolView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatMsgToolView.swift; sourceTree = "<group>"; };
  282. A80EDDDF2D6EB1B8003CD332 /* TSPTPGeneratorCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPGeneratorCell.swift; sourceTree = "<group>"; };
  283. A80EDDE12D6EB8C7003CD332 /* TSPTPUploadCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPUploadCell.swift; sourceTree = "<group>"; };
  284. A80EDDE32D6EB8DC003CD332 /* TSPTPSelectStyleCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPSelectStyleCell.swift; sourceTree = "<group>"; };
  285. A80EDDE62D6EBFBE003CD332 /* TSPTPGeneratorVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPGeneratorVM.swift; sourceTree = "<group>"; };
  286. A80EDDEA2D6EC012003CD332 /* TSPhotoToPhotoVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPhotoToPhotoVC.swift; sourceTree = "<group>"; };
  287. A80EDDEF2D6EC044003CD332 /* TSPTPStyleModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPStyleModel.swift; sourceTree = "<group>"; };
  288. A80EDDF52D6EC1E8003CD332 /* TSPhotoToPhotoVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPhotoToPhotoVM.swift; sourceTree = "<group>"; };
  289. A80EDDFC2D6EF34C003CD332 /* photo_to_photo_style.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = photo_to_photo_style.json; sourceTree = "<group>"; };
  290. A80EDDFF2D6EFD20003CD332 /* TSPhotoPickerManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPhotoPickerManager.swift; sourceTree = "<group>"; };
  291. A80EDE012D6F1CCB003CD332 /* TSPTPGeneratorVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPGeneratorVC.swift; sourceTree = "<group>"; };
  292. A80EDE052D6F3490003CD332 /* TSPTPBrowseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPBrowseVC.swift; sourceTree = "<group>"; };
  293. A80EDE072D700395003CD332 /* rotatingAnimation.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = rotatingAnimation.gif; sourceTree = "<group>"; };
  294. A83404C72D9BEC0700C140E4 /* UIFont+TSEx.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIFont+TSEx.swift"; sourceTree = "<group>"; };
  295. A83404CB2D9BEED800C140E4 /* Poppins-BlackItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-BlackItalic.ttf"; sourceTree = "<group>"; };
  296. A83404D02D9D16F800C140E4 /* TSAIPhotoGeneratorBaseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIPhotoGeneratorBaseVC.swift; sourceTree = "<group>"; };
  297. A83404D22D9D23CA00C140E4 /* TSGeneratorloadingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGeneratorloadingView.swift; sourceTree = "<group>"; };
  298. A83404D42D9D28CE00C140E4 /* TSAIPhotoBrowseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIPhotoBrowseVC.swift; sourceTree = "<group>"; };
  299. A83404D62D9D34ED00C140E4 /* Kelsi-fill.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Kelsi-fill.otf"; sourceTree = "<group>"; };
  300. A83404D72D9D34ED00C140E4 /* Kelsi-Regular.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Kelsi-Regular.otf"; sourceTree = "<group>"; };
  301. A83404DA2D9D382200C140E4 /* AccentURW-Reg.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "AccentURW-Reg.ttf"; sourceTree = "<group>"; };
  302. A83404DC2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImagesAnimateScrollView.swift; sourceTree = "<group>"; };
  303. A83404FD2DA35BFE00C140E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  304. A83405022DA35CB700C140E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  305. A83405052DA3717300C140E4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  306. A83405062DA3717300C140E4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  307. A83405072DA3717300C140E4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  308. A83405092DA381A100C140E4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
  309. A834050A2DA381A100C140E4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  310. A834050B2DA381A100C140E4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  311. A834050C2DA381AD00C140E4 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
  312. A834050D2DA381AE00C140E4 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  313. A834050E2DA381AE00C140E4 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  314. A834050F2DA3826000C140E4 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  315. A83405102DA3826000C140E4 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  316. A83405112DA3826000C140E4 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  317. A83405122DA3826600C140E4 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  318. A83405132DA3826600C140E4 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  319. A83405142DA3826600C140E4 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  320. A83405152DA3827C00C140E4 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
  321. A83405162DA3827C00C140E4 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  322. A83405172DA3827C00C140E4 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
  323. A83405182DA3828E00C140E4 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
  324. A83405192DA3828E00C140E4 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  325. A834051A2DA3828E00C140E4 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  326. A834051F2DA3ADA600C140E4 /* TSPhotoSizeHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPhotoSizeHelper.swift; sourceTree = "<group>"; };
  327. A85E478E2D6711590018D62D /* TSTextGeneralPictureVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextGeneralPictureVC.swift; sourceTree = "<group>"; };
  328. A85E47912D67289F0018D62D /* TSTextGeneralPictureVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextGeneralPictureVM.swift; sourceTree = "<group>"; };
  329. A85E47952D672AD90018D62D /* TSTextPicGennerateVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextPicGennerateVC.swift; sourceTree = "<group>"; };
  330. A85E47972D672AE40018D62D /* TSTextPicGennerateVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextPicGennerateVM.swift; sourceTree = "<group>"; };
  331. A85E479A2D6808C30018D62D /* TSBigIconBrowseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBigIconBrowseVC.swift; sourceTree = "<group>"; };
  332. A85E479C2D6809DA0018D62D /* TSBigIconBrowseCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBigIconBrowseCell.swift; sourceTree = "<group>"; };
  333. A85E479E2D6859F80018D62D /* TSRandomTextPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSRandomTextPicker.swift; sourceTree = "<group>"; };
  334. A85E47BD2D68999B0018D62D /* ShareActivityItemProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareActivityItemProvider.swift; sourceTree = "<group>"; };
  335. A85E47BF2D6961B90018D62D /* TSChatMessageUIModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatMessageUIModel.swift; sourceTree = "<group>"; };
  336. A85E47C22D69646D0018D62D /* TSMSGAIDefaultHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSMSGAIDefaultHeaderView.swift; sourceTree = "<group>"; };
  337. A875870E2D81689600286A66 /* TSPTPEnterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPEnterView.swift; sourceTree = "<group>"; };
  338. A87587102D81702700286A66 /* TSUserDefaultData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSUserDefaultData.swift; sourceTree = "<group>"; };
  339. A87587152D81733C00286A66 /* text_to_photo_style.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = text_to_photo_style.json; sourceTree = "<group>"; };
  340. A87587172D81812C00286A66 /* TSAIThinkingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIThinkingView.swift; sourceTree = "<group>"; };
  341. A899D3492D8279FB00AB9C1C /* TSChatThinkingModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatThinkingModel.swift; sourceTree = "<group>"; };
  342. A89EA64C2D59A9F4000EB181 /* CustomMessageFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomMessageFlowLayout.swift; sourceTree = "<group>"; };
  343. A89EA64E2D59A9F4000EB181 /* TSLayoutSizeCalculator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSLayoutSizeCalculator.swift; sourceTree = "<group>"; };
  344. A89EA64F2D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextLayoutSizeCalculator.swift; sourceTree = "<group>"; };
  345. A89EA6502D59A9F4000EB181 /* TSChatMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatMessage.swift; sourceTree = "<group>"; };
  346. A89EA6522D59A9F4000EB181 /* TSChatUser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatUser.swift; sourceTree = "<group>"; };
  347. A89EA65E2D59AA11000EB181 /* TSChatViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatViewController.swift; sourceTree = "<group>"; };
  348. A89EA6632D59AA31000EB181 /* CameraInputBarAccessoryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CameraInputBarAccessoryView.swift; sourceTree = "<group>"; };
  349. A89EA6652D59AA31000EB181 /* TSMessageContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSMessageContentCell.swift; sourceTree = "<group>"; };
  350. A89EA6662D59AA31000EB181 /* TSTextMessageContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextMessageContentCell.swift; sourceTree = "<group>"; };
  351. A89EA6672D59AA31000EB181 /* TableViewCells.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TableViewCells.swift; sourceTree = "<group>"; };
  352. A89EA6792D59D248000EB181 /* TSAIChatVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIChatVM.swift; sourceTree = "<group>"; };
  353. A89EA67C2D59F1AC000EB181 /* StreamPostRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StreamPostRequest.swift; sourceTree = "<group>"; };
  354. A89EA6822D59F4F1000EB181 /* TSChatViewController+ChatDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+ChatDelegate.swift"; sourceTree = "<group>"; };
  355. A89EA6972D5B19F0000EB181 /* Butterfly🦋.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Butterfly🦋.json"; sourceTree = "<group>"; };
  356. A89EA6A22D5B26E3000EB181 /* TSDBAIChatList.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDBAIChatList.swift; sourceTree = "<group>"; };
  357. A89EA6AB2D5B3EFA000EB181 /* TSRealmManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSRealmManager.swift; sourceTree = "<group>"; };
  358. A89EA6B02D5C9D0B000EB181 /* TSAIChatHistoryVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIChatHistoryVC.swift; sourceTree = "<group>"; };
  359. A89EA6B32D5C9D3D000EB181 /* TSAIChatHistoryVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIChatHistoryVM.swift; sourceTree = "<group>"; };
  360. A89EA6B72D5D7EE4000EB181 /* TSAIChatHistoryModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIChatHistoryModel.swift; sourceTree = "<group>"; };
  361. A89EA6B92D5DDE4E000EB181 /* TSPageNullView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPageNullView.swift; sourceTree = "<group>"; };
  362. A89EA6BB2D5DFB0D000EB181 /* TSViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSViewController.swift; sourceTree = "<group>"; };
  363. A89EA6BE2D5E03D3000EB181 /* Notification+Ex.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Notification+Ex.swift"; sourceTree = "<group>"; };
  364. A89EA6C02D5ED278000EB181 /* TSChatCellConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatCellConfig.swift; sourceTree = "<group>"; };
  365. A89EA6C32D5F40CB000EB181 /* TSChatInputBarVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatInputBarVC.swift; sourceTree = "<group>"; };
  366. A89EA6C52D5F5C21000EB181 /* TSChatInputFullScreenVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatInputFullScreenVC.swift; sourceTree = "<group>"; };
  367. A89EA6C72D6359EA000EB181 /* TSChatViewController+VipView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+VipView.swift"; sourceTree = "<group>"; };
  368. A89EA6C92D642C03000EB181 /* TSChatViewController+SendMsg.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+SendMsg.swift"; sourceTree = "<group>"; };
  369. A89EA6CB2D642CD4000EB181 /* TSChatViewController+NaviBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+NaviBar.swift"; sourceTree = "<group>"; };
  370. A89EA6CE2D6430EE000EB181 /* TSChatViewController+Keyboard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+Keyboard.swift"; sourceTree = "<group>"; };
  371. A8EEADD32D3E6C610032C5A0 /* Flower💐.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Flower💐.json"; sourceTree = "<group>"; };
  372. A8EEADD52D3E6CD30032C5A0 /* Fish🐠.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Fish🐠.json"; sourceTree = "<group>"; };
  373. A8EEADD72D3E74CB0032C5A0 /* Pink🩷.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Pink🩷.json"; sourceTree = "<group>"; };
  374. A8EEADDD2D3E755C0032C5A0 /* Fruit🍊.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Fruit🍊.json"; sourceTree = "<group>"; };
  375. A8EEADDF2D3E75870032C5A0 /* Crystal🔮.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Crystal🔮.json"; sourceTree = "<group>"; };
  376. A8EEADE12D3E760C0032C5A0 /* Dog🐕.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Dog🐕.json"; sourceTree = "<group>"; };
  377. A8EEADE62D3E767E0032C5A0 /* Drink🥤.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Drink🥤.json"; sourceTree = "<group>"; };
  378. A8EEADE82D3E76D30032C5A0 /* Beauty👸.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Beauty👸.json"; sourceTree = "<group>"; };
  379. A8F774692D38E8B000AA6E93 /* AIEmoji.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AIEmoji.app; sourceTree = BUILT_PRODUCTS_DIR; };
  380. A8F774812D38E8B700AA6E93 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  381. A8F774822D38E8B700AA6E93 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  382. A8F774832D38E8B700AA6E93 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  383. A8F774842D38E8B700AA6E93 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  384. A8F774B42D38EA8C00AA6E93 /* GlobalImports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlobalImports.swift; sourceTree = "<group>"; };
  385. A8F774C72D38EA8C00AA6E93 /* TSCommonTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSCommonTool.swift; sourceTree = "<group>"; };
  386. A8F774CA2D38EA8C00AA6E93 /* TSFileManagerTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSFileManagerTool.swift; sourceTree = "<group>"; };
  387. A8F774CB2D38EA8C00AA6E93 /* TSNetworkTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSNetworkTool.swift; sourceTree = "<group>"; };
  388. A8F774CD2D38EA8C00AA6E93 /* WindowHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowHelper.swift; sourceTree = "<group>"; };
  389. A8F775162D38EB7400AA6E93 /* TSTabBarController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTabBarController.swift; sourceTree = "<group>"; };
  390. A8F775182D38EC6700AA6E93 /* TSEmojisVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisVC.swift; sourceTree = "<group>"; };
  391. A8F7751A2D38EC9700AA6E93 /* TSGenmojiVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiVC.swift; sourceTree = "<group>"; };
  392. A8F775232D38ED8300AA6E93 /* TSConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSConfig.swift; sourceTree = "<group>"; };
  393. A8F775342D38FC9A00AA6E93 /* TSViewTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSViewTool.swift; sourceTree = "<group>"; };
  394. A8F775372D390C3C00AA6E93 /* TSNetworkManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSNetworkManager.swift; sourceTree = "<group>"; };
  395. A8F7753A2D3918D700AA6E93 /* TSNetworkManager+Loading.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSNetworkManager+Loading.swift"; sourceTree = "<group>"; };
  396. A8F7753C2D3918E200AA6E93 /* TSNetWork+Business.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSNetWork+Business.swift"; sourceTree = "<group>"; };
  397. A8F7753E2D39340D00AA6E93 /* TSSetingVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSetingVC.swift; sourceTree = "<group>"; };
  398. A8F775422D39346100AA6E93 /* TSSetingModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSetingModel.swift; sourceTree = "<group>"; };
  399. A8F775442D39346700AA6E93 /* TSSetingViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSetingViewModel.swift; sourceTree = "<group>"; };
  400. A8F775472D3935D600AA6E93 /* TSBusinessWebVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBusinessWebVC.swift; sourceTree = "<group>"; };
  401. A8F7754A2D39376700AA6E93 /* TSSettingListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSettingListView.swift; sourceTree = "<group>"; };
  402. A8F7754D2D39E58B00AA6E93 /* TSGenmojiModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiModel.swift; sourceTree = "<group>"; };
  403. A8F7754F2D39ECED00AA6E93 /* PhotoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhotoManager.swift; sourceTree = "<group>"; };
  404. A8F776202D3A3F0100AA6E93 /* TSEmojisChildVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisChildVC.swift; sourceTree = "<group>"; };
  405. A8F7762A2D3A70AF00AA6E93 /* PaddedLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PaddedLabel.swift; sourceTree = "<group>"; };
  406. A8F7762C2D3A748800AA6E93 /* TSGenmojiGennerateCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiGennerateCell.swift; sourceTree = "<group>"; };
  407. A8F7762E2D3A764E00AA6E93 /* TSGenmojiViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiViewModel.swift; sourceTree = "<group>"; };
  408. A8F776312D3A771100AA6E93 /* TSGenmojiCollectionViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiCollectionViewModel.swift; sourceTree = "<group>"; };
  409. A8F776342D3A7C1C00AA6E93 /* TSGenmojiColSectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiColSectionView.swift; sourceTree = "<group>"; };
  410. A8F776362D3A805700AA6E93 /* TSGenmojiItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiItemCell.swift; sourceTree = "<group>"; };
  411. A8F776382D3B38D600AA6E93 /* TSGenmojiGennerateVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiGennerateVC.swift; sourceTree = "<group>"; };
  412. A8F7763B2D3B429A00AA6E93 /* TSCommonloadingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSCommonloadingView.swift; sourceTree = "<group>"; };
  413. A8F7763E2D3B68E000AA6E93 /* TSGenmojiGennerateViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiGennerateViewModel.swift; sourceTree = "<group>"; };
  414. A8F776412D3B75EF00AA6E93 /* TSBottomAlertVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBottomAlertVC.swift; sourceTree = "<group>"; };
  415. A8F776442D3DE8A600AA6E93 /* TSSmallIconBrowseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSmallIconBrowseVC.swift; sourceTree = "<group>"; };
  416. A8F776472D3DE9C200AA6E93 /* TSSmallIconBrowseCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSmallIconBrowseCell.swift; sourceTree = "<group>"; };
  417. A8F7764A2D3E007100AA6E93 /* TSEmojisChildColViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisChildColViewModel.swift; sourceTree = "<group>"; };
  418. A8F7764D2D3E00A000AA6E93 /* TSEmojisColViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisColViewModel.swift; sourceTree = "<group>"; };
  419. A8FB02B22D3E399F0031A396 /* TSEmojisModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisModel.swift; sourceTree = "<group>"; };
  420. A8FB02B62D3E3A3B0031A396 /* TSEmojisChildViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisChildViewModel.swift; sourceTree = "<group>"; };
  421. A8FB02B92D3E3BB00031A396 /* TSEmojisCoLItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisCoLItemCell.swift; sourceTree = "<group>"; };
  422. A8FB02D02D3E6B240031A396 /* Cat🐱.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Cat🐱.json"; sourceTree = "<group>"; };
  423. CA9B99CBEC45A6004629E790 /* Pods-AIEmoji.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AIEmoji.debug.xcconfig"; path = "Target Support Files/Pods-AIEmoji/Pods-AIEmoji.debug.xcconfig"; sourceTree = "<group>"; };
  424. /* End PBXFileReference section */
  425. /* Begin PBXFrameworksBuildPhase section */
  426. A8F774662D38E8B000AA6E93 /* Frameworks */ = {
  427. isa = PBXFrameworksBuildPhase;
  428. buildActionMask = 2147483647;
  429. files = (
  430. A85E47C62D697E750018D62D /* SwiftUIX in Frameworks */,
  431. A89EA64B2D59A588000EB181 /* MessageKit in Frameworks */,
  432. D34BB2B8FE0DBF83E06A3FC4 /* Pods_AIEmoji.framework in Frameworks */,
  433. );
  434. runOnlyForDeploymentPostprocessing = 0;
  435. };
  436. /* End PBXFrameworksBuildPhase section */
  437. /* Begin PBXGroup section */
  438. 406F872E527C21AB2B2F0859 /* Pods */ = {
  439. isa = PBXGroup;
  440. children = (
  441. CA9B99CBEC45A6004629E790 /* Pods-AIEmoji.debug.xcconfig */,
  442. 6E77A292B548CD79E381757E /* Pods-AIEmoji.release.xcconfig */,
  443. );
  444. path = Pods;
  445. sourceTree = "<group>";
  446. };
  447. 97C7E956DF0731529C52523E /* Frameworks */ = {
  448. isa = PBXGroup;
  449. children = (
  450. 86FB4D6AEFDDA7A2017F307C /* Pods_AIEmoji.framework */,
  451. );
  452. name = Frameworks;
  453. sourceTree = "<group>";
  454. };
  455. A80327AE2D8139F200AF7878 /* View */ = {
  456. isa = PBXGroup;
  457. children = (
  458. A80327AF2D8139FC00AF7878 /* TSTTPSelectStyleCell.swift */,
  459. );
  460. path = View;
  461. sourceTree = "<group>";
  462. };
  463. A80327B12D813D1B00AF7878 /* TSTTPInputVC */ = {
  464. isa = PBXGroup;
  465. children = (
  466. A80327BD2D81576700AF7878 /* View */,
  467. A80327B42D813D7900AF7878 /* VM */,
  468. A80327B22D813D4800AF7878 /* TSTTPInputVC.swift */,
  469. );
  470. path = TSTTPInputVC;
  471. sourceTree = "<group>";
  472. };
  473. A80327B42D813D7900AF7878 /* VM */ = {
  474. isa = PBXGroup;
  475. children = (
  476. A80327B52D813D8100AF7878 /* TSTTPInputVM.swift */,
  477. );
  478. path = VM;
  479. sourceTree = "<group>";
  480. };
  481. A80327BD2D81576700AF7878 /* View */ = {
  482. isa = PBXGroup;
  483. children = (
  484. A875870E2D81689600286A66 /* TSPTPEnterView.swift */,
  485. A80327C42D81582F00AF7878 /* TSGeneralBtnView.swift */,
  486. A80327C22D81580800AF7878 /* TSTTPStyleView.swift */,
  487. A80327C02D8157C500AF7878 /* TSTitleView.swift */,
  488. A80327BE2D81576C00AF7878 /* TSPromptTextView.swift */,
  489. );
  490. path = View;
  491. sourceTree = "<group>";
  492. };
  493. A80E72182D3F390A00C64288 /* DiySticker */ = {
  494. isa = PBXGroup;
  495. children = (
  496. A80E72192D3F393500C64288 /* DiyStickerModel.swift */,
  497. );
  498. path = DiySticker;
  499. sourceTree = "<group>";
  500. };
  501. A80E721B2D3F3A3E00C64288 /* DiyWallpaper */ = {
  502. isa = PBXGroup;
  503. children = (
  504. A80E72322D3F471F00C64288 /* Templates */,
  505. A80E721C2D3F3A5600C64288 /* Elemnet */,
  506. A80E72182D3F390A00C64288 /* DiySticker */,
  507. );
  508. path = DiyWallpaper;
  509. sourceTree = "<group>";
  510. };
  511. A80E721C2D3F3A5600C64288 /* Elemnet */ = {
  512. isa = PBXGroup;
  513. children = (
  514. A80E721D2D3F3A7500C64288 /* DiyElement.swift */,
  515. A80E721F2D3F3A8600C64288 /* DiyElementBaseView.swift */,
  516. A80E72642D409B0D00C64288 /* DiyStaticElement.swift */,
  517. A80E72212D3F3A9200C64288 /* DiyStickerElement.swift */,
  518. A80E724E2D3F6D6000C64288 /* DiyFixedTextElement.swift */,
  519. A80E72232D3F3A9A00C64288 /* DiyTextElement.swift */,
  520. A80E72242D3F3A9A00C64288 /* HYHAddImageView.h */,
  521. A80E72252D3F3A9A00C64288 /* HYHAddImageView.m */,
  522. A80E72282D3F3A9C00C64288 /* AIEmoji-Bridging-Header.h */,
  523. );
  524. path = Elemnet;
  525. sourceTree = "<group>";
  526. };
  527. A80E72322D3F471F00C64288 /* Templates */ = {
  528. isa = PBXGroup;
  529. children = (
  530. A80E72682D409D6600C64288 /* StaticTemplates */,
  531. A80E72662D409C7D00C64288 /* Template+More.swift */,
  532. A80E72332D3F473400C64288 /* DiyPaperTemplate.swift */,
  533. A80E72372D3F473B00C64288 /* DiyPaperProtocol.swift */,
  534. A80E72342D3F473400C64288 /* DiyPaperTemplateBaseView.swift */,
  535. );
  536. path = Templates;
  537. sourceTree = "<group>";
  538. };
  539. A80E72442D3F4EDC00C64288 /* Json */ = {
  540. isa = PBXGroup;
  541. children = (
  542. );
  543. path = Json;
  544. sourceTree = "<group>";
  545. };
  546. A80E72512D3F984700C64288 /* TSDiyKeyboardVC */ = {
  547. isa = PBXGroup;
  548. children = (
  549. A80E72572D3FA65400C64288 /* ViewModel */,
  550. A80E72522D3F985D00C64288 /* TSWallpaperVC.swift */,
  551. );
  552. path = TSDiyKeyboardVC;
  553. sourceTree = "<group>";
  554. };
  555. A80E72542D3F98CF00C64288 /* TSDiyKeyboardViewVC */ = {
  556. isa = PBXGroup;
  557. children = (
  558. A80E72612D40924000C64288 /* VM */,
  559. A80E72602D4091FF00C64288 /* View */,
  560. A80E72552D3F98D600C64288 /* TSDiyKeyboardViewVC.swift */,
  561. );
  562. path = TSDiyKeyboardViewVC;
  563. sourceTree = "<group>";
  564. };
  565. A80E72572D3FA65400C64288 /* ViewModel */ = {
  566. isa = PBXGroup;
  567. children = (
  568. A80E72582D3FA65E00C64288 /* TSWallpaperViewModel.swift */,
  569. );
  570. path = ViewModel;
  571. sourceTree = "<group>";
  572. };
  573. A80E72602D4091FF00C64288 /* View */ = {
  574. isa = PBXGroup;
  575. children = (
  576. A80E725B2D3FB09100C64288 /* TSKeyboardView.swift */,
  577. A80E722E2D3F3E0C00C64288 /* TSDiyCanvasView.swift */,
  578. );
  579. path = View;
  580. sourceTree = "<group>";
  581. };
  582. A80E72612D40924000C64288 /* VM */ = {
  583. isa = PBXGroup;
  584. children = (
  585. A80E72622D40924500C64288 /* TSDiyKeyboardVM.swift */,
  586. );
  587. path = VM;
  588. sourceTree = "<group>";
  589. };
  590. A80E72682D409D6600C64288 /* StaticTemplates */ = {
  591. isa = PBXGroup;
  592. children = (
  593. A80E72692D409D9400C64288 /* TSDiyTLYFlowersView.swift */,
  594. A80E726B2D409E8000C64288 /* TSDiyTLPinkAnimalView.swift */,
  595. );
  596. path = StaticTemplates;
  597. sourceTree = "<group>";
  598. };
  599. A80E726D2D40DE0B00C64288 /* TSWallpaperPreviewVC */ = {
  600. isa = PBXGroup;
  601. children = (
  602. A80E726E2D40DE2900C64288 /* TSWallpaperPreviewVC.swift */,
  603. );
  604. path = TSWallpaperPreviewVC;
  605. sourceTree = "<group>";
  606. };
  607. A80E72702D40F85800C64288 /* LaunchVC */ = {
  608. isa = PBXGroup;
  609. children = (
  610. A80E72782D42285500C64288 /* TSBootPageVC.swift */,
  611. A80E72712D40F86000C64288 /* TSLaunchVC.swift */,
  612. );
  613. path = LaunchVC;
  614. sourceTree = "<group>";
  615. };
  616. A80E72752D41EFF000C64288 /* TSEmojisTutorialsVC */ = {
  617. isa = PBXGroup;
  618. children = (
  619. A80E72762D41EFF700C64288 /* TSEmojisTutorialsVC.swift */,
  620. );
  621. path = TSEmojisTutorialsVC;
  622. sourceTree = "<group>";
  623. };
  624. A80E73DD2D533E5800C64288 /* TSPurchaseMembershipVC */ = {
  625. isa = PBXGroup;
  626. children = (
  627. A80E73D82D533E5800C64288 /* TSPurchaseVC.swift */,
  628. );
  629. path = TSPurchaseMembershipVC;
  630. sourceTree = "<group>";
  631. };
  632. A80E73E32D533EB000C64288 /* Purchase */ = {
  633. isa = PBXGroup;
  634. children = (
  635. A80E73E22D533EB000C64288 /* TSPurchaseManager.swift */,
  636. );
  637. path = Purchase;
  638. sourceTree = "<group>";
  639. };
  640. A80E74222D5996BF00C64288 /* AIChat */ = {
  641. isa = PBXGroup;
  642. children = (
  643. A89EA6AF2D5C9861000EB181 /* TSAIChatHistoryVC */,
  644. A89EA6772D59D224000EB181 /* TSChatViewController */,
  645. );
  646. path = AIChat;
  647. sourceTree = "<group>";
  648. };
  649. A80EDD062D6C3F82003CD332 /* iOS */ = {
  650. isa = PBXGroup;
  651. children = (
  652. A80EDD042D6C3F82003CD332 /* Info.plist */,
  653. A80EDD052D6C3F82003CD332 /* MarkdownKit.h */,
  654. );
  655. path = iOS;
  656. sourceTree = "<group>";
  657. };
  658. A80EDD092D6C3F82003CD332 /* macOS */ = {
  659. isa = PBXGroup;
  660. children = (
  661. A80EDD072D6C3F82003CD332 /* Info.plist */,
  662. A80EDD082D6C3F82003CD332 /* MarkdownKit.h */,
  663. );
  664. path = macOS;
  665. sourceTree = "<group>";
  666. };
  667. A80EDD0A2D6C3F82003CD332 /* Resources */ = {
  668. isa = PBXGroup;
  669. children = (
  670. A80EDD062D6C3F82003CD332 /* iOS */,
  671. A80EDD092D6C3F82003CD332 /* macOS */,
  672. );
  673. path = Resources;
  674. sourceTree = "<group>";
  675. };
  676. A80EDD0C2D6C3F82003CD332 /* Code */ = {
  677. isa = PBXGroup;
  678. children = (
  679. A80EDD0B2D6C3F82003CD332 /* MarkdownCode+AppKit.swift */,
  680. );
  681. path = Code;
  682. sourceTree = "<group>";
  683. };
  684. A80EDD0E2D6C3F82003CD332 /* Header */ = {
  685. isa = PBXGroup;
  686. children = (
  687. A80EDD0D2D6C3F82003CD332 /* MarkdownHeader+AppKit.swift */,
  688. );
  689. path = Header;
  690. sourceTree = "<group>";
  691. };
  692. A80EDD102D6C3F82003CD332 /* Link */ = {
  693. isa = PBXGroup;
  694. children = (
  695. A80EDD0F2D6C3F82003CD332 /* MarkdownLink+AppKit.swift */,
  696. );
  697. path = Link;
  698. sourceTree = "<group>";
  699. };
  700. A80EDD112D6C3F82003CD332 /* Elements */ = {
  701. isa = PBXGroup;
  702. children = (
  703. A80EDD0C2D6C3F82003CD332 /* Code */,
  704. A80EDD0E2D6C3F82003CD332 /* Header */,
  705. A80EDD102D6C3F82003CD332 /* Link */,
  706. );
  707. path = Elements;
  708. sourceTree = "<group>";
  709. };
  710. A80EDD132D6C3F82003CD332 /* Extensions */ = {
  711. isa = PBXGroup;
  712. children = (
  713. A80EDD122D6C3F82003CD332 /* MarkdownFont+Traits.swift */,
  714. );
  715. path = Extensions;
  716. sourceTree = "<group>";
  717. };
  718. A80EDD152D6C3F82003CD332 /* AppKit */ = {
  719. isa = PBXGroup;
  720. children = (
  721. A80EDD112D6C3F82003CD332 /* Elements */,
  722. A80EDD132D6C3F82003CD332 /* Extensions */,
  723. A80EDD142D6C3F82003CD332 /* MarkdownParser+AppKit.swift */,
  724. );
  725. path = AppKit;
  726. sourceTree = "<group>";
  727. };
  728. A80EDD172D6C3F82003CD332 /* Bold */ = {
  729. isa = PBXGroup;
  730. children = (
  731. A80EDD162D6C3F82003CD332 /* MarkdownBold.swift */,
  732. );
  733. path = Bold;
  734. sourceTree = "<group>";
  735. };
  736. A80EDD192D6C3F82003CD332 /* Code */ = {
  737. isa = PBXGroup;
  738. children = (
  739. A80EDD182D6C3F82003CD332 /* MarkdownCode.swift */,
  740. );
  741. path = Code;
  742. sourceTree = "<group>";
  743. };
  744. A80EDD1D2D6C3F82003CD332 /* Escaping */ = {
  745. isa = PBXGroup;
  746. children = (
  747. A80EDD1A2D6C3F82003CD332 /* MarkdownCodeEscaping.swift */,
  748. A80EDD1B2D6C3F82003CD332 /* MarkdownEscaping.swift */,
  749. A80EDD1C2D6C3F82003CD332 /* MarkdownUnescaping.swift */,
  750. );
  751. path = Escaping;
  752. sourceTree = "<group>";
  753. };
  754. A80EDD1F2D6C3F82003CD332 /* Header */ = {
  755. isa = PBXGroup;
  756. children = (
  757. A80EDD1E2D6C3F82003CD332 /* MarkdownHeader.swift */,
  758. );
  759. path = Header;
  760. sourceTree = "<group>";
  761. };
  762. A80EDD212D6C3F82003CD332 /* Italic */ = {
  763. isa = PBXGroup;
  764. children = (
  765. A80EDD202D6C3F82003CD332 /* MarkdownItalic.swift */,
  766. );
  767. path = Italic;
  768. sourceTree = "<group>";
  769. };
  770. A80EDD242D6C3F82003CD332 /* Link */ = {
  771. isa = PBXGroup;
  772. children = (
  773. A80EDD222D6C3F82003CD332 /* MarkdownAutomaticLink.swift */,
  774. A80EDD232D6C3F82003CD332 /* MarkdownLink.swift */,
  775. );
  776. path = Link;
  777. sourceTree = "<group>";
  778. };
  779. A80EDD262D6C3F82003CD332 /* List */ = {
  780. isa = PBXGroup;
  781. children = (
  782. A80EDD252D6C3F82003CD332 /* MarkdownList.swift */,
  783. );
  784. path = List;
  785. sourceTree = "<group>";
  786. };
  787. A80EDD282D6C3F82003CD332 /* Quote */ = {
  788. isa = PBXGroup;
  789. children = (
  790. A80EDD272D6C3F82003CD332 /* MarkdownQuote.swift */,
  791. );
  792. path = Quote;
  793. sourceTree = "<group>";
  794. };
  795. A80EDD2A2D6C3F82003CD332 /* Strikethrough */ = {
  796. isa = PBXGroup;
  797. children = (
  798. A80EDD292D6C3F82003CD332 /* MarkdownStrikethrough.swift */,
  799. );
  800. path = Strikethrough;
  801. sourceTree = "<group>";
  802. };
  803. A80EDD2B2D6C3F82003CD332 /* Elements */ = {
  804. isa = PBXGroup;
  805. children = (
  806. A80EDD172D6C3F82003CD332 /* Bold */,
  807. A80EDD192D6C3F82003CD332 /* Code */,
  808. A80EDD1D2D6C3F82003CD332 /* Escaping */,
  809. A80EDD1F2D6C3F82003CD332 /* Header */,
  810. A80EDD212D6C3F82003CD332 /* Italic */,
  811. A80EDD242D6C3F82003CD332 /* Link */,
  812. A80EDD262D6C3F82003CD332 /* List */,
  813. A80EDD282D6C3F82003CD332 /* Quote */,
  814. A80EDD2A2D6C3F82003CD332 /* Strikethrough */,
  815. );
  816. path = Elements;
  817. sourceTree = "<group>";
  818. };
  819. A80EDD2D2D6C3F82003CD332 /* Extensions */ = {
  820. isa = PBXGroup;
  821. children = (
  822. A80EDD2C2D6C3F82003CD332 /* String+UTF16.swift */,
  823. );
  824. path = Extensions;
  825. sourceTree = "<group>";
  826. };
  827. A80EDD332D6C3F82003CD332 /* Protocols */ = {
  828. isa = PBXGroup;
  829. children = (
  830. A80EDD2E2D6C3F82003CD332 /* MarkdownCommonElement.swift */,
  831. A80EDD2F2D6C3F82003CD332 /* MarkdownElement.swift */,
  832. A80EDD302D6C3F82003CD332 /* MarkdownLevelElement.swift */,
  833. A80EDD312D6C3F82003CD332 /* MarkdownLinkElement.swift */,
  834. A80EDD322D6C3F82003CD332 /* MarkdownStyle.swift */,
  835. );
  836. path = Protocols;
  837. sourceTree = "<group>";
  838. };
  839. A80EDD362D6C3F82003CD332 /* Common */ = {
  840. isa = PBXGroup;
  841. children = (
  842. A80EDD2B2D6C3F82003CD332 /* Elements */,
  843. A80EDD2D2D6C3F82003CD332 /* Extensions */,
  844. A80EDD332D6C3F82003CD332 /* Protocols */,
  845. A80EDD342D6C3F82003CD332 /* MarkdownParser.swift */,
  846. A80EDD352D6C3F82003CD332 /* Typealias.swift */,
  847. );
  848. path = Common;
  849. sourceTree = "<group>";
  850. };
  851. A80EDD382D6C3F82003CD332 /* Code */ = {
  852. isa = PBXGroup;
  853. children = (
  854. A80EDD372D6C3F82003CD332 /* MarkdownCode+UIKit.swift */,
  855. );
  856. path = Code;
  857. sourceTree = "<group>";
  858. };
  859. A80EDD3A2D6C3F82003CD332 /* Header */ = {
  860. isa = PBXGroup;
  861. children = (
  862. A80EDD392D6C3F82003CD332 /* MarkdownHeader+UIKit.swift */,
  863. );
  864. path = Header;
  865. sourceTree = "<group>";
  866. };
  867. A80EDD3C2D6C3F82003CD332 /* Link */ = {
  868. isa = PBXGroup;
  869. children = (
  870. A80EDD3B2D6C3F82003CD332 /* MarkdownLink+UIKit.swift */,
  871. );
  872. path = Link;
  873. sourceTree = "<group>";
  874. };
  875. A80EDD3D2D6C3F82003CD332 /* Elements */ = {
  876. isa = PBXGroup;
  877. children = (
  878. A80EDD382D6C3F82003CD332 /* Code */,
  879. A80EDD3A2D6C3F82003CD332 /* Header */,
  880. A80EDD3C2D6C3F82003CD332 /* Link */,
  881. );
  882. path = Elements;
  883. sourceTree = "<group>";
  884. };
  885. A80EDD3F2D6C3F82003CD332 /* Extensions */ = {
  886. isa = PBXGroup;
  887. children = (
  888. A80EDD3E2D6C3F82003CD332 /* UIFont+Traits.swift */,
  889. );
  890. path = Extensions;
  891. sourceTree = "<group>";
  892. };
  893. A80EDD412D6C3F82003CD332 /* UIKit */ = {
  894. isa = PBXGroup;
  895. children = (
  896. A80EDD3D2D6C3F82003CD332 /* Elements */,
  897. A80EDD3F2D6C3F82003CD332 /* Extensions */,
  898. A80EDD402D6C3F82003CD332 /* MarkdownParser+UIKit.swift */,
  899. );
  900. path = UIKit;
  901. sourceTree = "<group>";
  902. };
  903. A80EDD422D6C3F82003CD332 /* Sources */ = {
  904. isa = PBXGroup;
  905. children = (
  906. A80EDD152D6C3F82003CD332 /* AppKit */,
  907. A80EDD362D6C3F82003CD332 /* Common */,
  908. A80EDD412D6C3F82003CD332 /* UIKit */,
  909. );
  910. path = Sources;
  911. sourceTree = "<group>";
  912. };
  913. A80EDD452D6C3F82003CD332 /* MarkdownKit */ = {
  914. isa = PBXGroup;
  915. children = (
  916. A80EDD0A2D6C3F82003CD332 /* Resources */,
  917. A80EDD422D6C3F82003CD332 /* Sources */,
  918. );
  919. path = MarkdownKit;
  920. sourceTree = "<group>";
  921. };
  922. A80EDDDC2D6EB17D003CD332 /* TSPTPGeneratorVC */ = {
  923. isa = PBXGroup;
  924. children = (
  925. A83404CF2D9D16E400C140E4 /* TSAIPhotoGeneratorBaseVC */,
  926. A80EDE042D6F3429003CD332 /* TSPTPBrowseVC */,
  927. A80EDDE92D6EBFF1003CD332 /* TSPhotoToPhotoVC */,
  928. A80EDDDD2D6EB19A003CD332 /* TSPTPGeneratorVC */,
  929. );
  930. path = TSPTPGeneratorVC;
  931. sourceTree = "<group>";
  932. };
  933. A80EDDDD2D6EB19A003CD332 /* TSPTPGeneratorVC */ = {
  934. isa = PBXGroup;
  935. children = (
  936. A80EDE012D6F1CCB003CD332 /* TSPTPGeneratorVC.swift */,
  937. A80EDDE82D6EBFCD003CD332 /* M */,
  938. A80EDDE52D6EBFAE003CD332 /* VM */,
  939. );
  940. path = TSPTPGeneratorVC;
  941. sourceTree = "<group>";
  942. };
  943. A80EDDDE2D6EB1A5003CD332 /* Cell */ = {
  944. isa = PBXGroup;
  945. children = (
  946. A80EDDE32D6EB8DC003CD332 /* TSPTPSelectStyleCell.swift */,
  947. A80EDDE12D6EB8C7003CD332 /* TSPTPUploadCell.swift */,
  948. A80EDDDF2D6EB1B8003CD332 /* TSPTPGeneratorCell.swift */,
  949. );
  950. path = Cell;
  951. sourceTree = "<group>";
  952. };
  953. A80EDDE52D6EBFAE003CD332 /* VM */ = {
  954. isa = PBXGroup;
  955. children = (
  956. A80EDDE62D6EBFBE003CD332 /* TSPTPGeneratorVM.swift */,
  957. );
  958. path = VM;
  959. sourceTree = "<group>";
  960. };
  961. A80EDDE82D6EBFCD003CD332 /* M */ = {
  962. isa = PBXGroup;
  963. children = (
  964. );
  965. path = M;
  966. sourceTree = "<group>";
  967. };
  968. A80EDDE92D6EBFF1003CD332 /* TSPhotoToPhotoVC */ = {
  969. isa = PBXGroup;
  970. children = (
  971. A80EDDED2D6EC020003CD332 /* M */,
  972. A80EDDEC2D6EC01B003CD332 /* VM */,
  973. A80EDDDE2D6EB1A5003CD332 /* Cell */,
  974. A80EDDEA2D6EC012003CD332 /* TSPhotoToPhotoVC.swift */,
  975. );
  976. path = TSPhotoToPhotoVC;
  977. sourceTree = "<group>";
  978. };
  979. A80EDDEC2D6EC01B003CD332 /* VM */ = {
  980. isa = PBXGroup;
  981. children = (
  982. A80EDDF52D6EC1E8003CD332 /* TSPhotoToPhotoVM.swift */,
  983. );
  984. path = VM;
  985. sourceTree = "<group>";
  986. };
  987. A80EDDED2D6EC020003CD332 /* M */ = {
  988. isa = PBXGroup;
  989. children = (
  990. A80EDDEF2D6EC044003CD332 /* TSPTPStyleModel.swift */,
  991. );
  992. path = M;
  993. sourceTree = "<group>";
  994. };
  995. A80EDDFE2D6EFD1A003CD332 /* TSPhotoPickerManager */ = {
  996. isa = PBXGroup;
  997. children = (
  998. A80EDDFF2D6EFD20003CD332 /* TSPhotoPickerManager.swift */,
  999. );
  1000. path = TSPhotoPickerManager;
  1001. sourceTree = "<group>";
  1002. };
  1003. A80EDE042D6F3429003CD332 /* TSPTPBrowseVC */ = {
  1004. isa = PBXGroup;
  1005. children = (
  1006. A80EDE052D6F3490003CD332 /* TSPTPBrowseVC.swift */,
  1007. );
  1008. path = TSPTPBrowseVC;
  1009. sourceTree = "<group>";
  1010. };
  1011. A83404C62D9BEC0300C140E4 /* Ex */ = {
  1012. isa = PBXGroup;
  1013. children = (
  1014. A83404C72D9BEC0700C140E4 /* UIFont+TSEx.swift */,
  1015. );
  1016. path = Ex;
  1017. sourceTree = "<group>";
  1018. };
  1019. A83404CF2D9D16E400C140E4 /* TSAIPhotoGeneratorBaseVC */ = {
  1020. isa = PBXGroup;
  1021. children = (
  1022. A83404D02D9D16F800C140E4 /* TSAIPhotoGeneratorBaseVC.swift */,
  1023. A83404D42D9D28CE00C140E4 /* TSAIPhotoBrowseVC.swift */,
  1024. );
  1025. path = TSAIPhotoGeneratorBaseVC;
  1026. sourceTree = "<group>";
  1027. };
  1028. A85E478D2D670DF10018D62D /* TSTextGeneralPictureVC */ = {
  1029. isa = PBXGroup;
  1030. children = (
  1031. A80327B12D813D1B00AF7878 /* TSTTPInputVC */,
  1032. A85E47942D672AC30018D62D /* TSTextPicGennerateVC */,
  1033. A85E47932D672AB40018D62D /* TSTextGeneralPictureVC */,
  1034. );
  1035. path = TSTextGeneralPictureVC;
  1036. sourceTree = "<group>";
  1037. };
  1038. A85E47902D6728810018D62D /* ViewModel */ = {
  1039. isa = PBXGroup;
  1040. children = (
  1041. A85E47912D67289F0018D62D /* TSTextGeneralPictureVM.swift */,
  1042. );
  1043. path = ViewModel;
  1044. sourceTree = "<group>";
  1045. };
  1046. A85E47932D672AB40018D62D /* TSTextGeneralPictureVC */ = {
  1047. isa = PBXGroup;
  1048. children = (
  1049. A80327AE2D8139F200AF7878 /* View */,
  1050. A85E47902D6728810018D62D /* ViewModel */,
  1051. A85E478E2D6711590018D62D /* TSTextGeneralPictureVC.swift */,
  1052. );
  1053. path = TSTextGeneralPictureVC;
  1054. sourceTree = "<group>";
  1055. };
  1056. A85E47942D672AC30018D62D /* TSTextPicGennerateVC */ = {
  1057. isa = PBXGroup;
  1058. children = (
  1059. A85E47972D672AE40018D62D /* TSTextPicGennerateVM.swift */,
  1060. A85E47952D672AD90018D62D /* TSTextPicGennerateVC.swift */,
  1061. );
  1062. path = TSTextPicGennerateVC;
  1063. sourceTree = "<group>";
  1064. };
  1065. A85E47992D6808B30018D62D /* TSBigIconBrowseVC */ = {
  1066. isa = PBXGroup;
  1067. children = (
  1068. A85E479C2D6809DA0018D62D /* TSBigIconBrowseCell.swift */,
  1069. A85E479A2D6808C30018D62D /* TSBigIconBrowseVC.swift */,
  1070. );
  1071. path = TSBigIconBrowseVC;
  1072. sourceTree = "<group>";
  1073. };
  1074. A85E47C12D6964500018D62D /* TSChatMsgBaseView */ = {
  1075. isa = PBXGroup;
  1076. children = (
  1077. A80EDD672D6C507D003CD332 /* TSChatMsgBaseView.swift */,
  1078. A85E47C22D69646D0018D62D /* TSMSGAIDefaultHeaderView.swift */,
  1079. A80EDD692D6C5176003CD332 /* TSChatMsgToolView.swift */,
  1080. A87587172D81812C00286A66 /* TSAIThinkingView.swift */,
  1081. );
  1082. path = TSChatMsgBaseView;
  1083. sourceTree = "<group>";
  1084. };
  1085. A87587112D81702700286A66 /* Data */ = {
  1086. isa = PBXGroup;
  1087. children = (
  1088. A87587102D81702700286A66 /* TSUserDefaultData.swift */,
  1089. );
  1090. path = Data;
  1091. sourceTree = "<group>";
  1092. };
  1093. A87587192D819F7000286A66 /* TSChatMessageUIModel */ = {
  1094. isa = PBXGroup;
  1095. children = (
  1096. A85E47BF2D6961B90018D62D /* TSChatMessageUIModel.swift */,
  1097. );
  1098. path = TSChatMessageUIModel;
  1099. sourceTree = "<group>";
  1100. };
  1101. A899D3482D8279E500AB9C1C /* CHatMessageModel */ = {
  1102. isa = PBXGroup;
  1103. children = (
  1104. A899D3492D8279FB00AB9C1C /* TSChatThinkingModel.swift */,
  1105. A89EA6502D59A9F4000EB181 /* TSChatMessage.swift */,
  1106. A89EA6522D59A9F4000EB181 /* TSChatUser.swift */,
  1107. );
  1108. path = CHatMessageModel;
  1109. sourceTree = "<group>";
  1110. };
  1111. A89EA64D2D59A9F4000EB181 /* Layout */ = {
  1112. isa = PBXGroup;
  1113. children = (
  1114. A89EA64C2D59A9F4000EB181 /* CustomMessageFlowLayout.swift */,
  1115. );
  1116. path = Layout;
  1117. sourceTree = "<group>";
  1118. };
  1119. A89EA6532D59A9F4000EB181 /* Models */ = {
  1120. isa = PBXGroup;
  1121. children = (
  1122. A899D3482D8279E500AB9C1C /* CHatMessageModel */,
  1123. A87587192D819F7000286A66 /* TSChatMessageUIModel */,
  1124. A89EA6A22D5B26E3000EB181 /* TSDBAIChatList.swift */,
  1125. A89EA6C02D5ED278000EB181 /* TSChatCellConfig.swift */,
  1126. A89EA64E2D59A9F4000EB181 /* TSLayoutSizeCalculator.swift */,
  1127. A89EA64F2D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift */,
  1128. );
  1129. path = Models;
  1130. sourceTree = "<group>";
  1131. };
  1132. A89EA6682D59AA31000EB181 /* Views */ = {
  1133. isa = PBXGroup;
  1134. children = (
  1135. A85E47C12D6964500018D62D /* TSChatMsgBaseView */,
  1136. A89EA6632D59AA31000EB181 /* CameraInputBarAccessoryView.swift */,
  1137. A89EA6662D59AA31000EB181 /* TSTextMessageContentCell.swift */,
  1138. A89EA6652D59AA31000EB181 /* TSMessageContentCell.swift */,
  1139. A89EA6672D59AA31000EB181 /* TableViewCells.swift */,
  1140. );
  1141. path = Views;
  1142. sourceTree = "<group>";
  1143. };
  1144. A89EA6772D59D224000EB181 /* TSChatViewController */ = {
  1145. isa = PBXGroup;
  1146. children = (
  1147. A89EA6D02D64333D000EB181 /* TSChatViewController */,
  1148. A89EA6C22D5F4094000EB181 /* TSChatInputBarVC */,
  1149. A89EA6782D59D238000EB181 /* ViewModel */,
  1150. A89EA6682D59AA31000EB181 /* Views */,
  1151. A89EA64D2D59A9F4000EB181 /* Layout */,
  1152. A89EA6532D59A9F4000EB181 /* Models */,
  1153. );
  1154. path = TSChatViewController;
  1155. sourceTree = "<group>";
  1156. };
  1157. A89EA6782D59D238000EB181 /* ViewModel */ = {
  1158. isa = PBXGroup;
  1159. children = (
  1160. A80EDD022D6C281E003CD332 /* TSMarkDownTool.swift */,
  1161. A89EA6792D59D248000EB181 /* TSAIChatVM.swift */,
  1162. );
  1163. path = ViewModel;
  1164. sourceTree = "<group>";
  1165. };
  1166. A89EA6AA2D5B3EE8000EB181 /* TSRealmManager */ = {
  1167. isa = PBXGroup;
  1168. children = (
  1169. A89EA6AB2D5B3EFA000EB181 /* TSRealmManager.swift */,
  1170. );
  1171. path = TSRealmManager;
  1172. sourceTree = "<group>";
  1173. };
  1174. A89EA6AF2D5C9861000EB181 /* TSAIChatHistoryVC */ = {
  1175. isa = PBXGroup;
  1176. children = (
  1177. A89EA6BB2D5DFB0D000EB181 /* TSViewController.swift */,
  1178. A89EA6B62D5D7ED2000EB181 /* M */,
  1179. A89EA6B22D5C9D36000EB181 /* VM */,
  1180. A89EA6B02D5C9D0B000EB181 /* TSAIChatHistoryVC.swift */,
  1181. );
  1182. path = TSAIChatHistoryVC;
  1183. sourceTree = "<group>";
  1184. };
  1185. A89EA6B22D5C9D36000EB181 /* VM */ = {
  1186. isa = PBXGroup;
  1187. children = (
  1188. A89EA6B32D5C9D3D000EB181 /* TSAIChatHistoryVM.swift */,
  1189. );
  1190. path = VM;
  1191. sourceTree = "<group>";
  1192. };
  1193. A89EA6B62D5D7ED2000EB181 /* M */ = {
  1194. isa = PBXGroup;
  1195. children = (
  1196. A89EA6B72D5D7EE4000EB181 /* TSAIChatHistoryModel.swift */,
  1197. );
  1198. path = M;
  1199. sourceTree = "<group>";
  1200. };
  1201. A89EA6BD2D5E03CD000EB181 /* Ex */ = {
  1202. isa = PBXGroup;
  1203. children = (
  1204. A89EA6BE2D5E03D3000EB181 /* Notification+Ex.swift */,
  1205. );
  1206. path = Ex;
  1207. sourceTree = "<group>";
  1208. };
  1209. A89EA6C22D5F4094000EB181 /* TSChatInputBarVC */ = {
  1210. isa = PBXGroup;
  1211. children = (
  1212. A89EA6C52D5F5C21000EB181 /* TSChatInputFullScreenVC.swift */,
  1213. A89EA6C32D5F40CB000EB181 /* TSChatInputBarVC.swift */,
  1214. );
  1215. path = TSChatInputBarVC;
  1216. sourceTree = "<group>";
  1217. };
  1218. A89EA6D02D64333D000EB181 /* TSChatViewController */ = {
  1219. isa = PBXGroup;
  1220. children = (
  1221. A89EA65E2D59AA11000EB181 /* TSChatViewController.swift */,
  1222. A89EA6822D59F4F1000EB181 /* TSChatViewController+ChatDelegate.swift */,
  1223. A89EA6C72D6359EA000EB181 /* TSChatViewController+VipView.swift */,
  1224. A89EA6C92D642C03000EB181 /* TSChatViewController+SendMsg.swift */,
  1225. A89EA6CB2D642CD4000EB181 /* TSChatViewController+NaviBar.swift */,
  1226. A89EA6CE2D6430EE000EB181 /* TSChatViewController+Keyboard.swift */,
  1227. );
  1228. path = TSChatViewController;
  1229. sourceTree = "<group>";
  1230. };
  1231. A8F774602D38E8B000AA6E93 = {
  1232. isa = PBXGroup;
  1233. children = (
  1234. A8F7748A2D38E8B700AA6E93 /* AIEmoji */,
  1235. A8F7746A2D38E8B000AA6E93 /* Products */,
  1236. 406F872E527C21AB2B2F0859 /* Pods */,
  1237. 97C7E956DF0731529C52523E /* Frameworks */,
  1238. );
  1239. sourceTree = "<group>";
  1240. };
  1241. A8F7746A2D38E8B000AA6E93 /* Products */ = {
  1242. isa = PBXGroup;
  1243. children = (
  1244. A8F774692D38E8B000AA6E93 /* AIEmoji.app */,
  1245. );
  1246. name = Products;
  1247. sourceTree = "<group>";
  1248. };
  1249. A8F7748A2D38E8B700AA6E93 /* AIEmoji */ = {
  1250. isa = PBXGroup;
  1251. children = (
  1252. A8FB02AE2D3E38FA0031A396 /* Res */,
  1253. A8F7751E2D38ED4500AA6E93 /* DataManger */,
  1254. A8F774922D38EA8C00AA6E93 /* Business */,
  1255. A8F774D82D38EA8C00AA6E93 /* Common */,
  1256. A8F774812D38E8B700AA6E93 /* AppDelegate.swift */,
  1257. A8F774822D38E8B700AA6E93 /* Assets.xcassets */,
  1258. A8F774832D38E8B700AA6E93 /* Info.plist */,
  1259. A83405012DA35CB700C140E4 /* InfoPlist.strings */,
  1260. A83404FC2DA35BFE00C140E4 /* Localizable.strings */,
  1261. A8F774852D38E8B700AA6E93 /* LaunchScreen.storyboard */,
  1262. );
  1263. path = AIEmoji;
  1264. sourceTree = "<group>";
  1265. };
  1266. A8F774922D38EA8C00AA6E93 /* Business */ = {
  1267. isa = PBXGroup;
  1268. children = (
  1269. A87587112D81702700286A66 /* Data */,
  1270. A80EDDDC2D6EB17D003CD332 /* TSPTPGeneratorVC */,
  1271. A85E478D2D670DF10018D62D /* TSTextGeneralPictureVC */,
  1272. A80E74222D5996BF00C64288 /* AIChat */,
  1273. A80E73DD2D533E5800C64288 /* TSPurchaseMembershipVC */,
  1274. A80E72702D40F85800C64288 /* LaunchVC */,
  1275. A8F775142D38EB5300AA6E93 /* TSWallpaperVC */,
  1276. A8F776402D3B75EA00AA6E93 /* General */,
  1277. A8F775332D38FC8E00AA6E93 /* VIewTool */,
  1278. A8F775152D38EB5D00AA6E93 /* TSSetingVC */,
  1279. A8F775132D38EB3F00AA6E93 /* TSGenmojiVC */,
  1280. A8F775112D38EB2800AA6E93 /* TSEmojisVC */,
  1281. A8F775102D38EAE800AA6E93 /* TSTabBarController */,
  1282. );
  1283. path = Business;
  1284. sourceTree = "<group>";
  1285. };
  1286. A8F774B52D38EA8C00AA6E93 /* GlobalImports */ = {
  1287. isa = PBXGroup;
  1288. children = (
  1289. A8F774B42D38EA8C00AA6E93 /* GlobalImports.swift */,
  1290. );
  1291. path = GlobalImports;
  1292. sourceTree = "<group>";
  1293. };
  1294. A8F774B72D38EA8C00AA6E93 /* NetworkManager */ = {
  1295. isa = PBXGroup;
  1296. children = (
  1297. A8F775392D3918A100AA6E93 /* TSNetWork */,
  1298. );
  1299. path = NetworkManager;
  1300. sourceTree = "<group>";
  1301. };
  1302. A8F774C62D38EA8C00AA6E93 /* ThirdParty */ = {
  1303. isa = PBXGroup;
  1304. children = (
  1305. A80EDD452D6C3F82003CD332 /* MarkdownKit */,
  1306. );
  1307. path = ThirdParty;
  1308. sourceTree = "<group>";
  1309. };
  1310. A8F774C82D38EA8C00AA6E93 /* TSCommonTool */ = {
  1311. isa = PBXGroup;
  1312. children = (
  1313. A8F774C72D38EA8C00AA6E93 /* TSCommonTool.swift */,
  1314. );
  1315. path = TSCommonTool;
  1316. sourceTree = "<group>";
  1317. };
  1318. A8F774CE2D38EA8C00AA6E93 /* Tool */ = {
  1319. isa = PBXGroup;
  1320. children = (
  1321. A85E479E2D6859F80018D62D /* TSRandomTextPicker.swift */,
  1322. A8F774C82D38EA8C00AA6E93 /* TSCommonTool */,
  1323. A8F774CA2D38EA8C00AA6E93 /* TSFileManagerTool.swift */,
  1324. A8F7754F2D39ECED00AA6E93 /* PhotoManager.swift */,
  1325. A834051F2DA3ADA600C140E4 /* TSPhotoSizeHelper.swift */,
  1326. A8F774CB2D38EA8C00AA6E93 /* TSNetworkTool.swift */,
  1327. A8F774CD2D38EA8C00AA6E93 /* WindowHelper.swift */,
  1328. );
  1329. path = Tool;
  1330. sourceTree = "<group>";
  1331. };
  1332. A8F774D72D38EA8C00AA6E93 /* View */ = {
  1333. isa = PBXGroup;
  1334. children = (
  1335. A80EDDFE2D6EFD1A003CD332 /* TSPhotoPickerManager */,
  1336. A8F776292D3A70AA00AA6E93 /* UILabel */,
  1337. );
  1338. path = View;
  1339. sourceTree = "<group>";
  1340. };
  1341. A8F774D82D38EA8C00AA6E93 /* Common */ = {
  1342. isa = PBXGroup;
  1343. children = (
  1344. A83404C62D9BEC0300C140E4 /* Ex */,
  1345. A89EA6AA2D5B3EE8000EB181 /* TSRealmManager */,
  1346. A80E73E32D533EB000C64288 /* Purchase */,
  1347. A8F774B52D38EA8C00AA6E93 /* GlobalImports */,
  1348. A8F774B72D38EA8C00AA6E93 /* NetworkManager */,
  1349. A8F774C62D38EA8C00AA6E93 /* ThirdParty */,
  1350. A8F774CE2D38EA8C00AA6E93 /* Tool */,
  1351. A8F774D72D38EA8C00AA6E93 /* View */,
  1352. );
  1353. path = Common;
  1354. sourceTree = "<group>";
  1355. };
  1356. A8F775102D38EAE800AA6E93 /* TSTabBarController */ = {
  1357. isa = PBXGroup;
  1358. children = (
  1359. A8F775162D38EB7400AA6E93 /* TSTabBarController.swift */,
  1360. );
  1361. path = TSTabBarController;
  1362. sourceTree = "<group>";
  1363. };
  1364. A8F775112D38EB2800AA6E93 /* TSEmojisVC */ = {
  1365. isa = PBXGroup;
  1366. children = (
  1367. A80E72752D41EFF000C64288 /* TSEmojisTutorialsVC */,
  1368. A8F7761F2D3A3DBC00AA6E93 /* TSEmojisVC */,
  1369. A8F7761E2D3A3DB400AA6E93 /* TSEmojisChildVC */,
  1370. );
  1371. path = TSEmojisVC;
  1372. sourceTree = "<group>";
  1373. };
  1374. A8F775132D38EB3F00AA6E93 /* TSGenmojiVC */ = {
  1375. isa = PBXGroup;
  1376. children = (
  1377. A8F7763A2D3B38E900AA6E93 /* TSGenmojiGennerateVC */,
  1378. A8F776242D3A6EA100AA6E93 /* TSGenmojiVC */,
  1379. );
  1380. path = TSGenmojiVC;
  1381. sourceTree = "<group>";
  1382. };
  1383. A8F775142D38EB5300AA6E93 /* TSWallpaperVC */ = {
  1384. isa = PBXGroup;
  1385. children = (
  1386. A80E726D2D40DE0B00C64288 /* TSWallpaperPreviewVC */,
  1387. A80E72542D3F98CF00C64288 /* TSDiyKeyboardViewVC */,
  1388. A80E72512D3F984700C64288 /* TSDiyKeyboardVC */,
  1389. A80E72442D3F4EDC00C64288 /* Json */,
  1390. A80E721B2D3F3A3E00C64288 /* DiyWallpaper */,
  1391. );
  1392. path = TSWallpaperVC;
  1393. sourceTree = "<group>";
  1394. };
  1395. A8F775152D38EB5D00AA6E93 /* TSSetingVC */ = {
  1396. isa = PBXGroup;
  1397. children = (
  1398. A8F775482D3935D600AA6E93 /* TSBusinessWebVC */,
  1399. A8F775412D39344A00AA6E93 /* SetingVC */,
  1400. );
  1401. path = TSSetingVC;
  1402. sourceTree = "<group>";
  1403. };
  1404. A8F7751E2D38ED4500AA6E93 /* DataManger */ = {
  1405. isa = PBXGroup;
  1406. children = (
  1407. A8F775242D38ED8300AA6E93 /* Config */,
  1408. );
  1409. path = DataManger;
  1410. sourceTree = "<group>";
  1411. };
  1412. A8F775242D38ED8300AA6E93 /* Config */ = {
  1413. isa = PBXGroup;
  1414. children = (
  1415. A8F775232D38ED8300AA6E93 /* TSConfig.swift */,
  1416. );
  1417. path = Config;
  1418. sourceTree = "<group>";
  1419. };
  1420. A8F775332D38FC8E00AA6E93 /* VIewTool */ = {
  1421. isa = PBXGroup;
  1422. children = (
  1423. A83404DC2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift */,
  1424. A89EA6B92D5DDE4E000EB181 /* TSPageNullView.swift */,
  1425. A8F7763B2D3B429A00AA6E93 /* TSCommonloadingView.swift */,
  1426. A83404D22D9D23CA00C140E4 /* TSGeneratorloadingView.swift */,
  1427. A8F776282D3A709200AA6E93 /* UILabel */,
  1428. A8F775342D38FC9A00AA6E93 /* TSViewTool.swift */,
  1429. );
  1430. path = VIewTool;
  1431. sourceTree = "<group>";
  1432. };
  1433. A8F775392D3918A100AA6E93 /* TSNetWork */ = {
  1434. isa = PBXGroup;
  1435. children = (
  1436. A8F775372D390C3C00AA6E93 /* TSNetworkManager.swift */,
  1437. A8F7753C2D3918E200AA6E93 /* TSNetWork+Business.swift */,
  1438. A8F7753A2D3918D700AA6E93 /* TSNetworkManager+Loading.swift */,
  1439. A89EA67C2D59F1AC000EB181 /* StreamPostRequest.swift */,
  1440. );
  1441. path = TSNetWork;
  1442. sourceTree = "<group>";
  1443. };
  1444. A8F775412D39344A00AA6E93 /* SetingVC */ = {
  1445. isa = PBXGroup;
  1446. children = (
  1447. A8F775462D39348500AA6E93 /* View */,
  1448. A8F775442D39346700AA6E93 /* TSSetingViewModel.swift */,
  1449. A8F775422D39346100AA6E93 /* TSSetingModel.swift */,
  1450. A85E47BD2D68999B0018D62D /* ShareActivityItemProvider.swift */,
  1451. A8F7753E2D39340D00AA6E93 /* TSSetingVC.swift */,
  1452. );
  1453. path = SetingVC;
  1454. sourceTree = "<group>";
  1455. };
  1456. A8F775462D39348500AA6E93 /* View */ = {
  1457. isa = PBXGroup;
  1458. children = (
  1459. A80E73E52D5348CF00C64288 /* SettingPurchaseTopView.swift */,
  1460. A8F7754A2D39376700AA6E93 /* TSSettingListView.swift */,
  1461. );
  1462. path = View;
  1463. sourceTree = "<group>";
  1464. };
  1465. A8F775482D3935D600AA6E93 /* TSBusinessWebVC */ = {
  1466. isa = PBXGroup;
  1467. children = (
  1468. A8F775472D3935D600AA6E93 /* TSBusinessWebVC.swift */,
  1469. );
  1470. path = TSBusinessWebVC;
  1471. sourceTree = "<group>";
  1472. };
  1473. A8F7754C2D39E57B00AA6E93 /* Model */ = {
  1474. isa = PBXGroup;
  1475. children = (
  1476. A8F7754D2D39E58B00AA6E93 /* TSGenmojiModel.swift */,
  1477. );
  1478. path = Model;
  1479. sourceTree = "<group>";
  1480. };
  1481. A8F7761E2D3A3DB400AA6E93 /* TSEmojisChildVC */ = {
  1482. isa = PBXGroup;
  1483. children = (
  1484. A8FB02B82D3E3B970031A396 /* VIew */,
  1485. A8FB02B12D3E39750031A396 /* Model */,
  1486. A8F776492D3E006200AA6E93 /* ViewModel */,
  1487. A8F776202D3A3F0100AA6E93 /* TSEmojisChildVC.swift */,
  1488. );
  1489. path = TSEmojisChildVC;
  1490. sourceTree = "<group>";
  1491. };
  1492. A8F7761F2D3A3DBC00AA6E93 /* TSEmojisVC */ = {
  1493. isa = PBXGroup;
  1494. children = (
  1495. A8F7764C2D3E009A00AA6E93 /* ViewModel */,
  1496. A8F775182D38EC6700AA6E93 /* TSEmojisVC.swift */,
  1497. );
  1498. path = TSEmojisVC;
  1499. sourceTree = "<group>";
  1500. };
  1501. A8F776242D3A6EA100AA6E93 /* TSGenmojiVC */ = {
  1502. isa = PBXGroup;
  1503. children = (
  1504. A8F776302D3A770600AA6E93 /* ViewModel */,
  1505. A8F776252D3A6EAF00AA6E93 /* View */,
  1506. A8F7751A2D38EC9700AA6E93 /* TSGenmojiVC.swift */,
  1507. A8F7754C2D39E57B00AA6E93 /* Model */,
  1508. );
  1509. path = TSGenmojiVC;
  1510. sourceTree = "<group>";
  1511. };
  1512. A8F776252D3A6EAF00AA6E93 /* View */ = {
  1513. isa = PBXGroup;
  1514. children = (
  1515. A8F776342D3A7C1C00AA6E93 /* TSGenmojiColSectionView.swift */,
  1516. A8F7762C2D3A748800AA6E93 /* TSGenmojiGennerateCell.swift */,
  1517. A8F776362D3A805700AA6E93 /* TSGenmojiItemCell.swift */,
  1518. );
  1519. path = View;
  1520. sourceTree = "<group>";
  1521. };
  1522. A8F776282D3A709200AA6E93 /* UILabel */ = {
  1523. isa = PBXGroup;
  1524. children = (
  1525. );
  1526. path = UILabel;
  1527. sourceTree = "<group>";
  1528. };
  1529. A8F776292D3A70AA00AA6E93 /* UILabel */ = {
  1530. isa = PBXGroup;
  1531. children = (
  1532. A8F7762A2D3A70AF00AA6E93 /* PaddedLabel.swift */,
  1533. );
  1534. path = UILabel;
  1535. sourceTree = "<group>";
  1536. };
  1537. A8F776302D3A770600AA6E93 /* ViewModel */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. A8F776312D3A771100AA6E93 /* TSGenmojiCollectionViewModel.swift */,
  1541. A8F7762E2D3A764E00AA6E93 /* TSGenmojiViewModel.swift */,
  1542. );
  1543. path = ViewModel;
  1544. sourceTree = "<group>";
  1545. };
  1546. A8F7763A2D3B38E900AA6E93 /* TSGenmojiGennerateVC */ = {
  1547. isa = PBXGroup;
  1548. children = (
  1549. A8F7763E2D3B68E000AA6E93 /* TSGenmojiGennerateViewModel.swift */,
  1550. A8F776382D3B38D600AA6E93 /* TSGenmojiGennerateVC.swift */,
  1551. );
  1552. path = TSGenmojiGennerateVC;
  1553. sourceTree = "<group>";
  1554. };
  1555. A8F776402D3B75EA00AA6E93 /* General */ = {
  1556. isa = PBXGroup;
  1557. children = (
  1558. A85E47992D6808B30018D62D /* TSBigIconBrowseVC */,
  1559. A89EA6BD2D5E03CD000EB181 /* Ex */,
  1560. A8F776412D3B75EF00AA6E93 /* TSBottomAlertVC.swift */,
  1561. A8F776432D3DE89900AA6E93 /* TSSmallIconBrowseVC */,
  1562. );
  1563. path = General;
  1564. sourceTree = "<group>";
  1565. };
  1566. A8F776432D3DE89900AA6E93 /* TSSmallIconBrowseVC */ = {
  1567. isa = PBXGroup;
  1568. children = (
  1569. A8F776462D3DE9BD00AA6E93 /* View */,
  1570. A8F776442D3DE8A600AA6E93 /* TSSmallIconBrowseVC.swift */,
  1571. );
  1572. path = TSSmallIconBrowseVC;
  1573. sourceTree = "<group>";
  1574. };
  1575. A8F776462D3DE9BD00AA6E93 /* View */ = {
  1576. isa = PBXGroup;
  1577. children = (
  1578. A8F776472D3DE9C200AA6E93 /* TSSmallIconBrowseCell.swift */,
  1579. );
  1580. path = View;
  1581. sourceTree = "<group>";
  1582. };
  1583. A8F776492D3E006200AA6E93 /* ViewModel */ = {
  1584. isa = PBXGroup;
  1585. children = (
  1586. A8FB02B62D3E3A3B0031A396 /* TSEmojisChildViewModel.swift */,
  1587. A8F7764A2D3E007100AA6E93 /* TSEmojisChildColViewModel.swift */,
  1588. );
  1589. path = ViewModel;
  1590. sourceTree = "<group>";
  1591. };
  1592. A8F7764C2D3E009A00AA6E93 /* ViewModel */ = {
  1593. isa = PBXGroup;
  1594. children = (
  1595. A8F7764D2D3E00A000AA6E93 /* TSEmojisColViewModel.swift */,
  1596. );
  1597. path = ViewModel;
  1598. sourceTree = "<group>";
  1599. };
  1600. A8FB02AE2D3E38FA0031A396 /* Res */ = {
  1601. isa = PBXGroup;
  1602. children = (
  1603. A83404D62D9D34ED00C140E4 /* Kelsi-fill.otf */,
  1604. A83404D72D9D34ED00C140E4 /* Kelsi-Regular.otf */,
  1605. A83404CB2D9BEED800C140E4 /* Poppins-BlackItalic.ttf */,
  1606. A83404DA2D9D382200C140E4 /* AccentURW-Reg.ttf */,
  1607. A80EDE072D700395003CD332 /* rotatingAnimation.gif */,
  1608. A89EA6972D5B19F0000EB181 /* Butterfly🦋.json */,
  1609. A80E723E2D3F4D3000C64288 /* Universe🌍.json */,
  1610. A80E723B2D3F4CA700C64288 /* Food🍔.json */,
  1611. A8EEADE82D3E76D30032C5A0 /* Beauty👸.json */,
  1612. A8EEADE62D3E767E0032C5A0 /* Drink🥤.json */,
  1613. A8EEADDD2D3E755C0032C5A0 /* Fruit🍊.json */,
  1614. A8EEADE12D3E760C0032C5A0 /* Dog🐕.json */,
  1615. A8EEADDF2D3E75870032C5A0 /* Crystal🔮.json */,
  1616. A8EEADD72D3E74CB0032C5A0 /* Pink🩷.json */,
  1617. A8EEADD52D3E6CD30032C5A0 /* Fish🐠.json */,
  1618. A8EEADD32D3E6C610032C5A0 /* Flower💐.json */,
  1619. A8FB02D02D3E6B240031A396 /* Cat🐱.json */,
  1620. A80E72452D3F4EED00C64288 /* sticker.json */,
  1621. A80E72472D3F4F0500C64288 /* templates.json */,
  1622. A80EDDFC2D6EF34C003CD332 /* photo_to_photo_style.json */,
  1623. A87587152D81733C00286A66 /* text_to_photo_style.json */,
  1624. );
  1625. path = Res;
  1626. sourceTree = "<group>";
  1627. };
  1628. A8FB02B12D3E39750031A396 /* Model */ = {
  1629. isa = PBXGroup;
  1630. children = (
  1631. A8FB02B22D3E399F0031A396 /* TSEmojisModel.swift */,
  1632. );
  1633. path = Model;
  1634. sourceTree = "<group>";
  1635. };
  1636. A8FB02B82D3E3B970031A396 /* VIew */ = {
  1637. isa = PBXGroup;
  1638. children = (
  1639. A8FB02B92D3E3BB00031A396 /* TSEmojisCoLItemCell.swift */,
  1640. );
  1641. path = VIew;
  1642. sourceTree = "<group>";
  1643. };
  1644. /* End PBXGroup section */
  1645. /* Begin PBXNativeTarget section */
  1646. A8F774682D38E8B000AA6E93 /* AIEmoji */ = {
  1647. isa = PBXNativeTarget;
  1648. buildConfigurationList = A8F7747C2D38E8B200AA6E93 /* Build configuration list for PBXNativeTarget "AIEmoji" */;
  1649. buildPhases = (
  1650. 8D2F920BECF35527D1C24A4F /* [CP] Check Pods Manifest.lock */,
  1651. A8F774652D38E8B000AA6E93 /* Sources */,
  1652. A8F774662D38E8B000AA6E93 /* Frameworks */,
  1653. A8F774672D38E8B000AA6E93 /* Resources */,
  1654. A6FFE8F95E002D0E705F3EE6 /* [CP] Embed Pods Frameworks */,
  1655. );
  1656. buildRules = (
  1657. );
  1658. dependencies = (
  1659. );
  1660. name = AIEmoji;
  1661. productName = AIEmoji;
  1662. productReference = A8F774692D38E8B000AA6E93 /* AIEmoji.app */;
  1663. productType = "com.apple.product-type.application";
  1664. };
  1665. /* End PBXNativeTarget section */
  1666. /* Begin PBXProject section */
  1667. A8F774612D38E8B000AA6E93 /* Project object */ = {
  1668. isa = PBXProject;
  1669. attributes = {
  1670. BuildIndependentTargetsInParallel = 1;
  1671. LastSwiftUpdateCheck = 1620;
  1672. LastUpgradeCheck = 1620;
  1673. TargetAttributes = {
  1674. A8F774682D38E8B000AA6E93 = {
  1675. CreatedOnToolsVersion = 16.2;
  1676. LastSwiftMigration = 1620;
  1677. };
  1678. };
  1679. };
  1680. buildConfigurationList = A8F774642D38E8B000AA6E93 /* Build configuration list for PBXProject "AIEmoji" */;
  1681. developmentRegion = en;
  1682. hasScannedForEncodings = 0;
  1683. knownRegions = (
  1684. en,
  1685. Base,
  1686. "zh-Hans",
  1687. ko,
  1688. es,
  1689. "pt-BR",
  1690. "pt-PT",
  1691. ja,
  1692. de,
  1693. );
  1694. mainGroup = A8F774602D38E8B000AA6E93;
  1695. minimizedProjectReferenceProxies = 1;
  1696. packageReferences = (
  1697. A89EA6492D59A588000EB181 /* XCRemoteSwiftPackageReference "MessageKit" */,
  1698. A85E47C42D697E750018D62D /* XCLocalSwiftPackageReference "../SwiftUIX-master" */,
  1699. );
  1700. preferredProjectObjectVersion = 77;
  1701. productRefGroup = A8F7746A2D38E8B000AA6E93 /* Products */;
  1702. projectDirPath = "";
  1703. projectRoot = "";
  1704. targets = (
  1705. A8F774682D38E8B000AA6E93 /* AIEmoji */,
  1706. );
  1707. };
  1708. /* End PBXProject section */
  1709. /* Begin PBXResourcesBuildPhase section */
  1710. A8F774672D38E8B000AA6E93 /* Resources */ = {
  1711. isa = PBXResourcesBuildPhase;
  1712. buildActionMask = 2147483647;
  1713. files = (
  1714. A83404D82D9D34ED00C140E4 /* Kelsi-fill.otf in Resources */,
  1715. A83404D92D9D34ED00C140E4 /* Kelsi-Regular.otf in Resources */,
  1716. A80E72482D3F4F0A00C64288 /* templates.json in Resources */,
  1717. A83404CC2D9BEED800C140E4 /* Poppins-BlackItalic.ttf in Resources */,
  1718. A87587162D81734300286A66 /* text_to_photo_style.json in Resources */,
  1719. A8EEADD42D3E6C660032C5A0 /* Flower💐.json in Resources */,
  1720. A8EEADE92D3E76D90032C5A0 /* Beauty👸.json in Resources */,
  1721. A89EA6982D5B1A01000EB181 /* Butterfly🦋.json in Resources */,
  1722. A8EEADE02D3E75900032C5A0 /* Crystal🔮.json in Resources */,
  1723. A80E723C2D3F4CAA00C64288 /* Food🍔.json in Resources */,
  1724. A8EEADE72D3E76860032C5A0 /* Drink🥤.json in Resources */,
  1725. A83404DB2D9D382200C140E4 /* AccentURW-Reg.ttf in Resources */,
  1726. A80EDE082D700395003CD332 /* rotatingAnimation.gif in Resources */,
  1727. A83404FE2DA35BFE00C140E4 /* Localizable.strings in Resources */,
  1728. A8FB02D12D3E6B2A0031A396 /* Cat🐱.json in Resources */,
  1729. A80E72462D3F4EED00C64288 /* sticker.json in Resources */,
  1730. A80EDDFD2D6EF34F003CD332 /* photo_to_photo_style.json in Resources */,
  1731. A8EEADD62D3E6CD80032C5A0 /* Fish🐠.json in Resources */,
  1732. A8EEADE22D3E76110032C5A0 /* Dog🐕.json in Resources */,
  1733. A83405032DA35CB700C140E4 /* InfoPlist.strings in Resources */,
  1734. A8EEADD82D3E74D20032C5A0 /* Pink🩷.json in Resources */,
  1735. A80E723F2D3F4D3700C64288 /* Universe🌍.json in Resources */,
  1736. A8EEADDE2D3E75610032C5A0 /* Fruit🍊.json in Resources */,
  1737. A8F7748E2D38E8B700AA6E93 /* Assets.xcassets in Resources */,
  1738. A8F774902D38E8B700AA6E93 /* LaunchScreen.storyboard in Resources */,
  1739. );
  1740. runOnlyForDeploymentPostprocessing = 0;
  1741. };
  1742. /* End PBXResourcesBuildPhase section */
  1743. /* Begin PBXShellScriptBuildPhase section */
  1744. 8D2F920BECF35527D1C24A4F /* [CP] Check Pods Manifest.lock */ = {
  1745. isa = PBXShellScriptBuildPhase;
  1746. buildActionMask = 2147483647;
  1747. files = (
  1748. );
  1749. inputFileListPaths = (
  1750. );
  1751. inputPaths = (
  1752. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1753. "${PODS_ROOT}/Manifest.lock",
  1754. );
  1755. name = "[CP] Check Pods Manifest.lock";
  1756. outputFileListPaths = (
  1757. );
  1758. outputPaths = (
  1759. "$(DERIVED_FILE_DIR)/Pods-AIEmoji-checkManifestLockResult.txt",
  1760. );
  1761. runOnlyForDeploymentPostprocessing = 0;
  1762. shellPath = /bin/sh;
  1763. 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";
  1764. showEnvVarsInLog = 0;
  1765. };
  1766. A6FFE8F95E002D0E705F3EE6 /* [CP] Embed Pods Frameworks */ = {
  1767. isa = PBXShellScriptBuildPhase;
  1768. buildActionMask = 2147483647;
  1769. files = (
  1770. );
  1771. inputFileListPaths = (
  1772. "${PODS_ROOT}/Target Support Files/Pods-AIEmoji/Pods-AIEmoji-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1773. );
  1774. name = "[CP] Embed Pods Frameworks";
  1775. outputFileListPaths = (
  1776. "${PODS_ROOT}/Target Support Files/Pods-AIEmoji/Pods-AIEmoji-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1777. );
  1778. runOnlyForDeploymentPostprocessing = 0;
  1779. shellPath = /bin/sh;
  1780. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AIEmoji/Pods-AIEmoji-frameworks.sh\"\n";
  1781. showEnvVarsInLog = 0;
  1782. };
  1783. /* End PBXShellScriptBuildPhase section */
  1784. /* Begin PBXSourcesBuildPhase section */
  1785. A8F774652D38E8B000AA6E93 /* Sources */ = {
  1786. isa = PBXSourcesBuildPhase;
  1787. buildActionMask = 2147483647;
  1788. files = (
  1789. A8F775252D38ED8300AA6E93 /* TSConfig.swift in Sources */,
  1790. A80E726C2D409E8300C64288 /* TSDiyTLPinkAnimalView.swift in Sources */,
  1791. A80E72652D409B0D00C64288 /* DiyStaticElement.swift in Sources */,
  1792. A80EDE002D6EFD22003CD332 /* TSPhotoPickerManager.swift in Sources */,
  1793. A89EA6B42D5C9D43000EB181 /* TSAIChatHistoryVM.swift in Sources */,
  1794. A80E72532D3F985E00C64288 /* TSWallpaperVC.swift in Sources */,
  1795. A8FB02B32D3E39A40031A396 /* TSEmojisModel.swift in Sources */,
  1796. A89EA6542D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift in Sources */,
  1797. A89EA6552D59A9F4000EB181 /* TSChatMessage.swift in Sources */,
  1798. A89EA6562D59A9F4000EB181 /* TSChatUser.swift in Sources */,
  1799. A80327C12D8157CB00AF7878 /* TSTitleView.swift in Sources */,
  1800. A89EA6582D59A9F4000EB181 /* TSLayoutSizeCalculator.swift in Sources */,
  1801. A83404DD2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift in Sources */,
  1802. A89EA6592D59A9F4000EB181 /* CustomMessageFlowLayout.swift in Sources */,
  1803. A80E72792D42285500C64288 /* TSBootPageVC.swift in Sources */,
  1804. A80E726A2D409E5400C64288 /* TSDiyTLYFlowersView.swift in Sources */,
  1805. A8F7764E2D3E00A800AA6E93 /* TSEmojisColViewModel.swift in Sources */,
  1806. A89EA6C82D6359ED000EB181 /* TSChatViewController+VipView.swift in Sources */,
  1807. A8F776422D3B75FC00AA6E93 /* TSBottomAlertVC.swift in Sources */,
  1808. A8F775192D38EC6800AA6E93 /* TSEmojisVC.swift in Sources */,
  1809. A80E725C2D3FB09400C64288 /* TSKeyboardView.swift in Sources */,
  1810. A89EA6CC2D642CE2000EB181 /* TSChatViewController+NaviBar.swift in Sources */,
  1811. A8F7753B2D3918DE00AA6E93 /* TSNetworkManager+Loading.swift in Sources */,
  1812. A80E721A2D3F393A00C64288 /* DiyStickerModel.swift in Sources */,
  1813. A80EDDEB2D6EC014003CD332 /* TSPhotoToPhotoVC.swift in Sources */,
  1814. A80E726F2D40DE2B00C64288 /* TSWallpaperPreviewVC.swift in Sources */,
  1815. A8F775492D3935D600AA6E93 /* TSBusinessWebVC.swift in Sources */,
  1816. A8F776392D3B38E600AA6E93 /* TSGenmojiGennerateVC.swift in Sources */,
  1817. A85E47C02D6961BB0018D62D /* TSChatMessageUIModel.swift in Sources */,
  1818. A8F774E02D38EA8C00AA6E93 /* TSCommonTool.swift in Sources */,
  1819. A89EA6BF2D5E03D6000EB181 /* Notification+Ex.swift in Sources */,
  1820. A8F774E12D38EA8C00AA6E93 /* TSFileManagerTool.swift in Sources */,
  1821. A80E73E42D533EB000C64288 /* TSPurchaseManager.swift in Sources */,
  1822. A80327C52D81584500AF7878 /* TSGeneralBtnView.swift in Sources */,
  1823. A8F7762F2D3A765400AA6E93 /* TSGenmojiViewModel.swift in Sources */,
  1824. A8F7751B2D38EC9800AA6E93 /* TSGenmojiVC.swift in Sources */,
  1825. A80EDD462D6C3F82003CD332 /* MarkdownEscaping.swift in Sources */,
  1826. A80EDD472D6C3F82003CD332 /* MarkdownItalic.swift in Sources */,
  1827. A80EDD482D6C3F82003CD332 /* MarkdownBold.swift in Sources */,
  1828. A80EDD4A2D6C3F82003CD332 /* MarkdownLevelElement.swift in Sources */,
  1829. A80EDD4B2D6C3F82003CD332 /* MarkdownParser+AppKit.swift in Sources */,
  1830. A80EDD4C2D6C3F82003CD332 /* Typealias.swift in Sources */,
  1831. A80EDD4D2D6C3F82003CD332 /* MarkdownStrikethrough.swift in Sources */,
  1832. A80EDD4E2D6C3F82003CD332 /* MarkdownUnescaping.swift in Sources */,
  1833. A80EDD4F2D6C3F82003CD332 /* MarkdownParser+UIKit.swift in Sources */,
  1834. A80EDD502D6C3F82003CD332 /* MarkdownFont+Traits.swift in Sources */,
  1835. A80EDD512D6C3F82003CD332 /* MarkdownCode.swift in Sources */,
  1836. A875870F2D81689A00286A66 /* TSPTPEnterView.swift in Sources */,
  1837. A80EDD522D6C3F82003CD332 /* MarkdownCode+AppKit.swift in Sources */,
  1838. A80EDD532D6C3F82003CD332 /* MarkdownHeader.swift in Sources */,
  1839. A80EDD542D6C3F82003CD332 /* MarkdownQuote.swift in Sources */,
  1840. A80EDD552D6C3F82003CD332 /* UIFont+Traits.swift in Sources */,
  1841. A80EDD562D6C3F82003CD332 /* MarkdownHeader+AppKit.swift in Sources */,
  1842. A80EDD572D6C3F82003CD332 /* MarkdownCode+UIKit.swift in Sources */,
  1843. A80EDD582D6C3F82003CD332 /* String+UTF16.swift in Sources */,
  1844. A80EDD592D6C3F82003CD332 /* MarkdownLink+UIKit.swift in Sources */,
  1845. A80EDD5A2D6C3F82003CD332 /* MarkdownParser.swift in Sources */,
  1846. A80EDD5B2D6C3F82003CD332 /* MarkdownCommonElement.swift in Sources */,
  1847. A80EDD682D6C5098003CD332 /* TSChatMsgBaseView.swift in Sources */,
  1848. A80EDD5C2D6C3F82003CD332 /* MarkdownList.swift in Sources */,
  1849. A80EDD5D2D6C3F82003CD332 /* MarkdownCodeEscaping.swift in Sources */,
  1850. A80EDD5E2D6C3F82003CD332 /* MarkdownLinkElement.swift in Sources */,
  1851. A80EDD5F2D6C3F82003CD332 /* MarkdownHeader+UIKit.swift in Sources */,
  1852. A80EDE062D6F3491003CD332 /* TSPTPBrowseVC.swift in Sources */,
  1853. A80EDD6A2D6C518E003CD332 /* TSChatMsgToolView.swift in Sources */,
  1854. A80EDD602D6C3F82003CD332 /* MarkdownElement.swift in Sources */,
  1855. A80EDD612D6C3F82003CD332 /* MarkdownLink+AppKit.swift in Sources */,
  1856. A80EDD622D6C3F82003CD332 /* MarkdownLink.swift in Sources */,
  1857. A80EDD632D6C3F82003CD332 /* MarkdownAutomaticLink.swift in Sources */,
  1858. A80EDD642D6C3F82003CD332 /* MarkdownStyle.swift in Sources */,
  1859. A89EA6CF2D6430F3000EB181 /* TSChatViewController+Keyboard.swift in Sources */,
  1860. A8F7754E2D39E59100AA6E93 /* TSGenmojiModel.swift in Sources */,
  1861. A8F776452D3DE8A800AA6E93 /* TSSmallIconBrowseVC.swift in Sources */,
  1862. A80E72632D40925000C64288 /* TSDiyKeyboardVM.swift in Sources */,
  1863. A8F775432D39346400AA6E93 /* TSSetingModel.swift in Sources */,
  1864. A89EA6BA2D5DDE5B000EB181 /* TSPageNullView.swift in Sources */,
  1865. A89EA6C12D5ED289000EB181 /* TSChatCellConfig.swift in Sources */,
  1866. A8F775502D39ECED00AA6E93 /* PhotoManager.swift in Sources */,
  1867. A8F7763F2D3B68E100AA6E93 /* TSGenmojiGennerateViewModel.swift in Sources */,
  1868. A80E72352D3F473400C64288 /* DiyPaperTemplateBaseView.swift in Sources */,
  1869. A80E72362D3F473400C64288 /* DiyPaperTemplate.swift in Sources */,
  1870. A80327C32D81581D00AF7878 /* TSTTPStyleView.swift in Sources */,
  1871. A85E47922D6728A00018D62D /* TSTextGeneralPictureVM.swift in Sources */,
  1872. A89EA6B82D5D7EE9000EB181 /* TSAIChatHistoryModel.swift in Sources */,
  1873. A80E72722D40F86000C64288 /* TSLaunchVC.swift in Sources */,
  1874. A8F775352D38FC9A00AA6E93 /* TSViewTool.swift in Sources */,
  1875. A80E72592D3FA67800C64288 /* TSWallpaperViewModel.swift in Sources */,
  1876. A89EA67D2D59F1AF000EB181 /* StreamPostRequest.swift in Sources */,
  1877. A80E722F2D3F3E1400C64288 /* TSDiyCanvasView.swift in Sources */,
  1878. A80E72672D409C7D00C64288 /* Template+More.swift in Sources */,
  1879. A89EA6AC2D5B3EFB000EB181 /* TSRealmManager.swift in Sources */,
  1880. A80EDDE42D6EB8FA003CD332 /* TSPTPSelectStyleCell.swift in Sources */,
  1881. A8F775172D38EB7400AA6E93 /* TSTabBarController.swift in Sources */,
  1882. A80E73E12D533E5800C64288 /* TSPurchaseVC.swift in Sources */,
  1883. A80EDDE02D6EB1B9003CD332 /* TSPTPGeneratorCell.swift in Sources */,
  1884. A8F776352D3A7C2B00AA6E93 /* TSGenmojiColSectionView.swift in Sources */,
  1885. A80327B32D813D4900AF7878 /* TSTTPInputVC.swift in Sources */,
  1886. A80E724F2D3F6D7F00C64288 /* DiyFixedTextElement.swift in Sources */,
  1887. A85E478F2D67115A0018D62D /* TSTextGeneralPictureVC.swift in Sources */,
  1888. A89EA6C42D5F40CC000EB181 /* TSChatInputBarVC.swift in Sources */,
  1889. A8F775452D39347100AA6E93 /* TSSetingViewModel.swift in Sources */,
  1890. A80E72202D3F3A8600C64288 /* DiyElementBaseView.swift in Sources */,
  1891. A8F776212D3A3F0200AA6E93 /* TSEmojisChildVC.swift in Sources */,
  1892. A80E72222D3F3A9200C64288 /* DiyStickerElement.swift in Sources */,
  1893. A85E47C32D6964A50018D62D /* TSMSGAIDefaultHeaderView.swift in Sources */,
  1894. A80EDD032D6C282B003CD332 /* TSMarkDownTool.swift in Sources */,
  1895. A8F775002D38EA8C00AA6E93 /* WindowHelper.swift in Sources */,
  1896. A8F7764B2D3E008500AA6E93 /* TSEmojisChildColViewModel.swift in Sources */,
  1897. A80E72772D41EFF900C64288 /* TSEmojisTutorialsVC.swift in Sources */,
  1898. A83404C82D9BEC0E00C140E4 /* UIFont+TSEx.swift in Sources */,
  1899. A8F776482D3DE9F600AA6E93 /* TSSmallIconBrowseCell.swift in Sources */,
  1900. A8F7753D2D3918F800AA6E93 /* TSNetWork+Business.swift in Sources */,
  1901. A83404D12D9D16FA00C140E4 /* TSAIPhotoGeneratorBaseVC.swift in Sources */,
  1902. A80327BF2D81578900AF7878 /* TSPromptTextView.swift in Sources */,
  1903. A80EDE022D6F1CCD003CD332 /* TSPTPGeneratorVC.swift in Sources */,
  1904. A85E479F2D6859FA0018D62D /* TSRandomTextPicker.swift in Sources */,
  1905. A80E72262D3F3A9A00C64288 /* HYHAddImageView.m in Sources */,
  1906. A80E72272D3F3A9A00C64288 /* DiyTextElement.swift in Sources */,
  1907. A8FB02BA2D3E3BB20031A396 /* TSEmojisCoLItemCell.swift in Sources */,
  1908. A87587182D81814500286A66 /* TSAIThinkingView.swift in Sources */,
  1909. A85E47962D672ADA0018D62D /* TSTextPicGennerateVC.swift in Sources */,
  1910. A80E72562D3F98D700C64288 /* TSDiyKeyboardViewVC.swift in Sources */,
  1911. A8F775032D38EA8C00AA6E93 /* GlobalImports.swift in Sources */,
  1912. A89EA67A2D59D25F000EB181 /* TSAIChatVM.swift in Sources */,
  1913. A80EDDF02D6EC045003CD332 /* TSPTPStyleModel.swift in Sources */,
  1914. A85E47BE2D68999B0018D62D /* ShareActivityItemProvider.swift in Sources */,
  1915. A8F7763C2D3B429B00AA6E93 /* TSCommonloadingView.swift in Sources */,
  1916. A8F776322D3A771400AA6E93 /* TSGenmojiCollectionViewModel.swift in Sources */,
  1917. A80E721E2D3F3A7500C64288 /* DiyElement.swift in Sources */,
  1918. A83404D32D9D23FA00C140E4 /* TSGeneratorloadingView.swift in Sources */,
  1919. A8F776372D3A806E00AA6E93 /* TSGenmojiItemCell.swift in Sources */,
  1920. A89EA6692D59AA31000EB181 /* CameraInputBarAccessoryView.swift in Sources */,
  1921. A89EA66B2D59AA31000EB181 /* TSTextMessageContentCell.swift in Sources */,
  1922. A83404D52D9D28D700C140E4 /* TSAIPhotoBrowseVC.swift in Sources */,
  1923. A89EA66C2D59AA31000EB181 /* TSMessageContentCell.swift in Sources */,
  1924. A87587122D81702700286A66 /* TSUserDefaultData.swift in Sources */,
  1925. A89EA66D2D59AA31000EB181 /* TableViewCells.swift in Sources */,
  1926. A8F7750A2D38EA8C00AA6E93 /* TSNetworkTool.swift in Sources */,
  1927. A8F7762D2D3A74A100AA6E93 /* TSGenmojiGennerateCell.swift in Sources */,
  1928. A89EA6BC2D5DFB12000EB181 /* TSViewController.swift in Sources */,
  1929. A85E479D2D6809DC0018D62D /* TSBigIconBrowseCell.swift in Sources */,
  1930. A89EA6832D59F4F9000EB181 /* TSChatViewController+ChatDelegate.swift in Sources */,
  1931. A89EA6A32D5B26E3000EB181 /* TSDBAIChatList.swift in Sources */,
  1932. A8F7753F2D39340E00AA6E93 /* TSSetingVC.swift in Sources */,
  1933. A8F7762B2D3A70B200AA6E93 /* PaddedLabel.swift in Sources */,
  1934. A80E73E62D5348D000C64288 /* SettingPurchaseTopView.swift in Sources */,
  1935. A899D34A2D827A0E00AB9C1C /* TSChatThinkingModel.swift in Sources */,
  1936. A80EDDE22D6EB8D8003CD332 /* TSPTPUploadCell.swift in Sources */,
  1937. A80EDDF62D6EC1ED003CD332 /* TSPhotoToPhotoVM.swift in Sources */,
  1938. A80E72382D3F473B00C64288 /* DiyPaperProtocol.swift in Sources */,
  1939. A83405202DA3ADA900C140E4 /* TSPhotoSizeHelper.swift in Sources */,
  1940. A8F775382D390C3C00AA6E93 /* TSNetworkManager.swift in Sources */,
  1941. A80EDDE72D6EBFC1003CD332 /* TSPTPGeneratorVM.swift in Sources */,
  1942. A85E47982D672AE70018D62D /* TSTextPicGennerateVM.swift in Sources */,
  1943. A89EA65F2D59AA11000EB181 /* TSChatViewController.swift in Sources */,
  1944. A89EA6C62D5F5C22000EB181 /* TSChatInputFullScreenVC.swift in Sources */,
  1945. A89EA6CA2D642C0A000EB181 /* TSChatViewController+SendMsg.swift in Sources */,
  1946. A85E479B2D6808C40018D62D /* TSBigIconBrowseVC.swift in Sources */,
  1947. A80327B62D813D8700AF7878 /* TSTTPInputVM.swift in Sources */,
  1948. A89EA6B12D5C9D0C000EB181 /* TSAIChatHistoryVC.swift in Sources */,
  1949. A8FB02B72D3E3A3D0031A396 /* TSEmojisChildViewModel.swift in Sources */,
  1950. A8F7754B2D39376800AA6E93 /* TSSettingListView.swift in Sources */,
  1951. A8F7748B2D38E8B700AA6E93 /* AppDelegate.swift in Sources */,
  1952. A80327B02D813A0200AF7878 /* TSTTPSelectStyleCell.swift in Sources */,
  1953. );
  1954. runOnlyForDeploymentPostprocessing = 0;
  1955. };
  1956. /* End PBXSourcesBuildPhase section */
  1957. /* Begin PBXVariantGroup section */
  1958. A83404FC2DA35BFE00C140E4 /* Localizable.strings */ = {
  1959. isa = PBXVariantGroup;
  1960. children = (
  1961. A83404FD2DA35BFE00C140E4 /* en */,
  1962. A83405072DA3717300C140E4 /* zh-Hans */,
  1963. A834050B2DA381A100C140E4 /* ko */,
  1964. A834050E2DA381AE00C140E4 /* es */,
  1965. A83405112DA3826000C140E4 /* pt-BR */,
  1966. A83405142DA3826600C140E4 /* pt-PT */,
  1967. A83405172DA3827C00C140E4 /* ja */,
  1968. A834051A2DA3828E00C140E4 /* de */,
  1969. );
  1970. name = Localizable.strings;
  1971. sourceTree = "<group>";
  1972. };
  1973. A83405012DA35CB700C140E4 /* InfoPlist.strings */ = {
  1974. isa = PBXVariantGroup;
  1975. children = (
  1976. A83405022DA35CB700C140E4 /* en */,
  1977. A83405062DA3717300C140E4 /* zh-Hans */,
  1978. A834050A2DA381A100C140E4 /* ko */,
  1979. A834050D2DA381AE00C140E4 /* es */,
  1980. A83405102DA3826000C140E4 /* pt-BR */,
  1981. A83405132DA3826600C140E4 /* pt-PT */,
  1982. A83405162DA3827C00C140E4 /* ja */,
  1983. A83405192DA3828E00C140E4 /* de */,
  1984. );
  1985. name = InfoPlist.strings;
  1986. sourceTree = "<group>";
  1987. };
  1988. A8F774852D38E8B700AA6E93 /* LaunchScreen.storyboard */ = {
  1989. isa = PBXVariantGroup;
  1990. children = (
  1991. A8F774842D38E8B700AA6E93 /* Base */,
  1992. A83405052DA3717300C140E4 /* zh-Hans */,
  1993. A83405092DA381A100C140E4 /* ko */,
  1994. A834050C2DA381AD00C140E4 /* es */,
  1995. A834050F2DA3826000C140E4 /* pt-BR */,
  1996. A83405122DA3826600C140E4 /* pt-PT */,
  1997. A83405152DA3827C00C140E4 /* ja */,
  1998. A83405182DA3828E00C140E4 /* de */,
  1999. );
  2000. name = LaunchScreen.storyboard;
  2001. sourceTree = "<group>";
  2002. };
  2003. /* End PBXVariantGroup section */
  2004. /* Begin XCBuildConfiguration section */
  2005. A8F7747D2D38E8B200AA6E93 /* Debug */ = {
  2006. isa = XCBuildConfiguration;
  2007. baseConfigurationReference = CA9B99CBEC45A6004629E790 /* Pods-AIEmoji.debug.xcconfig */;
  2008. buildSettings = {
  2009. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2010. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2011. CLANG_ENABLE_MODULES = YES;
  2012. CODE_SIGN_STYLE = Automatic;
  2013. CURRENT_PROJECT_VERSION = 3;
  2014. DEVELOPMENT_TEAM = 65UD255J84;
  2015. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2016. GENERATE_INFOPLIST_FILE = YES;
  2017. INFOPLIST_FILE = AIEmoji/Info.plist;
  2018. INFOPLIST_KEY_CFBundleDisplayName = Ghiblix;
  2019. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Allow us to access photos to upload your photos to generate new styles.";
  2020. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  2021. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  2022. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  2023. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  2024. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2025. LD_RUNPATH_SEARCH_PATHS = (
  2026. "$(inherited)",
  2027. "@executable_path/Frameworks",
  2028. );
  2029. MARKETING_VERSION = 2.9;
  2030. PRODUCT_BUNDLE_IDENTIFIER = com.girl.music.wallpaper;
  2031. PRODUCT_NAME = "$(TARGET_NAME)";
  2032. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2033. SUPPORTS_MACCATALYST = NO;
  2034. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  2035. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  2036. SWIFT_EMIT_LOC_STRINGS = YES;
  2037. SWIFT_OBJC_BRIDGING_HEADER = "AIEmoji/Business/TSWallpaperVC/DiyWallpaper/Elemnet/AIEmoji-Bridging-Header.h";
  2038. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2039. SWIFT_VERSION = 5.0;
  2040. TARGETED_DEVICE_FAMILY = 1;
  2041. };
  2042. name = Debug;
  2043. };
  2044. A8F7747E2D38E8B200AA6E93 /* Release */ = {
  2045. isa = XCBuildConfiguration;
  2046. baseConfigurationReference = 6E77A292B548CD79E381757E /* Pods-AIEmoji.release.xcconfig */;
  2047. buildSettings = {
  2048. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2049. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2050. CLANG_ENABLE_MODULES = YES;
  2051. CODE_SIGN_STYLE = Automatic;
  2052. CURRENT_PROJECT_VERSION = 3;
  2053. DEVELOPMENT_TEAM = 65UD255J84;
  2054. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2055. GENERATE_INFOPLIST_FILE = YES;
  2056. INFOPLIST_FILE = AIEmoji/Info.plist;
  2057. INFOPLIST_KEY_CFBundleDisplayName = Ghiblix;
  2058. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Allow us to access photos to upload your photos to generate new styles.";
  2059. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  2060. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  2061. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  2062. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  2063. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2064. LD_RUNPATH_SEARCH_PATHS = (
  2065. "$(inherited)",
  2066. "@executable_path/Frameworks",
  2067. );
  2068. MARKETING_VERSION = 2.9;
  2069. PRODUCT_BUNDLE_IDENTIFIER = com.girl.music.wallpaper;
  2070. PRODUCT_NAME = "$(TARGET_NAME)";
  2071. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2072. SUPPORTS_MACCATALYST = NO;
  2073. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  2074. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  2075. SWIFT_EMIT_LOC_STRINGS = YES;
  2076. SWIFT_OBJC_BRIDGING_HEADER = "AIEmoji/Business/TSWallpaperVC/DiyWallpaper/Elemnet/AIEmoji-Bridging-Header.h";
  2077. SWIFT_VERSION = 5.0;
  2078. TARGETED_DEVICE_FAMILY = 1;
  2079. };
  2080. name = Release;
  2081. };
  2082. A8F7747F2D38E8B200AA6E93 /* Debug */ = {
  2083. isa = XCBuildConfiguration;
  2084. buildSettings = {
  2085. ALWAYS_SEARCH_USER_PATHS = NO;
  2086. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2087. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2088. CLANG_ANALYZER_NONNULL = YES;
  2089. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2090. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2091. CLANG_ENABLE_MODULES = YES;
  2092. CLANG_ENABLE_OBJC_ARC = YES;
  2093. CLANG_ENABLE_OBJC_WEAK = YES;
  2094. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2095. CLANG_WARN_BOOL_CONVERSION = YES;
  2096. CLANG_WARN_COMMA = YES;
  2097. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2098. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2099. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2100. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2101. CLANG_WARN_EMPTY_BODY = YES;
  2102. CLANG_WARN_ENUM_CONVERSION = YES;
  2103. CLANG_WARN_INFINITE_RECURSION = YES;
  2104. CLANG_WARN_INT_CONVERSION = YES;
  2105. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2106. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2107. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2108. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2109. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2110. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2111. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2112. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2113. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2114. CLANG_WARN_UNREACHABLE_CODE = YES;
  2115. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2116. COPY_PHASE_STRIP = NO;
  2117. DEBUG_INFORMATION_FORMAT = dwarf;
  2118. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2119. ENABLE_TESTABILITY = YES;
  2120. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2121. GCC_C_LANGUAGE_STANDARD = gnu17;
  2122. GCC_DYNAMIC_NO_PIC = NO;
  2123. GCC_NO_COMMON_BLOCKS = YES;
  2124. GCC_OPTIMIZATION_LEVEL = 0;
  2125. GCC_PREPROCESSOR_DEFINITIONS = (
  2126. "DEBUG=1",
  2127. "$(inherited)",
  2128. );
  2129. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2130. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2131. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2132. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2133. GCC_WARN_UNUSED_FUNCTION = YES;
  2134. GCC_WARN_UNUSED_VARIABLE = YES;
  2135. IPHONEOS_DEPLOYMENT_TARGET = 18.2;
  2136. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2137. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2138. MTL_FAST_MATH = YES;
  2139. ONLY_ACTIVE_ARCH = YES;
  2140. SDKROOT = iphoneos;
  2141. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  2142. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2143. };
  2144. name = Debug;
  2145. };
  2146. A8F774802D38E8B200AA6E93 /* Release */ = {
  2147. isa = XCBuildConfiguration;
  2148. buildSettings = {
  2149. ALWAYS_SEARCH_USER_PATHS = NO;
  2150. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2151. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2152. CLANG_ANALYZER_NONNULL = YES;
  2153. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2154. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2155. CLANG_ENABLE_MODULES = YES;
  2156. CLANG_ENABLE_OBJC_ARC = YES;
  2157. CLANG_ENABLE_OBJC_WEAK = YES;
  2158. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2159. CLANG_WARN_BOOL_CONVERSION = YES;
  2160. CLANG_WARN_COMMA = YES;
  2161. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2162. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2163. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2164. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2165. CLANG_WARN_EMPTY_BODY = YES;
  2166. CLANG_WARN_ENUM_CONVERSION = YES;
  2167. CLANG_WARN_INFINITE_RECURSION = YES;
  2168. CLANG_WARN_INT_CONVERSION = YES;
  2169. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2170. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2171. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2172. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2173. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2174. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2175. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2176. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2177. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2178. CLANG_WARN_UNREACHABLE_CODE = YES;
  2179. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2180. COPY_PHASE_STRIP = NO;
  2181. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2182. ENABLE_NS_ASSERTIONS = NO;
  2183. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2184. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2185. GCC_C_LANGUAGE_STANDARD = gnu17;
  2186. GCC_NO_COMMON_BLOCKS = YES;
  2187. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2188. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2189. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2190. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2191. GCC_WARN_UNUSED_FUNCTION = YES;
  2192. GCC_WARN_UNUSED_VARIABLE = YES;
  2193. IPHONEOS_DEPLOYMENT_TARGET = 18.2;
  2194. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2195. MTL_ENABLE_DEBUG_INFO = NO;
  2196. MTL_FAST_MATH = YES;
  2197. SDKROOT = iphoneos;
  2198. SWIFT_COMPILATION_MODE = wholemodule;
  2199. VALIDATE_PRODUCT = YES;
  2200. };
  2201. name = Release;
  2202. };
  2203. /* End XCBuildConfiguration section */
  2204. /* Begin XCConfigurationList section */
  2205. A8F774642D38E8B000AA6E93 /* Build configuration list for PBXProject "AIEmoji" */ = {
  2206. isa = XCConfigurationList;
  2207. buildConfigurations = (
  2208. A8F7747F2D38E8B200AA6E93 /* Debug */,
  2209. A8F774802D38E8B200AA6E93 /* Release */,
  2210. );
  2211. defaultConfigurationIsVisible = 0;
  2212. defaultConfigurationName = Release;
  2213. };
  2214. A8F7747C2D38E8B200AA6E93 /* Build configuration list for PBXNativeTarget "AIEmoji" */ = {
  2215. isa = XCConfigurationList;
  2216. buildConfigurations = (
  2217. A8F7747D2D38E8B200AA6E93 /* Debug */,
  2218. A8F7747E2D38E8B200AA6E93 /* Release */,
  2219. );
  2220. defaultConfigurationIsVisible = 0;
  2221. defaultConfigurationName = Release;
  2222. };
  2223. /* End XCConfigurationList section */
  2224. /* Begin XCLocalSwiftPackageReference section */
  2225. A85E47C42D697E750018D62D /* XCLocalSwiftPackageReference "../SwiftUIX-master" */ = {
  2226. isa = XCLocalSwiftPackageReference;
  2227. relativePath = "../SwiftUIX-master";
  2228. };
  2229. /* End XCLocalSwiftPackageReference section */
  2230. /* Begin XCRemoteSwiftPackageReference section */
  2231. A89EA6492D59A588000EB181 /* XCRemoteSwiftPackageReference "MessageKit" */ = {
  2232. isa = XCRemoteSwiftPackageReference;
  2233. repositoryURL = "https://github.com/MessageKit/MessageKit";
  2234. requirement = {
  2235. kind = upToNextMajorVersion;
  2236. minimumVersion = 5.0.0;
  2237. };
  2238. };
  2239. /* End XCRemoteSwiftPackageReference section */
  2240. /* Begin XCSwiftPackageProductDependency section */
  2241. A85E47C52D697E750018D62D /* SwiftUIX */ = {
  2242. isa = XCSwiftPackageProductDependency;
  2243. productName = SwiftUIX;
  2244. };
  2245. A89EA64A2D59A588000EB181 /* MessageKit */ = {
  2246. isa = XCSwiftPackageProductDependency;
  2247. package = A89EA6492D59A588000EB181 /* XCRemoteSwiftPackageReference "MessageKit" */;
  2248. productName = MessageKit;
  2249. };
  2250. /* End XCSwiftPackageProductDependency section */
  2251. };
  2252. rootObject = A8F774612D38E8B000AA6E93 /* Project object */;
  2253. }