project.pbxproj 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 56;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 1236B6852D81465800A97809 /* pb_call_in_long.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 1236B6842D81465800A97809 /* pb_call_in_long.mp3 */; };
  10. 1241AEBC2D017E8C0088175A /* MasterKeyUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */; };
  11. 1241AEBD2D017E8C0088175A /* FileEncryption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1241AEBA2D017E8C0088175A /* FileEncryption.swift */; };
  12. 125363982D8031C30006C3D2 /* pb_call_busy.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 125363972D8031C30006C3D2 /* pb_call_busy.mp3 */; };
  13. 1258BCB62D82D71200EFF5BD /* ChatWallpaperViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1258BCB52D82D71200EFF5BD /* ChatWallpaperViewController.swift */; };
  14. 12B1D84E2D8806C400313CCA /* pb_call_in_ios.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 12B1D84A2D8806C400313CCA /* pb_call_in_ios.mp3 */; };
  15. 12B1D84F2D8806C400313CCA /* pb_call_out_ios.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 12B1D84B2D8806C400313CCA /* pb_call_out_ios.mp3 */; };
  16. 12C36CEB2D0299630095BEC1 /* SecureFolderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */; };
  17. 12CB2E472D82F5660071E594 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */; };
  18. 6E1C44ABFD345CCE1F612AAC /* Pods_NexilisLite_NexilisLiteTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92C32B27C013B8842F336D7A /* Pods_NexilisLite_NexilisLiteTests.framework */; };
  19. 89065265FF48521F6BC9DA48 /* Pods_NexilisLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9372060C226B25B34A207951 /* Pods_NexilisLite.framework */; };
  20. CD1E6E6D2A0B7C3600BF871F /* NexilisLite.docc in Sources */ = {isa = PBXBuildFile; fileRef = CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */; };
  21. CD1E6E732A0B7C3600BF871F /* NexilisLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */; };
  22. CD1E6E782A0B7C3600BF871F /* NexilisLiteTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */; };
  23. CD1E6E792A0B7C3600BF871F /* NexilisLite.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */; settings = {ATTRIBUTES = (Public, ); }; };
  24. CD1E72062A0BA86100BF871F /* OutgoingThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */; };
  25. CD1E72072A0BA86100BF871F /* WhiteboardCanvas.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */; };
  26. CD1E72082A0BA86100BF871F /* Units.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71512A0BA86100BF871F /* Units.swift */; };
  27. CD1E720A2A0BA86100BF871F /* APIS.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71532A0BA86100BF871F /* APIS.swift */; };
  28. CD1E720B2A0BA86100BF871F /* FloatingButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71552A0BA86100BF871F /* FloatingButton.swift */; };
  29. CD1E720C2A0BA86100BF871F /* Whiteboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71562A0BA86100BF871F /* Whiteboard.swift */; };
  30. CD1E720D2A0BA86100BF871F /* InquiryThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71572A0BA86100BF871F /* InquiryThread.swift */; };
  31. CD1E720E2A0BA86100BF871F /* Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71582A0BA86100BF871F /* Network.swift */; };
  32. CD1E720F2A0BA86100BF871F /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71592A0BA86100BF871F /* Download.swift */; };
  33. CD1E72102A0BA86100BF871F /* Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715A2A0BA86100BF871F /* Extension.swift */; };
  34. CD1E72112A0BA86100BF871F /* WhiteboardReceiver.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */; };
  35. CD1E72122A0BA86100BF871F /* CoreMessage_TMessageKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */; };
  36. CD1E72132A0BA86100BF871F /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715D2A0BA86100BF871F /* Database.swift */; };
  37. CD1E72142A0BA86100BF871F /* Model.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715F2A0BA86100BF871F /* Model.swift */; };
  38. CD1E72152A0BA86100BF871F /* Chat.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71602A0BA86100BF871F /* Chat.swift */; };
  39. CD1E72162A0BA86100BF871F /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71612A0BA86100BF871F /* User.swift */; };
  40. CD1E72172A0BA86100BF871F /* CategoryCC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71622A0BA86100BF871F /* CategoryCC.swift */; };
  41. CD1E72182A0BA86100BF871F /* WorkingArea.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71632A0BA86100BF871F /* WorkingArea.swift */; };
  42. CD1E72192A0BA86100BF871F /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71642A0BA86100BF871F /* Group.swift */; };
  43. CD1E721A2A0BA86100BF871F /* NotifSound.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71652A0BA86100BF871F /* NotifSound.swift */; };
  44. CD1E721B2A0BA86100BF871F /* Nexilis.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71662A0BA86100BF871F /* Nexilis.swift */; };
  45. CD1E721C2A0BA86100BF871F /* ContactCallViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */; };
  46. CD1E721D2A0BA86100BF871F /* WorkingAreaPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */; };
  47. CD1E721E2A0BA86100BF871F /* BNIBookingWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */; };
  48. CD1E721F2A0BA86100BF871F /* EditorStarMessages.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */; };
  49. CD1E72212A0BA86100BF871F /* EditorPersonal.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71702A0BA86100BF871F /* EditorPersonal.swift */; };
  50. CD1E72222A0BA86100BF871F /* FormEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71712A0BA86100BF871F /* FormEditor.swift */; };
  51. CD1E72232A0BA86100BF871F /* EditorGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71722A0BA86100BF871F /* EditorGroup.swift */; };
  52. CD1E72242A0BA86100BF871F /* PreviewAttachmentImageVideo.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */; };
  53. CD1E72252A0BA86100BF871F /* CustomTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71742A0BA86100BF871F /* CustomTextView.swift */; };
  54. CD1E72262A0BA86100BF871F /* QmeraGroupChooserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */; };
  55. CD1E72272A0BA86100BF871F /* QmeraStreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */; };
  56. CD1E72282A0BA86100BF871F /* CreateViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71782A0BA86100BF871F /* CreateViewController.swift */; };
  57. CD1E72292A0BA86100BF871F /* QmeraUserChooserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */; };
  58. CD1E722A2A0BA86100BF871F /* StreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */; };
  59. CD1E722B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */; };
  60. CD1E722C2A0BA86100BF871F /* CallManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717D2A0BA86100BF871F /* CallManager.swift */; };
  61. CD1E722D2A0BA86100BF871F /* QmeraAudioConference.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */; };
  62. CD1E722E2A0BA86100BF871F /* AudioViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717F2A0BA86100BF871F /* AudioViewController.swift */; };
  63. CD1E722F2A0BA86100BF871F /* ProfileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71802A0BA86100BF871F /* ProfileView.swift */; };
  64. CD1E72312A0BA86100BF871F /* QmeraAudioViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */; };
  65. CD1E72322A0BA86100BF871F /* QmeraCallContactViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */; };
  66. CD1E72332A0BA86100BF871F /* WhiteboardViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */; };
  67. CD1E72342A0BA86100BF871F /* QmeraVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */; };
  68. CD1E72352A0BA86100BF871F /* VideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71862A0BA86100BF871F /* VideoViewController.swift */; };
  69. CD1E72372A0BA86100BF871F /* GroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71882A0BA86100BF871F /* GroupView.swift */; };
  70. CD1E72382A0BA86100BF871F /* GroupCreateViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */; };
  71. CD1E72392A0BA86100BF871F /* BroadcastMembersTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */; };
  72. CD1E723A2A0BA86100BF871F /* QRScannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718C2A0BA86100BF871F /* QRScannerView.swift */; };
  73. CD1E723B2A0BA86100BF871F /* GroupDescViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */; };
  74. CD1E723C2A0BA86100BF871F /* HistoryBroadcastViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */; };
  75. CD1E723D2A0BA86100BF871F /* CheckConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718F2A0BA86100BF871F /* CheckConnection.swift */; };
  76. CD1E723E2A0BA86100BF871F /* SignUpSignIn.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */; };
  77. CD1E723F2A0BA86100BF871F /* GroupDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */; };
  78. CD1E72402A0BA86100BF871F /* ChangeNamePassswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */; };
  79. CD1E72412A0BA86100BF871F /* ContactChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */; };
  80. CD1E72422A0BA86100BF871F /* ChangeDeviceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */; };
  81. CD1E72432A0BA86100BF871F /* DocumentPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71952A0BA86100BF871F /* DocumentPicker.swift */; };
  82. CD1E72442A0BA86100BF871F /* ChangePasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */; };
  83. CD1E72452A0BA86100BF871F /* GroupNameViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */; };
  84. CD1E72462A0BA86100BF871F /* GroupTopicViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */; };
  85. CD1E72472A0BA86100BF871F /* SettingTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */; };
  86. CD1E72482A0BA86100BF871F /* BroadcastModeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */; };
  87. CD1E72492A0BA86100BF871F /* BackupRestoreOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */; };
  88. CD1E724A2A0BA86100BF871F /* HistoryCCViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */; };
  89. CD1E724B2A0BA86100BF871F /* ChangeNameTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */; };
  90. CD1E724C2A0BA86100BF871F /* NotificationSound.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719E2A0BA86100BF871F /* NotificationSound.swift */; };
  91. CD1E724D2A0BA86100BF871F /* TypeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719F2A0BA86100BF871F /* TypeViewController.swift */; };
  92. CD1E724E2A0BA86100BF871F /* VerifyEmail.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */; };
  93. CD1E724F2A0BA86100BF871F /* SetInternalCSAccount.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */; };
  94. CD1E72502A0BA86100BF871F /* BroadcastVariantViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */; };
  95. CD1E72522A0BA86100BF871F /* ImageVideoPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */; };
  96. CD1E72532A0BA86100BF871F /* BackupRestoreView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */; };
  97. CD1E72542A0BA86100BF871F /* ProfileViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */; };
  98. CD1E72552A0BA86100BF871F /* BroadcastMembersTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */; };
  99. CD1E72562A0BA86100BF871F /* BroadcastViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */; };
  100. CD1E72572A0BA86100BF871F /* GroupMemberViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */; };
  101. CD1E72582A0BA86100BF871F /* SetOfficerBNI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */; };
  102. CD1E72592A0BA86100BF871F /* AddFriendTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */; };
  103. CD1E725A2A0BA86100BF871F /* ScannerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */; };
  104. CD1E725B2A0BA86100BF871F /* AudienceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */; };
  105. CD1E725C2A0BA86100BF871F /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AE2A0BA86100BF871F /* Utils.swift */; };
  106. CD1E725D2A0BA86100BF871F /* WhiteboardDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */; };
  107. CD1E725E2A0BA86100BF871F /* TMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B02A0BA86100BF871F /* TMessage.swift */; };
  108. CD1E725F2A0BA86100BF871F /* CoreMessage_TMessageBank.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */; };
  109. CD1E72602A0BA86100BF871F /* Callback.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B22A0BA86100BF871F /* Callback.swift */; };
  110. CD1E72612A0BA86100BF871F /* CoreMessage_TMessageCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */; };
  111. CD1E72622A0BA86100BF871F /* IncomingThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B42A0BA86100BF871F /* IncomingThread.swift */; };
  112. CD1E72632A0BA86100BF871F /* CoreMessage_TMessageUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */; };
  113. CD2585C42D59DA60002AB416 /* Dutifully.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B72D59DA60002AB416 /* Dutifully.mp3 */; };
  114. CD2585C52D59DA60002AB416 /* Juntos.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BB2D59DA60002AB416 /* Juntos.mp3 */; };
  115. CD2585C62D59DA60002AB416 /* Light_Hearted.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */; };
  116. CD2585C72D59DA60002AB416 /* Nexilis_Message.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */; };
  117. CD2585C82D59DA60002AB416 /* Out_of_Nowhere.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */; };
  118. CD2585C92D59DA60002AB416 /* Swift_gesture.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */; };
  119. CD2585CA2D59DA60002AB416 /* Relax.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C02D59DA60002AB416 /* Relax.mp3 */; };
  120. CD2585CB2D59DA60002AB416 /* Eventually.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B92D59DA60002AB416 /* Eventually.mp3 */; };
  121. CD2585CC2D59DA60002AB416 /* Upset.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C32D59DA60002AB416 /* Upset.mp3 */; };
  122. CD2585CD2D59DA60002AB416 /* Elegant.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B82D59DA60002AB416 /* Elegant.mp3 */; };
  123. CD2585CE2D59DA60002AB416 /* Strong_Minded.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */; };
  124. CD2585CF2D59DA60002AB416 /* Magic.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BD2D59DA60002AB416 /* Magic.mp3 */; };
  125. CD2585D02D59DA60002AB416 /* Hangover.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BA2D59DA60002AB416 /* Hangover.mp3 */; };
  126. CD2585D12D59DA73002AB416 /* pb_call_in.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */; };
  127. CD2585D22D59DA79002AB416 /* pb_call_out.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */; };
  128. CD2B01212D43945500C11B20 /* pb_gpt_bot.gif in Resources */ = {isa = PBXBuildFile; fileRef = CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */; };
  129. CD2B01242D43961E00C11B20 /* QRProfileController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2B01222D43961E00C11B20 /* QRProfileController.swift */; };
  130. CD2B01252D43961E00C11B20 /* QRScannerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2B01232D43961E00C11B20 /* QRScannerController.swift */; };
  131. CD43C80C2D687DBF00297C6E /* CreateConferenceCallController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD43C80A2D687DBF00297C6E /* CreateConferenceCallController.swift */; };
  132. CD43C80D2D687DBF00297C6E /* VideoConferenceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD43C80B2D687DBF00297C6E /* VideoConferenceViewController.swift */; };
  133. CD46A06B2A0CE307009E4C87 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = CD469FC82A0CE2DE009E4C87 /* Localizable.strings */; };
  134. CD46A06C2A0CE307009E4C87 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */; };
  135. CD46A06D2A0CE307009E4C87 /* PreviewAttachmentImageVideo.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */; };
  136. CD46A06E2A0CE307009E4C87 /* Palio.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */; };
  137. CD46A06F2A0CE310009E4C87 /* NexilisLiteResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */; };
  138. CD46A0702A0CE320009E4C87 /* sticker_10000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */; };
  139. CD46A0712A0CE320009E4C87 /* sticker_20000000_22.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */; };
  140. CD46A0722A0CE320009E4C87 /* sticker_30000000_38.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */; };
  141. CD46A0732A0CE320009E4C87 /* sticker_30000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */; };
  142. CD46A0742A0CE320009E4C87 /* sticker_30000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */; };
  143. CD46A0752A0CE320009E4C87 /* sticker_30000000_39.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */; };
  144. CD46A0762A0CE320009E4C87 /* sticker_20000000_23.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */; };
  145. CD46A0772A0CE320009E4C87 /* sticker_10000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */; };
  146. CD46A0782A0CE320009E4C87 /* sticker_10000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */; };
  147. CD46A0792A0CE320009E4C87 /* sticker_20000000_21.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */; };
  148. CD46A07A2A0CE320009E4C87 /* sticker_30000000_13.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */; };
  149. CD46A07B2A0CE320009E4C87 /* sticker_30000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */; };
  150. CD46A07C2A0CE320009E4C87 /* sticker_30000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */; };
  151. CD46A07D2A0CE320009E4C87 /* sticker_30000000_12.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */; };
  152. CD46A07E2A0CE320009E4C87 /* sticker_20000000_20.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */; };
  153. CD46A07F2A0CE320009E4C87 /* sticker_10000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */; };
  154. CD46A0802A0CE320009E4C87 /* sticker_10000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */; };
  155. CD46A0812A0CE320009E4C87 /* sticker_20000000_18.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */; };
  156. CD46A0822A0CE320009E4C87 /* sticker_30000000_16.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */; };
  157. CD46A0832A0CE320009E4C87 /* sticker_30000000_17.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */; };
  158. CD46A0842A0CE320009E4C87 /* sticker_20000000_19.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */; };
  159. CD46A0852A0CE320009E4C87 /* sticker_10000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */; };
  160. CD46A0862A0CE320009E4C87 /* sticker_10000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */; };
  161. CD46A0872A0CE320009E4C87 /* sticker_20000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */; };
  162. CD46A0882A0CE320009E4C87 /* sticker_30000000_15.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */; };
  163. CD46A0892A0CE320009E4C87 /* sticker_30000000_29.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */; };
  164. CD46A08A2A0CE320009E4C87 /* sticker_30000000_28.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */; };
  165. CD46A08B2A0CE320009E4C87 /* sticker_30000000_14.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */; };
  166. CD46A08C2A0CE320009E4C87 /* sticker_20000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */; };
  167. CD46A08D2A0CE320009E4C87 /* sticker_10000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */; };
  168. CD46A08E2A0CE320009E4C87 /* sticker_20000000_17.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */; };
  169. CD46A08F2A0CE320009E4C87 /* sticker_20000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */; };
  170. CD46A0902A0CE320009E4C87 /* sticker_30000000_19.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */; };
  171. CD46A0912A0CE320009E4C87 /* sticker_30000000_25.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */; };
  172. CD46A0922A0CE320009E4C87 /* sticker_30000000_31.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */; };
  173. CD46A0932A0CE320009E4C87 /* sticker_30000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */; };
  174. CD46A0942A0CE320009E4C87 /* sticker_30000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */; };
  175. CD46A0952A0CE320009E4C87 /* sticker_30000000_30.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */; };
  176. CD46A0962A0CE320009E4C87 /* sticker_30000000_24.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */; };
  177. CD46A0972A0CE320009E4C87 /* sticker_30000000_18.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */; };
  178. CD46A0982A0CE320009E4C87 /* sticker_20000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */; };
  179. CD46A0992A0CE320009E4C87 /* sticker_20000000_16.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */; };
  180. CD46A09A2A0CE320009E4C87 /* sticker_10000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */; };
  181. CD46A09B2A0CE320009E4C87 /* sticker_20000000_14.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */; };
  182. CD46A09C2A0CE320009E4C87 /* sticker_20000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */; };
  183. CD46A09D2A0CE320009E4C87 /* sticker_30000000_32.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */; };
  184. CD46A09E2A0CE320009E4C87 /* sticker_30000000_26.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */; };
  185. CD46A09F2A0CE320009E4C87 /* sticker_30000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */; };
  186. CD46A0A02A0CE320009E4C87 /* sticker_30000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */; };
  187. CD46A0A12A0CE320009E4C87 /* sticker_30000000_27.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */; };
  188. CD46A0A22A0CE320009E4C87 /* sticker_30000000_33.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */; };
  189. CD46A0A32A0CE320009E4C87 /* sticker_20000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */; };
  190. CD46A0A42A0CE320009E4C87 /* sticker_20000000_15.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */; };
  191. CD46A0A52A0CE320009E4C87 /* sticker_10000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */; };
  192. CD46A0A62A0CE320009E4C87 /* sticker_20000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */; };
  193. CD46A0A72A0CE320009E4C87 /* sticker_20000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */; };
  194. CD46A0A82A0CE320009E4C87 /* sticker_30000000_37.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */; };
  195. CD46A0A92A0CE320009E4C87 /* sticker_30000000_23.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */; };
  196. CD46A0AA2A0CE320009E4C87 /* sticker_30000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */; };
  197. CD46A0AB2A0CE320009E4C87 /* sticker_30000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */; };
  198. CD46A0AC2A0CE320009E4C87 /* sticker_30000000_22.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */; };
  199. CD46A0AD2A0CE320009E4C87 /* sticker_30000000_36.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */; };
  200. CD46A0AE2A0CE320009E4C87 /* sticker_20000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */; };
  201. CD46A0AF2A0CE320009E4C87 /* sticker_20000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */; };
  202. CD46A0B02A0CE320009E4C87 /* sticker_10000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */; };
  203. CD46A0B12A0CE320009E4C87 /* sticker_20000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */; };
  204. CD46A0B22A0CE320009E4C87 /* sticker_20000000_12.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */; };
  205. CD46A0B32A0CE320009E4C87 /* sticker_30000000_20.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */; };
  206. CD46A0B42A0CE320009E4C87 /* sticker_30000000_34.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */; };
  207. CD46A0B52A0CE320009E4C87 /* sticker_30000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */; };
  208. CD46A0B62A0CE320009E4C87 /* sticker_30000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */; };
  209. CD46A0B72A0CE320009E4C87 /* sticker_30000000_35.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */; };
  210. CD46A0B82A0CE320009E4C87 /* sticker_30000000_21.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */; };
  211. CD46A0B92A0CE320009E4C87 /* sticker_20000000_13.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */; };
  212. CD46A0BA2A0CE320009E4C87 /* sticker_20000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */; };
  213. CD46A0BB2A0CE320009E4C87 /* sticker_10000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */; };
  214. CD46A0C52A0D0D5D009E4C87 /* MyArchive.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */; };
  215. CD5A73AE2A77642D000541A5 /* MessageInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD5A73AC2A77642D000541A5 /* MessageInfo.swift */; };
  216. CD5A73AF2A77642D000541A5 /* ListGroupImages.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */; };
  217. CD6312592DA925260088964E /* CallLogVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD6312582DA925260088964E /* CallLogVC.swift */; };
  218. CD63125B2DA925320088964E /* ChatWALikeVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD63125A2DA925320088964E /* ChatWALikeVC.swift */; };
  219. CD63125E2DA925960088964E /* Group_NM.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD63125D2DA925960088964E /* Group_NM.swift */; };
  220. CD63125F2DA925960088964E /* CallModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD63125C2DA925960088964E /* CallModel.swift */; };
  221. CD637E3D2D9534ED004780FB /* NexilisLite.podspec in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */; };
  222. CD7054EA2AD39DE2003741BF /* ChatGPTBotView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */; };
  223. CD9551592A664BDA00AF6476 /* Poppins-LightItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */; };
  224. CD95515A2A664BDA00AF6476 /* Poppins-MediumItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */; };
  225. CD95515B2A664BDA00AF6476 /* Poppins-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551412A664BD400AF6476 /* Poppins-Bold.otf */; };
  226. CD95515C2A664BDA00AF6476 /* Poppins-BlackItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */; };
  227. CD95515D2A664BDA00AF6476 /* Poppins-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551442A664BD400AF6476 /* Poppins-Regular.otf */; };
  228. CD95515E2A664BDA00AF6476 /* SIL Open Font License.txt in Resources */ = {isa = PBXBuildFile; fileRef = CD9551352A664BD400AF6476 /* SIL Open Font License.txt */; };
  229. CD95515F2A664BDB00AF6476 /* Poppins-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */; };
  230. CD9551602A664BDB00AF6476 /* Poppins-ExtraBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */; };
  231. CD9551612A664BDB00AF6476 /* Poppins-Black.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551422A664BD400AF6476 /* Poppins-Black.otf */; };
  232. CD9551622A664BDB00AF6476 /* Poppins-ExtraLight.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */; };
  233. CD9551632A664BDB00AF6476 /* Poppins-Light.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551392A664BD400AF6476 /* Poppins-Light.otf */; };
  234. CD9551642A664BDB00AF6476 /* Poppins-Italic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */; };
  235. CD9551652A664BDB00AF6476 /* Poppins-Thin.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */; };
  236. CD9551662A664BDB00AF6476 /* Poppins-Medium.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */; };
  237. CD9551672A664BDB00AF6476 /* Poppins-ExtraBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */; };
  238. CD9551682A664BDB00AF6476 /* Poppins-ThinItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */; };
  239. CD9551692A664BDB00AF6476 /* Poppins-SemiBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */; };
  240. CD95516A2A664BDB00AF6476 /* Poppins-BoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */; };
  241. CD95516B2A664BDB00AF6476 /* Poppins-ExtraLightItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */; };
  242. CD9829B72A3C07CB009F6743 /* SeminarListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */; };
  243. CDA461222AB99E09001CD010 /* ConfigureFloatingButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */; };
  244. CDB21B2E2BA9998400EC5280 /* pb_def_icon_mode2.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */; };
  245. CDB21B2F2BA9998400EC5280 /* pb_def_icon_mode4.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */; };
  246. CDDF46752A2DD81300049A19 /* CreateSeminarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */; };
  247. CDDF46762A2DD81300049A19 /* SeminarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46742A2DD81300049A19 /* SeminarViewController.swift */; };
  248. CDDF467A2A2EF0A700049A19 /* ScreenSharingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */; };
  249. CDE50D8F2D630C720094C30D /* pb_typing_chat.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */; };
  250. /* End PBXBuildFile section */
  251. /* Begin PBXContainerItemProxy section */
  252. CD1E6E742A0B7C3600BF871F /* PBXContainerItemProxy */ = {
  253. isa = PBXContainerItemProxy;
  254. containerPortal = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  255. proxyType = 1;
  256. remoteGlobalIDString = CD1E6E672A0B7C3600BF871F;
  257. remoteInfo = NexilisLite;
  258. };
  259. CD469FA42A0CC8D4009E4C87 /* PBXContainerItemProxy */ = {
  260. isa = PBXContainerItemProxy;
  261. containerPortal = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  262. proxyType = 1;
  263. remoteGlobalIDString = CD469F4F2A0CC862009E4C87;
  264. remoteInfo = NexilisLiteResources;
  265. };
  266. /* End PBXContainerItemProxy section */
  267. /* Begin PBXCopyFilesBuildPhase section */
  268. CD469E162A0CA6C9009E4C87 /* Embed Frameworks */ = {
  269. isa = PBXCopyFilesBuildPhase;
  270. buildActionMask = 2147483647;
  271. dstPath = "";
  272. dstSubfolderSpec = 10;
  273. files = (
  274. );
  275. name = "Embed Frameworks";
  276. runOnlyForDeploymentPostprocessing = 0;
  277. };
  278. /* End PBXCopyFilesBuildPhase section */
  279. /* Begin PBXFileReference section */
  280. 1236B6842D81465800A97809 /* pb_call_in_long.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_in_long.mp3; sourceTree = "<group>"; };
  281. 1241AEBA2D017E8C0088175A /* FileEncryption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileEncryption.swift; sourceTree = "<group>"; };
  282. 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MasterKeyUtil.swift; sourceTree = "<group>"; };
  283. 125363972D8031C30006C3D2 /* pb_call_busy.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_busy.mp3; sourceTree = "<group>"; };
  284. 1258BCB52D82D71200EFF5BD /* ChatWallpaperViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatWallpaperViewController.swift; sourceTree = "<group>"; };
  285. 12B1D84A2D8806C400313CCA /* pb_call_in_ios.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_in_ios.mp3; sourceTree = "<group>"; };
  286. 12B1D84B2D8806C400313CCA /* pb_call_out_ios.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_out_ios.mp3; sourceTree = "<group>"; };
  287. 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureFolderView.swift; sourceTree = "<group>"; };
  288. 5E1F6A2F460CE08324778A10 /* Pods-NexilisLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite.release.xcconfig"; path = "Target Support Files/Pods-NexilisLite/Pods-NexilisLite.release.xcconfig"; sourceTree = "<group>"; };
  289. 92C32B27C013B8842F336D7A /* Pods_NexilisLite_NexilisLiteTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NexilisLite_NexilisLiteTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  290. 9372060C226B25B34A207951 /* Pods_NexilisLite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NexilisLite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  291. 9D8E4449FB2643BB0D5A47F7 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite-NexilisLiteTests.release.xcconfig"; path = "Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests.release.xcconfig"; sourceTree = "<group>"; };
  292. A5C9F493B799D97510AECB02 /* Pods-NexilisLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite.debug.xcconfig"; path = "Target Support Files/Pods-NexilisLite/Pods-NexilisLite.debug.xcconfig"; sourceTree = "<group>"; };
  293. A6B33FB3B7DDB4BA5A1064B1 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite-NexilisLiteTests.debug.xcconfig"; path = "Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests.debug.xcconfig"; sourceTree = "<group>"; };
  294. CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NexilisLite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  295. CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NexilisLite.h; sourceTree = "<group>"; };
  296. CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = NexilisLite.docc; sourceTree = "<group>"; };
  297. CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NexilisLiteTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  298. CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NexilisLiteTests.swift; sourceTree = "<group>"; };
  299. CD1E70CC2A0B815400BF871F /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  300. CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OutgoingThread.swift; sourceTree = "<group>"; };
  301. CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardCanvas.swift; sourceTree = "<group>"; };
  302. CD1E71512A0BA86100BF871F /* Units.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Units.swift; sourceTree = "<group>"; };
  303. CD1E71532A0BA86100BF871F /* APIS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APIS.swift; sourceTree = "<group>"; };
  304. CD1E71552A0BA86100BF871F /* FloatingButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FloatingButton.swift; sourceTree = "<group>"; };
  305. CD1E71562A0BA86100BF871F /* Whiteboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Whiteboard.swift; sourceTree = "<group>"; };
  306. CD1E71572A0BA86100BF871F /* InquiryThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InquiryThread.swift; sourceTree = "<group>"; };
  307. CD1E71582A0BA86100BF871F /* Network.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Network.swift; sourceTree = "<group>"; };
  308. CD1E71592A0BA86100BF871F /* Download.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Download.swift; sourceTree = "<group>"; };
  309. CD1E715A2A0BA86100BF871F /* Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Extension.swift; sourceTree = "<group>"; };
  310. CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardReceiver.swift; sourceTree = "<group>"; };
  311. CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageKey.swift; sourceTree = "<group>"; };
  312. CD1E715D2A0BA86100BF871F /* Database.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Database.swift; sourceTree = "<group>"; };
  313. CD1E715F2A0BA86100BF871F /* Model.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Model.swift; sourceTree = "<group>"; };
  314. CD1E71602A0BA86100BF871F /* Chat.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Chat.swift; sourceTree = "<group>"; };
  315. CD1E71612A0BA86100BF871F /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  316. CD1E71622A0BA86100BF871F /* CategoryCC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryCC.swift; sourceTree = "<group>"; };
  317. CD1E71632A0BA86100BF871F /* WorkingArea.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WorkingArea.swift; sourceTree = "<group>"; };
  318. CD1E71642A0BA86100BF871F /* Group.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Group.swift; sourceTree = "<group>"; };
  319. CD1E71652A0BA86100BF871F /* NotifSound.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotifSound.swift; sourceTree = "<group>"; };
  320. CD1E71662A0BA86100BF871F /* Nexilis.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Nexilis.swift; sourceTree = "<group>"; };
  321. CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContactCallViewController.swift; sourceTree = "<group>"; };
  322. CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WorkingAreaPicker.swift; sourceTree = "<group>"; };
  323. CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BNIBookingWebView.swift; sourceTree = "<group>"; };
  324. CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorStarMessages.swift; sourceTree = "<group>"; };
  325. CD1E716F2A0BA86100BF871F /* PreviewAttachmentImageVideo.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PreviewAttachmentImageVideo.xib; sourceTree = "<group>"; };
  326. CD1E71702A0BA86100BF871F /* EditorPersonal.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorPersonal.swift; sourceTree = "<group>"; };
  327. CD1E71712A0BA86100BF871F /* FormEditor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FormEditor.swift; sourceTree = "<group>"; };
  328. CD1E71722A0BA86100BF871F /* EditorGroup.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorGroup.swift; sourceTree = "<group>"; };
  329. CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreviewAttachmentImageVideo.swift; sourceTree = "<group>"; };
  330. CD1E71742A0BA86100BF871F /* CustomTextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomTextView.swift; sourceTree = "<group>"; };
  331. CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraGroupChooserViewController.swift; sourceTree = "<group>"; };
  332. CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraStreamingViewController.swift; sourceTree = "<group>"; };
  333. CD1E71782A0BA86100BF871F /* CreateViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CreateViewController.swift; sourceTree = "<group>"; };
  334. CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraUserChooserViewController.swift; sourceTree = "<group>"; };
  335. CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamingViewController.swift; sourceTree = "<group>"; };
  336. CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraCreateStreamingViewController.swift; sourceTree = "<group>"; };
  337. CD1E717D2A0BA86100BF871F /* CallManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallManager.swift; sourceTree = "<group>"; };
  338. CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraAudioConference.swift; sourceTree = "<group>"; };
  339. CD1E717F2A0BA86100BF871F /* AudioViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AudioViewController.swift; sourceTree = "<group>"; };
  340. CD1E71802A0BA86100BF871F /* ProfileView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProfileView.swift; sourceTree = "<group>"; };
  341. CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraAudioViewController.swift; sourceTree = "<group>"; };
  342. CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraCallContactViewController.swift; sourceTree = "<group>"; };
  343. CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardViewController.swift; sourceTree = "<group>"; };
  344. CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraVideoViewController.swift; sourceTree = "<group>"; };
  345. CD1E71862A0BA86100BF871F /* VideoViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoViewController.swift; sourceTree = "<group>"; };
  346. CD1E71882A0BA86100BF871F /* GroupView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupView.swift; sourceTree = "<group>"; };
  347. CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupCreateViewController.swift; sourceTree = "<group>"; };
  348. CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastMembersTableViewCell.swift; sourceTree = "<group>"; };
  349. CD1E718C2A0BA86100BF871F /* QRScannerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QRScannerView.swift; sourceTree = "<group>"; };
  350. CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupDescViewController.swift; sourceTree = "<group>"; };
  351. CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryBroadcastViewController.swift; sourceTree = "<group>"; };
  352. CD1E718F2A0BA86100BF871F /* CheckConnection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckConnection.swift; sourceTree = "<group>"; };
  353. CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SignUpSignIn.swift; sourceTree = "<group>"; };
  354. CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupDetailViewController.swift; sourceTree = "<group>"; };
  355. CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeNamePassswordViewController.swift; sourceTree = "<group>"; };
  356. CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContactChatViewController.swift; sourceTree = "<group>"; };
  357. CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeDeviceViewController.swift; sourceTree = "<group>"; };
  358. CD1E71952A0BA86100BF871F /* DocumentPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DocumentPicker.swift; sourceTree = "<group>"; };
  359. CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangePasswordViewController.swift; sourceTree = "<group>"; };
  360. CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupNameViewController.swift; sourceTree = "<group>"; };
  361. CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupTopicViewController.swift; sourceTree = "<group>"; };
  362. CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingTableViewController.swift; sourceTree = "<group>"; };
  363. CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastModeViewController.swift; sourceTree = "<group>"; };
  364. CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BackupRestoreOption.swift; sourceTree = "<group>"; };
  365. CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryCCViewController.swift; sourceTree = "<group>"; };
  366. CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeNameTableViewController.swift; sourceTree = "<group>"; };
  367. CD1E719E2A0BA86100BF871F /* NotificationSound.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationSound.swift; sourceTree = "<group>"; };
  368. CD1E719F2A0BA86100BF871F /* TypeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TypeViewController.swift; sourceTree = "<group>"; };
  369. CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VerifyEmail.swift; sourceTree = "<group>"; };
  370. CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetInternalCSAccount.swift; sourceTree = "<group>"; };
  371. CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastVariantViewController.swift; sourceTree = "<group>"; };
  372. CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageVideoPicker.swift; sourceTree = "<group>"; };
  373. CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BackupRestoreView.swift; sourceTree = "<group>"; };
  374. CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProfileViewController.swift; sourceTree = "<group>"; };
  375. CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastMembersTableViewController.swift; sourceTree = "<group>"; };
  376. CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastViewController.swift; sourceTree = "<group>"; };
  377. CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupMemberViewController.swift; sourceTree = "<group>"; };
  378. CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetOfficerBNI.swift; sourceTree = "<group>"; };
  379. CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddFriendTableViewController.swift; sourceTree = "<group>"; };
  380. CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScannerViewController.swift; sourceTree = "<group>"; };
  381. CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AudienceViewController.swift; sourceTree = "<group>"; };
  382. CD1E71AE2A0BA86100BF871F /* Utils.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = "<group>"; };
  383. CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardDelegate.swift; sourceTree = "<group>"; };
  384. CD1E71B02A0BA86100BF871F /* TMessage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TMessage.swift; sourceTree = "<group>"; };
  385. CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageBank.swift; sourceTree = "<group>"; };
  386. CD1E71B22A0BA86100BF871F /* Callback.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Callback.swift; sourceTree = "<group>"; };
  387. CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageCode.swift; sourceTree = "<group>"; };
  388. CD1E71B42A0BA86100BF871F /* IncomingThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IncomingThread.swift; sourceTree = "<group>"; };
  389. CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageUtil.swift; sourceTree = "<group>"; };
  390. CD1E790E2A0CA43600BF871F /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  391. CD1E790F2A0CA43600BF871F /* FMDB.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = FMDB.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  392. CD1E79102A0CA43600BF871F /* MarqueeLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MarqueeLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  393. CD1E79112A0CA43600BF871F /* NotificationBannerSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = NotificationBannerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  394. CD1E79142A0CA43600BF871F /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  395. CD1E79152A0CA43600BF871F /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  396. CD1E79162A0CA43600BF871F /* Toast_Swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Toast_Swift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  397. CD2585B72D59DA60002AB416 /* Dutifully.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Dutifully.mp3; sourceTree = "<group>"; };
  398. CD2585B82D59DA60002AB416 /* Elegant.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Elegant.mp3; sourceTree = "<group>"; };
  399. CD2585B92D59DA60002AB416 /* Eventually.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Eventually.mp3; sourceTree = "<group>"; };
  400. CD2585BA2D59DA60002AB416 /* Hangover.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Hangover.mp3; sourceTree = "<group>"; };
  401. CD2585BB2D59DA60002AB416 /* Juntos.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Juntos.mp3; sourceTree = "<group>"; };
  402. CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Light_Hearted.mp3; sourceTree = "<group>"; };
  403. CD2585BD2D59DA60002AB416 /* Magic.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Magic.mp3; sourceTree = "<group>"; };
  404. CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Nexilis_Message.mp3; sourceTree = "<group>"; };
  405. CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Out_of_Nowhere.mp3; sourceTree = "<group>"; };
  406. CD2585C02D59DA60002AB416 /* Relax.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Relax.mp3; sourceTree = "<group>"; };
  407. CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Strong_Minded.mp3; sourceTree = "<group>"; };
  408. CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Swift_gesture.mp3; sourceTree = "<group>"; };
  409. CD2585C32D59DA60002AB416 /* Upset.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Upset.mp3; sourceTree = "<group>"; };
  410. CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_gpt_bot.gif; sourceTree = "<group>"; };
  411. CD2B01222D43961E00C11B20 /* QRProfileController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRProfileController.swift; sourceTree = "<group>"; };
  412. CD2B01232D43961E00C11B20 /* QRScannerController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRScannerController.swift; sourceTree = "<group>"; };
  413. CD43C80A2D687DBF00297C6E /* CreateConferenceCallController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CreateConferenceCallController.swift; sourceTree = "<group>"; };
  414. CD43C80B2D687DBF00297C6E /* VideoConferenceViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoConferenceViewController.swift; sourceTree = "<group>"; };
  415. CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NexilisLiteResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  416. CD469FC92A0CE2DE009E4C87 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  417. CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_5.png; sourceTree = "<group>"; };
  418. CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_22.png; sourceTree = "<group>"; };
  419. CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_38.png; sourceTree = "<group>"; };
  420. CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_10.png; sourceTree = "<group>"; };
  421. CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_11.png; sourceTree = "<group>"; };
  422. CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_39.png; sourceTree = "<group>"; };
  423. CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_23.png; sourceTree = "<group>"; };
  424. CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_4.png; sourceTree = "<group>"; };
  425. CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_6.png; sourceTree = "<group>"; };
  426. CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_21.png; sourceTree = "<group>"; };
  427. CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_13.png; sourceTree = "<group>"; };
  428. CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_9.png; sourceTree = "<group>"; };
  429. CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_8.png; sourceTree = "<group>"; };
  430. CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_12.png; sourceTree = "<group>"; };
  431. CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_20.png; sourceTree = "<group>"; };
  432. CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_7.png; sourceTree = "<group>"; };
  433. CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_3.png; sourceTree = "<group>"; };
  434. CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_18.png; sourceTree = "<group>"; };
  435. CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_16.png; sourceTree = "<group>"; };
  436. CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_17.png; sourceTree = "<group>"; };
  437. CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_19.png; sourceTree = "<group>"; };
  438. CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_2.png; sourceTree = "<group>"; };
  439. CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_0.png; sourceTree = "<group>"; };
  440. CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_8.png; sourceTree = "<group>"; };
  441. CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_15.png; sourceTree = "<group>"; };
  442. CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_29.png; sourceTree = "<group>"; };
  443. CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_28.png; sourceTree = "<group>"; };
  444. CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_14.png; sourceTree = "<group>"; };
  445. CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_9.png; sourceTree = "<group>"; };
  446. CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_1.png; sourceTree = "<group>"; };
  447. CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_17.png; sourceTree = "<group>"; };
  448. CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_4.png; sourceTree = "<group>"; };
  449. CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_19.png; sourceTree = "<group>"; };
  450. CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_25.png; sourceTree = "<group>"; };
  451. CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_31.png; sourceTree = "<group>"; };
  452. CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_3.png; sourceTree = "<group>"; };
  453. CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_2.png; sourceTree = "<group>"; };
  454. CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_30.png; sourceTree = "<group>"; };
  455. CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_24.png; sourceTree = "<group>"; };
  456. CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_18.png; sourceTree = "<group>"; };
  457. CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_5.png; sourceTree = "<group>"; };
  458. CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_16.png; sourceTree = "<group>"; };
  459. CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_11.png; sourceTree = "<group>"; };
  460. CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_14.png; sourceTree = "<group>"; };
  461. CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_7.png; sourceTree = "<group>"; };
  462. CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_32.png; sourceTree = "<group>"; };
  463. CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_26.png; sourceTree = "<group>"; };
  464. CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_0.png; sourceTree = "<group>"; };
  465. CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_1.png; sourceTree = "<group>"; };
  466. CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_27.png; sourceTree = "<group>"; };
  467. CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_33.png; sourceTree = "<group>"; };
  468. CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_6.png; sourceTree = "<group>"; };
  469. CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_15.png; sourceTree = "<group>"; };
  470. CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_10.png; sourceTree = "<group>"; };
  471. CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_2.png; sourceTree = "<group>"; };
  472. CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_11.png; sourceTree = "<group>"; };
  473. CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_37.png; sourceTree = "<group>"; };
  474. CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_23.png; sourceTree = "<group>"; };
  475. CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_5.png; sourceTree = "<group>"; };
  476. CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_4.png; sourceTree = "<group>"; };
  477. CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_22.png; sourceTree = "<group>"; };
  478. CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_36.png; sourceTree = "<group>"; };
  479. CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_10.png; sourceTree = "<group>"; };
  480. CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_3.png; sourceTree = "<group>"; };
  481. CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_9.png; sourceTree = "<group>"; };
  482. CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_1.png; sourceTree = "<group>"; };
  483. CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_12.png; sourceTree = "<group>"; };
  484. CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_20.png; sourceTree = "<group>"; };
  485. CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_34.png; sourceTree = "<group>"; };
  486. CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_6.png; sourceTree = "<group>"; };
  487. CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_7.png; sourceTree = "<group>"; };
  488. CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_35.png; sourceTree = "<group>"; };
  489. CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_21.png; sourceTree = "<group>"; };
  490. CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_13.png; sourceTree = "<group>"; };
  491. CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_0.png; sourceTree = "<group>"; };
  492. CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_8.png; sourceTree = "<group>"; };
  493. CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  494. CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PreviewAttachmentImageVideo.xib; sourceTree = "<group>"; };
  495. CD46A0192A0CE2DE009E4C87 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = "<group>"; };
  496. CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Palio.storyboard; sourceTree = "<group>"; };
  497. CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = NexilisLite.podspec; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  498. CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MyArchive.swift; sourceTree = "<group>"; };
  499. CD5A73AC2A77642D000541A5 /* MessageInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MessageInfo.swift; sourceTree = "<group>"; };
  500. CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListGroupImages.swift; sourceTree = "<group>"; };
  501. CD6312582DA925260088964E /* CallLogVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallLogVC.swift; sourceTree = "<group>"; };
  502. CD63125A2DA925320088964E /* ChatWALikeVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatWALikeVC.swift; sourceTree = "<group>"; };
  503. CD63125C2DA925960088964E /* CallModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallModel.swift; sourceTree = "<group>"; };
  504. CD63125D2DA925960088964E /* Group_NM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Group_NM.swift; sourceTree = "<group>"; };
  505. CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatGPTBotView.swift; sourceTree = "<group>"; };
  506. CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-SemiBoldItalic.otf"; sourceTree = "<group>"; };
  507. CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraBoldItalic.otf"; sourceTree = "<group>"; };
  508. CD9551352A664BD400AF6476 /* SIL Open Font License.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "SIL Open Font License.txt"; sourceTree = "<group>"; };
  509. CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraLight.otf"; sourceTree = "<group>"; };
  510. CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ThinItalic.otf"; sourceTree = "<group>"; };
  511. CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraLightItalic.otf"; sourceTree = "<group>"; };
  512. CD9551392A664BD400AF6476 /* Poppins-Light.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Light.otf"; sourceTree = "<group>"; };
  513. CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-BoldItalic.otf"; sourceTree = "<group>"; };
  514. CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Medium.otf"; sourceTree = "<group>"; };
  515. CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-SemiBold.otf"; sourceTree = "<group>"; };
  516. CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Italic.otf"; sourceTree = "<group>"; };
  517. CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Thin.otf"; sourceTree = "<group>"; };
  518. CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-MediumItalic.otf"; sourceTree = "<group>"; };
  519. CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-LightItalic.otf"; sourceTree = "<group>"; };
  520. CD9551412A664BD400AF6476 /* Poppins-Bold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Bold.otf"; sourceTree = "<group>"; };
  521. CD9551422A664BD400AF6476 /* Poppins-Black.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Black.otf"; sourceTree = "<group>"; };
  522. CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-BlackItalic.otf"; sourceTree = "<group>"; };
  523. CD9551442A664BD400AF6476 /* Poppins-Regular.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Regular.otf"; sourceTree = "<group>"; };
  524. CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraBold.otf"; sourceTree = "<group>"; };
  525. CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SeminarListViewController.swift; sourceTree = "<group>"; };
  526. CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConfigureFloatingButton.swift; sourceTree = "<group>"; };
  527. CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_def_icon_mode2.gif; sourceTree = "<group>"; };
  528. CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_def_icon_mode4.gif; sourceTree = "<group>"; };
  529. CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CreateSeminarViewController.swift; sourceTree = "<group>"; };
  530. CDDF46742A2DD81300049A19 /* SeminarViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SeminarViewController.swift; sourceTree = "<group>"; };
  531. CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScreenSharingViewController.swift; sourceTree = "<group>"; };
  532. CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_in.mp3; sourceTree = "<group>"; };
  533. CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_out.mp3; sourceTree = "<group>"; };
  534. CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_typing_chat.gif; sourceTree = "<group>"; };
  535. /* End PBXFileReference section */
  536. /* Begin PBXFrameworksBuildPhase section */
  537. CD1E6E652A0B7C3600BF871F /* Frameworks */ = {
  538. isa = PBXFrameworksBuildPhase;
  539. buildActionMask = 2147483647;
  540. files = (
  541. 89065265FF48521F6BC9DA48 /* Pods_NexilisLite.framework in Frameworks */,
  542. );
  543. runOnlyForDeploymentPostprocessing = 0;
  544. };
  545. CD1E6E6F2A0B7C3600BF871F /* Frameworks */ = {
  546. isa = PBXFrameworksBuildPhase;
  547. buildActionMask = 2147483647;
  548. files = (
  549. CD1E6E732A0B7C3600BF871F /* NexilisLite.framework in Frameworks */,
  550. 6E1C44ABFD345CCE1F612AAC /* Pods_NexilisLite_NexilisLiteTests.framework in Frameworks */,
  551. );
  552. runOnlyForDeploymentPostprocessing = 0;
  553. };
  554. CD469F4D2A0CC862009E4C87 /* Frameworks */ = {
  555. isa = PBXFrameworksBuildPhase;
  556. buildActionMask = 2147483647;
  557. files = (
  558. );
  559. runOnlyForDeploymentPostprocessing = 0;
  560. };
  561. /* End PBXFrameworksBuildPhase section */
  562. /* Begin PBXGroup section */
  563. 5213F364DDF7BFF3DF845EA0 /* Frameworks */ = {
  564. isa = PBXGroup;
  565. children = (
  566. CD1E790E2A0CA43600BF871F /* Alamofire.framework */,
  567. CD1E790F2A0CA43600BF871F /* FMDB.framework */,
  568. CD1E79102A0CA43600BF871F /* MarqueeLabel.framework */,
  569. CD1E79112A0CA43600BF871F /* NotificationBannerSwift.framework */,
  570. CD1E79142A0CA43600BF871F /* SDWebImage.framework */,
  571. CD1E79152A0CA43600BF871F /* SnapKit.framework */,
  572. CD1E79162A0CA43600BF871F /* Toast_Swift.framework */,
  573. 9372060C226B25B34A207951 /* Pods_NexilisLite.framework */,
  574. 92C32B27C013B8842F336D7A /* Pods_NexilisLite_NexilisLiteTests.framework */,
  575. );
  576. name = Frameworks;
  577. sourceTree = "<group>";
  578. };
  579. 859CE12B7A54BE1FA9470B46 /* Pods */ = {
  580. isa = PBXGroup;
  581. children = (
  582. CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */,
  583. A5C9F493B799D97510AECB02 /* Pods-NexilisLite.debug.xcconfig */,
  584. 5E1F6A2F460CE08324778A10 /* Pods-NexilisLite.release.xcconfig */,
  585. A6B33FB3B7DDB4BA5A1064B1 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */,
  586. 9D8E4449FB2643BB0D5A47F7 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */,
  587. );
  588. path = Pods;
  589. sourceTree = "<group>";
  590. };
  591. CD1E6E5E2A0B7C3600BF871F = {
  592. isa = PBXGroup;
  593. children = (
  594. CD1E6E6A2A0B7C3600BF871F /* NexilisLite */,
  595. CD1E6E762A0B7C3600BF871F /* NexilisLiteTests */,
  596. CD1E6E692A0B7C3600BF871F /* Products */,
  597. 859CE12B7A54BE1FA9470B46 /* Pods */,
  598. 5213F364DDF7BFF3DF845EA0 /* Frameworks */,
  599. );
  600. sourceTree = "<group>";
  601. };
  602. CD1E6E692A0B7C3600BF871F /* Products */ = {
  603. isa = PBXGroup;
  604. children = (
  605. CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */,
  606. CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */,
  607. CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */,
  608. );
  609. name = Products;
  610. sourceTree = "<group>";
  611. };
  612. CD1E6E6A2A0B7C3600BF871F /* NexilisLite */ = {
  613. isa = PBXGroup;
  614. children = (
  615. CD469FC72A0CE2DE009E4C87 /* Resource */,
  616. CD1E714E2A0BA86100BF871F /* Source */,
  617. CD1E70CC2A0B815400BF871F /* Info.plist */,
  618. CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */,
  619. CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */,
  620. );
  621. path = NexilisLite;
  622. sourceTree = "<group>";
  623. };
  624. CD1E6E762A0B7C3600BF871F /* NexilisLiteTests */ = {
  625. isa = PBXGroup;
  626. children = (
  627. CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */,
  628. );
  629. path = NexilisLiteTests;
  630. sourceTree = "<group>";
  631. };
  632. CD1E714E2A0BA86100BF871F /* Source */ = {
  633. isa = PBXGroup;
  634. children = (
  635. 1241AEBA2D017E8C0088175A /* FileEncryption.swift */,
  636. 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */,
  637. CD1E71532A0BA86100BF871F /* APIS.swift */,
  638. CD1E71B22A0BA86100BF871F /* Callback.swift */,
  639. CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */,
  640. CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */,
  641. CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */,
  642. CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */,
  643. CD1E715D2A0BA86100BF871F /* Database.swift */,
  644. CD1E71592A0BA86100BF871F /* Download.swift */,
  645. CD1E715A2A0BA86100BF871F /* Extension.swift */,
  646. CD1E71542A0BA86100BF871F /* FloatingButton */,
  647. CD1E71B42A0BA86100BF871F /* IncomingThread.swift */,
  648. CD1E71572A0BA86100BF871F /* InquiryThread.swift */,
  649. CD1E715E2A0BA86100BF871F /* Model */,
  650. CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */,
  651. CD1E71582A0BA86100BF871F /* Network.swift */,
  652. CD1E71662A0BA86100BF871F /* Nexilis.swift */,
  653. CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */,
  654. CD1E71B02A0BA86100BF871F /* TMessage.swift */,
  655. CD1E71512A0BA86100BF871F /* Units.swift */,
  656. CD1E71AE2A0BA86100BF871F /* Utils.swift */,
  657. CD1E71672A0BA86100BF871F /* View */,
  658. CD1E71562A0BA86100BF871F /* Whiteboard.swift */,
  659. CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */,
  660. CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */,
  661. CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */,
  662. );
  663. path = Source;
  664. sourceTree = "<group>";
  665. };
  666. CD1E71542A0BA86100BF871F /* FloatingButton */ = {
  667. isa = PBXGroup;
  668. children = (
  669. CD1E71552A0BA86100BF871F /* FloatingButton.swift */,
  670. );
  671. path = FloatingButton;
  672. sourceTree = "<group>";
  673. };
  674. CD1E715E2A0BA86100BF871F /* Model */ = {
  675. isa = PBXGroup;
  676. children = (
  677. CD63125C2DA925960088964E /* CallModel.swift */,
  678. CD1E71622A0BA86100BF871F /* CategoryCC.swift */,
  679. CD1E71602A0BA86100BF871F /* Chat.swift */,
  680. CD1E71642A0BA86100BF871F /* Group.swift */,
  681. CD63125D2DA925960088964E /* Group_NM.swift */,
  682. CD1E715F2A0BA86100BF871F /* Model.swift */,
  683. CD1E71652A0BA86100BF871F /* NotifSound.swift */,
  684. CD1E71612A0BA86100BF871F /* User.swift */,
  685. CD1E71632A0BA86100BF871F /* WorkingArea.swift */,
  686. );
  687. path = Model;
  688. sourceTree = "<group>";
  689. };
  690. CD1E71672A0BA86100BF871F /* View */ = {
  691. isa = PBXGroup;
  692. children = (
  693. CD1E71682A0BA86100BF871F /* Contact */,
  694. CD1E716A2A0BA86100BF871F /* BNIView */,
  695. CD1E716D2A0BA86100BF871F /* Chat */,
  696. CD1E71752A0BA86100BF871F /* Streaming */,
  697. CD1E717C2A0BA86100BF871F /* Call */,
  698. CD1E71892A0BA86100BF871F /* Control */,
  699. );
  700. path = View;
  701. sourceTree = "<group>";
  702. };
  703. CD1E71682A0BA86100BF871F /* Contact */ = {
  704. isa = PBXGroup;
  705. children = (
  706. CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */,
  707. );
  708. path = Contact;
  709. sourceTree = "<group>";
  710. };
  711. CD1E716A2A0BA86100BF871F /* BNIView */ = {
  712. isa = PBXGroup;
  713. children = (
  714. CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */,
  715. CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */,
  716. );
  717. path = BNIView;
  718. sourceTree = "<group>";
  719. };
  720. CD1E716D2A0BA86100BF871F /* Chat */ = {
  721. isa = PBXGroup;
  722. children = (
  723. CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */,
  724. CD63125A2DA925320088964E /* ChatWALikeVC.swift */,
  725. CD1E71742A0BA86100BF871F /* CustomTextView.swift */,
  726. CD1E71722A0BA86100BF871F /* EditorGroup.swift */,
  727. CD1E71702A0BA86100BF871F /* EditorPersonal.swift */,
  728. CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */,
  729. CD1E71712A0BA86100BF871F /* FormEditor.swift */,
  730. CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */,
  731. CD5A73AC2A77642D000541A5 /* MessageInfo.swift */,
  732. CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */,
  733. CD1E716F2A0BA86100BF871F /* PreviewAttachmentImageVideo.xib */,
  734. 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */,
  735. );
  736. path = Chat;
  737. sourceTree = "<group>";
  738. };
  739. CD1E71752A0BA86100BF871F /* Streaming */ = {
  740. isa = PBXGroup;
  741. children = (
  742. CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */,
  743. CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */,
  744. CDDF46742A2DD81300049A19 /* SeminarViewController.swift */,
  745. CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */,
  746. CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */,
  747. CD1E71782A0BA86100BF871F /* CreateViewController.swift */,
  748. CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */,
  749. CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */,
  750. CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */,
  751. );
  752. path = Streaming;
  753. sourceTree = "<group>";
  754. };
  755. CD1E717C2A0BA86100BF871F /* Call */ = {
  756. isa = PBXGroup;
  757. children = (
  758. CD1E717F2A0BA86100BF871F /* AudioViewController.swift */,
  759. CD6312582DA925260088964E /* CallLogVC.swift */,
  760. CD1E717D2A0BA86100BF871F /* CallManager.swift */,
  761. CD43C80A2D687DBF00297C6E /* CreateConferenceCallController.swift */,
  762. CD1E71882A0BA86100BF871F /* GroupView.swift */,
  763. CD1E71802A0BA86100BF871F /* ProfileView.swift */,
  764. CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */,
  765. CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */,
  766. CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */,
  767. CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */,
  768. CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */,
  769. CD43C80B2D687DBF00297C6E /* VideoConferenceViewController.swift */,
  770. CD1E71862A0BA86100BF871F /* VideoViewController.swift */,
  771. CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */,
  772. );
  773. path = Call;
  774. sourceTree = "<group>";
  775. };
  776. CD1E71892A0BA86100BF871F /* Control */ = {
  777. isa = PBXGroup;
  778. children = (
  779. 1258BCB52D82D71200EFF5BD /* ChatWallpaperViewController.swift */,
  780. CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */,
  781. CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */,
  782. CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */,
  783. CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */,
  784. CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */,
  785. CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */,
  786. CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */,
  787. CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */,
  788. CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */,
  789. CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */,
  790. CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */,
  791. CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */,
  792. CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */,
  793. CD1E718F2A0BA86100BF871F /* CheckConnection.swift */,
  794. CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */,
  795. CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */,
  796. CD1E71952A0BA86100BF871F /* DocumentPicker.swift */,
  797. CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */,
  798. CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */,
  799. CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */,
  800. CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */,
  801. CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */,
  802. CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */,
  803. CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */,
  804. CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */,
  805. CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */,
  806. CD1E719E2A0BA86100BF871F /* NotificationSound.swift */,
  807. CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */,
  808. CD2B01222D43961E00C11B20 /* QRProfileController.swift */,
  809. CD2B01232D43961E00C11B20 /* QRScannerController.swift */,
  810. CD1E718C2A0BA86100BF871F /* QRScannerView.swift */,
  811. CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */,
  812. CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */,
  813. CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */,
  814. CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */,
  815. CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */,
  816. CD1E719F2A0BA86100BF871F /* TypeViewController.swift */,
  817. CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */,
  818. );
  819. path = Control;
  820. sourceTree = "<group>";
  821. };
  822. CD469FC72A0CE2DE009E4C87 /* Resource */ = {
  823. isa = PBXGroup;
  824. children = (
  825. CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */,
  826. CD9551322A664BD400AF6476 /* fonts */,
  827. CDB21B2D2BA9998400EC5280 /* Gifs */,
  828. CD469FC82A0CE2DE009E4C87 /* Localizable.strings */,
  829. CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */,
  830. CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */,
  831. CDE3BED82C86E3A000B0BF36 /* Sound */,
  832. CD469FCA2A0CE2DE009E4C87 /* Stickers */,
  833. );
  834. path = Resource;
  835. sourceTree = "<group>";
  836. };
  837. CD469FCA2A0CE2DE009E4C87 /* Stickers */ = {
  838. isa = PBXGroup;
  839. children = (
  840. CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */,
  841. CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */,
  842. CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */,
  843. CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */,
  844. CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */,
  845. CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */,
  846. CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */,
  847. CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */,
  848. CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */,
  849. CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */,
  850. CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */,
  851. CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */,
  852. CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */,
  853. CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */,
  854. CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */,
  855. CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */,
  856. CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */,
  857. CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */,
  858. CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */,
  859. CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */,
  860. CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */,
  861. CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */,
  862. CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */,
  863. CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */,
  864. CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */,
  865. CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */,
  866. CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */,
  867. CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */,
  868. CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */,
  869. CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */,
  870. CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */,
  871. CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */,
  872. CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */,
  873. CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */,
  874. CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */,
  875. CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */,
  876. CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */,
  877. CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */,
  878. CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */,
  879. CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */,
  880. CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */,
  881. CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */,
  882. CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */,
  883. CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */,
  884. CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */,
  885. CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */,
  886. CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */,
  887. CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */,
  888. CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */,
  889. CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */,
  890. CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */,
  891. CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */,
  892. CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */,
  893. CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */,
  894. CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */,
  895. CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */,
  896. CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */,
  897. CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */,
  898. CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */,
  899. CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */,
  900. CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */,
  901. CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */,
  902. CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */,
  903. CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */,
  904. CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */,
  905. CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */,
  906. CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */,
  907. CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */,
  908. CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */,
  909. CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */,
  910. CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */,
  911. CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */,
  912. CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */,
  913. CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */,
  914. CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */,
  915. CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */,
  916. );
  917. path = Stickers;
  918. sourceTree = "<group>";
  919. };
  920. CD9551322A664BD400AF6476 /* fonts */ = {
  921. isa = PBXGroup;
  922. children = (
  923. CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */,
  924. CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */,
  925. CD9551352A664BD400AF6476 /* SIL Open Font License.txt */,
  926. CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */,
  927. CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */,
  928. CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */,
  929. CD9551392A664BD400AF6476 /* Poppins-Light.otf */,
  930. CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */,
  931. CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */,
  932. CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */,
  933. CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */,
  934. CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */,
  935. CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */,
  936. CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */,
  937. CD9551412A664BD400AF6476 /* Poppins-Bold.otf */,
  938. CD9551422A664BD400AF6476 /* Poppins-Black.otf */,
  939. CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */,
  940. CD9551442A664BD400AF6476 /* Poppins-Regular.otf */,
  941. CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */,
  942. );
  943. path = fonts;
  944. sourceTree = "<group>";
  945. };
  946. CDB21B2D2BA9998400EC5280 /* Gifs */ = {
  947. isa = PBXGroup;
  948. children = (
  949. CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */,
  950. CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */,
  951. CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */,
  952. CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */,
  953. );
  954. path = Gifs;
  955. sourceTree = "<group>";
  956. };
  957. CDE3BED82C86E3A000B0BF36 /* Sound */ = {
  958. isa = PBXGroup;
  959. children = (
  960. 12B1D84A2D8806C400313CCA /* pb_call_in_ios.mp3 */,
  961. 12B1D84B2D8806C400313CCA /* pb_call_out_ios.mp3 */,
  962. 1236B6842D81465800A97809 /* pb_call_in_long.mp3 */,
  963. 125363972D8031C30006C3D2 /* pb_call_busy.mp3 */,
  964. CD2585B72D59DA60002AB416 /* Dutifully.mp3 */,
  965. CD2585B82D59DA60002AB416 /* Elegant.mp3 */,
  966. CD2585B92D59DA60002AB416 /* Eventually.mp3 */,
  967. CD2585BA2D59DA60002AB416 /* Hangover.mp3 */,
  968. CD2585BB2D59DA60002AB416 /* Juntos.mp3 */,
  969. CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */,
  970. CD2585BD2D59DA60002AB416 /* Magic.mp3 */,
  971. CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */,
  972. CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */,
  973. CD2585C02D59DA60002AB416 /* Relax.mp3 */,
  974. CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */,
  975. CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */,
  976. CD2585C32D59DA60002AB416 /* Upset.mp3 */,
  977. CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */,
  978. CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */,
  979. );
  980. path = Sound;
  981. sourceTree = "<group>";
  982. };
  983. /* End PBXGroup section */
  984. /* Begin PBXHeadersBuildPhase section */
  985. CD1E6E632A0B7C3600BF871F /* Headers */ = {
  986. isa = PBXHeadersBuildPhase;
  987. buildActionMask = 2147483647;
  988. files = (
  989. CD1E6E792A0B7C3600BF871F /* NexilisLite.h in Headers */,
  990. );
  991. runOnlyForDeploymentPostprocessing = 0;
  992. };
  993. /* End PBXHeadersBuildPhase section */
  994. /* Begin PBXNativeTarget section */
  995. CD1E6E672A0B7C3600BF871F /* NexilisLite */ = {
  996. isa = PBXNativeTarget;
  997. buildConfigurationList = CD1E6E7C2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLite" */;
  998. buildPhases = (
  999. 850186F3E91AA69B1B6DFCDD /* [CP] Check Pods Manifest.lock */,
  1000. CD1E6E632A0B7C3600BF871F /* Headers */,
  1001. CD1E6E642A0B7C3600BF871F /* Sources */,
  1002. CD1E6E652A0B7C3600BF871F /* Frameworks */,
  1003. CD1E6E662A0B7C3600BF871F /* Resources */,
  1004. CD469E162A0CA6C9009E4C87 /* Embed Frameworks */,
  1005. 5294094EBD3754D063762A08 /* [CP] Copy Pods Resources */,
  1006. );
  1007. buildRules = (
  1008. );
  1009. dependencies = (
  1010. CD469FA52A0CC8D4009E4C87 /* PBXTargetDependency */,
  1011. );
  1012. name = NexilisLite;
  1013. productName = NexilisLite;
  1014. productReference = CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */;
  1015. productType = "com.apple.product-type.framework";
  1016. };
  1017. CD1E6E712A0B7C3600BF871F /* NexilisLiteTests */ = {
  1018. isa = PBXNativeTarget;
  1019. buildConfigurationList = CD1E6E7F2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLiteTests" */;
  1020. buildPhases = (
  1021. 6EB67D7C316C4D8D13B0D8B8 /* [CP] Check Pods Manifest.lock */,
  1022. CD1E6E6E2A0B7C3600BF871F /* Sources */,
  1023. CD1E6E6F2A0B7C3600BF871F /* Frameworks */,
  1024. CD1E6E702A0B7C3600BF871F /* Resources */,
  1025. 624DA386B509DACD62803C0A /* [CP] Embed Pods Frameworks */,
  1026. 6DC0927190C9AC540C38874B /* [CP] Copy Pods Resources */,
  1027. );
  1028. buildRules = (
  1029. );
  1030. dependencies = (
  1031. CD1E6E752A0B7C3600BF871F /* PBXTargetDependency */,
  1032. );
  1033. name = NexilisLiteTests;
  1034. productName = NexilisLiteTests;
  1035. productReference = CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */;
  1036. productType = "com.apple.product-type.bundle.unit-test";
  1037. };
  1038. CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */ = {
  1039. isa = PBXNativeTarget;
  1040. buildConfigurationList = CD469F512A0CC862009E4C87 /* Build configuration list for PBXNativeTarget "NexilisLiteResources" */;
  1041. buildPhases = (
  1042. CD469F4C2A0CC862009E4C87 /* Sources */,
  1043. CD469F4D2A0CC862009E4C87 /* Frameworks */,
  1044. CD469F4E2A0CC862009E4C87 /* Resources */,
  1045. );
  1046. buildRules = (
  1047. );
  1048. dependencies = (
  1049. );
  1050. name = NexilisLiteResources;
  1051. productName = NexilisLiteResources;
  1052. productReference = CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */;
  1053. productType = "com.apple.product-type.bundle";
  1054. };
  1055. /* End PBXNativeTarget section */
  1056. /* Begin PBXProject section */
  1057. CD1E6E5F2A0B7C3600BF871F /* Project object */ = {
  1058. isa = PBXProject;
  1059. attributes = {
  1060. BuildIndependentTargetsInParallel = 1;
  1061. LastSwiftUpdateCheck = 1430;
  1062. LastUpgradeCheck = 1430;
  1063. TargetAttributes = {
  1064. CD1E6E672A0B7C3600BF871F = {
  1065. CreatedOnToolsVersion = 14.3;
  1066. };
  1067. CD1E6E712A0B7C3600BF871F = {
  1068. CreatedOnToolsVersion = 14.3;
  1069. };
  1070. CD469F4F2A0CC862009E4C87 = {
  1071. CreatedOnToolsVersion = 14.3;
  1072. };
  1073. };
  1074. };
  1075. buildConfigurationList = CD1E6E622A0B7C3600BF871F /* Build configuration list for PBXProject "NexilisLite" */;
  1076. compatibilityVersion = "Xcode 14.0";
  1077. developmentRegion = en;
  1078. hasScannedForEncodings = 0;
  1079. knownRegions = (
  1080. en,
  1081. Base,
  1082. id,
  1083. );
  1084. mainGroup = CD1E6E5E2A0B7C3600BF871F;
  1085. productRefGroup = CD1E6E692A0B7C3600BF871F /* Products */;
  1086. projectDirPath = "";
  1087. projectRoot = "";
  1088. targets = (
  1089. CD1E6E672A0B7C3600BF871F /* NexilisLite */,
  1090. CD1E6E712A0B7C3600BF871F /* NexilisLiteTests */,
  1091. CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */,
  1092. );
  1093. };
  1094. /* End PBXProject section */
  1095. /* Begin PBXResourcesBuildPhase section */
  1096. CD1E6E662A0B7C3600BF871F /* Resources */ = {
  1097. isa = PBXResourcesBuildPhase;
  1098. buildActionMask = 2147483647;
  1099. files = (
  1100. CD46A06F2A0CE310009E4C87 /* NexilisLiteResources.bundle in Resources */,
  1101. CD46A06B2A0CE307009E4C87 /* Localizable.strings in Resources */,
  1102. CD46A06C2A0CE307009E4C87 /* Assets.xcassets in Resources */,
  1103. CD46A06D2A0CE307009E4C87 /* PreviewAttachmentImageVideo.xib in Resources */,
  1104. CD46A06E2A0CE307009E4C87 /* Palio.storyboard in Resources */,
  1105. CD637E3D2D9534ED004780FB /* NexilisLite.podspec in Resources */,
  1106. );
  1107. runOnlyForDeploymentPostprocessing = 0;
  1108. };
  1109. CD1E6E702A0B7C3600BF871F /* Resources */ = {
  1110. isa = PBXResourcesBuildPhase;
  1111. buildActionMask = 2147483647;
  1112. files = (
  1113. );
  1114. runOnlyForDeploymentPostprocessing = 0;
  1115. };
  1116. CD469F4E2A0CC862009E4C87 /* Resources */ = {
  1117. isa = PBXResourcesBuildPhase;
  1118. buildActionMask = 2147483647;
  1119. files = (
  1120. CD2585D22D59DA79002AB416 /* pb_call_out.mp3 in Resources */,
  1121. CD46A0702A0CE320009E4C87 /* sticker_10000000_5.png in Resources */,
  1122. CD46A0712A0CE320009E4C87 /* sticker_20000000_22.png in Resources */,
  1123. CD2585C42D59DA60002AB416 /* Dutifully.mp3 in Resources */,
  1124. CD2585C52D59DA60002AB416 /* Juntos.mp3 in Resources */,
  1125. CD2585C62D59DA60002AB416 /* Light_Hearted.mp3 in Resources */,
  1126. CD2585C72D59DA60002AB416 /* Nexilis_Message.mp3 in Resources */,
  1127. CD2585C82D59DA60002AB416 /* Out_of_Nowhere.mp3 in Resources */,
  1128. CD2585C92D59DA60002AB416 /* Swift_gesture.mp3 in Resources */,
  1129. CD2585CA2D59DA60002AB416 /* Relax.mp3 in Resources */,
  1130. CD2585CB2D59DA60002AB416 /* Eventually.mp3 in Resources */,
  1131. CD2585CC2D59DA60002AB416 /* Upset.mp3 in Resources */,
  1132. 12B1D84E2D8806C400313CCA /* pb_call_in_ios.mp3 in Resources */,
  1133. 12B1D84F2D8806C400313CCA /* pb_call_out_ios.mp3 in Resources */,
  1134. 125363982D8031C30006C3D2 /* pb_call_busy.mp3 in Resources */,
  1135. CD2585CD2D59DA60002AB416 /* Elegant.mp3 in Resources */,
  1136. CD2585CE2D59DA60002AB416 /* Strong_Minded.mp3 in Resources */,
  1137. CD2585CF2D59DA60002AB416 /* Magic.mp3 in Resources */,
  1138. CD2585D02D59DA60002AB416 /* Hangover.mp3 in Resources */,
  1139. CD46A0722A0CE320009E4C87 /* sticker_30000000_38.png in Resources */,
  1140. CD46A0732A0CE320009E4C87 /* sticker_30000000_10.png in Resources */,
  1141. CD46A0742A0CE320009E4C87 /* sticker_30000000_11.png in Resources */,
  1142. CD46A0752A0CE320009E4C87 /* sticker_30000000_39.png in Resources */,
  1143. CD46A0762A0CE320009E4C87 /* sticker_20000000_23.png in Resources */,
  1144. CD95515C2A664BDA00AF6476 /* Poppins-BlackItalic.otf in Resources */,
  1145. CD46A0772A0CE320009E4C87 /* sticker_10000000_4.png in Resources */,
  1146. CD9551612A664BDB00AF6476 /* Poppins-Black.otf in Resources */,
  1147. CD46A0782A0CE320009E4C87 /* sticker_10000000_6.png in Resources */,
  1148. CD46A0792A0CE320009E4C87 /* sticker_20000000_21.png in Resources */,
  1149. CD46A07A2A0CE320009E4C87 /* sticker_30000000_13.png in Resources */,
  1150. CD46A07B2A0CE320009E4C87 /* sticker_30000000_9.png in Resources */,
  1151. CD46A07C2A0CE320009E4C87 /* sticker_30000000_8.png in Resources */,
  1152. CD46A07D2A0CE320009E4C87 /* sticker_30000000_12.png in Resources */,
  1153. CD46A07E2A0CE320009E4C87 /* sticker_20000000_20.png in Resources */,
  1154. CD95515B2A664BDA00AF6476 /* Poppins-Bold.otf in Resources */,
  1155. CD46A07F2A0CE320009E4C87 /* sticker_10000000_7.png in Resources */,
  1156. CD46A0802A0CE320009E4C87 /* sticker_10000000_3.png in Resources */,
  1157. CD95515E2A664BDA00AF6476 /* SIL Open Font License.txt in Resources */,
  1158. CD46A0812A0CE320009E4C87 /* sticker_20000000_18.png in Resources */,
  1159. CD46A0822A0CE320009E4C87 /* sticker_30000000_16.png in Resources */,
  1160. CD46A0832A0CE320009E4C87 /* sticker_30000000_17.png in Resources */,
  1161. CD46A0842A0CE320009E4C87 /* sticker_20000000_19.png in Resources */,
  1162. CD46A0852A0CE320009E4C87 /* sticker_10000000_2.png in Resources */,
  1163. CD46A0862A0CE320009E4C87 /* sticker_10000000_0.png in Resources */,
  1164. CD95516B2A664BDB00AF6476 /* Poppins-ExtraLightItalic.otf in Resources */,
  1165. CD46A0872A0CE320009E4C87 /* sticker_20000000_8.png in Resources */,
  1166. CD46A0882A0CE320009E4C87 /* sticker_30000000_15.png in Resources */,
  1167. CD46A0892A0CE320009E4C87 /* sticker_30000000_29.png in Resources */,
  1168. CD46A08A2A0CE320009E4C87 /* sticker_30000000_28.png in Resources */,
  1169. CD46A08B2A0CE320009E4C87 /* sticker_30000000_14.png in Resources */,
  1170. CD46A08C2A0CE320009E4C87 /* sticker_20000000_9.png in Resources */,
  1171. CD2B01212D43945500C11B20 /* pb_gpt_bot.gif in Resources */,
  1172. CD46A08D2A0CE320009E4C87 /* sticker_10000000_1.png in Resources */,
  1173. CD46A08E2A0CE320009E4C87 /* sticker_20000000_17.png in Resources */,
  1174. CD46A08F2A0CE320009E4C87 /* sticker_20000000_4.png in Resources */,
  1175. CD46A0902A0CE320009E4C87 /* sticker_30000000_19.png in Resources */,
  1176. CD46A0912A0CE320009E4C87 /* sticker_30000000_25.png in Resources */,
  1177. CD46A0922A0CE320009E4C87 /* sticker_30000000_31.png in Resources */,
  1178. CD46A0932A0CE320009E4C87 /* sticker_30000000_3.png in Resources */,
  1179. CD46A0942A0CE320009E4C87 /* sticker_30000000_2.png in Resources */,
  1180. CD9551622A664BDB00AF6476 /* Poppins-ExtraLight.otf in Resources */,
  1181. CD95516A2A664BDB00AF6476 /* Poppins-BoldItalic.otf in Resources */,
  1182. CD95515F2A664BDB00AF6476 /* Poppins-SemiBold.otf in Resources */,
  1183. CD46A0952A0CE320009E4C87 /* sticker_30000000_30.png in Resources */,
  1184. CD9551682A664BDB00AF6476 /* Poppins-ThinItalic.otf in Resources */,
  1185. CD9551662A664BDB00AF6476 /* Poppins-Medium.otf in Resources */,
  1186. CD46A0962A0CE320009E4C87 /* sticker_30000000_24.png in Resources */,
  1187. CD46A0972A0CE320009E4C87 /* sticker_30000000_18.png in Resources */,
  1188. CD46A0982A0CE320009E4C87 /* sticker_20000000_5.png in Resources */,
  1189. CD46A0992A0CE320009E4C87 /* sticker_20000000_16.png in Resources */,
  1190. CDE50D8F2D630C720094C30D /* pb_typing_chat.gif in Resources */,
  1191. CD95515A2A664BDA00AF6476 /* Poppins-MediumItalic.otf in Resources */,
  1192. CD46A09A2A0CE320009E4C87 /* sticker_10000000_11.png in Resources */,
  1193. CD46A09B2A0CE320009E4C87 /* sticker_20000000_14.png in Resources */,
  1194. CD46A09C2A0CE320009E4C87 /* sticker_20000000_7.png in Resources */,
  1195. CD46A09D2A0CE320009E4C87 /* sticker_30000000_32.png in Resources */,
  1196. CD9551672A664BDB00AF6476 /* Poppins-ExtraBold.otf in Resources */,
  1197. CD46A09E2A0CE320009E4C87 /* sticker_30000000_26.png in Resources */,
  1198. CD46A09F2A0CE320009E4C87 /* sticker_30000000_0.png in Resources */,
  1199. CD46A0A02A0CE320009E4C87 /* sticker_30000000_1.png in Resources */,
  1200. CD9551592A664BDA00AF6476 /* Poppins-LightItalic.otf in Resources */,
  1201. CD46A0A12A0CE320009E4C87 /* sticker_30000000_27.png in Resources */,
  1202. CD46A0A22A0CE320009E4C87 /* sticker_30000000_33.png in Resources */,
  1203. CD46A0A32A0CE320009E4C87 /* sticker_20000000_6.png in Resources */,
  1204. CD9551652A664BDB00AF6476 /* Poppins-Thin.otf in Resources */,
  1205. CD46A0A42A0CE320009E4C87 /* sticker_20000000_15.png in Resources */,
  1206. CD9551642A664BDB00AF6476 /* Poppins-Italic.otf in Resources */,
  1207. CD46A0A52A0CE320009E4C87 /* sticker_10000000_10.png in Resources */,
  1208. CD46A0A62A0CE320009E4C87 /* sticker_20000000_2.png in Resources */,
  1209. CD46A0A72A0CE320009E4C87 /* sticker_20000000_11.png in Resources */,
  1210. CD9551632A664BDB00AF6476 /* Poppins-Light.otf in Resources */,
  1211. CD95515D2A664BDA00AF6476 /* Poppins-Regular.otf in Resources */,
  1212. CD46A0A82A0CE320009E4C87 /* sticker_30000000_37.png in Resources */,
  1213. CD46A0A92A0CE320009E4C87 /* sticker_30000000_23.png in Resources */,
  1214. CD46A0AA2A0CE320009E4C87 /* sticker_30000000_5.png in Resources */,
  1215. CD46A0AB2A0CE320009E4C87 /* sticker_30000000_4.png in Resources */,
  1216. CDB21B2F2BA9998400EC5280 /* pb_def_icon_mode4.gif in Resources */,
  1217. CD46A0AC2A0CE320009E4C87 /* sticker_30000000_22.png in Resources */,
  1218. CD46A0AD2A0CE320009E4C87 /* sticker_30000000_36.png in Resources */,
  1219. 12CB2E472D82F5660071E594 /* Assets.xcassets in Resources */,
  1220. CD46A0AE2A0CE320009E4C87 /* sticker_20000000_10.png in Resources */,
  1221. CD46A0AF2A0CE320009E4C87 /* sticker_20000000_3.png in Resources */,
  1222. CD46A0B02A0CE320009E4C87 /* sticker_10000000_9.png in Resources */,
  1223. CD46A0B12A0CE320009E4C87 /* sticker_20000000_1.png in Resources */,
  1224. CD46A0B22A0CE320009E4C87 /* sticker_20000000_12.png in Resources */,
  1225. CD46A0B32A0CE320009E4C87 /* sticker_30000000_20.png in Resources */,
  1226. 1236B6852D81465800A97809 /* pb_call_in_long.mp3 in Resources */,
  1227. CD9551602A664BDB00AF6476 /* Poppins-ExtraBoldItalic.otf in Resources */,
  1228. CD46A0B42A0CE320009E4C87 /* sticker_30000000_34.png in Resources */,
  1229. CDB21B2E2BA9998400EC5280 /* pb_def_icon_mode2.gif in Resources */,
  1230. CD46A0B52A0CE320009E4C87 /* sticker_30000000_6.png in Resources */,
  1231. CD46A0B62A0CE320009E4C87 /* sticker_30000000_7.png in Resources */,
  1232. CD46A0B72A0CE320009E4C87 /* sticker_30000000_35.png in Resources */,
  1233. CD9551692A664BDB00AF6476 /* Poppins-SemiBoldItalic.otf in Resources */,
  1234. CD46A0B82A0CE320009E4C87 /* sticker_30000000_21.png in Resources */,
  1235. CD46A0B92A0CE320009E4C87 /* sticker_20000000_13.png in Resources */,
  1236. CD46A0BA2A0CE320009E4C87 /* sticker_20000000_0.png in Resources */,
  1237. CD46A0BB2A0CE320009E4C87 /* sticker_10000000_8.png in Resources */,
  1238. CD2585D12D59DA73002AB416 /* pb_call_in.mp3 in Resources */,
  1239. );
  1240. runOnlyForDeploymentPostprocessing = 0;
  1241. };
  1242. /* End PBXResourcesBuildPhase section */
  1243. /* Begin PBXShellScriptBuildPhase section */
  1244. 5294094EBD3754D063762A08 /* [CP] Copy Pods Resources */ = {
  1245. isa = PBXShellScriptBuildPhase;
  1246. buildActionMask = 2147483647;
  1247. files = (
  1248. );
  1249. inputFileListPaths = (
  1250. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources-${CONFIGURATION}-input-files.xcfilelist",
  1251. );
  1252. inputPaths = (
  1253. );
  1254. name = "[CP] Copy Pods Resources";
  1255. outputFileListPaths = (
  1256. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources-${CONFIGURATION}-output-files.xcfilelist",
  1257. );
  1258. outputPaths = (
  1259. );
  1260. runOnlyForDeploymentPostprocessing = 0;
  1261. shellPath = /bin/sh;
  1262. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources.sh\"\n";
  1263. showEnvVarsInLog = 0;
  1264. };
  1265. 624DA386B509DACD62803C0A /* [CP] Embed Pods Frameworks */ = {
  1266. isa = PBXShellScriptBuildPhase;
  1267. buildActionMask = 2147483647;
  1268. files = (
  1269. );
  1270. inputFileListPaths = (
  1271. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1272. );
  1273. inputPaths = (
  1274. );
  1275. name = "[CP] Embed Pods Frameworks";
  1276. outputFileListPaths = (
  1277. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1278. );
  1279. outputPaths = (
  1280. );
  1281. runOnlyForDeploymentPostprocessing = 0;
  1282. shellPath = /bin/sh;
  1283. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks.sh\"\n";
  1284. showEnvVarsInLog = 0;
  1285. };
  1286. 6DC0927190C9AC540C38874B /* [CP] Copy Pods Resources */ = {
  1287. isa = PBXShellScriptBuildPhase;
  1288. buildActionMask = 2147483647;
  1289. files = (
  1290. );
  1291. inputFileListPaths = (
  1292. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources-${CONFIGURATION}-input-files.xcfilelist",
  1293. );
  1294. inputPaths = (
  1295. );
  1296. name = "[CP] Copy Pods Resources";
  1297. outputFileListPaths = (
  1298. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources-${CONFIGURATION}-output-files.xcfilelist",
  1299. );
  1300. outputPaths = (
  1301. );
  1302. runOnlyForDeploymentPostprocessing = 0;
  1303. shellPath = /bin/sh;
  1304. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources.sh\"\n";
  1305. showEnvVarsInLog = 0;
  1306. };
  1307. 6EB67D7C316C4D8D13B0D8B8 /* [CP] Check Pods Manifest.lock */ = {
  1308. isa = PBXShellScriptBuildPhase;
  1309. buildActionMask = 2147483647;
  1310. files = (
  1311. );
  1312. inputFileListPaths = (
  1313. );
  1314. inputPaths = (
  1315. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1316. "${PODS_ROOT}/Manifest.lock",
  1317. );
  1318. name = "[CP] Check Pods Manifest.lock";
  1319. outputFileListPaths = (
  1320. );
  1321. outputPaths = (
  1322. "$(DERIVED_FILE_DIR)/Pods-NexilisLite-NexilisLiteTests-checkManifestLockResult.txt",
  1323. );
  1324. runOnlyForDeploymentPostprocessing = 0;
  1325. shellPath = /bin/sh;
  1326. 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";
  1327. showEnvVarsInLog = 0;
  1328. };
  1329. 850186F3E91AA69B1B6DFCDD /* [CP] Check Pods Manifest.lock */ = {
  1330. isa = PBXShellScriptBuildPhase;
  1331. buildActionMask = 2147483647;
  1332. files = (
  1333. );
  1334. inputFileListPaths = (
  1335. );
  1336. inputPaths = (
  1337. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1338. "${PODS_ROOT}/Manifest.lock",
  1339. );
  1340. name = "[CP] Check Pods Manifest.lock";
  1341. outputFileListPaths = (
  1342. );
  1343. outputPaths = (
  1344. "$(DERIVED_FILE_DIR)/Pods-NexilisLite-checkManifestLockResult.txt",
  1345. );
  1346. runOnlyForDeploymentPostprocessing = 0;
  1347. shellPath = /bin/sh;
  1348. 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";
  1349. showEnvVarsInLog = 0;
  1350. };
  1351. /* End PBXShellScriptBuildPhase section */
  1352. /* Begin PBXSourcesBuildPhase section */
  1353. CD1E6E642A0B7C3600BF871F /* Sources */ = {
  1354. isa = PBXSourcesBuildPhase;
  1355. buildActionMask = 2147483647;
  1356. files = (
  1357. CD1E72272A0BA86100BF871F /* QmeraStreamingViewController.swift in Sources */,
  1358. CD1E72522A0BA86100BF871F /* ImageVideoPicker.swift in Sources */,
  1359. CD1E724E2A0BA86100BF871F /* VerifyEmail.swift in Sources */,
  1360. CDDF46762A2DD81300049A19 /* SeminarViewController.swift in Sources */,
  1361. CD1E721A2A0BA86100BF871F /* NotifSound.swift in Sources */,
  1362. CD1E724F2A0BA86100BF871F /* SetInternalCSAccount.swift in Sources */,
  1363. CDA461222AB99E09001CD010 /* ConfigureFloatingButton.swift in Sources */,
  1364. 12C36CEB2D0299630095BEC1 /* SecureFolderView.swift in Sources */,
  1365. CD1E721C2A0BA86100BF871F /* ContactCallViewController.swift in Sources */,
  1366. CD5A73AE2A77642D000541A5 /* MessageInfo.swift in Sources */,
  1367. CD1E723B2A0BA86100BF871F /* GroupDescViewController.swift in Sources */,
  1368. CD1E725C2A0BA86100BF871F /* Utils.swift in Sources */,
  1369. CD1E72232A0BA86100BF871F /* EditorGroup.swift in Sources */,
  1370. CD1E72452A0BA86100BF871F /* GroupNameViewController.swift in Sources */,
  1371. CD9829B72A3C07CB009F6743 /* SeminarListViewController.swift in Sources */,
  1372. 1258BCB62D82D71200EFF5BD /* ChatWallpaperViewController.swift in Sources */,
  1373. CD1E72572A0BA86100BF871F /* GroupMemberViewController.swift in Sources */,
  1374. CD1E72582A0BA86100BF871F /* SetOfficerBNI.swift in Sources */,
  1375. CD1E72212A0BA86100BF871F /* EditorPersonal.swift in Sources */,
  1376. CD46A0C52A0D0D5D009E4C87 /* MyArchive.swift in Sources */,
  1377. CD1E72192A0BA86100BF871F /* Group.swift in Sources */,
  1378. CD1E722C2A0BA86100BF871F /* CallManager.swift in Sources */,
  1379. CD1E72322A0BA86100BF871F /* QmeraCallContactViewController.swift in Sources */,
  1380. CD1E72382A0BA86100BF871F /* GroupCreateViewController.swift in Sources */,
  1381. CD1E723E2A0BA86100BF871F /* SignUpSignIn.swift in Sources */,
  1382. CD1E724D2A0BA86100BF871F /* TypeViewController.swift in Sources */,
  1383. CD1E720E2A0BA86100BF871F /* Network.swift in Sources */,
  1384. CD1E723C2A0BA86100BF871F /* HistoryBroadcastViewController.swift in Sources */,
  1385. CD1E72112A0BA86100BF871F /* WhiteboardReceiver.swift in Sources */,
  1386. CD1E725F2A0BA86100BF871F /* CoreMessage_TMessageBank.swift in Sources */,
  1387. CD1E72222A0BA86100BF871F /* FormEditor.swift in Sources */,
  1388. 1241AEBC2D017E8C0088175A /* MasterKeyUtil.swift in Sources */,
  1389. 1241AEBD2D017E8C0088175A /* FileEncryption.swift in Sources */,
  1390. CD1E725A2A0BA86100BF871F /* ScannerViewController.swift in Sources */,
  1391. CD1E72462A0BA86100BF871F /* GroupTopicViewController.swift in Sources */,
  1392. CD1E72472A0BA86100BF871F /* SettingTableViewController.swift in Sources */,
  1393. CD1E72172A0BA86100BF871F /* CategoryCC.swift in Sources */,
  1394. CD1E72552A0BA86100BF871F /* BroadcastMembersTableViewController.swift in Sources */,
  1395. CD1E72152A0BA86100BF871F /* Chat.swift in Sources */,
  1396. CD1E72502A0BA86100BF871F /* BroadcastVariantViewController.swift in Sources */,
  1397. CD1E72562A0BA86100BF871F /* BroadcastViewController.swift in Sources */,
  1398. CD2B01242D43961E00C11B20 /* QRProfileController.swift in Sources */,
  1399. CD2B01252D43961E00C11B20 /* QRScannerController.swift in Sources */,
  1400. CD1E72252A0BA86100BF871F /* CustomTextView.swift in Sources */,
  1401. CD1E72602A0BA86100BF871F /* Callback.swift in Sources */,
  1402. CD1E724A2A0BA86100BF871F /* HistoryCCViewController.swift in Sources */,
  1403. CD1E722A2A0BA86100BF871F /* StreamingViewController.swift in Sources */,
  1404. CD1E72132A0BA86100BF871F /* Database.swift in Sources */,
  1405. CD5A73AF2A77642D000541A5 /* ListGroupImages.swift in Sources */,
  1406. CD1E720F2A0BA86100BF871F /* Download.swift in Sources */,
  1407. CD1E725D2A0BA86100BF871F /* WhiteboardDelegate.swift in Sources */,
  1408. CD1E721B2A0BA86100BF871F /* Nexilis.swift in Sources */,
  1409. CD1E72102A0BA86100BF871F /* Extension.swift in Sources */,
  1410. CD1E724C2A0BA86100BF871F /* NotificationSound.swift in Sources */,
  1411. CD63125E2DA925960088964E /* Group_NM.swift in Sources */,
  1412. CD63125F2DA925960088964E /* CallModel.swift in Sources */,
  1413. CD6312592DA925260088964E /* CallLogVC.swift in Sources */,
  1414. CD63125B2DA925320088964E /* ChatWALikeVC.swift in Sources */,
  1415. CDDF467A2A2EF0A700049A19 /* ScreenSharingViewController.swift in Sources */,
  1416. CD1E72402A0BA86100BF871F /* ChangeNamePassswordViewController.swift in Sources */,
  1417. CD1E722E2A0BA86100BF871F /* AudioViewController.swift in Sources */,
  1418. CD1E725E2A0BA86100BF871F /* TMessage.swift in Sources */,
  1419. CD1E72422A0BA86100BF871F /* ChangeDeviceViewController.swift in Sources */,
  1420. CD1E725B2A0BA86100BF871F /* AudienceViewController.swift in Sources */,
  1421. CD1E72532A0BA86100BF871F /* BackupRestoreView.swift in Sources */,
  1422. CD1E72342A0BA86100BF871F /* QmeraVideoViewController.swift in Sources */,
  1423. CD1E721D2A0BA86100BF871F /* WorkingAreaPicker.swift in Sources */,
  1424. CD1E72122A0BA86100BF871F /* CoreMessage_TMessageKey.swift in Sources */,
  1425. CDDF46752A2DD81300049A19 /* CreateSeminarViewController.swift in Sources */,
  1426. CD1E722D2A0BA86100BF871F /* QmeraAudioConference.swift in Sources */,
  1427. CD1E72432A0BA86100BF871F /* DocumentPicker.swift in Sources */,
  1428. CD1E72352A0BA86100BF871F /* VideoViewController.swift in Sources */,
  1429. CD1E722B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift in Sources */,
  1430. CD1E72612A0BA86100BF871F /* CoreMessage_TMessageCode.swift in Sources */,
  1431. CD1E72242A0BA86100BF871F /* PreviewAttachmentImageVideo.swift in Sources */,
  1432. CD1E72142A0BA86100BF871F /* Model.swift in Sources */,
  1433. CD1E723A2A0BA86100BF871F /* QRScannerView.swift in Sources */,
  1434. CD1E72392A0BA86100BF871F /* BroadcastMembersTableViewCell.swift in Sources */,
  1435. CD1E72182A0BA86100BF871F /* WorkingArea.swift in Sources */,
  1436. CD1E724B2A0BA86100BF871F /* ChangeNameTableViewController.swift in Sources */,
  1437. CD1E72592A0BA86100BF871F /* AddFriendTableViewController.swift in Sources */,
  1438. CD1E72332A0BA86100BF871F /* WhiteboardViewController.swift in Sources */,
  1439. CD1E72632A0BA86100BF871F /* CoreMessage_TMessageUtil.swift in Sources */,
  1440. CD1E6E6D2A0B7C3600BF871F /* NexilisLite.docc in Sources */,
  1441. CD1E72542A0BA86100BF871F /* ProfileViewController.swift in Sources */,
  1442. CD1E720B2A0BA86100BF871F /* FloatingButton.swift in Sources */,
  1443. CD43C80C2D687DBF00297C6E /* CreateConferenceCallController.swift in Sources */,
  1444. CD43C80D2D687DBF00297C6E /* VideoConferenceViewController.swift in Sources */,
  1445. CD1E72412A0BA86100BF871F /* ContactChatViewController.swift in Sources */,
  1446. CD1E72082A0BA86100BF871F /* Units.swift in Sources */,
  1447. CD1E720C2A0BA86100BF871F /* Whiteboard.swift in Sources */,
  1448. CD1E72312A0BA86100BF871F /* QmeraAudioViewController.swift in Sources */,
  1449. CD1E721F2A0BA86100BF871F /* EditorStarMessages.swift in Sources */,
  1450. CD1E72442A0BA86100BF871F /* ChangePasswordViewController.swift in Sources */,
  1451. CD1E72072A0BA86100BF871F /* WhiteboardCanvas.swift in Sources */,
  1452. CD1E721E2A0BA86100BF871F /* BNIBookingWebView.swift in Sources */,
  1453. CD1E72482A0BA86100BF871F /* BroadcastModeViewController.swift in Sources */,
  1454. CD1E72492A0BA86100BF871F /* BackupRestoreOption.swift in Sources */,
  1455. CD1E723D2A0BA86100BF871F /* CheckConnection.swift in Sources */,
  1456. CD1E72262A0BA86100BF871F /* QmeraGroupChooserViewController.swift in Sources */,
  1457. CD1E72372A0BA86100BF871F /* GroupView.swift in Sources */,
  1458. CD7054EA2AD39DE2003741BF /* ChatGPTBotView.swift in Sources */,
  1459. CD1E72622A0BA86100BF871F /* IncomingThread.swift in Sources */,
  1460. CD1E72292A0BA86100BF871F /* QmeraUserChooserViewController.swift in Sources */,
  1461. CD1E723F2A0BA86100BF871F /* GroupDetailViewController.swift in Sources */,
  1462. CD1E72282A0BA86100BF871F /* CreateViewController.swift in Sources */,
  1463. CD1E72162A0BA86100BF871F /* User.swift in Sources */,
  1464. CD1E720A2A0BA86100BF871F /* APIS.swift in Sources */,
  1465. CD1E72062A0BA86100BF871F /* OutgoingThread.swift in Sources */,
  1466. CD1E722F2A0BA86100BF871F /* ProfileView.swift in Sources */,
  1467. CD1E720D2A0BA86100BF871F /* InquiryThread.swift in Sources */,
  1468. );
  1469. runOnlyForDeploymentPostprocessing = 0;
  1470. };
  1471. CD1E6E6E2A0B7C3600BF871F /* Sources */ = {
  1472. isa = PBXSourcesBuildPhase;
  1473. buildActionMask = 2147483647;
  1474. files = (
  1475. CD1E6E782A0B7C3600BF871F /* NexilisLiteTests.swift in Sources */,
  1476. );
  1477. runOnlyForDeploymentPostprocessing = 0;
  1478. };
  1479. CD469F4C2A0CC862009E4C87 /* Sources */ = {
  1480. isa = PBXSourcesBuildPhase;
  1481. buildActionMask = 2147483647;
  1482. files = (
  1483. );
  1484. runOnlyForDeploymentPostprocessing = 0;
  1485. };
  1486. /* End PBXSourcesBuildPhase section */
  1487. /* Begin PBXTargetDependency section */
  1488. CD1E6E752A0B7C3600BF871F /* PBXTargetDependency */ = {
  1489. isa = PBXTargetDependency;
  1490. target = CD1E6E672A0B7C3600BF871F /* NexilisLite */;
  1491. targetProxy = CD1E6E742A0B7C3600BF871F /* PBXContainerItemProxy */;
  1492. };
  1493. CD469FA52A0CC8D4009E4C87 /* PBXTargetDependency */ = {
  1494. isa = PBXTargetDependency;
  1495. target = CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */;
  1496. targetProxy = CD469FA42A0CC8D4009E4C87 /* PBXContainerItemProxy */;
  1497. };
  1498. /* End PBXTargetDependency section */
  1499. /* Begin PBXVariantGroup section */
  1500. CD469FC82A0CE2DE009E4C87 /* Localizable.strings */ = {
  1501. isa = PBXVariantGroup;
  1502. children = (
  1503. CD469FC92A0CE2DE009E4C87 /* en */,
  1504. CD46A0192A0CE2DE009E4C87 /* id */,
  1505. );
  1506. name = Localizable.strings;
  1507. sourceTree = "<group>";
  1508. };
  1509. /* End PBXVariantGroup section */
  1510. /* Begin XCBuildConfiguration section */
  1511. CD1E6E7A2A0B7C3600BF871F /* Debug */ = {
  1512. isa = XCBuildConfiguration;
  1513. buildSettings = {
  1514. ALWAYS_SEARCH_USER_PATHS = NO;
  1515. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1516. CLANG_ANALYZER_NONNULL = YES;
  1517. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1518. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  1519. CLANG_ENABLE_MODULES = YES;
  1520. CLANG_ENABLE_OBJC_ARC = YES;
  1521. CLANG_ENABLE_OBJC_WEAK = YES;
  1522. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1523. CLANG_WARN_BOOL_CONVERSION = YES;
  1524. CLANG_WARN_COMMA = YES;
  1525. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1526. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1527. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1528. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1529. CLANG_WARN_EMPTY_BODY = YES;
  1530. CLANG_WARN_ENUM_CONVERSION = YES;
  1531. CLANG_WARN_INFINITE_RECURSION = YES;
  1532. CLANG_WARN_INT_CONVERSION = YES;
  1533. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1534. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1535. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1536. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1537. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1538. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1539. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1540. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1541. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1542. CLANG_WARN_UNREACHABLE_CODE = YES;
  1543. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1544. COPY_PHASE_STRIP = NO;
  1545. CURRENT_PROJECT_VERSION = 1;
  1546. DEBUG_INFORMATION_FORMAT = dwarf;
  1547. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1548. ENABLE_TESTABILITY = YES;
  1549. GCC_C_LANGUAGE_STANDARD = gnu11;
  1550. GCC_DYNAMIC_NO_PIC = NO;
  1551. GCC_NO_COMMON_BLOCKS = YES;
  1552. GCC_OPTIMIZATION_LEVEL = 0;
  1553. GCC_PREPROCESSOR_DEFINITIONS = (
  1554. "DEBUG=1",
  1555. "$(inherited)",
  1556. );
  1557. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1558. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1559. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1560. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1561. GCC_WARN_UNUSED_FUNCTION = YES;
  1562. GCC_WARN_UNUSED_VARIABLE = YES;
  1563. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1564. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1565. MTL_FAST_MATH = YES;
  1566. ONLY_ACTIVE_ARCH = YES;
  1567. SDKROOT = iphoneos;
  1568. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  1569. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1570. VERSIONING_SYSTEM = "apple-generic";
  1571. VERSION_INFO_PREFIX = "";
  1572. };
  1573. name = Debug;
  1574. };
  1575. CD1E6E7B2A0B7C3600BF871F /* Release */ = {
  1576. isa = XCBuildConfiguration;
  1577. buildSettings = {
  1578. ALWAYS_SEARCH_USER_PATHS = NO;
  1579. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1580. CLANG_ANALYZER_NONNULL = YES;
  1581. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1582. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  1583. CLANG_ENABLE_MODULES = YES;
  1584. CLANG_ENABLE_OBJC_ARC = YES;
  1585. CLANG_ENABLE_OBJC_WEAK = YES;
  1586. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1587. CLANG_WARN_BOOL_CONVERSION = YES;
  1588. CLANG_WARN_COMMA = YES;
  1589. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1590. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1591. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1592. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1593. CLANG_WARN_EMPTY_BODY = YES;
  1594. CLANG_WARN_ENUM_CONVERSION = YES;
  1595. CLANG_WARN_INFINITE_RECURSION = YES;
  1596. CLANG_WARN_INT_CONVERSION = YES;
  1597. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1598. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1599. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1600. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1601. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1602. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1603. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1604. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1605. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1606. CLANG_WARN_UNREACHABLE_CODE = YES;
  1607. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1608. COPY_PHASE_STRIP = NO;
  1609. CURRENT_PROJECT_VERSION = 1;
  1610. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1611. ENABLE_NS_ASSERTIONS = NO;
  1612. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1613. GCC_C_LANGUAGE_STANDARD = gnu11;
  1614. GCC_NO_COMMON_BLOCKS = YES;
  1615. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1616. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1617. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1618. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1619. GCC_WARN_UNUSED_FUNCTION = YES;
  1620. GCC_WARN_UNUSED_VARIABLE = YES;
  1621. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1622. MTL_ENABLE_DEBUG_INFO = NO;
  1623. MTL_FAST_MATH = YES;
  1624. SDKROOT = iphoneos;
  1625. SWIFT_COMPILATION_MODE = wholemodule;
  1626. SWIFT_OPTIMIZATION_LEVEL = "-O";
  1627. VALIDATE_PRODUCT = YES;
  1628. VERSIONING_SYSTEM = "apple-generic";
  1629. VERSION_INFO_PREFIX = "";
  1630. };
  1631. name = Release;
  1632. };
  1633. CD1E6E7D2A0B7C3600BF871F /* Debug */ = {
  1634. isa = XCBuildConfiguration;
  1635. baseConfigurationReference = A5C9F493B799D97510AECB02 /* Pods-NexilisLite.debug.xcconfig */;
  1636. buildSettings = {
  1637. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1638. CODE_SIGN_STYLE = Automatic;
  1639. CURRENT_PROJECT_VERSION = 1;
  1640. DEFINES_MODULE = YES;
  1641. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1642. DYLIB_COMPATIBILITY_VERSION = 1;
  1643. DYLIB_CURRENT_VERSION = 1;
  1644. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1645. ENABLE_MODULE_VERIFIER = YES;
  1646. FRAMEWORK_SEARCH_PATHS = (
  1647. "$(inherited)",
  1648. "$(PROJECT_DIR)",
  1649. );
  1650. GENERATE_INFOPLIST_FILE = YES;
  1651. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1652. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1653. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1654. LD_RUNPATH_SEARCH_PATHS = (
  1655. "$(inherited)",
  1656. "@executable_path/Frameworks",
  1657. "@loader_path/Frameworks",
  1658. );
  1659. MARKETING_VERSION = 1.0;
  1660. MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
  1661. MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20";
  1662. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLite;
  1663. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1664. SKIP_INSTALL = NO;
  1665. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  1666. SUPPORTS_MACCATALYST = NO;
  1667. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1668. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  1669. SWIFT_EMIT_LOC_STRINGS = YES;
  1670. SWIFT_VERSION = 5.0;
  1671. TARGETED_DEVICE_FAMILY = 1;
  1672. };
  1673. name = Debug;
  1674. };
  1675. CD1E6E7E2A0B7C3600BF871F /* Release */ = {
  1676. isa = XCBuildConfiguration;
  1677. baseConfigurationReference = 5E1F6A2F460CE08324778A10 /* Pods-NexilisLite.release.xcconfig */;
  1678. buildSettings = {
  1679. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1680. CODE_SIGN_STYLE = Automatic;
  1681. CURRENT_PROJECT_VERSION = 1;
  1682. DEFINES_MODULE = YES;
  1683. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1684. DYLIB_COMPATIBILITY_VERSION = 1;
  1685. DYLIB_CURRENT_VERSION = 1;
  1686. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1687. ENABLE_MODULE_VERIFIER = YES;
  1688. FRAMEWORK_SEARCH_PATHS = (
  1689. "$(inherited)",
  1690. "$(PROJECT_DIR)",
  1691. );
  1692. GENERATE_INFOPLIST_FILE = YES;
  1693. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1694. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1695. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1696. LD_RUNPATH_SEARCH_PATHS = (
  1697. "$(inherited)",
  1698. "@executable_path/Frameworks",
  1699. "@loader_path/Frameworks",
  1700. );
  1701. MARKETING_VERSION = 1.0;
  1702. MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
  1703. MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20";
  1704. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLite;
  1705. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1706. SKIP_INSTALL = NO;
  1707. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  1708. SUPPORTS_MACCATALYST = NO;
  1709. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1710. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  1711. SWIFT_EMIT_LOC_STRINGS = YES;
  1712. SWIFT_VERSION = 5.0;
  1713. TARGETED_DEVICE_FAMILY = 1;
  1714. };
  1715. name = Release;
  1716. };
  1717. CD1E6E802A0B7C3600BF871F /* Debug */ = {
  1718. isa = XCBuildConfiguration;
  1719. baseConfigurationReference = A6B33FB3B7DDB4BA5A1064B1 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */;
  1720. buildSettings = {
  1721. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
  1722. CODE_SIGN_STYLE = Automatic;
  1723. CURRENT_PROJECT_VERSION = 1;
  1724. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1725. GENERATE_INFOPLIST_FILE = YES;
  1726. MARKETING_VERSION = 1.0;
  1727. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteTests;
  1728. PRODUCT_NAME = "$(TARGET_NAME)";
  1729. SWIFT_EMIT_LOC_STRINGS = NO;
  1730. SWIFT_VERSION = 5.0;
  1731. TARGETED_DEVICE_FAMILY = "1,2";
  1732. };
  1733. name = Debug;
  1734. };
  1735. CD1E6E812A0B7C3600BF871F /* Release */ = {
  1736. isa = XCBuildConfiguration;
  1737. baseConfigurationReference = 9D8E4449FB2643BB0D5A47F7 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */;
  1738. buildSettings = {
  1739. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
  1740. CODE_SIGN_STYLE = Automatic;
  1741. CURRENT_PROJECT_VERSION = 1;
  1742. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1743. GENERATE_INFOPLIST_FILE = YES;
  1744. MARKETING_VERSION = 1.0;
  1745. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteTests;
  1746. PRODUCT_NAME = "$(TARGET_NAME)";
  1747. SWIFT_EMIT_LOC_STRINGS = NO;
  1748. SWIFT_VERSION = 5.0;
  1749. TARGETED_DEVICE_FAMILY = "1,2";
  1750. };
  1751. name = Release;
  1752. };
  1753. CD469F522A0CC862009E4C87 /* Debug */ = {
  1754. isa = XCBuildConfiguration;
  1755. buildSettings = {
  1756. CODE_SIGN_STYLE = Automatic;
  1757. COMBINE_HIDPI_IMAGES = YES;
  1758. CURRENT_PROJECT_VERSION = 1;
  1759. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1760. GENERATE_INFOPLIST_FILE = YES;
  1761. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1762. INFOPLIST_KEY_NSPrincipalClass = "";
  1763. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
  1764. MACOSX_DEPLOYMENT_TARGET = 13.3;
  1765. MARKETING_VERSION = 1.0;
  1766. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteResources;
  1767. PRODUCT_NAME = "$(TARGET_NAME)";
  1768. SDKROOT = macosx;
  1769. SKIP_INSTALL = YES;
  1770. SWIFT_EMIT_LOC_STRINGS = YES;
  1771. WRAPPER_EXTENSION = bundle;
  1772. };
  1773. name = Debug;
  1774. };
  1775. CD469F532A0CC862009E4C87 /* Release */ = {
  1776. isa = XCBuildConfiguration;
  1777. buildSettings = {
  1778. CODE_SIGN_STYLE = Automatic;
  1779. COMBINE_HIDPI_IMAGES = YES;
  1780. CURRENT_PROJECT_VERSION = 1;
  1781. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1782. GENERATE_INFOPLIST_FILE = YES;
  1783. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1784. INFOPLIST_KEY_NSPrincipalClass = "";
  1785. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
  1786. MACOSX_DEPLOYMENT_TARGET = 13.3;
  1787. MARKETING_VERSION = 1.0;
  1788. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteResources;
  1789. PRODUCT_NAME = "$(TARGET_NAME)";
  1790. SDKROOT = macosx;
  1791. SKIP_INSTALL = YES;
  1792. SWIFT_EMIT_LOC_STRINGS = YES;
  1793. WRAPPER_EXTENSION = bundle;
  1794. };
  1795. name = Release;
  1796. };
  1797. /* End XCBuildConfiguration section */
  1798. /* Begin XCConfigurationList section */
  1799. CD1E6E622A0B7C3600BF871F /* Build configuration list for PBXProject "NexilisLite" */ = {
  1800. isa = XCConfigurationList;
  1801. buildConfigurations = (
  1802. CD1E6E7A2A0B7C3600BF871F /* Debug */,
  1803. CD1E6E7B2A0B7C3600BF871F /* Release */,
  1804. );
  1805. defaultConfigurationIsVisible = 0;
  1806. defaultConfigurationName = Release;
  1807. };
  1808. CD1E6E7C2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLite" */ = {
  1809. isa = XCConfigurationList;
  1810. buildConfigurations = (
  1811. CD1E6E7D2A0B7C3600BF871F /* Debug */,
  1812. CD1E6E7E2A0B7C3600BF871F /* Release */,
  1813. );
  1814. defaultConfigurationIsVisible = 0;
  1815. defaultConfigurationName = Release;
  1816. };
  1817. CD1E6E7F2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLiteTests" */ = {
  1818. isa = XCConfigurationList;
  1819. buildConfigurations = (
  1820. CD1E6E802A0B7C3600BF871F /* Debug */,
  1821. CD1E6E812A0B7C3600BF871F /* Release */,
  1822. );
  1823. defaultConfigurationIsVisible = 0;
  1824. defaultConfigurationName = Release;
  1825. };
  1826. CD469F512A0CC862009E4C87 /* Build configuration list for PBXNativeTarget "NexilisLiteResources" */ = {
  1827. isa = XCConfigurationList;
  1828. buildConfigurations = (
  1829. CD469F522A0CC862009E4C87 /* Debug */,
  1830. CD469F532A0CC862009E4C87 /* Release */,
  1831. );
  1832. defaultConfigurationIsVisible = 0;
  1833. defaultConfigurationName = Release;
  1834. };
  1835. /* End XCConfigurationList section */
  1836. };
  1837. rootObject = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  1838. }