project.pbxproj 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 70;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2D8068C66833EEAED7B4BEB8 /* FutureCarbsCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EBAB9EECE7095238A558060 /* FutureCarbsCondition.swift */; };
  10. 374A77992F5BD8B200E96858 /* APNSClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77982F5BD8AB00E96858 /* APNSClient.swift */; };
  11. 374A77A52F5BE17000E96858 /* AppGroupID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A779F2F5BE17000E96858 /* AppGroupID.swift */; };
  12. 374A77A62F5BE17000E96858 /* GlucoseSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77A12F5BE17000E96858 /* GlucoseSnapshot.swift */; };
  13. 374A77A72F5BE17000E96858 /* LAAppGroupSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77A32F5BE17000E96858 /* LAAppGroupSettings.swift */; };
  14. 374A77A82F5BE17000E96858 /* GlucoseLiveActivityAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77A02F5BE17000E96858 /* GlucoseLiveActivityAttributes.swift */; };
  15. 374A77AA2F5BE17000E96858 /* AppGroupID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A779F2F5BE17000E96858 /* AppGroupID.swift */; };
  16. 374A77AB2F5BE17000E96858 /* GlucoseSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77A12F5BE17000E96858 /* GlucoseSnapshot.swift */; };
  17. 374A77AC2F5BE17000E96858 /* LAAppGroupSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77A32F5BE17000E96858 /* LAAppGroupSettings.swift */; };
  18. 374A77AD2F5BE17000E96858 /* GlucoseLiveActivityAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77A02F5BE17000E96858 /* GlucoseLiveActivityAttributes.swift */; };
  19. 374A77B42F5BE1AC00E96858 /* StorageCurrentGlucoseStateProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77B32F5BE1AC00E96858 /* StorageCurrentGlucoseStateProvider.swift */; };
  20. 374A77B52F5BE1AC00E96858 /* GlucoseSnapshotBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77AE2F5BE1AC00E96858 /* GlucoseSnapshotBuilder.swift */; };
  21. 374A77B72F5BE1AC00E96858 /* LiveActivityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77B12F5BE1AC00E96858 /* LiveActivityManager.swift */; };
  22. 374A77B82F5BE1AC00E96858 /* GlucoseSnapshotStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77AF2F5BE1AC00E96858 /* GlucoseSnapshotStore.swift */; };
  23. 374A77B92F5BE1AC00E96858 /* PreferredGlucoseUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 374A77B22F5BE1AC00E96858 /* PreferredGlucoseUnit.swift */; };
  24. 379BECAA2F6588300069DC62 /* RestartLiveActivityIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 379BECA92F6588300069DC62 /* RestartLiveActivityIntent.swift */; };
  25. 379BECB02F65DA4B0069DC62 /* LiveActivitySettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 379BECAF2F65DA4B0069DC62 /* LiveActivitySettingsView.swift */; };
  26. 37A4BDDB2F5B6B4A00EEB289 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 37A4BDDA2F5B6B4A00EEB289 /* WidgetKit.framework */; };
  27. 37A4BDDD2F5B6B4A00EEB289 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 37A4BDDC2F5B6B4A00EEB289 /* SwiftUI.framework */; };
  28. 37A4BDE82F5B6B4C00EEB289 /* LoopFollowLAExtensionExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 37A4BDD92F5B6B4A00EEB289 /* LoopFollowLAExtensionExtension.appex */; platformFilter = ios; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  29. 37E4DD0D2F7E0967000511C8 /* LALivenessStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37E4DD0C2F7E0967000511C8 /* LALivenessStore.swift */; };
  30. 37E4DD0E2F7E097D000511C8 /* LALivenessStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37E4DD0C2F7E0967000511C8 /* LALivenessStore.swift */; };
  31. 37E4DD112F7E0D35000511C8 /* LALivenessMarker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37E4DD0F2F7E0985000511C8 /* LALivenessMarker.swift */; };
  32. 3F1335F351590E573D8E6962 /* Pods_LoopFollow.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7D55B42A22051DAD69E89D0 /* Pods_LoopFollow.framework */; };
  33. 5544D8C363FB5D3B9BF8CE4A /* APNSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7C2676561D686C6459CAA2D /* APNSettingsView.swift */; };
  34. 654132E72E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 654132E62E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift */; };
  35. 654132EA2E19F24800BDBE08 /* TOTPGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 654132E92E19F24800BDBE08 /* TOTPGenerator.swift */; };
  36. 654134182E1DC09700BDBE08 /* OverridePresetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 654134172E1DC09700BDBE08 /* OverridePresetsView.swift */; };
  37. 6541341A2E1DC27900BDBE08 /* OverridePresetData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 654134192E1DC27900BDBE08 /* OverridePresetData.swift */; };
  38. 6541341C2E1DC28000BDBE08 /* DateExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6541341B2E1DC28000BDBE08 /* DateExtensions.swift */; };
  39. 656F8C102E49F36F0008DC1D /* QRCodeDisplayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 656F8C0F2E49F36F0008DC1D /* QRCodeDisplayView.swift */; };
  40. 656F8C122E49F3780008DC1D /* QRCodeGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 656F8C112E49F3780008DC1D /* QRCodeGenerator.swift */; };
  41. 656F8C142E49F3D20008DC1D /* RemoteCommandSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 656F8C132E49F3D20008DC1D /* RemoteCommandSettings.swift */; };
  42. 657F98182F043D8100F732BD /* HomeContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 657F98172F043D8100F732BD /* HomeContentView.swift */; };
  43. 657F99E92F0BC81500F732BD /* OTPSecureMessenger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 657F99E82F0BC81500F732BD /* OTPSecureMessenger.swift */; };
  44. 6584B1012E4A263900135D4D /* TOTPService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6584B1002E4A263900135D4D /* TOTPService.swift */; };
  45. 6589CC622E9E7D1600BB18FE /* ImportExportSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC532E9E7D1600BB18FE /* ImportExportSettingsView.swift */; };
  46. 6589CC632E9E7D1600BB18FE /* GeneralSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5D2E9E7D1600BB18FE /* GeneralSettingsView.swift */; };
  47. 6589CC642E9E7D1600BB18FE /* ContactSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC592E9E7D1600BB18FE /* ContactSettingsView.swift */; };
  48. 6589CC652E9E7D1600BB18FE /* DexcomSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5C2E9E7D1600BB18FE /* DexcomSettingsViewModel.swift */; };
  49. 6589CC662E9E7D1600BB18FE /* AdvancedSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC562E9E7D1600BB18FE /* AdvancedSettingsView.swift */; };
  50. 6589CC672E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC542E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift */; };
  51. 6589CC682E9E7D1600BB18FE /* ExportableSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC522E9E7D1600BB18FE /* ExportableSettings.swift */; };
  52. 6589CC692E9E7D1600BB18FE /* ContactSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5A2E9E7D1600BB18FE /* ContactSettingsViewModel.swift */; };
  53. 6589CC6A2E9E7D1600BB18FE /* DexcomSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5B2E9E7D1600BB18FE /* DexcomSettingsView.swift */; };
  54. 6589CC6B2E9E7D1600BB18FE /* TabCustomizationModal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC602E9E7D1600BB18FE /* TabCustomizationModal.swift */; };
  55. 6589CC6C2E9E7D1600BB18FE /* GraphSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5E2E9E7D1600BB18FE /* GraphSettingsView.swift */; };
  56. 6589CC6D2E9E7D1600BB18FE /* CalendarSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC582E9E7D1600BB18FE /* CalendarSettingsView.swift */; };
  57. 6589CC6E2E9E7D1600BB18FE /* SettingsMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5F2E9E7D1600BB18FE /* SettingsMenuView.swift */; };
  58. 6589CC6F2E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC572E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift */; };
  59. 6589CC712E9E814F00BB18FE /* AlarmSelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC702E9E814F00BB18FE /* AlarmSelectionView.swift */; };
  60. 6589CC752E9EAFB700BB18FE /* SettingsMigrationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC742E9EAFB700BB18FE /* SettingsMigrationManager.swift */; };
  61. 65E153C32E4BB69100693A4F /* URLTokenValidationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E153C22E4BB69100693A4F /* URLTokenValidationView.swift */; };
  62. 65E8A2862E44B0300065037B /* VolumeButtonHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E8A2852E44B0300065037B /* VolumeButtonHandler.swift */; };
  63. 66E3D12E66AA4534A144A54B /* BackgroundRefreshManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8CA8BE0B3D247408FE088B4 /* BackgroundRefreshManager.swift */; };
  64. ACE7F6DE0D065BEB52CDC0DB /* FutureCarbsAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7D2A4EFD18B7B7748B6669E /* FutureCarbsAlarmEditor.swift */; };
  65. DD0247592DB2E89600FCADF6 /* AlarmCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0247582DB2E89600FCADF6 /* AlarmCondition.swift */; };
  66. DD0247712DB4337700FCADF6 /* BuildExpireCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD02475B2DB2E8FB00FCADF6 /* BuildExpireCondition.swift */; };
  67. DD026E592EA2C8A200A39CB5 /* InsulinPrecisionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD026E582EA2C8A200A39CB5 /* InsulinPrecisionManager.swift */; };
  68. DD026E5B2EA2C9C300A39CB5 /* InsulinFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD026E5A2EA2C9C300A39CB5 /* InsulinFormatter.swift */; };
  69. DD0650A92DCA8A10004D3B41 /* AlarmBGSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650A82DCA8A10004D3B41 /* AlarmBGSection.swift */; };
  70. DD0650EB2DCE8385004D3B41 /* LowBGCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650EA2DCE8385004D3B41 /* LowBGCondition.swift */; };
  71. DD0650ED2DCE9371004D3B41 /* HighBgAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650EC2DCE9371004D3B41 /* HighBgAlarmEditor.swift */; };
  72. DD0650EF2DCE96FF004D3B41 /* HighBGCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650EE2DCE96FF004D3B41 /* HighBGCondition.swift */; };
  73. DD0650F12DCE9A9E004D3B41 /* MissedReadingCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F02DCE9A9E004D3B41 /* MissedReadingCondition.swift */; };
  74. DD0650F32DCE9B3D004D3B41 /* MissedReadingEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F22DCE9B3D004D3B41 /* MissedReadingEditor.swift */; };
  75. DD0650F52DCF303F004D3B41 /* AlarmStepperSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F42DCF303F004D3B41 /* AlarmStepperSection.swift */; };
  76. DD0650F72DCFDA26004D3B41 /* InfoBanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F62DCFDA26004D3B41 /* InfoBanner.swift */; };
  77. DD0650F92DCFE7BE004D3B41 /* FastDropAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F82DCFE7BE004D3B41 /* FastDropAlarmEditor.swift */; };
  78. DD07B5C929E2F9C400C6A635 /* NightscoutUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD07B5C829E2F9C400C6A635 /* NightscoutUtils.swift */; };
  79. DD0B9D562DE1EC8A0090C337 /* AlarmType+Snooze.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0B9D552DE1EC8A0090C337 /* AlarmType+Snooze.swift */; };
  80. DD0B9D582DE1F3B20090C337 /* AlarmType+canAcknowledge.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0B9D572DE1F3B20090C337 /* AlarmType+canAcknowledge.swift */; };
  81. DD0C0C602C415B9D00DBADDF /* ProfileManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C5F2C415B9D00DBADDF /* ProfileManager.swift */; };
  82. DD0C0C622C4175FD00DBADDF /* NSProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C612C4175FD00DBADDF /* NSProfile.swift */; };
  83. DD0C0C642C45A59400DBADDF /* HKUnit+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C632C45A59400DBADDF /* HKUnit+Extensions.swift */; };
  84. DD0C0C662C46E54C00DBADDF /* InfoDataSeparator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C652C46E54C00DBADDF /* InfoDataSeparator.swift */; };
  85. DD0C0C682C48529400DBADDF /* Metric.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C672C48529400DBADDF /* Metric.swift */; };
  86. DD0C0C6B2C48562000DBADDF /* InsulinMetric.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C6A2C48562000DBADDF /* InsulinMetric.swift */; };
  87. DD0C0C6D2C48606200DBADDF /* CarbMetric.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C6C2C48606200DBADDF /* CarbMetric.swift */; };
  88. DD0C0C702C4AFFE800DBADDF /* RemoteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C6F2C4AFFE800DBADDF /* RemoteViewController.swift */; };
  89. DD0C0C722C4B000800DBADDF /* TrioNightscoutRemoteView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C712C4B000800DBADDF /* TrioNightscoutRemoteView.swift */; };
  90. DD12D4852E1705D9004E0112 /* AlarmViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD12D4842E1705D9004E0112 /* AlarmViewController.swift */; };
  91. DD12D4872E1705E6004E0112 /* AlarmsContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD12D4862E1705E6004E0112 /* AlarmsContainerView.swift */; };
  92. DD13BC752C3FD6210062313B /* InfoType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD13BC742C3FD6200062313B /* InfoType.swift */; };
  93. DD13BC772C3FD64E0062313B /* InfoData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD13BC762C3FD64E0062313B /* InfoData.swift */; };
  94. DD13BC792C3FE63A0062313B /* InfoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD13BC782C3FE63A0062313B /* InfoManager.swift */; };
  95. DD16AF0D2C98485400FB655A /* SecureStorageValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD16AF0C2C98485400FB655A /* SecureStorageValue.swift */; };
  96. DD16AF0F2C99592F00FB655A /* HKQuantityInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD16AF0E2C99592F00FB655A /* HKQuantityInputView.swift */; };
  97. DD16AF112C997B4600FB655A /* LoadingButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD16AF102C997B4600FB655A /* LoadingButtonView.swift */; };
  98. DD1D52B92E1EB5DC00432050 /* TabPosition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1D52B82E1EB5DC00432050 /* TabPosition.swift */; };
  99. DD1D52BB2E1EB60B00432050 /* MoreMenuViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1D52BA2E1EB60B00432050 /* MoreMenuViewController.swift */; };
  100. DD1D52C02E4C100000000001 /* AppearanceMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1D52BF2E4C100000000001 /* AppearanceMode.swift */; };
  101. DD2C2E4F2D3B8AF1006413A5 /* NightscoutSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2C2E4E2D3B8AEC006413A5 /* NightscoutSettingsView.swift */; };
  102. DD2C2E512D3B8B0C006413A5 /* NightscoutSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2C2E502D3B8B0B006413A5 /* NightscoutSettingsViewModel.swift */; };
  103. DD485F142E454B2600CE8CBF /* SecureMessenger.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD485F132E454B2600CE8CBF /* SecureMessenger.swift */; };
  104. DD4878032C7B297E0048F05C /* StorageValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878022C7B297E0048F05C /* StorageValue.swift */; };
  105. DD4878052C7B2C970048F05C /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878042C7B2C970048F05C /* Storage.swift */; };
  106. DD4878082C7B30BF0048F05C /* RemoteSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878072C7B30BF0048F05C /* RemoteSettingsView.swift */; };
  107. DD48780A2C7B30D40048F05C /* RemoteSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878092C7B30D40048F05C /* RemoteSettingsViewModel.swift */; };
  108. DD48780E2C7B74A40048F05C /* TrioRemoteControlViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD48780D2C7B74A40048F05C /* TrioRemoteControlViewModel.swift */; };
  109. DD4878102C7B74BF0048F05C /* TrioRemoteControlView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD48780F2C7B74BF0048F05C /* TrioRemoteControlView.swift */; };
  110. DD4878132C7B750D0048F05C /* TempTargetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878122C7B750D0048F05C /* TempTargetView.swift */; };
  111. DD4878152C7B75230048F05C /* MealView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878142C7B75230048F05C /* MealView.swift */; };
  112. DD4878172C7B75350048F05C /* BolusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878162C7B75350048F05C /* BolusView.swift */; };
  113. DD4878192C7C56D60048F05C /* TrioNightscoutRemoteController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878182C7C56D60048F05C /* TrioNightscoutRemoteController.swift */; };
  114. DD48781E2C7DAF2F0048F05C /* PushNotificationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD48781D2C7DAF2F0048F05C /* PushNotificationManager.swift */; };
  115. DD4878202C7DAF890048F05C /* PushMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD48781F2C7DAF890048F05C /* PushMessage.swift */; };
  116. DD493AD52ACF2109009A6922 /* ResumePump.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AD42ACF2109009A6922 /* ResumePump.swift */; };
  117. DD493AD72ACF2139009A6922 /* SuspendPump.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AD62ACF2139009A6922 /* SuspendPump.swift */; };
  118. DD493AD92ACF2171009A6922 /* Carbs.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AD82ACF2171009A6922 /* Carbs.swift */; };
  119. DD493ADB2ACF21A3009A6922 /* Bolus.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493ADA2ACF21A3009A6922 /* Bolus.swift */; };
  120. DD493ADD2ACF21E0009A6922 /* Basals.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493ADC2ACF21E0009A6922 /* Basals.swift */; };
  121. DD493ADF2ACF22BB009A6922 /* SAge.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493ADE2ACF22BB009A6922 /* SAge.swift */; };
  122. DD493AE12ACF22FE009A6922 /* Profile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE02ACF22FE009A6922 /* Profile.swift */; };
  123. DD493AE32ACF2358009A6922 /* CAge.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE22ACF2358009A6922 /* CAge.swift */; };
  124. DD493AE52ACF2383009A6922 /* Treatments.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE42ACF2383009A6922 /* Treatments.swift */; };
  125. DD493AE72ACF23CF009A6922 /* DeviceStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE62ACF23CF009A6922 /* DeviceStatus.swift */; };
  126. DD493AE92ACF2445009A6922 /* BGData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE82ACF2445009A6922 /* BGData.swift */; };
  127. DD4A407E2E6AFEE6007B318B /* AuthService.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4A407D2E6AFEE6007B318B /* AuthService.swift */; };
  128. DD4AFB3B2DB55CB600BB593F /* TimeOfDay.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB3A2DB55CB600BB593F /* TimeOfDay.swift */; };
  129. DD4AFB3D2DB55D2900BB593F /* AlarmConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB3C2DB55D2900BB593F /* AlarmConfiguration.swift */; };
  130. DD4AFB492DB576C200BB593F /* AlarmSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB482DB576C200BB593F /* AlarmSettingsView.swift */; };
  131. DD4AFB612DB68BBC00BB593F /* AlarmListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB602DB68BBC00BB593F /* AlarmListView.swift */; };
  132. DD4AFB672DB68C5500BB593F /* UUID+Identifiable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB662DB68C5500BB593F /* UUID+Identifiable.swift */; };
  133. DD4AFB6B2DB6BF2A00BB593F /* Binding+Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB6A2DB6BF2A00BB593F /* Binding+Optional.swift */; };
  134. DD50C7552D0862770057AE6F /* ContactImageUpdater.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD50C7542D0862770057AE6F /* ContactImageUpdater.swift */; };
  135. DD5334212C60EBEE00062F9D /* InsulinCartridgeChange.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334202C60EBEE00062F9D /* InsulinCartridgeChange.swift */; };
  136. DD5334232C60ED3600062F9D /* IAge.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334222C60ED3600062F9D /* IAge.swift */; };
  137. DD5334272C61668800062F9D /* InfoDisplaySettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334262C61668700062F9D /* InfoDisplaySettingsViewModel.swift */; };
  138. DD5334292C6166A500062F9D /* InfoDisplaySettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334282C6166A500062F9D /* InfoDisplaySettingsView.swift */; };
  139. DD5334B02D1447C500CDD6EA /* BLEManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334AF2D1447C500CDD6EA /* BLEManager.swift */; };
  140. DD5817172D2710E90041FB98 /* BLEDeviceSelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5817162D2710E50041FB98 /* BLEDeviceSelectionView.swift */; };
  141. DD58171A2D299EF80041FB98 /* DexcomHeartbeatBluetoothDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5817192D299EF40041FB98 /* DexcomHeartbeatBluetoothDevice.swift */; };
  142. DD58171C2D299F940041FB98 /* BluetoothDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD58171B2D299F8D0041FB98 /* BluetoothDevice.swift */; };
  143. DD58171E2D299FCA0041FB98 /* BluetoothDeviceDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD58171D2D299FC50041FB98 /* BluetoothDeviceDelegate.swift */; };
  144. DD5DA27C2DC930D6003D44FC /* GlucoseValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DA27B2DC930D6003D44FC /* GlucoseValue.swift */; };
  145. DD608A082C1F584900F91132 /* DeviceStatusLoop.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD608A072C1F584900F91132 /* DeviceStatusLoop.swift */; };
  146. DD608A0A2C23593900F91132 /* SMB.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD608A092C23593900F91132 /* SMB.swift */; };
  147. DD608A0C2C27415C00F91132 /* BackgroundAlertManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD608A0B2C27415C00F91132 /* BackgroundAlertManager.swift */; };
  148. DD6A935E2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6A935D2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift */; };
  149. DD7B0D442D730A3B0063DCB6 /* CycleHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7B0D432D730A320063DCB6 /* CycleHelper.swift */; };
  150. DD7E19842ACDA50C00DBD158 /* Overrides.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7E19832ACDA50C00DBD158 /* Overrides.swift */; };
  151. DD7E19862ACDA59700DBD158 /* BGCheck.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7E19852ACDA59700DBD158 /* BGCheck.swift */; };
  152. DD7E19882ACDA5DA00DBD158 /* Notes.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7E19872ACDA5DA00DBD158 /* Notes.swift */; };
  153. DD7E198A2ACDA62600DBD158 /* SensorStart.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7E19892ACDA62600DBD158 /* SensorStart.swift */; };
  154. DD7F4B9D2DD1EAE500D449E9 /* AlarmAudioSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4B9C2DD1EAE500D449E9 /* AlarmAudioSection.swift */; };
  155. DD7F4B9F2DD1F92700D449E9 /* AlarmActiveSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4B9E2DD1F92700D449E9 /* AlarmActiveSection.swift */; };
  156. DD7F4BA12DD2193F00D449E9 /* AlarmSnoozeSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4BA02DD2193F00D449E9 /* AlarmSnoozeSection.swift */; };
  157. DD7F4BC52DD3CE0700D449E9 /* AlarmBGLimitSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4BC42DD3CE0700D449E9 /* AlarmBGLimitSection.swift */; };
  158. DD7F4BC72DD473A600D449E9 /* FastDropCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4BC62DD473A600D449E9 /* FastDropCondition.swift */; };
  159. DD7F4C032DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C022DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift */; };
  160. DD7F4C052DD4BBE200D449E9 /* NotLoopingCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C042DD4BBE200D449E9 /* NotLoopingCondition.swift */; };
  161. DD7F4C072DD5042F00D449E9 /* OverrideStartAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C062DD5042F00D449E9 /* OverrideStartAlarmEditor.swift */; };
  162. DD7F4C092DD504A700D449E9 /* OverrideStartCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C082DD504A700D449E9 /* OverrideStartCondition.swift */; };
  163. DD7F4C0B2DD51C5500D449E9 /* OverrideEndCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C0A2DD51C5500D449E9 /* OverrideEndCondition.swift */; };
  164. DD7F4C0D2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C0C2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift */; };
  165. DD7F4C0F2DD51EC200D449E9 /* TempTargetStartCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C0E2DD51EC200D449E9 /* TempTargetStartCondition.swift */; };
  166. DD7F4C112DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C102DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift */; };
  167. DD7F4C132DD51FD500D449E9 /* TempTargetEndCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C122DD51FD500D449E9 /* TempTargetEndCondition.swift */; };
  168. DD7F4C152DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C142DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift */; };
  169. DD7F4C172DD63FA700D449E9 /* RecBolusCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C162DD63FA700D449E9 /* RecBolusCondition.swift */; };
  170. DD7F4C192DD63FD500D449E9 /* RecBolusAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C182DD63FD500D449E9 /* RecBolusAlarmEditor.swift */; };
  171. DD7F4C1B2DD6501D00D449E9 /* COBCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C1A2DD6501D00D449E9 /* COBCondition.swift */; };
  172. DD7F4C1D2DD650D500D449E9 /* COBAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C1C2DD650D500D449E9 /* COBAlarmEditor.swift */; };
  173. DD7F4C1F2DD6648B00D449E9 /* FastRiseCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C1E2DD6648B00D449E9 /* FastRiseCondition.swift */; };
  174. DD7F4C212DD66BB200D449E9 /* FastRiseAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C202DD66BB100D449E9 /* FastRiseAlarmEditor.swift */; };
  175. DD7F4C232DD7A62200D449E9 /* AlarmType+SortDirection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C222DD7A62200D449E9 /* AlarmType+SortDirection.swift */; };
  176. DD7F4C252DD7B20700D449E9 /* AlarmType+timeUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C242DD7B20700D449E9 /* AlarmType+timeUnit.swift */; };
  177. DD7FFAFD2A72953000C3A304 /* EKEventStore+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7FFAFC2A72953000C3A304 /* EKEventStore+Extensions.swift */; };
  178. DD8316442DE47CA9004467AA /* BGPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8316432DE47CA9004467AA /* BGPicker.swift */; };
  179. DD8316482DE49EE5004467AA /* Storage+Migrate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8316472DE49EE5004467AA /* Storage+Migrate.swift */; };
  180. DD83164A2DE4C504004467AA /* SettingsStepperRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8316492DE4C504004467AA /* SettingsStepperRow.swift */; };
  181. DD83164C2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD83164B2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift */; };
  182. DD85E9952D739CFE001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD85E9942D739CED001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift */; };
  183. DD91E4DD2BDEC3F8002D9E97 /* GlucoseConversion.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD91E4DC2BDEC3F8002D9E97 /* GlucoseConversion.swift */; };
  184. DD91E4DE2BDEC3F8002D9E97 /* GlucoseConversion.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD91E4DC2BDEC3F8002D9E97 /* GlucoseConversion.swift */; };
  185. DD98F54424BCEFEE0007425A /* ShareClientExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD98F54324BCEFEE0007425A /* ShareClientExtension.swift */; };
  186. DD9ACA042D32821400415D8A /* DeviceStatusTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA032D32821200415D8A /* DeviceStatusTask.swift */; };
  187. DD9ACA062D32AF7900415D8A /* TreatmentsTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA052D32AF6E00415D8A /* TreatmentsTask.swift */; };
  188. DD9ACA082D32F68B00415D8A /* BGTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA072D32F68900415D8A /* BGTask.swift */; };
  189. DD9ACA0A2D33095600415D8A /* MinAgoTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA092D33095500415D8A /* MinAgoTask.swift */; };
  190. DD9ACA0C2D33BB8600415D8A /* CalendarTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA0B2D33BB8400415D8A /* CalendarTask.swift */; };
  191. DD9ACA0E2D340BFF00415D8A /* AlarmTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA0D2D340BFE00415D8A /* AlarmTask.swift */; };
  192. DD9ACA102D34129200415D8A /* Task.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA0F2D34128600415D8A /* Task.swift */; };
  193. DD9ED0C82D355244000D2A63 /* LogViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ED0C72D35523F000D2A63 /* LogViewModel.swift */; };
  194. DD9ED0CA2D355257000D2A63 /* LogView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ED0C92D355256000D2A63 /* LogView.swift */; };
  195. DD9ED0CC2D35526E000D2A63 /* SearchBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ED0CB2D35526E000D2A63 /* SearchBar.swift */; };
  196. DD9ED0CE2D35587A000D2A63 /* LogEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ED0CD2D355879000D2A63 /* LogEntry.swift */; };
  197. DDA9ACA62D6A66D000E6F1A9 /* ContactColorMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA9ACA52D6A66C800E6F1A9 /* ContactColorMode.swift */; };
  198. DDA9ACA82D6A66E200E6F1A9 /* ContactColorOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA9ACA72D6A66DD00E6F1A9 /* ContactColorOption.swift */; };
  199. DDA9ACAA2D6A6B8300E6F1A9 /* ContactIncludeOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA9ACA92D6A6B8200E6F1A9 /* ContactIncludeOption.swift */; };
  200. DDA9ACAC2D6B317100E6F1A9 /* ContactType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA9ACAB2D6B316F00E6F1A9 /* ContactType.swift */; };
  201. DDAD162F2D2EF9830084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDAD162E2D2EF97C0084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift */; };
  202. DDB0AF522BB1A8BE00AFA48B /* BuildDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB0AF512BB1A8BE00AFA48B /* BuildDetails.swift */; };
  203. DDB0AF552BB1B24A00AFA48B /* BuildDetails.plist in Resources */ = {isa = PBXBuildFile; fileRef = DDB0AF542BB1B24A00AFA48B /* BuildDetails.plist */; };
  204. DDB9FC7B2DDB573F00EFAA76 /* IOBCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB9FC7A2DDB573F00EFAA76 /* IOBCondition.swift */; };
  205. DDB9FC7D2DDB575300EFAA76 /* IOBAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB9FC7C2DDB575300EFAA76 /* IOBAlarmEditor.swift */; };
  206. DDB9FC7F2DDB584500EFAA76 /* BolusEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB9FC7E2DDB584500EFAA76 /* BolusEntry.swift */; };
  207. DDBD19962DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDBD19952DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift */; };
  208. DDBE3ABD2CB5A961006B37DC /* OverrideView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDBE3ABC2CB5A961006B37DC /* OverrideView.swift */; };
  209. DDC6CA3D2DD7C6090060EE25 /* TemporaryCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA3C2DD7C6090060EE25 /* TemporaryCondition.swift */; };
  210. DDC6CA3F2DD7C6340060EE25 /* TemporaryAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA3E2DD7C6340060EE25 /* TemporaryAlarmEditor.swift */; };
  211. DDC6CA412DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA402DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift */; };
  212. DDC6CA432DD8CED20060EE25 /* SensorAgeCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA422DD8CED20060EE25 /* SensorAgeCondition.swift */; };
  213. DDC6CA452DD8D8E60060EE25 /* PumpChangeCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA442DD8D8E60060EE25 /* PumpChangeCondition.swift */; };
  214. DDC6CA472DD8D9010060EE25 /* PumpChangeAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA462DD8D9010060EE25 /* PumpChangeAlarmEditor.swift */; };
  215. DDC6CA492DD8E47A0060EE25 /* PumpVolumeCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA482DD8E47A0060EE25 /* PumpVolumeCondition.swift */; };
  216. DDC6CA4B2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA4A2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift */; };
  217. DDC7E5152DBCFA7900EB1127 /* SnoozerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5132DBCE1B900EB1127 /* SnoozerViewController.swift */; };
  218. DDC7E5162DBCFA7F00EB1127 /* SnoozerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5122DBCE1B900EB1127 /* SnoozerView.swift */; };
  219. DDC7E5382DBD887400EB1127 /* isOnPhoneCall.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5372DBD887400EB1127 /* isOnPhoneCall.swift */; };
  220. DDC7E5422DBD8A1600EB1127 /* AlarmGeneralSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5392DBD8A1600EB1127 /* AlarmGeneralSection.swift */; };
  221. DDC7E5432DBD8A1600EB1127 /* SoundFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E53A2DBD8A1600EB1127 /* SoundFile.swift */; };
  222. DDC7E5442DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E53C2DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift */; };
  223. DDC7E5462DBD8A1600EB1127 /* LowBgAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E53E2DBD8A1600EB1127 /* LowBgAlarmEditor.swift */; };
  224. DDC7E5472DBD8A1600EB1127 /* AlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5402DBD8A1600EB1127 /* AlarmEditor.swift */; };
  225. DDC7E5CF2DC77C2000EB1127 /* SnoozerViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5CE2DC77C2000EB1127 /* SnoozerViewModel.swift */; };
  226. DDCC3A4B2DDBB5E4006F1C10 /* BatteryCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A4A2DDBB5E4006F1C10 /* BatteryCondition.swift */; };
  227. DDCC3A4D2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A4C2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift */; };
  228. DDCC3A4F2DDC5B54006F1C10 /* BatteryDropCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A4E2DDC5B54006F1C10 /* BatteryDropCondition.swift */; };
  229. DDCC3A502DDED000006F1C10 /* PumpBatteryCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A512DDED000006F1C10 /* PumpBatteryCondition.swift */; };
  230. DDCC3A542DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A532DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift */; };
  231. DDCC3A562DDC9617006F1C10 /* MissedBolusCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A552DDC9617006F1C10 /* MissedBolusCondition.swift */; };
  232. DDCC3A582DDC9655006F1C10 /* MissedBolusAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A572DDC9655006F1C10 /* MissedBolusAlarmEditor.swift */; };
  233. DDCC3A5A2DDC988F006F1C10 /* CarbSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A592DDC988F006F1C10 /* CarbSample.swift */; };
  234. DDCC3A5B2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A5C2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift */; };
  235. DDCF979424C0D380002C9752 /* UIViewExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF979324C0D380002C9752 /* UIViewExtension.swift */; };
  236. DDCF9A802D85FD0B004DF4DD /* Alarm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF9A7F2D85FD09004DF4DD /* Alarm.swift */; };
  237. DDCF9A822D85FD15004DF4DD /* AlarmType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF9A812D85FD14004DF4DD /* AlarmType.swift */; };
  238. DDCF9A882D85FD33004DF4DD /* AlarmData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF9A872D85FD33004DF4DD /* AlarmData.swift */; };
  239. DDCF9A8C2D86005E004DF4DD /* AlarmManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF9A8B2D86005E004DF4DD /* AlarmManager.swift */; };
  240. DDCFCAF22B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = DDCFCAF12B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig */; };
  241. DDD10EFF2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10EFE2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift */; };
  242. DDD10F012C510C6B00D76A8E /* ObservableUserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F002C510C6B00D76A8E /* ObservableUserDefaults.swift */; };
  243. DDD10F032C518A6500D76A8E /* TreatmentResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F022C518A6500D76A8E /* TreatmentResponse.swift */; };
  244. DDD10F052C529DA200D76A8E /* ObservableValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F042C529DA200D76A8E /* ObservableValue.swift */; };
  245. DDD10F072C529DE800D76A8E /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F062C529DE800D76A8E /* Observable.swift */; };
  246. DDD10F0B2C54192A00D76A8E /* TemporaryTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F0A2C54192A00D76A8E /* TemporaryTarget.swift */; };
  247. DDDB86F12DF7223C00AADDAC /* DeleteAlarmSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDB86F02DF7223C00AADDAC /* DeleteAlarmSection.swift */; };
  248. DDDC01DD2E244B3100D9975C /* JWTManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDC01DC2E244B3100D9975C /* JWTManager.swift */; };
  249. DDDC31CC2E13A7DF009EA0F3 /* AddAlarmSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDC31CB2E13A7DF009EA0F3 /* AddAlarmSheet.swift */; };
  250. DDDC31CE2E13A811009EA0F3 /* AlarmTile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDC31CD2E13A811009EA0F3 /* AlarmTile.swift */; };
  251. DDDF6F492D479AF000884336 /* NoRemoteView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDF6F482D479AEF00884336 /* NoRemoteView.swift */; };
  252. DDE69ED22C7256260013EAEC /* RemoteType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE69ED12C7256260013EAEC /* RemoteType.swift */; };
  253. DDE75D232DE5E505007C1FC1 /* Glyph.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D222DE5E505007C1FC1 /* Glyph.swift */; };
  254. DDE75D272DE5E539007C1FC1 /* ActionRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D262DE5E539007C1FC1 /* ActionRow.swift */; };
  255. DDE75D292DE5E56C007C1FC1 /* LinkRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D282DE5E56C007C1FC1 /* LinkRow.swift */; };
  256. DDE75D2B2DE5E613007C1FC1 /* NavigationRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D2A2DE5E613007C1FC1 /* NavigationRow.swift */; };
  257. DDE75D2D2DE71401007C1FC1 /* TogglableSecureInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D2C2DE71401007C1FC1 /* TogglableSecureInput.swift */; };
  258. DDEF503A2D31615000999A5D /* LogManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF50392D31614200999A5D /* LogManager.swift */; };
  259. DDEF503C2D31BE2D00999A5D /* TaskScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF503B2D31BE2A00999A5D /* TaskScheduler.swift */; };
  260. DDEF503F2D32754F00999A5D /* ProfileTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF503E2D32754A00999A5D /* ProfileTask.swift */; };
  261. DDEF50402D479B8A00884336 /* LoopAPNSService.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF503F2D479B8A00884336 /* LoopAPNSService.swift */; };
  262. DDEF50422D479BAA00884336 /* LoopAPNSCarbsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF50412D479BAA00884336 /* LoopAPNSCarbsView.swift */; };
  263. DDEF50432D479BBA00884336 /* LoopAPNSBolusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF50422D479BBA00884336 /* LoopAPNSBolusView.swift */; };
  264. DDEF50452D479BDA00884336 /* LoopAPNSRemoteView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF50442D479BDA00884336 /* LoopAPNSRemoteView.swift */; };
  265. DDF2C0102BEFA991007A20E6 /* GitHubService.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF2C00F2BEFA991007A20E6 /* GitHubService.swift */; };
  266. DDF2C0122BEFB733007A20E6 /* AppVersionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF2C0112BEFB733007A20E6 /* AppVersionManager.swift */; };
  267. DDF2C0142BEFD468007A20E6 /* blacklisted-versions.json in Resources */ = {isa = PBXBuildFile; fileRef = DDF2C0132BEFD468007A20E6 /* blacklisted-versions.json */; };
  268. DDF699962C5582290058A8D9 /* TextFieldWithToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF699952C5582290058A8D9 /* TextFieldWithToolBar.swift */; };
  269. DDF699992C5AA3060058A8D9 /* TempTargetPresetManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF699982C5AA3060058A8D9 /* TempTargetPresetManager.swift */; };
  270. DDF6999B2C5AA32E0058A8D9 /* TempTargetPreset.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF6999A2C5AA32E0058A8D9 /* TempTargetPreset.swift */; };
  271. DDF6999E2C5AAA640058A8D9 /* ErrorMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF6999D2C5AAA640058A8D9 /* ErrorMessageView.swift */; };
  272. DDF9676E2AD08C6E00C5EB95 /* SiteChange.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF9676D2AD08C6E00C5EB95 /* SiteChange.swift */; };
  273. DDFD5C532CB167DA00D3FD68 /* TRCCommandType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFD5C522CB167DA00D3FD68 /* TRCCommandType.swift */; };
  274. DDFF3D7F2D1414A200BF9D9E /* BLEDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFF3D7E2D1414A200BF9D9E /* BLEDevice.swift */; };
  275. DDFF3D852D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFF3D842D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift */; };
  276. DDFF3D872D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFF3D862D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift */; };
  277. DDFF3D892D1429AB00BF9D9E /* BackgroundRefreshType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFF3D882D1429AB00BF9D9E /* BackgroundRefreshType.swift */; };
  278. F19449721F3B792730A0F4FD /* PendingFutureCarb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B9BEC26E4E48EF9B811A372 /* PendingFutureCarb.swift */; };
  279. FC16A97A24996673003D6245 /* NightScout.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC16A97924996673003D6245 /* NightScout.swift */; };
  280. FC16A97B249966A3003D6245 /* AlarmSound.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC7CE589248ABEA3001F83B8 /* AlarmSound.swift */; };
  281. FC16A97D24996747003D6245 /* SpeakBG.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC16A97C24996747003D6245 /* SpeakBG.swift */; };
  282. FC16A97F249969E2003D6245 /* Graphs.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC16A97E249969E2003D6245 /* Graphs.swift */; };
  283. FC16A98124996C07003D6245 /* DateTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC16A98024996C07003D6245 /* DateTime.swift */; };
  284. FC1BDD2B24A22650001B652C /* Stats.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC1BDD2A24A22650001B652C /* Stats.swift */; };
  285. FC1BDD2D24A23204001B652C /* MainViewController+updateStats.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC1BDD2C24A23204001B652C /* MainViewController+updateStats.swift */; };
  286. FC1BDD3224A2585C001B652C /* DataStructs.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC1BDD2E24A232A3001B652C /* DataStructs.swift */; };
  287. FC3AE7B5249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = FC3AE7B3249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld */; };
  288. FC3CAB022493B6220068A152 /* BackgroundTaskAudio.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC688592489554800A0279D /* BackgroundTaskAudio.swift */; };
  289. FC5A5C3D2497B229009C550E /* Config.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = FC5A5C3C2497B229009C550E /* Config.xcconfig */; };
  290. FC7CE518248ABE37001F83B8 /* Siri_Alert_Calibration_Needed.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4A9248ABE2B001F83B8 /* Siri_Alert_Calibration_Needed.caf */; };
  291. FC7CE519248ABE37001F83B8 /* Rise_And_Shine.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AA248ABE2B001F83B8 /* Rise_And_Shine.caf */; };
  292. FC7CE51A248ABE37001F83B8 /* Jingle_All_The_Way.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AB248ABE2B001F83B8 /* Jingle_All_The_Way.caf */; };
  293. FC7CE51B248ABE37001F83B8 /* Thunder_Sound_FX.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AC248ABE2B001F83B8 /* Thunder_Sound_FX.caf */; };
  294. FC7CE51C248ABE37001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AD248ABE2B001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf */; };
  295. FC7CE51D248ABE37001F83B8 /* Not_Kiddin.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AE248ABE2B001F83B8 /* Not_Kiddin.caf */; };
  296. FC7CE51E248ABE37001F83B8 /* Computer_Magic.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AF248ABE2B001F83B8 /* Computer_Magic.caf */; };
  297. FC7CE51F248ABE37001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B0248ABE2B001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf */; };
  298. FC7CE520248ABE37001F83B8 /* Burglar_Alarm_Siren_1.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B1248ABE2C001F83B8 /* Burglar_Alarm_Siren_1.caf */; };
  299. FC7CE521248ABE37001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B2248ABE2C001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf */; };
  300. FC7CE522248ABE37001F83B8 /* Signature_Corporate.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B3248ABE2C001F83B8 /* Signature_Corporate.caf */; };
  301. FC7CE523248ABE37001F83B8 /* Wake_Up_Will_You.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B4248ABE2C001F83B8 /* Wake_Up_Will_You.caf */; };
  302. FC7CE524248ABE37001F83B8 /* Marimba_Flutter_or_Shake.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B5248ABE2C001F83B8 /* Marimba_Flutter_or_Shake.caf */; };
  303. FC7CE525248ABE37001F83B8 /* Sci-Fi_Warning.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B6248ABE2C001F83B8 /* Sci-Fi_Warning.caf */; };
  304. FC7CE526248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_3.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B7248ABE2C001F83B8 /* Sci-Fi_Alarm_Loop_3.caf */; };
  305. FC7CE527248ABE37001F83B8 /* Alert_Tone_Ringtone_2.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B8248ABE2C001F83B8 /* Alert_Tone_Ringtone_2.caf */; };
  306. FC7CE528248ABE37001F83B8 /* Cartoon_Bounce_To_Ceiling.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B9248ABE2D001F83B8 /* Cartoon_Bounce_To_Ceiling.caf */; };
  307. FC7CE529248ABE37001F83B8 /* Laser_Shoot.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BA248ABE2D001F83B8 /* Laser_Shoot.caf */; };
  308. FC7CE52A248ABE37001F83B8 /* Nightguard.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BB248ABE2D001F83B8 /* Nightguard.caf */; };
  309. FC7CE52B248ABE37001F83B8 /* Machine_Charge.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BC248ABE2D001F83B8 /* Machine_Charge.caf */; };
  310. FC7CE52C248ABE37001F83B8 /* Cuckoo_Clock.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BD248ABE2D001F83B8 /* Cuckoo_Clock.caf */; };
  311. FC7CE52D248ABE37001F83B8 /* Siri_Urgent_High_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BE248ABE2D001F83B8 /* Siri_Urgent_High_Glucose.caf */; };
  312. FC7CE52E248ABE37001F83B8 /* Cartoon_Villain_Horns.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BF248ABE2D001F83B8 /* Cartoon_Villain_Horns.caf */; };
  313. FC7CE52F248ABE37001F83B8 /* Siri_Glucose_Rising_Fast.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C0248ABE2D001F83B8 /* Siri_Glucose_Rising_Fast.caf */; };
  314. FC7CE530248ABE37001F83B8 /* Dhol_Shuffleloop.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C1248ABE2E001F83B8 /* Dhol_Shuffleloop.caf */; };
  315. FC7CE531248ABE37001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C2248ABE2E001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf */; };
  316. FC7CE532248ABE37001F83B8 /* Siri_High_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C3248ABE2E001F83B8 /* Siri_High_Glucose.caf */; };
  317. FC7CE533248ABE37001F83B8 /* Ending_Reached.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C4248ABE2E001F83B8 /* Ending_Reached.caf */; };
  318. FC7CE534248ABE37001F83B8 /* Siri_Missed_Readings.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C5248ABE2E001F83B8 /* Siri_Missed_Readings.caf */; };
  319. FC7CE535248ABE37001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C6248ABE2E001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf */; };
  320. FC7CE536248ABE37001F83B8 /* Fly.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C7248ABE2E001F83B8 /* Fly.caf */; };
  321. FC7CE537248ABE37001F83B8 /* Open_Your_Eyes_And_See.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C8248ABE2E001F83B8 /* Open_Your_Eyes_And_See.caf */; };
  322. FC7CE538248ABE37001F83B8 /* 20ms-of-silence.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C9248ABE2F001F83B8 /* 20ms-of-silence.caf */; };
  323. FC7CE539248ABE37001F83B8 /* Remembers_Me_Of_Asia.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CA248ABE2F001F83B8 /* Remembers_Me_Of_Asia.caf */; };
  324. FC7CE53A248ABE37001F83B8 /* Alarm_Clock.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CB248ABE2F001F83B8 /* Alarm_Clock.caf */; };
  325. FC7CE53B248ABE37001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CC248ABE2F001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf */; };
  326. FC7CE53C248ABE37001F83B8 /* Early_Sunrise.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CD248ABE2F001F83B8 /* Early_Sunrise.caf */; };
  327. FC7CE53D248ABE37001F83B8 /* 1-millisecond-of-silence.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CE248ABE2F001F83B8 /* 1-millisecond-of-silence.mp3 */; };
  328. FC7CE53E248ABE37001F83B8 /* Soft_Warm_Airy_Optimistic.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CF248ABE30001F83B8 /* Soft_Warm_Airy_Optimistic.caf */; };
  329. FC7CE53F248ABE37001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D0248ABE30001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf */; };
  330. FC7CE540248ABE37001F83B8 /* Two_Turtle_Doves.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D1248ABE30001F83B8 /* Two_Turtle_Doves.caf */; };
  331. FC7CE541248ABE37001F83B8 /* Discreet.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D2248ABE30001F83B8 /* Discreet.caf */; };
  332. FC7CE542248ABE37001F83B8 /* Alien_Siren.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D3248ABE30001F83B8 /* Alien_Siren.caf */; };
  333. FC7CE543248ABE37001F83B8 /* Pager_Beeps.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D4248ABE30001F83B8 /* Pager_Beeps.caf */; };
  334. FC7CE544248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_1.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D5248ABE31001F83B8 /* Sci-Fi_Alarm_Loop_1.caf */; };
  335. FC7CE545248ABE37001F83B8 /* Indeed.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D6248ABE31001F83B8 /* Indeed.caf */; };
  336. FC7CE546248ABE37001F83B8 /* Cartoon_Uh_Oh.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D7248ABE31001F83B8 /* Cartoon_Uh_Oh.caf */; };
  337. FC7CE547248ABE37001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D8248ABE31001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf */; };
  338. FC7CE548248ABE37001F83B8 /* Store_Door_Chime.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D9248ABE31001F83B8 /* Store_Door_Chime.caf */; };
  339. FC7CE549248ABE37001F83B8 /* Magical_Twinkle.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DA248ABE31001F83B8 /* Magical_Twinkle.caf */; };
  340. FC7CE54A248ABE37001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DB248ABE31001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf */; };
  341. FC7CE54B248ABE37001F83B8 /* Siri_Alert_Device_Muted.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DC248ABE32001F83B8 /* Siri_Alert_Device_Muted.caf */; };
  342. FC7CE54C248ABE37001F83B8 /* Emergency_Alarm_Siren.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DD248ABE32001F83B8 /* Emergency_Alarm_Siren.caf */; };
  343. FC7CE54D248ABE37001F83B8 /* Analog_Watch_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DE248ABE32001F83B8 /* Analog_Watch_Alarm.caf */; };
  344. FC7CE54E248ABE37001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DF248ABE32001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf */; };
  345. FC7CE54F248ABE37001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E0248ABE32001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf */; };
  346. FC7CE550248ABE37001F83B8 /* Siri_Alert_High_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E1248ABE32001F83B8 /* Siri_Alert_High_Glucose.caf */; };
  347. FC7CE551248ABE37001F83B8 /* Marimba_Descend.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E2248ABE32001F83B8 /* Marimba_Descend.caf */; };
  348. FC7CE552248ABE37001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E3248ABE32001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf */; };
  349. FC7CE553248ABE37001F83B8 /* Sci-Fi_Eerie_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E4248ABE32001F83B8 /* Sci-Fi_Eerie_Alarm.caf */; };
  350. FC7CE554248ABE37001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E5248ABE32001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf */; };
  351. FC7CE555248ABE37001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E6248ABE32001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf */; };
  352. FC7CE556248ABE37001F83B8 /* Sci-Fi_Console_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E7248ABE33001F83B8 /* Sci-Fi_Console_Alarm.caf */; };
  353. FC7CE557248ABE37001F83B8 /* Soft_Marimba_Pad_Positive.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E8248ABE33001F83B8 /* Soft_Marimba_Pad_Positive.caf */; };
  354. FC7CE558248ABE37001F83B8 /* Rush.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E9248ABE33001F83B8 /* Rush.caf */; };
  355. FC7CE559248ABE37001F83B8 /* Martian_Scanner.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EA248ABE33001F83B8 /* Martian_Scanner.caf */; };
  356. FC7CE55A248ABE37001F83B8 /* Alert_Tone_Ringtone_1.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EB248ABE33001F83B8 /* Alert_Tone_Ringtone_1.caf */; };
  357. FC7CE55B248ABE37001F83B8 /* 500ms-of-silence.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EC248ABE33001F83B8 /* 500ms-of-silence.mp3 */; };
  358. FC7CE55C248ABE37001F83B8 /* Big_Clock_Ticking.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4ED248ABE33001F83B8 /* Big_Clock_Ticking.caf */; };
  359. FC7CE55D248ABE37001F83B8 /* Metallic.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EE248ABE33001F83B8 /* Metallic.caf */; };
  360. FC7CE55E248ABE37001F83B8 /* Cell_Phone_Ring_Tone.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EF248ABE33001F83B8 /* Cell_Phone_Ring_Tone.caf */; };
  361. FC7CE55F248ABE37001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F0248ABE33001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf */; };
  362. FC7CE560248ABE37001F83B8 /* Burglar_Alarm_Siren_2.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F1248ABE33001F83B8 /* Burglar_Alarm_Siren_2.caf */; };
  363. FC7CE561248ABE37001F83B8 /* Wrong_Answer.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F2248ABE34001F83B8 /* Wrong_Answer.caf */; };
  364. FC7CE562248ABE37001F83B8 /* Soft_Warm_Airy_Reassuring.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F3248ABE34001F83B8 /* Soft_Warm_Airy_Reassuring.caf */; };
  365. FC7CE563248ABE37001F83B8 /* CSFX-2_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F4248ABE34001F83B8 /* CSFX-2_Alarm.caf */; };
  366. FC7CE564248ABE37001F83B8 /* Siri_Low_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F5248ABE34001F83B8 /* Siri_Low_Glucose.caf */; };
  367. FC7CE565248ABE37001F83B8 /* Sci-Fi_Spaceship_Message.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F6248ABE34001F83B8 /* Sci-Fi_Spaceship_Message.caf */; };
  368. FC7CE566248ABE37001F83B8 /* In_A_Hurry.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F7248ABE34001F83B8 /* In_A_Hurry.caf */; };
  369. FC7CE567248ABE37001F83B8 /* Orchestral_Horns.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F8248ABE34001F83B8 /* Orchestral_Horns.caf */; };
  370. FC7CE568248ABE37001F83B8 /* Sci-Fi_Engine_Shut_Down.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F9248ABE34001F83B8 /* Sci-Fi_Engine_Shut_Down.caf */; };
  371. FC7CE569248ABE37001F83B8 /* silence-1sec.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FA248ABE34001F83B8 /* silence-1sec.mp3 */; };
  372. FC7CE56A248ABE37001F83B8 /* Cartoon_Siren.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FB248ABE34001F83B8 /* Cartoon_Siren.caf */; };
  373. FC7CE56B248ABE37001F83B8 /* Cartoon_Ascend_Then_Descend.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FC248ABE34001F83B8 /* Cartoon_Ascend_Then_Descend.caf */; };
  374. FC7CE56C248ABE37001F83B8 /* Time_Has_Come.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FD248ABE35001F83B8 /* Time_Has_Come.caf */; };
  375. FC7CE56D248ABE37001F83B8 /* Siri_Alert_Low_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FE248ABE35001F83B8 /* Siri_Alert_Low_Glucose.caf */; };
  376. FC7CE56E248ABE37001F83B8 /* Ambulance.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FF248ABE35001F83B8 /* Ambulance.caf */; };
  377. FC7CE56F248ABE37001F83B8 /* Ghost_Hover.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE500248ABE35001F83B8 /* Ghost_Hover.caf */; };
  378. FC7CE570248ABE37001F83B8 /* Insistently.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE501248ABE35001F83B8 /* Insistently.caf */; };
  379. FC7CE571248ABE37001F83B8 /* Sunny.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE502248ABE35001F83B8 /* Sunny.caf */; };
  380. FC7CE572248ABE37001F83B8 /* Siri_Calibration_Needed.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE503248ABE35001F83B8 /* Siri_Calibration_Needed.caf */; };
  381. FC7CE573248ABE37001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE504248ABE35001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf */; };
  382. FC7CE574248ABE37001F83B8 /* Chimes_Glassy.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE505248ABE35001F83B8 /* Chimes_Glassy.caf */; };
  383. FC7CE575248ABE37001F83B8 /* Siri_Device_Muted.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE506248ABE35001F83B8 /* Siri_Device_Muted.caf */; };
  384. FC7CE576248ABE37001F83B8 /* Alarm_Buzzer.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE507248ABE35001F83B8 /* Alarm_Buzzer.caf */; };
  385. FC7CE577248ABE37001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE508248ABE35001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf */; };
  386. FC7CE578248ABE37001F83B8 /* Siri_Alert_Missed_Readings.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE509248ABE36001F83B8 /* Siri_Alert_Missed_Readings.caf */; };
  387. FC7CE579248ABE37001F83B8 /* Good_Morning.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50A248ABE36001F83B8 /* Good_Morning.caf */; };
  388. FC7CE57A248ABE37001F83B8 /* Emergency_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50B248ABE36001F83B8 /* Emergency_Alarm.caf */; };
  389. FC7CE57B248ABE37001F83B8 /* Alert_Tone_Busy.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50C248ABE36001F83B8 /* Alert_Tone_Busy.caf */; };
  390. FC7CE57C248ABE37001F83B8 /* Tornado_Siren.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50D248ABE36001F83B8 /* Tornado_Siren.caf */; };
  391. FC7CE57D248ABE37001F83B8 /* Win_Gain.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50E248ABE36001F83B8 /* Win_Gain.caf */; };
  392. FC7CE57E248ABE37001F83B8 /* Unpaved.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50F248ABE36001F83B8 /* Unpaved.caf */; };
  393. FC7CE57F248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_4.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE510248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_4.caf */; };
  394. FC7CE580248ABE37001F83B8 /* Sci-Fi_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE511248ABE36001F83B8 /* Sci-Fi_Alarm.caf */; };
  395. FC7CE581248ABE37001F83B8 /* Siri_Urgent_Low_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE512248ABE36001F83B8 /* Siri_Urgent_Low_Glucose.caf */; };
  396. FC7CE582248ABE37001F83B8 /* Siri_Transmitter_Battery_Low.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE513248ABE36001F83B8 /* Siri_Transmitter_Battery_Low.caf */; };
  397. FC7CE583248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_2.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE514248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_2.caf */; };
  398. FC7CE584248ABE37001F83B8 /* Oringz.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE515248ABE37001F83B8 /* Oringz.caf */; };
  399. FC7CE585248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE516248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf */; };
  400. FC7CE586248ABE37001F83B8 /* Martian_Gun.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE517248ABE37001F83B8 /* Martian_Gun.caf */; };
  401. FC7CE58D248ABEF2001F83B8 /* alarm.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE58B248ABEF1001F83B8 /* alarm.mp3 */; };
  402. FC7CE58E248ABEF2001F83B8 /* alarm-notification.m4a in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE58C248ABEF1001F83B8 /* alarm-notification.m4a */; };
  403. FC7CE59C248D33A9001F83B8 /* dragbar.png in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE59B248D33A9001F83B8 /* dragbar.png */; };
  404. FC8589BF252B54F500C8FC73 /* Mobileprovision.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC8589BE252B54F500C8FC73 /* Mobileprovision.swift */; };
  405. FC9788182485969B00A7906C /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC9788172485969B00A7906C /* AppDelegate.swift */; };
  406. FC97881A2485969B00A7906C /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC9788192485969B00A7906C /* SceneDelegate.swift */; };
  407. FC97881C2485969B00A7906C /* MainViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC97881B2485969B00A7906C /* MainViewController.swift */; };
  408. FC97881E2485969B00A7906C /* NightScoutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC97881D2485969B00A7906C /* NightScoutViewController.swift */; };
  409. FC9788212485969B00A7906C /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FC97881F2485969B00A7906C /* Main.storyboard */; };
  410. FC9788262485969C00A7906C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FC9788252485969C00A7906C /* Assets.xcassets */; };
  411. FC9788292485969C00A7906C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FC9788272485969C00A7906C /* LaunchScreen.storyboard */; };
  412. FCA2DDE62501095000254A8C /* Timers.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCA2DDE52501095000254A8C /* Timers.swift */; };
  413. FCC0FAC224922A22003E610E /* DictionaryKeyPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC0FAC124922A22003E610E /* DictionaryKeyPath.swift */; };
  414. FCC6885C2489559400A0279D /* blank.wav in Resources */ = {isa = PBXBuildFile; fileRef = FCC6885B2489559400A0279D /* blank.wav */; };
  415. FCC6885E24896A6C00A0279D /* silence.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FCC6885D24896A6C00A0279D /* silence.mp3 */; };
  416. FCC6886724898F8000A0279D /* UserDefaultsValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886624898F8000A0279D /* UserDefaultsValue.swift */; };
  417. FCC6886924898FB100A0279D /* UserDefaultsValueGroups.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886824898FB100A0279D /* UserDefaultsValueGroups.swift */; };
  418. FCC6886B24898FD800A0279D /* ObservationToken.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886A24898FD800A0279D /* ObservationToken.swift */; };
  419. FCC6886D2489909D00A0279D /* AnyConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886C2489909D00A0279D /* AnyConvertible.swift */; };
  420. FCC6886F2489A53800A0279D /* AppConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886E2489A53800A0279D /* AppConstants.swift */; };
  421. FCD2A27D24C9D044009F7B7B /* Globals.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCD2A27C24C9D044009F7B7B /* Globals.swift */; };
  422. FCE537BC249A4D7D00F80BF8 /* carbBolusArrays.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCE537BB249A4D7D00F80BF8 /* carbBolusArrays.swift */; };
  423. FCEF87AC24A141A700AE6FA0 /* Localizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCEF87AA24A1417900AE6FA0 /* Localizer.swift */; };
  424. FCFEEC9E2486E68E00402A7F /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FCFEEC9D2486E68E00402A7F /* WebKit.framework */; };
  425. FCFEECA02488157B00402A7F /* Chart.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCFEEC9F2488157B00402A7F /* Chart.swift */; };
  426. FCFEECA2248857A600402A7F /* SettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCFEECA1248857A600402A7F /* SettingsViewController.swift */; };
  427. /* End PBXBuildFile section */
  428. /* Begin PBXContainerItemProxy section */
  429. 37A4BDE62F5B6B4C00EEB289 /* PBXContainerItemProxy */ = {
  430. isa = PBXContainerItemProxy;
  431. containerPortal = FC97880C2485969B00A7906C /* Project object */;
  432. proxyType = 1;
  433. remoteGlobalIDString = 37A4BDD82F5B6B4A00EEB289;
  434. remoteInfo = LoopFollowLAExtensionExtension;
  435. };
  436. DDCC3ADA2DDE1790006F1C10 /* PBXContainerItemProxy */ = {
  437. isa = PBXContainerItemProxy;
  438. containerPortal = FC97880C2485969B00A7906C /* Project object */;
  439. proxyType = 1;
  440. remoteGlobalIDString = FC9788132485969B00A7906C;
  441. remoteInfo = LoopFollow;
  442. };
  443. /* End PBXContainerItemProxy section */
  444. /* Begin PBXCopyFilesBuildPhase section */
  445. 37A4BDED2F5B6B4C00EEB289 /* Embed Foundation Extensions */ = {
  446. isa = PBXCopyFilesBuildPhase;
  447. buildActionMask = 2147483647;
  448. dstPath = "";
  449. dstSubfolderSpec = 13;
  450. files = (
  451. 37A4BDE82F5B6B4C00EEB289 /* LoopFollowLAExtensionExtension.appex in Embed Foundation Extensions */,
  452. );
  453. name = "Embed Foundation Extensions";
  454. runOnlyForDeploymentPostprocessing = 0;
  455. };
  456. /* End PBXCopyFilesBuildPhase section */
  457. /* Begin PBXFileReference section */
  458. 059B0FA59AABFE72FE13DDDA /* Pods-LoopFollow.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LoopFollow.release.xcconfig"; path = "Target Support Files/Pods-LoopFollow/Pods-LoopFollow.release.xcconfig"; sourceTree = "<group>"; };
  459. 2B9BEC26E4E48EF9B811A372 /* PendingFutureCarb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PendingFutureCarb.swift; sourceTree = "<group>"; };
  460. 2EBAB9EECE7095238A558060 /* FutureCarbsCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FutureCarbsCondition.swift; sourceTree = "<group>"; };
  461. 374A77982F5BD8AB00E96858 /* APNSClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APNSClient.swift; sourceTree = "<group>"; };
  462. 374A779F2F5BE17000E96858 /* AppGroupID.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppGroupID.swift; sourceTree = "<group>"; };
  463. 374A77A02F5BE17000E96858 /* GlucoseLiveActivityAttributes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseLiveActivityAttributes.swift; sourceTree = "<group>"; };
  464. 374A77A12F5BE17000E96858 /* GlucoseSnapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSnapshot.swift; sourceTree = "<group>"; };
  465. 374A77A32F5BE17000E96858 /* LAAppGroupSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LAAppGroupSettings.swift; sourceTree = "<group>"; };
  466. 374A77AE2F5BE1AC00E96858 /* GlucoseSnapshotBuilder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSnapshotBuilder.swift; sourceTree = "<group>"; };
  467. 374A77AF2F5BE1AC00E96858 /* GlucoseSnapshotStore.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSnapshotStore.swift; sourceTree = "<group>"; };
  468. 374A77B12F5BE1AC00E96858 /* LiveActivityManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityManager.swift; sourceTree = "<group>"; };
  469. 374A77B22F5BE1AC00E96858 /* PreferredGlucoseUnit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreferredGlucoseUnit.swift; sourceTree = "<group>"; };
  470. 374A77B32F5BE1AC00E96858 /* StorageCurrentGlucoseStateProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StorageCurrentGlucoseStateProvider.swift; sourceTree = "<group>"; };
  471. 374DAACA2F5B924B00BB663B /* LoopFollowLAExtensionExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = LoopFollowLAExtensionExtension.entitlements; sourceTree = "<group>"; };
  472. 379BECA92F6588300069DC62 /* RestartLiveActivityIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RestartLiveActivityIntent.swift; sourceTree = "<group>"; };
  473. 379BECAF2F65DA4B0069DC62 /* LiveActivitySettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsView.swift; sourceTree = "<group>"; };
  474. 37A4BDD92F5B6B4A00EEB289 /* LoopFollowLAExtensionExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = LoopFollowLAExtensionExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  475. 37A4BDDA2F5B6B4A00EEB289 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = /System/Library/Frameworks/WidgetKit.framework; sourceTree = "<absolute>"; };
  476. 37A4BDDC2F5B6B4A00EEB289 /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = /System/Library/Frameworks/SwiftUI.framework; sourceTree = "<absolute>"; };
  477. 37E4DD0C2F7E0967000511C8 /* LALivenessStore.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LALivenessStore.swift; sourceTree = "<group>"; };
  478. 37E4DD0F2F7E0985000511C8 /* LALivenessMarker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LALivenessMarker.swift; sourceTree = "<group>"; };
  479. 654132E62E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleQRCodeScannerView.swift; sourceTree = "<group>"; };
  480. 654132E92E19F24800BDBE08 /* TOTPGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TOTPGenerator.swift; sourceTree = "<group>"; };
  481. 654134172E1DC09700BDBE08 /* OverridePresetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetsView.swift; sourceTree = "<group>"; };
  482. 654134192E1DC27900BDBE08 /* OverridePresetData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetData.swift; sourceTree = "<group>"; };
  483. 6541341B2E1DC28000BDBE08 /* DateExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateExtensions.swift; sourceTree = "<group>"; };
  484. 656F8C0F2E49F36F0008DC1D /* QRCodeDisplayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCodeDisplayView.swift; sourceTree = "<group>"; };
  485. 656F8C112E49F3780008DC1D /* QRCodeGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCodeGenerator.swift; sourceTree = "<group>"; };
  486. 656F8C132E49F3D20008DC1D /* RemoteCommandSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteCommandSettings.swift; sourceTree = "<group>"; };
  487. 657F98172F043D8100F732BD /* HomeContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeContentView.swift; sourceTree = "<group>"; };
  488. 657F99E82F0BC81500F732BD /* OTPSecureMessenger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OTPSecureMessenger.swift; sourceTree = "<group>"; };
  489. 6584B1002E4A263900135D4D /* TOTPService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TOTPService.swift; sourceTree = "<group>"; };
  490. 6589CC522E9E7D1600BB18FE /* ExportableSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExportableSettings.swift; sourceTree = "<group>"; };
  491. 6589CC532E9E7D1600BB18FE /* ImportExportSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImportExportSettingsView.swift; sourceTree = "<group>"; };
  492. 6589CC542E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImportExportSettingsViewModel.swift; sourceTree = "<group>"; };
  493. 6589CC562E9E7D1600BB18FE /* AdvancedSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdvancedSettingsView.swift; sourceTree = "<group>"; };
  494. 6589CC572E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdvancedSettingsViewModel.swift; sourceTree = "<group>"; };
  495. 6589CC582E9E7D1600BB18FE /* CalendarSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarSettingsView.swift; sourceTree = "<group>"; };
  496. 6589CC592E9E7D1600BB18FE /* ContactSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactSettingsView.swift; sourceTree = "<group>"; };
  497. 6589CC5A2E9E7D1600BB18FE /* ContactSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactSettingsViewModel.swift; sourceTree = "<group>"; };
  498. 6589CC5B2E9E7D1600BB18FE /* DexcomSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSettingsView.swift; sourceTree = "<group>"; };
  499. 6589CC5C2E9E7D1600BB18FE /* DexcomSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSettingsViewModel.swift; sourceTree = "<group>"; };
  500. 6589CC5D2E9E7D1600BB18FE /* GeneralSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GeneralSettingsView.swift; sourceTree = "<group>"; };
  501. 6589CC5E2E9E7D1600BB18FE /* GraphSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GraphSettingsView.swift; sourceTree = "<group>"; };
  502. 6589CC5F2E9E7D1600BB18FE /* SettingsMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsMenuView.swift; sourceTree = "<group>"; };
  503. 6589CC602E9E7D1600BB18FE /* TabCustomizationModal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TabCustomizationModal.swift; sourceTree = "<group>"; };
  504. 6589CC702E9E814F00BB18FE /* AlarmSelectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmSelectionView.swift; sourceTree = "<group>"; };
  505. 6589CC742E9EAFB700BB18FE /* SettingsMigrationManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsMigrationManager.swift; sourceTree = "<group>"; };
  506. 65E153C22E4BB69100693A4F /* URLTokenValidationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLTokenValidationView.swift; sourceTree = "<group>"; };
  507. 65E8A2852E44B0300065037B /* VolumeButtonHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VolumeButtonHandler.swift; sourceTree = "<group>"; };
  508. A7D55B42A22051DAD69E89D0 /* Pods_LoopFollow.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LoopFollow.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  509. A8CA8BE0B3D247408FE088B4 /* BackgroundRefreshManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundRefreshManager.swift; sourceTree = "<group>"; };
  510. B7D2A4EFD18B7B7748B6669E /* FutureCarbsAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FutureCarbsAlarmEditor.swift; sourceTree = "<group>"; };
  511. DD0247582DB2E89600FCADF6 /* AlarmCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmCondition.swift; sourceTree = "<group>"; };
  512. DD02475B2DB2E8FB00FCADF6 /* BuildExpireCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildExpireCondition.swift; sourceTree = "<group>"; };
  513. DD026E582EA2C8A200A39CB5 /* InsulinPrecisionManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinPrecisionManager.swift; sourceTree = "<group>"; };
  514. DD026E5A2EA2C9C300A39CB5 /* InsulinFormatter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinFormatter.swift; sourceTree = "<group>"; };
  515. DD0650A82DCA8A10004D3B41 /* AlarmBGSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmBGSection.swift; sourceTree = "<group>"; };
  516. DD0650EA2DCE8385004D3B41 /* LowBGCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowBGCondition.swift; sourceTree = "<group>"; };
  517. DD0650EC2DCE9371004D3B41 /* HighBgAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HighBgAlarmEditor.swift; sourceTree = "<group>"; };
  518. DD0650EE2DCE96FF004D3B41 /* HighBGCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HighBGCondition.swift; sourceTree = "<group>"; };
  519. DD0650F02DCE9A9E004D3B41 /* MissedReadingCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissedReadingCondition.swift; sourceTree = "<group>"; };
  520. DD0650F22DCE9B3D004D3B41 /* MissedReadingEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissedReadingEditor.swift; sourceTree = "<group>"; };
  521. DD0650F42DCF303F004D3B41 /* AlarmStepperSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmStepperSection.swift; sourceTree = "<group>"; };
  522. DD0650F62DCFDA26004D3B41 /* InfoBanner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoBanner.swift; sourceTree = "<group>"; };
  523. DD0650F82DCFE7BE004D3B41 /* FastDropAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FastDropAlarmEditor.swift; sourceTree = "<group>"; };
  524. DD07B5C829E2F9C400C6A635 /* NightscoutUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutUtils.swift; sourceTree = "<group>"; };
  525. DD0B9D552DE1EC8A0090C337 /* AlarmType+Snooze.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AlarmType+Snooze.swift"; sourceTree = "<group>"; };
  526. DD0B9D572DE1F3B20090C337 /* AlarmType+canAcknowledge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AlarmType+canAcknowledge.swift"; sourceTree = "<group>"; };
  527. DD0C0C5F2C415B9D00DBADDF /* ProfileManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileManager.swift; sourceTree = "<group>"; };
  528. DD0C0C612C4175FD00DBADDF /* NSProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSProfile.swift; sourceTree = "<group>"; };
  529. DD0C0C632C45A59400DBADDF /* HKUnit+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "HKUnit+Extensions.swift"; sourceTree = "<group>"; };
  530. DD0C0C652C46E54C00DBADDF /* InfoDataSeparator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoDataSeparator.swift; sourceTree = "<group>"; };
  531. DD0C0C672C48529400DBADDF /* Metric.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Metric.swift; sourceTree = "<group>"; };
  532. DD0C0C6A2C48562000DBADDF /* InsulinMetric.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinMetric.swift; sourceTree = "<group>"; };
  533. DD0C0C6C2C48606200DBADDF /* CarbMetric.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbMetric.swift; sourceTree = "<group>"; };
  534. DD0C0C6F2C4AFFE800DBADDF /* RemoteViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteViewController.swift; sourceTree = "<group>"; };
  535. DD0C0C712C4B000800DBADDF /* TrioNightscoutRemoteView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioNightscoutRemoteView.swift; sourceTree = "<group>"; };
  536. DD12D4842E1705D9004E0112 /* AlarmViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmViewController.swift; sourceTree = "<group>"; };
  537. DD12D4862E1705E6004E0112 /* AlarmsContainerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmsContainerView.swift; sourceTree = "<group>"; };
  538. DD13BC742C3FD6200062313B /* InfoType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoType.swift; sourceTree = "<group>"; };
  539. DD13BC762C3FD64E0062313B /* InfoData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoData.swift; sourceTree = "<group>"; };
  540. DD13BC782C3FE63A0062313B /* InfoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoManager.swift; sourceTree = "<group>"; };
  541. DD16AF0C2C98485400FB655A /* SecureStorageValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureStorageValue.swift; sourceTree = "<group>"; };
  542. DD16AF0E2C99592F00FB655A /* HKQuantityInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HKQuantityInputView.swift; sourceTree = "<group>"; };
  543. DD16AF102C997B4600FB655A /* LoadingButtonView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadingButtonView.swift; sourceTree = "<group>"; };
  544. DD1D52B82E1EB5DC00432050 /* TabPosition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TabPosition.swift; sourceTree = "<group>"; };
  545. DD1D52BA2E1EB60B00432050 /* MoreMenuViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MoreMenuViewController.swift; sourceTree = "<group>"; };
  546. DD1D52BF2E4C100000000001 /* AppearanceMode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppearanceMode.swift; sourceTree = "<group>"; };
  547. DD2C2E4E2D3B8AEC006413A5 /* NightscoutSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettingsView.swift; sourceTree = "<group>"; };
  548. DD2C2E502D3B8B0B006413A5 /* NightscoutSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettingsViewModel.swift; sourceTree = "<group>"; };
  549. DD485F132E454B2600CE8CBF /* SecureMessenger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureMessenger.swift; sourceTree = "<group>"; };
  550. DD4878022C7B297E0048F05C /* StorageValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StorageValue.swift; sourceTree = "<group>"; };
  551. DD4878042C7B2C970048F05C /* Storage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Storage.swift; sourceTree = "<group>"; };
  552. DD4878072C7B30BF0048F05C /* RemoteSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteSettingsView.swift; sourceTree = "<group>"; };
  553. DD4878092C7B30D40048F05C /* RemoteSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteSettingsViewModel.swift; sourceTree = "<group>"; };
  554. DD48780D2C7B74A40048F05C /* TrioRemoteControlViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioRemoteControlViewModel.swift; sourceTree = "<group>"; };
  555. DD48780F2C7B74BF0048F05C /* TrioRemoteControlView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioRemoteControlView.swift; sourceTree = "<group>"; };
  556. DD4878122C7B750D0048F05C /* TempTargetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetView.swift; sourceTree = "<group>"; };
  557. DD4878142C7B75230048F05C /* MealView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealView.swift; sourceTree = "<group>"; };
  558. DD4878162C7B75350048F05C /* BolusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusView.swift; sourceTree = "<group>"; };
  559. DD4878182C7C56D60048F05C /* TrioNightscoutRemoteController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioNightscoutRemoteController.swift; sourceTree = "<group>"; };
  560. DD48781D2C7DAF2F0048F05C /* PushNotificationManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PushNotificationManager.swift; sourceTree = "<group>"; };
  561. DD48781F2C7DAF890048F05C /* PushMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PushMessage.swift; sourceTree = "<group>"; };
  562. DD493AD42ACF2109009A6922 /* ResumePump.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ResumePump.swift; sourceTree = "<group>"; };
  563. DD493AD62ACF2139009A6922 /* SuspendPump.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SuspendPump.swift; sourceTree = "<group>"; };
  564. DD493AD82ACF2171009A6922 /* Carbs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Carbs.swift; sourceTree = "<group>"; };
  565. DD493ADA2ACF21A3009A6922 /* Bolus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Bolus.swift; sourceTree = "<group>"; };
  566. DD493ADC2ACF21E0009A6922 /* Basals.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Basals.swift; sourceTree = "<group>"; };
  567. DD493ADE2ACF22BB009A6922 /* SAge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SAge.swift; sourceTree = "<group>"; };
  568. DD493AE02ACF22FE009A6922 /* Profile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Profile.swift; sourceTree = "<group>"; };
  569. DD493AE22ACF2358009A6922 /* CAge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CAge.swift; sourceTree = "<group>"; };
  570. DD493AE42ACF2383009A6922 /* Treatments.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Treatments.swift; sourceTree = "<group>"; };
  571. DD493AE62ACF23CF009A6922 /* DeviceStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceStatus.swift; sourceTree = "<group>"; };
  572. DD493AE82ACF2445009A6922 /* BGData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGData.swift; sourceTree = "<group>"; };
  573. DD4A407D2E6AFEE6007B318B /* AuthService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthService.swift; sourceTree = "<group>"; };
  574. DD4AFB3A2DB55CB600BB593F /* TimeOfDay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeOfDay.swift; sourceTree = "<group>"; };
  575. DD4AFB3C2DB55D2900BB593F /* AlarmConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmConfiguration.swift; sourceTree = "<group>"; };
  576. DD4AFB482DB576C200BB593F /* AlarmSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmSettingsView.swift; sourceTree = "<group>"; };
  577. DD4AFB602DB68BBC00BB593F /* AlarmListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmListView.swift; sourceTree = "<group>"; };
  578. DD4AFB662DB68C5500BB593F /* UUID+Identifiable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UUID+Identifiable.swift"; sourceTree = "<group>"; };
  579. DD4AFB6A2DB6BF2A00BB593F /* Binding+Optional.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Binding+Optional.swift"; sourceTree = "<group>"; };
  580. DD50C7542D0862770057AE6F /* ContactImageUpdater.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageUpdater.swift; sourceTree = "<group>"; };
  581. DD5334202C60EBEE00062F9D /* InsulinCartridgeChange.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinCartridgeChange.swift; sourceTree = "<group>"; };
  582. DD5334222C60ED3600062F9D /* IAge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IAge.swift; sourceTree = "<group>"; };
  583. DD5334262C61668700062F9D /* InfoDisplaySettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoDisplaySettingsViewModel.swift; sourceTree = "<group>"; };
  584. DD5334282C6166A500062F9D /* InfoDisplaySettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoDisplaySettingsView.swift; sourceTree = "<group>"; };
  585. DD5334AF2D1447C500CDD6EA /* BLEManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BLEManager.swift; sourceTree = "<group>"; };
  586. DD5817162D2710E50041FB98 /* BLEDeviceSelectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BLEDeviceSelectionView.swift; sourceTree = "<group>"; };
  587. DD5817192D299EF40041FB98 /* DexcomHeartbeatBluetoothDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomHeartbeatBluetoothDevice.swift; sourceTree = "<group>"; };
  588. DD58171B2D299F8D0041FB98 /* BluetoothDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothDevice.swift; sourceTree = "<group>"; };
  589. DD58171D2D299FC50041FB98 /* BluetoothDeviceDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothDeviceDelegate.swift; sourceTree = "<group>"; };
  590. DD5DA27B2DC930D6003D44FC /* GlucoseValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseValue.swift; sourceTree = "<group>"; };
  591. DD608A072C1F584900F91132 /* DeviceStatusLoop.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceStatusLoop.swift; sourceTree = "<group>"; };
  592. DD608A092C23593900F91132 /* SMB.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMB.swift; sourceTree = "<group>"; };
  593. DD608A0B2C27415C00F91132 /* BackgroundAlertManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundAlertManager.swift; sourceTree = "<group>"; };
  594. DD6A935D2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceStatusOpenAPS.swift; sourceTree = "<group>"; };
  595. DD7B0D432D730A320063DCB6 /* CycleHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CycleHelper.swift; sourceTree = "<group>"; };
  596. DD7E19832ACDA50C00DBD158 /* Overrides.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Overrides.swift; sourceTree = "<group>"; };
  597. DD7E19852ACDA59700DBD158 /* BGCheck.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGCheck.swift; sourceTree = "<group>"; };
  598. DD7E19872ACDA5DA00DBD158 /* Notes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Notes.swift; sourceTree = "<group>"; };
  599. DD7E19892ACDA62600DBD158 /* SensorStart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SensorStart.swift; sourceTree = "<group>"; };
  600. DD7F4B9C2DD1EAE500D449E9 /* AlarmAudioSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmAudioSection.swift; sourceTree = "<group>"; };
  601. DD7F4B9E2DD1F92700D449E9 /* AlarmActiveSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmActiveSection.swift; sourceTree = "<group>"; };
  602. DD7F4BA02DD2193F00D449E9 /* AlarmSnoozeSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmSnoozeSection.swift; sourceTree = "<group>"; };
  603. DD7F4BC42DD3CE0700D449E9 /* AlarmBGLimitSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmBGLimitSection.swift; sourceTree = "<group>"; };
  604. DD7F4BC62DD473A600D449E9 /* FastDropCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FastDropCondition.swift; sourceTree = "<group>"; };
  605. DD7F4C022DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotLoopingAlarmEditor.swift; sourceTree = "<group>"; };
  606. DD7F4C042DD4BBE200D449E9 /* NotLoopingCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotLoopingCondition.swift; sourceTree = "<group>"; };
  607. DD7F4C062DD5042F00D449E9 /* OverrideStartAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStartAlarmEditor.swift; sourceTree = "<group>"; };
  608. DD7F4C082DD504A700D449E9 /* OverrideStartCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStartCondition.swift; sourceTree = "<group>"; };
  609. DD7F4C0A2DD51C5500D449E9 /* OverrideEndCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideEndCondition.swift; sourceTree = "<group>"; };
  610. DD7F4C0C2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideEndAlarmEditor.swift; sourceTree = "<group>"; };
  611. DD7F4C0E2DD51EC200D449E9 /* TempTargetStartCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetStartCondition.swift; sourceTree = "<group>"; };
  612. DD7F4C102DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetStartAlarmEditor.swift; sourceTree = "<group>"; };
  613. DD7F4C122DD51FD500D449E9 /* TempTargetEndCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetEndCondition.swift; sourceTree = "<group>"; };
  614. DD7F4C142DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetEndAlarmEditor.swift; sourceTree = "<group>"; };
  615. DD7F4C162DD63FA700D449E9 /* RecBolusCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecBolusCondition.swift; sourceTree = "<group>"; };
  616. DD7F4C182DD63FD500D449E9 /* RecBolusAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecBolusAlarmEditor.swift; sourceTree = "<group>"; };
  617. DD7F4C1A2DD6501D00D449E9 /* COBCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = COBCondition.swift; sourceTree = "<group>"; };
  618. DD7F4C1C2DD650D500D449E9 /* COBAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = COBAlarmEditor.swift; sourceTree = "<group>"; };
  619. DD7F4C1E2DD6648B00D449E9 /* FastRiseCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FastRiseCondition.swift; sourceTree = "<group>"; };
  620. DD7F4C202DD66BB100D449E9 /* FastRiseAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FastRiseAlarmEditor.swift; sourceTree = "<group>"; };
  621. DD7F4C222DD7A62200D449E9 /* AlarmType+SortDirection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AlarmType+SortDirection.swift"; sourceTree = "<group>"; };
  622. DD7F4C242DD7B20700D449E9 /* AlarmType+timeUnit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AlarmType+timeUnit.swift"; sourceTree = "<group>"; };
  623. DD7FFAFC2A72953000C3A304 /* EKEventStore+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "EKEventStore+Extensions.swift"; sourceTree = "<group>"; };
  624. DD8316432DE47CA9004467AA /* BGPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGPicker.swift; sourceTree = "<group>"; };
  625. DD8316472DE49EE5004467AA /* Storage+Migrate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Storage+Migrate.swift"; sourceTree = "<group>"; };
  626. DD8316492DE4C504004467AA /* SettingsStepperRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsStepperRow.swift; sourceTree = "<group>"; };
  627. DD83164B2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BinaryFloatingPoint+localized.swift"; sourceTree = "<group>"; };
  628. DD85E9942D739CED001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmnipodDashHeartbeatBluetoothTransmitter.swift; sourceTree = "<group>"; };
  629. DD91E4DC2BDEC3F8002D9E97 /* GlucoseConversion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseConversion.swift; sourceTree = "<group>"; };
  630. DD98F54324BCEFEE0007425A /* ShareClientExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareClientExtension.swift; sourceTree = "<group>"; };
  631. DD9ACA032D32821200415D8A /* DeviceStatusTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceStatusTask.swift; sourceTree = "<group>"; };
  632. DD9ACA052D32AF6E00415D8A /* TreatmentsTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentsTask.swift; sourceTree = "<group>"; };
  633. DD9ACA072D32F68900415D8A /* BGTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTask.swift; sourceTree = "<group>"; };
  634. DD9ACA092D33095500415D8A /* MinAgoTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MinAgoTask.swift; sourceTree = "<group>"; };
  635. DD9ACA0B2D33BB8400415D8A /* CalendarTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarTask.swift; sourceTree = "<group>"; };
  636. DD9ACA0D2D340BFE00415D8A /* AlarmTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmTask.swift; sourceTree = "<group>"; };
  637. DD9ACA0F2D34128600415D8A /* Task.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Task.swift; sourceTree = "<group>"; };
  638. DD9ED0C72D35523F000D2A63 /* LogViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogViewModel.swift; sourceTree = "<group>"; };
  639. DD9ED0C92D355256000D2A63 /* LogView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogView.swift; sourceTree = "<group>"; };
  640. DD9ED0CB2D35526E000D2A63 /* SearchBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchBar.swift; sourceTree = "<group>"; };
  641. DD9ED0CD2D355879000D2A63 /* LogEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogEntry.swift; sourceTree = "<group>"; };
  642. DDA9ACA52D6A66C800E6F1A9 /* ContactColorMode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactColorMode.swift; sourceTree = "<group>"; };
  643. DDA9ACA72D6A66DD00E6F1A9 /* ContactColorOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactColorOption.swift; sourceTree = "<group>"; };
  644. DDA9ACA92D6A6B8200E6F1A9 /* ContactIncludeOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactIncludeOption.swift; sourceTree = "<group>"; };
  645. DDA9ACAB2D6B316F00E6F1A9 /* ContactType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactType.swift; sourceTree = "<group>"; };
  646. DDAD162E2D2EF97C0084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RileyLinkHeartbeatBluetoothDevice.swift; sourceTree = "<group>"; };
  647. DDB0AF502BB1A84500AFA48B /* capture-build-details.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "capture-build-details.sh"; sourceTree = "<group>"; };
  648. DDB0AF512BB1A8BE00AFA48B /* BuildDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildDetails.swift; sourceTree = "<group>"; };
  649. DDB0AF542BB1B24A00AFA48B /* BuildDetails.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = BuildDetails.plist; sourceTree = "<group>"; };
  650. DDB9FC7A2DDB573F00EFAA76 /* IOBCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBCondition.swift; sourceTree = "<group>"; };
  651. DDB9FC7C2DDB575300EFAA76 /* IOBAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBAlarmEditor.swift; sourceTree = "<group>"; };
  652. DDB9FC7E2DDB584500EFAA76 /* BolusEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusEntry.swift; sourceTree = "<group>"; };
  653. DDBD19952DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Alarm+byPriorityThenSpec.swift"; sourceTree = "<group>"; };
  654. DDBE3ABC2CB5A961006B37DC /* OverrideView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideView.swift; sourceTree = "<group>"; };
  655. DDC6CA3C2DD7C6090060EE25 /* TemporaryCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemporaryCondition.swift; sourceTree = "<group>"; };
  656. DDC6CA3E2DD7C6340060EE25 /* TemporaryAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemporaryAlarmEditor.swift; sourceTree = "<group>"; };
  657. DDC6CA402DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SensorAgeAlarmEditor.swift; sourceTree = "<group>"; };
  658. DDC6CA422DD8CED20060EE25 /* SensorAgeCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SensorAgeCondition.swift; sourceTree = "<group>"; };
  659. DDC6CA442DD8D8E60060EE25 /* PumpChangeCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpChangeCondition.swift; sourceTree = "<group>"; };
  660. DDC6CA462DD8D9010060EE25 /* PumpChangeAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpChangeAlarmEditor.swift; sourceTree = "<group>"; };
  661. DDC6CA482DD8E47A0060EE25 /* PumpVolumeCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpVolumeCondition.swift; sourceTree = "<group>"; };
  662. DDC6CA4A2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpVolumeAlarmEditor.swift; sourceTree = "<group>"; };
  663. DDC7E5122DBCE1B900EB1127 /* SnoozerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnoozerView.swift; sourceTree = "<group>"; };
  664. DDC7E5132DBCE1B900EB1127 /* SnoozerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnoozerViewController.swift; sourceTree = "<group>"; };
  665. DDC7E5372DBD887400EB1127 /* isOnPhoneCall.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = isOnPhoneCall.swift; sourceTree = "<group>"; };
  666. DDC7E5392DBD8A1600EB1127 /* AlarmGeneralSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmGeneralSection.swift; sourceTree = "<group>"; };
  667. DDC7E53A2DBD8A1600EB1127 /* SoundFile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SoundFile.swift; sourceTree = "<group>"; };
  668. DDC7E53C2DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildExpireAlarmEditor.swift; sourceTree = "<group>"; };
  669. DDC7E53E2DBD8A1600EB1127 /* LowBgAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowBgAlarmEditor.swift; sourceTree = "<group>"; };
  670. DDC7E5402DBD8A1600EB1127 /* AlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmEditor.swift; sourceTree = "<group>"; };
  671. DDC7E5CE2DC77C2000EB1127 /* SnoozerViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnoozerViewModel.swift; sourceTree = "<group>"; };
  672. DDCC3A4A2DDBB5E4006F1C10 /* BatteryCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatteryCondition.swift; sourceTree = "<group>"; };
  673. DDCC3A4C2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneBatteryAlarmEditor.swift; sourceTree = "<group>"; };
  674. DDCC3A4E2DDC5B54006F1C10 /* BatteryDropCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatteryDropCondition.swift; sourceTree = "<group>"; };
  675. DDCC3A512DDED000006F1C10 /* PumpBatteryCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpBatteryCondition.swift; sourceTree = "<group>"; };
  676. DDCC3A532DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatteryDropAlarmEditor.swift; sourceTree = "<group>"; };
  677. DDCC3A552DDC9617006F1C10 /* MissedBolusCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissedBolusCondition.swift; sourceTree = "<group>"; };
  678. DDCC3A572DDC9655006F1C10 /* MissedBolusAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissedBolusAlarmEditor.swift; sourceTree = "<group>"; };
  679. DDCC3A592DDC988F006F1C10 /* CarbSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbSample.swift; sourceTree = "<group>"; };
  680. DDCC3A5C2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpBatteryAlarmEditor.swift; sourceTree = "<group>"; };
  681. DDCC3ABF2DDE10B0006F1C10 /* Testing.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Testing.framework; path = Platforms/iPhoneOS.platform/Developer/Library/Frameworks/Testing.framework; sourceTree = DEVELOPER_DIR; };
  682. DDCC3AD62DDE1790006F1C10 /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  683. DDCF979324C0D380002C9752 /* UIViewExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIViewExtension.swift; sourceTree = "<group>"; };
  684. DDCF9A7F2D85FD09004DF4DD /* Alarm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Alarm.swift; sourceTree = "<group>"; };
  685. DDCF9A812D85FD14004DF4DD /* AlarmType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmType.swift; sourceTree = "<group>"; };
  686. DDCF9A872D85FD33004DF4DD /* AlarmData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmData.swift; sourceTree = "<group>"; };
  687. DDCF9A8B2D86005E004DF4DD /* AlarmManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmManager.swift; sourceTree = "<group>"; };
  688. DDCFCAF12B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = LoopFollowDisplayNameConfig.xcconfig; sourceTree = "<group>"; };
  689. DDD10EFE2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservableUserDefaultsValue.swift; sourceTree = "<group>"; };
  690. DDD10F002C510C6B00D76A8E /* ObservableUserDefaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservableUserDefaults.swift; sourceTree = "<group>"; };
  691. DDD10F022C518A6500D76A8E /* TreatmentResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentResponse.swift; sourceTree = "<group>"; };
  692. DDD10F042C529DA200D76A8E /* ObservableValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservableValue.swift; sourceTree = "<group>"; };
  693. DDD10F062C529DE800D76A8E /* Observable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Observable.swift; sourceTree = "<group>"; };
  694. DDD10F0A2C54192A00D76A8E /* TemporaryTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemporaryTarget.swift; sourceTree = "<group>"; };
  695. DDDB86F02DF7223C00AADDAC /* DeleteAlarmSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeleteAlarmSection.swift; sourceTree = "<group>"; };
  696. DDDC01DC2E244B3100D9975C /* JWTManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JWTManager.swift; sourceTree = "<group>"; };
  697. DDDC31CB2E13A7DF009EA0F3 /* AddAlarmSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddAlarmSheet.swift; sourceTree = "<group>"; };
  698. DDDC31CD2E13A811009EA0F3 /* AlarmTile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmTile.swift; sourceTree = "<group>"; };
  699. DDDF6F482D479AEF00884336 /* NoRemoteView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoRemoteView.swift; sourceTree = "<group>"; };
  700. DDE69ED12C7256260013EAEC /* RemoteType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteType.swift; sourceTree = "<group>"; };
  701. DDE75D222DE5E505007C1FC1 /* Glyph.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glyph.swift; sourceTree = "<group>"; };
  702. DDE75D262DE5E539007C1FC1 /* ActionRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActionRow.swift; sourceTree = "<group>"; };
  703. DDE75D282DE5E56C007C1FC1 /* LinkRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LinkRow.swift; sourceTree = "<group>"; };
  704. DDE75D2A2DE5E613007C1FC1 /* NavigationRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationRow.swift; sourceTree = "<group>"; };
  705. DDE75D2C2DE71401007C1FC1 /* TogglableSecureInput.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TogglableSecureInput.swift; sourceTree = "<group>"; };
  706. DDEF50392D31614200999A5D /* LogManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogManager.swift; sourceTree = "<group>"; };
  707. DDEF503B2D31BE2A00999A5D /* TaskScheduler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TaskScheduler.swift; sourceTree = "<group>"; };
  708. DDEF503E2D32754A00999A5D /* ProfileTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileTask.swift; sourceTree = "<group>"; };
  709. DDEF503F2D479B8A00884336 /* LoopAPNSService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopAPNSService.swift; sourceTree = "<group>"; };
  710. DDEF50412D479BAA00884336 /* LoopAPNSCarbsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopAPNSCarbsView.swift; sourceTree = "<group>"; };
  711. DDEF50422D479BBA00884336 /* LoopAPNSBolusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopAPNSBolusView.swift; sourceTree = "<group>"; };
  712. DDEF50442D479BDA00884336 /* LoopAPNSRemoteView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopAPNSRemoteView.swift; sourceTree = "<group>"; };
  713. DDF2C00F2BEFA991007A20E6 /* GitHubService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GitHubService.swift; sourceTree = "<group>"; };
  714. DDF2C0112BEFB733007A20E6 /* AppVersionManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppVersionManager.swift; sourceTree = "<group>"; };
  715. DDF2C0132BEFD468007A20E6 /* blacklisted-versions.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "blacklisted-versions.json"; sourceTree = "<group>"; };
  716. DDF699952C5582290058A8D9 /* TextFieldWithToolBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldWithToolBar.swift; sourceTree = "<group>"; };
  717. DDF699982C5AA3060058A8D9 /* TempTargetPresetManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPresetManager.swift; sourceTree = "<group>"; };
  718. DDF6999A2C5AA32E0058A8D9 /* TempTargetPreset.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPreset.swift; sourceTree = "<group>"; };
  719. DDF6999D2C5AAA640058A8D9 /* ErrorMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ErrorMessageView.swift; sourceTree = "<group>"; };
  720. DDF9676D2AD08C6E00C5EB95 /* SiteChange.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SiteChange.swift; sourceTree = "<group>"; };
  721. DDFD5C522CB167DA00D3FD68 /* TRCCommandType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TRCCommandType.swift; sourceTree = "<group>"; };
  722. DDFF3D7E2D1414A200BF9D9E /* BLEDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BLEDevice.swift; sourceTree = "<group>"; };
  723. DDFF3D842D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundRefreshSettingsView.swift; sourceTree = "<group>"; };
  724. DDFF3D862D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundRefreshSettingsViewModel.swift; sourceTree = "<group>"; };
  725. DDFF3D882D1429AB00BF9D9E /* BackgroundRefreshType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundRefreshType.swift; sourceTree = "<group>"; };
  726. E7C2676561D686C6459CAA2D /* APNSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APNSettingsView.swift; sourceTree = "<group>"; };
  727. ECA3EFB4037410B4973BB632 /* Pods-LoopFollow.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LoopFollow.debug.xcconfig"; path = "Target Support Files/Pods-LoopFollow/Pods-LoopFollow.debug.xcconfig"; sourceTree = "<group>"; };
  728. FC16A97924996673003D6245 /* NightScout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightScout.swift; sourceTree = "<group>"; };
  729. FC16A97C24996747003D6245 /* SpeakBG.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpeakBG.swift; sourceTree = "<group>"; };
  730. FC16A97E249969E2003D6245 /* Graphs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Graphs.swift; sourceTree = "<group>"; };
  731. FC16A98024996C07003D6245 /* DateTime.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateTime.swift; sourceTree = "<group>"; };
  732. FC1BDD2A24A22650001B652C /* Stats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Stats.swift; sourceTree = "<group>"; };
  733. FC1BDD2C24A23204001B652C /* MainViewController+updateStats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MainViewController+updateStats.swift"; sourceTree = "<group>"; };
  734. FC1BDD2E24A232A3001B652C /* DataStructs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataStructs.swift; sourceTree = "<group>"; };
  735. FC3AE7B4249E8E0E00AAE1E0 /* LoopFollow.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = LoopFollow.xcdatamodel; sourceTree = "<group>"; };
  736. FC5A5C3C2497B229009C550E /* Config.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  737. FC7CE4A9248ABE2B001F83B8 /* Siri_Alert_Calibration_Needed.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Calibration_Needed.caf; sourceTree = "<group>"; };
  738. FC7CE4AA248ABE2B001F83B8 /* Rise_And_Shine.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Rise_And_Shine.caf; sourceTree = "<group>"; };
  739. FC7CE4AB248ABE2B001F83B8 /* Jingle_All_The_Way.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Jingle_All_The_Way.caf; sourceTree = "<group>"; };
  740. FC7CE4AC248ABE2B001F83B8 /* Thunder_Sound_FX.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Thunder_Sound_FX.caf; sourceTree = "<group>"; };
  741. FC7CE4AD248ABE2B001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Spaceship_Warm_Up.caf"; sourceTree = "<group>"; };
  742. FC7CE4AE248ABE2B001F83B8 /* Not_Kiddin.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Not_Kiddin.caf; sourceTree = "<group>"; };
  743. FC7CE4AF248ABE2B001F83B8 /* Computer_Magic.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Computer_Magic.caf; sourceTree = "<group>"; };
  744. FC7CE4B0248ABE2B001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Tip_Toe_Sneaky_Walk.caf; sourceTree = "<group>"; };
  745. FC7CE4B1248ABE2C001F83B8 /* Burglar_Alarm_Siren_1.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Burglar_Alarm_Siren_1.caf; sourceTree = "<group>"; };
  746. FC7CE4B2248ABE2C001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Emergency_Alarm_Carbon_Monoxide.caf; sourceTree = "<group>"; };
  747. FC7CE4B3248ABE2C001F83B8 /* Signature_Corporate.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Signature_Corporate.caf; sourceTree = "<group>"; };
  748. FC7CE4B4248ABE2C001F83B8 /* Wake_Up_Will_You.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Wake_Up_Will_You.caf; sourceTree = "<group>"; };
  749. FC7CE4B5248ABE2C001F83B8 /* Marimba_Flutter_or_Shake.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Marimba_Flutter_or_Shake.caf; sourceTree = "<group>"; };
  750. FC7CE4B6248ABE2C001F83B8 /* Sci-Fi_Warning.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Warning.caf"; sourceTree = "<group>"; };
  751. FC7CE4B7248ABE2C001F83B8 /* Sci-Fi_Alarm_Loop_3.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm_Loop_3.caf"; sourceTree = "<group>"; };
  752. FC7CE4B8248ABE2C001F83B8 /* Alert_Tone_Ringtone_2.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alert_Tone_Ringtone_2.caf; sourceTree = "<group>"; };
  753. FC7CE4B9248ABE2D001F83B8 /* Cartoon_Bounce_To_Ceiling.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Bounce_To_Ceiling.caf; sourceTree = "<group>"; };
  754. FC7CE4BA248ABE2D001F83B8 /* Laser_Shoot.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Laser_Shoot.caf; sourceTree = "<group>"; };
  755. FC7CE4BB248ABE2D001F83B8 /* Nightguard.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Nightguard.caf; sourceTree = "<group>"; };
  756. FC7CE4BC248ABE2D001F83B8 /* Machine_Charge.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Machine_Charge.caf; sourceTree = "<group>"; };
  757. FC7CE4BD248ABE2D001F83B8 /* Cuckoo_Clock.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cuckoo_Clock.caf; sourceTree = "<group>"; };
  758. FC7CE4BE248ABE2D001F83B8 /* Siri_Urgent_High_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Urgent_High_Glucose.caf; sourceTree = "<group>"; };
  759. FC7CE4BF248ABE2D001F83B8 /* Cartoon_Villain_Horns.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Villain_Horns.caf; sourceTree = "<group>"; };
  760. FC7CE4C0248ABE2D001F83B8 /* Siri_Glucose_Rising_Fast.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Glucose_Rising_Fast.caf; sourceTree = "<group>"; };
  761. FC7CE4C1248ABE2E001F83B8 /* Dhol_Shuffleloop.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Dhol_Shuffleloop.caf; sourceTree = "<group>"; };
  762. FC7CE4C2248ABE2E001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Computer_Console_Alarm.caf"; sourceTree = "<group>"; };
  763. FC7CE4C3248ABE2E001F83B8 /* Siri_High_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_High_Glucose.caf; sourceTree = "<group>"; };
  764. FC7CE4C4248ABE2E001F83B8 /* Ending_Reached.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ending_Reached.caf; sourceTree = "<group>"; };
  765. FC7CE4C5248ABE2E001F83B8 /* Siri_Missed_Readings.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Missed_Readings.caf; sourceTree = "<group>"; };
  766. FC7CE4C6248ABE2E001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Ascend_Climb_Sneaky.caf; sourceTree = "<group>"; };
  767. FC7CE4C7248ABE2E001F83B8 /* Fly.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Fly.caf; sourceTree = "<group>"; };
  768. FC7CE4C8248ABE2E001F83B8 /* Open_Your_Eyes_And_See.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Open_Your_Eyes_And_See.caf; sourceTree = "<group>"; };
  769. FC7CE4C9248ABE2F001F83B8 /* 20ms-of-silence.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "20ms-of-silence.caf"; sourceTree = "<group>"; };
  770. FC7CE4CA248ABE2F001F83B8 /* Remembers_Me_Of_Asia.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Remembers_Me_Of_Asia.caf; sourceTree = "<group>"; };
  771. FC7CE4CB248ABE2F001F83B8 /* Alarm_Clock.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alarm_Clock.caf; sourceTree = "<group>"; };
  772. FC7CE4CC248ABE2F001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Dreamy_Glissando_Harp.caf; sourceTree = "<group>"; };
  773. FC7CE4CD248ABE2F001F83B8 /* Early_Sunrise.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Early_Sunrise.caf; sourceTree = "<group>"; };
  774. FC7CE4CE248ABE2F001F83B8 /* 1-millisecond-of-silence.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = "1-millisecond-of-silence.mp3"; sourceTree = "<group>"; };
  775. FC7CE4CF248ABE30001F83B8 /* Soft_Warm_Airy_Optimistic.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Soft_Warm_Airy_Optimistic.caf; sourceTree = "<group>"; };
  776. FC7CE4D0248ABE30001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Glucose_Dropping_Fast.caf; sourceTree = "<group>"; };
  777. FC7CE4D1248ABE30001F83B8 /* Two_Turtle_Doves.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Two_Turtle_Doves.caf; sourceTree = "<group>"; };
  778. FC7CE4D2248ABE30001F83B8 /* Discreet.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Discreet.caf; sourceTree = "<group>"; };
  779. FC7CE4D3248ABE30001F83B8 /* Alien_Siren.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alien_Siren.caf; sourceTree = "<group>"; };
  780. FC7CE4D4248ABE30001F83B8 /* Pager_Beeps.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Pager_Beeps.caf; sourceTree = "<group>"; };
  781. FC7CE4D5248ABE31001F83B8 /* Sci-Fi_Alarm_Loop_1.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm_Loop_1.caf"; sourceTree = "<group>"; };
  782. FC7CE4D6248ABE31001F83B8 /* Indeed.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Indeed.caf; sourceTree = "<group>"; };
  783. FC7CE4D7248ABE31001F83B8 /* Cartoon_Uh_Oh.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Uh_Oh.caf; sourceTree = "<group>"; };
  784. FC7CE4D8248ABE31001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Air_Raid_Alarm.caf"; sourceTree = "<group>"; };
  785. FC7CE4D9248ABE31001F83B8 /* Store_Door_Chime.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Store_Door_Chime.caf; sourceTree = "<group>"; };
  786. FC7CE4DA248ABE31001F83B8 /* Magical_Twinkle.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Magical_Twinkle.caf; sourceTree = "<group>"; };
  787. FC7CE4DB248ABE31001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Urgent_High_Glucose.caf; sourceTree = "<group>"; };
  788. FC7CE4DC248ABE32001F83B8 /* Siri_Alert_Device_Muted.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Device_Muted.caf; sourceTree = "<group>"; };
  789. FC7CE4DD248ABE32001F83B8 /* Emergency_Alarm_Siren.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Emergency_Alarm_Siren.caf; sourceTree = "<group>"; };
  790. FC7CE4DE248ABE32001F83B8 /* Analog_Watch_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Analog_Watch_Alarm.caf; sourceTree = "<group>"; };
  791. FC7CE4DF248ABE32001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Hell_Yeah_Somewhat_Calmer.caf; sourceTree = "<group>"; };
  792. FC7CE4E0248ABE32001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Machine_Clumsy_Loop.caf; sourceTree = "<group>"; };
  793. FC7CE4E1248ABE32001F83B8 /* Siri_Alert_High_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_High_Glucose.caf; sourceTree = "<group>"; };
  794. FC7CE4E2248ABE32001F83B8 /* Marimba_Descend.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Marimba_Descend.caf; sourceTree = "<group>"; };
  795. FC7CE4E3248ABE32001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Urgent_Low_Glucose.caf; sourceTree = "<group>"; };
  796. FC7CE4E4248ABE32001F83B8 /* Sci-Fi_Eerie_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Eerie_Alarm.caf"; sourceTree = "<group>"; };
  797. FC7CE4E5248ABE32001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Glucose_Rising_Fast.caf; sourceTree = "<group>"; };
  798. FC7CE4E6248ABE32001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Incoming_Message_Alert.caf"; sourceTree = "<group>"; };
  799. FC7CE4E7248ABE33001F83B8 /* Sci-Fi_Console_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Console_Alarm.caf"; sourceTree = "<group>"; };
  800. FC7CE4E8248ABE33001F83B8 /* Soft_Marimba_Pad_Positive.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Soft_Marimba_Pad_Positive.caf; sourceTree = "<group>"; };
  801. FC7CE4E9248ABE33001F83B8 /* Rush.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Rush.caf; sourceTree = "<group>"; };
  802. FC7CE4EA248ABE33001F83B8 /* Martian_Scanner.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Martian_Scanner.caf; sourceTree = "<group>"; };
  803. FC7CE4EB248ABE33001F83B8 /* Alert_Tone_Ringtone_1.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alert_Tone_Ringtone_1.caf; sourceTree = "<group>"; };
  804. FC7CE4EC248ABE33001F83B8 /* 500ms-of-silence.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = "500ms-of-silence.mp3"; sourceTree = "<group>"; };
  805. FC7CE4ED248ABE33001F83B8 /* Big_Clock_Ticking.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Big_Clock_Ticking.caf; sourceTree = "<group>"; };
  806. FC7CE4EE248ABE33001F83B8 /* Metallic.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Metallic.caf; sourceTree = "<group>"; };
  807. FC7CE4EF248ABE33001F83B8 /* Cell_Phone_Ring_Tone.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cell_Phone_Ring_Tone.caf; sourceTree = "<group>"; };
  808. FC7CE4F0248ABE33001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Transmitter_Battery_Low.caf; sourceTree = "<group>"; };
  809. FC7CE4F1248ABE33001F83B8 /* Burglar_Alarm_Siren_2.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Burglar_Alarm_Siren_2.caf; sourceTree = "<group>"; };
  810. FC7CE4F2248ABE34001F83B8 /* Wrong_Answer.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Wrong_Answer.caf; sourceTree = "<group>"; };
  811. FC7CE4F3248ABE34001F83B8 /* Soft_Warm_Airy_Reassuring.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Soft_Warm_Airy_Reassuring.caf; sourceTree = "<group>"; };
  812. FC7CE4F4248ABE34001F83B8 /* CSFX-2_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "CSFX-2_Alarm.caf"; sourceTree = "<group>"; };
  813. FC7CE4F5248ABE34001F83B8 /* Siri_Low_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Low_Glucose.caf; sourceTree = "<group>"; };
  814. FC7CE4F6248ABE34001F83B8 /* Sci-Fi_Spaceship_Message.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Spaceship_Message.caf"; sourceTree = "<group>"; };
  815. FC7CE4F7248ABE34001F83B8 /* In_A_Hurry.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = In_A_Hurry.caf; sourceTree = "<group>"; };
  816. FC7CE4F8248ABE34001F83B8 /* Orchestral_Horns.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Orchestral_Horns.caf; sourceTree = "<group>"; };
  817. FC7CE4F9248ABE34001F83B8 /* Sci-Fi_Engine_Shut_Down.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Engine_Shut_Down.caf"; sourceTree = "<group>"; };
  818. FC7CE4FA248ABE34001F83B8 /* silence-1sec.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = "silence-1sec.mp3"; sourceTree = "<group>"; };
  819. FC7CE4FB248ABE34001F83B8 /* Cartoon_Siren.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Siren.caf; sourceTree = "<group>"; };
  820. FC7CE4FC248ABE34001F83B8 /* Cartoon_Ascend_Then_Descend.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Ascend_Then_Descend.caf; sourceTree = "<group>"; };
  821. FC7CE4FD248ABE35001F83B8 /* Time_Has_Come.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Time_Has_Come.caf; sourceTree = "<group>"; };
  822. FC7CE4FE248ABE35001F83B8 /* Siri_Alert_Low_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Low_Glucose.caf; sourceTree = "<group>"; };
  823. FC7CE4FF248ABE35001F83B8 /* Ambulance.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ambulance.caf; sourceTree = "<group>"; };
  824. FC7CE500248ABE35001F83B8 /* Ghost_Hover.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ghost_Hover.caf; sourceTree = "<group>"; };
  825. FC7CE501248ABE35001F83B8 /* Insistently.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Insistently.caf; sourceTree = "<group>"; };
  826. FC7CE502248ABE35001F83B8 /* Sunny.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Sunny.caf; sourceTree = "<group>"; };
  827. FC7CE503248ABE35001F83B8 /* Siri_Calibration_Needed.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Calibration_Needed.caf; sourceTree = "<group>"; };
  828. FC7CE504248ABE35001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Marching_Heavy_Footed_Fat_Elephants.caf; sourceTree = "<group>"; };
  829. FC7CE505248ABE35001F83B8 /* Chimes_Glassy.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Chimes_Glassy.caf; sourceTree = "<group>"; };
  830. FC7CE506248ABE35001F83B8 /* Siri_Device_Muted.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Device_Muted.caf; sourceTree = "<group>"; };
  831. FC7CE507248ABE35001F83B8 /* Alarm_Buzzer.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alarm_Buzzer.caf; sourceTree = "<group>"; };
  832. FC7CE508248ABE35001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Fail_Strings_Trumpet.caf; sourceTree = "<group>"; };
  833. FC7CE509248ABE36001F83B8 /* Siri_Alert_Missed_Readings.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Missed_Readings.caf; sourceTree = "<group>"; };
  834. FC7CE50A248ABE36001F83B8 /* Good_Morning.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Good_Morning.caf; sourceTree = "<group>"; };
  835. FC7CE50B248ABE36001F83B8 /* Emergency_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Emergency_Alarm.caf; sourceTree = "<group>"; };
  836. FC7CE50C248ABE36001F83B8 /* Alert_Tone_Busy.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alert_Tone_Busy.caf; sourceTree = "<group>"; };
  837. FC7CE50D248ABE36001F83B8 /* Tornado_Siren.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Tornado_Siren.caf; sourceTree = "<group>"; };
  838. FC7CE50E248ABE36001F83B8 /* Win_Gain.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Win_Gain.caf; sourceTree = "<group>"; };
  839. FC7CE50F248ABE36001F83B8 /* Unpaved.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Unpaved.caf; sourceTree = "<group>"; };
  840. FC7CE510248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_4.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm_Loop_4.caf"; sourceTree = "<group>"; };
  841. FC7CE511248ABE36001F83B8 /* Sci-Fi_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm.caf"; sourceTree = "<group>"; };
  842. FC7CE512248ABE36001F83B8 /* Siri_Urgent_Low_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Urgent_Low_Glucose.caf; sourceTree = "<group>"; };
  843. FC7CE513248ABE36001F83B8 /* Siri_Transmitter_Battery_Low.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Transmitter_Battery_Low.caf; sourceTree = "<group>"; };
  844. FC7CE514248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_2.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm_Loop_2.caf"; sourceTree = "<group>"; };
  845. FC7CE515248ABE37001F83B8 /* Oringz.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Oringz.caf; sourceTree = "<group>"; };
  846. FC7CE516248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Glucose_Dropping_Fast.caf; sourceTree = "<group>"; };
  847. FC7CE517248ABE37001F83B8 /* Martian_Gun.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Martian_Gun.caf; sourceTree = "<group>"; };
  848. FC7CE589248ABEA3001F83B8 /* AlarmSound.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlarmSound.swift; sourceTree = "<group>"; };
  849. FC7CE58B248ABEF1001F83B8 /* alarm.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = alarm.mp3; sourceTree = "<group>"; };
  850. FC7CE58C248ABEF1001F83B8 /* alarm-notification.m4a */ = {isa = PBXFileReference; lastKnownFileType = file; path = "alarm-notification.m4a"; sourceTree = "<group>"; };
  851. FC7CE59B248D33A9001F83B8 /* dragbar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = dragbar.png; sourceTree = "<group>"; };
  852. FC8589BE252B54F500C8FC73 /* Mobileprovision.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Mobileprovision.swift; sourceTree = "<group>"; };
  853. FC8DEEE62485D1ED0075863F /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  854. FC9788142485969B00A7906C /* Loop Follow.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Loop Follow.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  855. FC9788172485969B00A7906C /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  856. FC9788192485969B00A7906C /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
  857. FC97881B2485969B00A7906C /* MainViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainViewController.swift; sourceTree = "<group>"; };
  858. FC97881D2485969B00A7906C /* NightScoutViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightScoutViewController.swift; sourceTree = "<group>"; };
  859. FC9788202485969B00A7906C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  860. FC9788252485969C00A7906C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  861. FC9788282485969C00A7906C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  862. FCA2DDE52501095000254A8C /* Timers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Timers.swift; sourceTree = "<group>"; };
  863. FCC0FAC124922A22003E610E /* DictionaryKeyPath.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DictionaryKeyPath.swift; sourceTree = "<group>"; };
  864. FCC688592489554800A0279D /* BackgroundTaskAudio.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BackgroundTaskAudio.swift; sourceTree = "<group>"; };
  865. FCC6885B2489559400A0279D /* blank.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = blank.wav; sourceTree = "<group>"; };
  866. FCC6885D24896A6C00A0279D /* silence.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = silence.mp3; sourceTree = "<group>"; };
  867. FCC6886624898F8000A0279D /* UserDefaultsValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsValue.swift; sourceTree = "<group>"; };
  868. FCC6886824898FB100A0279D /* UserDefaultsValueGroups.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsValueGroups.swift; sourceTree = "<group>"; };
  869. FCC6886A24898FD800A0279D /* ObservationToken.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservationToken.swift; sourceTree = "<group>"; };
  870. FCC6886C2489909D00A0279D /* AnyConvertible.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnyConvertible.swift; sourceTree = "<group>"; };
  871. FCC6886E2489A53800A0279D /* AppConstants.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppConstants.swift; sourceTree = "<group>"; };
  872. FCC688702489A57C00A0279D /* Loop Follow.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Loop Follow.entitlements"; sourceTree = "<group>"; };
  873. FCD2A27C24C9D044009F7B7B /* Globals.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Globals.swift; sourceTree = "<group>"; };
  874. FCE537BB249A4D7D00F80BF8 /* carbBolusArrays.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = carbBolusArrays.swift; sourceTree = "<group>"; };
  875. FCE537C2249AAB2600F80BF8 /* NotificationCenter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NotificationCenter.framework; path = System/Library/Frameworks/NotificationCenter.framework; sourceTree = SDKROOT; };
  876. FCEF87AA24A1417900AE6FA0 /* Localizer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Localizer.swift; sourceTree = "<group>"; };
  877. FCFEEC9D2486E68E00402A7F /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
  878. FCFEEC9F2488157B00402A7F /* Chart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Chart.swift; sourceTree = "<group>"; };
  879. FCFEECA1248857A600402A7F /* SettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsViewController.swift; sourceTree = "<group>"; };
  880. /* End PBXFileReference section */
  881. /* Begin PBXFileSystemSynchronizedRootGroup section */
  882. 37A4BDDE2F5B6B4A00EEB289 /* LoopFollowLAExtension */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = LoopFollowLAExtension; sourceTree = "<group>"; };
  883. 65AC25F52ECFD5E800421360 /* Stats */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Stats; sourceTree = "<group>"; };
  884. 65AC26702ED245DF00421360 /* Treatments */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Treatments; sourceTree = "<group>"; };
  885. DDCC3AD72DDE1790006F1C10 /* Tests */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Tests; sourceTree = "<group>"; };
  886. /* End PBXFileSystemSynchronizedRootGroup section */
  887. /* Begin PBXFrameworksBuildPhase section */
  888. 37A4BDD62F5B6B4A00EEB289 /* Frameworks */ = {
  889. isa = PBXFrameworksBuildPhase;
  890. buildActionMask = 2147483647;
  891. files = (
  892. 37A4BDDD2F5B6B4A00EEB289 /* SwiftUI.framework in Frameworks */,
  893. 37A4BDDB2F5B6B4A00EEB289 /* WidgetKit.framework in Frameworks */,
  894. );
  895. runOnlyForDeploymentPostprocessing = 0;
  896. };
  897. DDCC3AD32DDE1790006F1C10 /* Frameworks */ = {
  898. isa = PBXFrameworksBuildPhase;
  899. buildActionMask = 2147483647;
  900. files = (
  901. );
  902. runOnlyForDeploymentPostprocessing = 0;
  903. };
  904. FC9788112485969B00A7906C /* Frameworks */ = {
  905. isa = PBXFrameworksBuildPhase;
  906. buildActionMask = 2147483647;
  907. files = (
  908. FCFEEC9E2486E68E00402A7F /* WebKit.framework in Frameworks */,
  909. 3F1335F351590E573D8E6962 /* Pods_LoopFollow.framework in Frameworks */,
  910. );
  911. runOnlyForDeploymentPostprocessing = 0;
  912. };
  913. /* End PBXFrameworksBuildPhase section */
  914. /* Begin PBXGroup section */
  915. 376310762F5CD65100656488 /* LiveActivity */ = {
  916. isa = PBXGroup;
  917. children = (
  918. 37E4DD0F2F7E0985000511C8 /* LALivenessMarker.swift */,
  919. 37E4DD0C2F7E0967000511C8 /* LALivenessStore.swift */,
  920. 374A77AE2F5BE1AC00E96858 /* GlucoseSnapshotBuilder.swift */,
  921. 374A77AF2F5BE1AC00E96858 /* GlucoseSnapshotStore.swift */,
  922. 374A77B12F5BE1AC00E96858 /* LiveActivityManager.swift */,
  923. 374A77B22F5BE1AC00E96858 /* PreferredGlucoseUnit.swift */,
  924. 374A77B32F5BE1AC00E96858 /* StorageCurrentGlucoseStateProvider.swift */,
  925. 374A779F2F5BE17000E96858 /* AppGroupID.swift */,
  926. 374A77A02F5BE17000E96858 /* GlucoseLiveActivityAttributes.swift */,
  927. 374A77A12F5BE17000E96858 /* GlucoseSnapshot.swift */,
  928. 374A77A32F5BE17000E96858 /* LAAppGroupSettings.swift */,
  929. 374A77982F5BD8AB00E96858 /* APNSClient.swift */,
  930. );
  931. path = LiveActivity;
  932. sourceTree = "<group>";
  933. };
  934. 6589CC552E9E7D1600BB18FE /* ImportExport */ = {
  935. isa = PBXGroup;
  936. children = (
  937. 6589CC742E9EAFB700BB18FE /* SettingsMigrationManager.swift */,
  938. 6589CC702E9E814F00BB18FE /* AlarmSelectionView.swift */,
  939. 6589CC522E9E7D1600BB18FE /* ExportableSettings.swift */,
  940. 6589CC532E9E7D1600BB18FE /* ImportExportSettingsView.swift */,
  941. 6589CC542E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift */,
  942. );
  943. path = ImportExport;
  944. sourceTree = "<group>";
  945. };
  946. 6589CC612E9E7D1600BB18FE /* Settings */ = {
  947. isa = PBXGroup;
  948. children = (
  949. 6589CC552E9E7D1600BB18FE /* ImportExport */,
  950. 6589CC562E9E7D1600BB18FE /* AdvancedSettingsView.swift */,
  951. E7C2676561D686C6459CAA2D /* APNSettingsView.swift */,
  952. 6589CC572E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift */,
  953. 6589CC582E9E7D1600BB18FE /* CalendarSettingsView.swift */,
  954. 6589CC592E9E7D1600BB18FE /* ContactSettingsView.swift */,
  955. 6589CC5A2E9E7D1600BB18FE /* ContactSettingsViewModel.swift */,
  956. 6589CC5B2E9E7D1600BB18FE /* DexcomSettingsView.swift */,
  957. 6589CC5C2E9E7D1600BB18FE /* DexcomSettingsViewModel.swift */,
  958. 6589CC5D2E9E7D1600BB18FE /* GeneralSettingsView.swift */,
  959. 6589CC5E2E9E7D1600BB18FE /* GraphSettingsView.swift */,
  960. 657F98172F043D8100F732BD /* HomeContentView.swift */,
  961. 6589CC5F2E9E7D1600BB18FE /* SettingsMenuView.swift */,
  962. 6589CC602E9E7D1600BB18FE /* TabCustomizationModal.swift */,
  963. );
  964. path = Settings;
  965. sourceTree = "<group>";
  966. };
  967. 6A5880E0B811AF443B05AB02 /* Frameworks */ = {
  968. isa = PBXGroup;
  969. children = (
  970. DDCC3ABF2DDE10B0006F1C10 /* Testing.framework */,
  971. FCFEEC9D2486E68E00402A7F /* WebKit.framework */,
  972. A7D55B42A22051DAD69E89D0 /* Pods_LoopFollow.framework */,
  973. FCE537C2249AAB2600F80BF8 /* NotificationCenter.framework */,
  974. 37A4BDDA2F5B6B4A00EEB289 /* WidgetKit.framework */,
  975. 37A4BDDC2F5B6B4A00EEB289 /* SwiftUI.framework */,
  976. );
  977. name = Frameworks;
  978. sourceTree = "<group>";
  979. };
  980. 8E32230C453C93FDCE59C2B9 /* Pods */ = {
  981. isa = PBXGroup;
  982. children = (
  983. ECA3EFB4037410B4973BB632 /* Pods-LoopFollow.debug.xcconfig */,
  984. 059B0FA59AABFE72FE13DDDA /* Pods-LoopFollow.release.xcconfig */,
  985. );
  986. path = Pods;
  987. sourceTree = "<group>";
  988. };
  989. DD02475A2DB2E8CE00FCADF6 /* AlarmCondition */ = {
  990. isa = PBXGroup;
  991. children = (
  992. DDCC3A552DDC9617006F1C10 /* MissedBolusCondition.swift */,
  993. 2EBAB9EECE7095238A558060 /* FutureCarbsCondition.swift */,
  994. DDCC3A4E2DDC5B54006F1C10 /* BatteryDropCondition.swift */,
  995. DDCC3A4A2DDBB5E4006F1C10 /* BatteryCondition.swift */,
  996. DDCC3A512DDED000006F1C10 /* PumpBatteryCondition.swift */,
  997. DDB9FC7A2DDB573F00EFAA76 /* IOBCondition.swift */,
  998. DDC6CA482DD8E47A0060EE25 /* PumpVolumeCondition.swift */,
  999. DDC6CA442DD8D8E60060EE25 /* PumpChangeCondition.swift */,
  1000. DDC6CA422DD8CED20060EE25 /* SensorAgeCondition.swift */,
  1001. DDC6CA3C2DD7C6090060EE25 /* TemporaryCondition.swift */,
  1002. DD7F4C1E2DD6648B00D449E9 /* FastRiseCondition.swift */,
  1003. DD7F4C1A2DD6501D00D449E9 /* COBCondition.swift */,
  1004. DD7F4C162DD63FA700D449E9 /* RecBolusCondition.swift */,
  1005. DD7F4C122DD51FD500D449E9 /* TempTargetEndCondition.swift */,
  1006. DD7F4C0E2DD51EC200D449E9 /* TempTargetStartCondition.swift */,
  1007. DD7F4C0A2DD51C5500D449E9 /* OverrideEndCondition.swift */,
  1008. DD7F4C042DD4BBE200D449E9 /* NotLoopingCondition.swift */,
  1009. DD7F4C082DD504A700D449E9 /* OverrideStartCondition.swift */,
  1010. DD7F4BC62DD473A600D449E9 /* FastDropCondition.swift */,
  1011. DD0650EA2DCE8385004D3B41 /* LowBGCondition.swift */,
  1012. DD02475B2DB2E8FB00FCADF6 /* BuildExpireCondition.swift */,
  1013. DD0247582DB2E89600FCADF6 /* AlarmCondition.swift */,
  1014. DD0650EE2DCE96FF004D3B41 /* HighBGCondition.swift */,
  1015. DD0650F02DCE9A9E004D3B41 /* MissedReadingCondition.swift */,
  1016. );
  1017. path = AlarmCondition;
  1018. sourceTree = "<group>";
  1019. };
  1020. DD0C0C692C4852A100DBADDF /* Metric */ = {
  1021. isa = PBXGroup;
  1022. children = (
  1023. DD0C0C672C48529400DBADDF /* Metric.swift */,
  1024. DD0C0C6A2C48562000DBADDF /* InsulinMetric.swift */,
  1025. DD0C0C6C2C48606200DBADDF /* CarbMetric.swift */,
  1026. );
  1027. path = Metric;
  1028. sourceTree = "<group>";
  1029. };
  1030. DD0C0C6E2C4AFFB800DBADDF /* Remote */ = {
  1031. isa = PBXGroup;
  1032. children = (
  1033. DDDF6F4A2D479B6A00884336 /* Nightscout */,
  1034. DDDF6F482D479AEF00884336 /* NoRemoteView.swift */,
  1035. DDEF503E2D479B8A00884336 /* LoopAPNS */,
  1036. DD4878112C7B74F90048F05C /* TRC */,
  1037. DD4878062C7B2E9E0048F05C /* Settings */,
  1038. DDF699972C5AA2E50058A8D9 /* TempTargetPreset */,
  1039. DD0C0C6F2C4AFFE800DBADDF /* RemoteViewController.swift */,
  1040. DDE69ED12C7256260013EAEC /* RemoteType.swift */,
  1041. );
  1042. path = Remote;
  1043. sourceTree = "<group>";
  1044. };
  1045. DD13BC732C3FD60E0062313B /* InfoTable */ = {
  1046. isa = PBXGroup;
  1047. children = (
  1048. DD13BC742C3FD6200062313B /* InfoType.swift */,
  1049. DD13BC762C3FD64E0062313B /* InfoData.swift */,
  1050. DD13BC782C3FE63A0062313B /* InfoManager.swift */,
  1051. DD0C0C652C46E54C00DBADDF /* InfoDataSeparator.swift */,
  1052. );
  1053. path = InfoTable;
  1054. sourceTree = "<group>";
  1055. };
  1056. DD2C2E4D2D3B8ACF006413A5 /* Nightscout */ = {
  1057. isa = PBXGroup;
  1058. children = (
  1059. DD2C2E502D3B8B0B006413A5 /* NightscoutSettingsViewModel.swift */,
  1060. DD2C2E4E2D3B8AEC006413A5 /* NightscoutSettingsView.swift */,
  1061. );
  1062. path = Nightscout;
  1063. sourceTree = "<group>";
  1064. };
  1065. DD4878062C7B2E9E0048F05C /* Settings */ = {
  1066. isa = PBXGroup;
  1067. children = (
  1068. 65E153C22E4BB69100693A4F /* URLTokenValidationView.swift */,
  1069. 656F8C132E49F3D20008DC1D /* RemoteCommandSettings.swift */,
  1070. DD4878072C7B30BF0048F05C /* RemoteSettingsView.swift */,
  1071. DD4878092C7B30D40048F05C /* RemoteSettingsViewModel.swift */,
  1072. );
  1073. path = Settings;
  1074. sourceTree = "<group>";
  1075. };
  1076. DD4878112C7B74F90048F05C /* TRC */ = {
  1077. isa = PBXGroup;
  1078. children = (
  1079. DD485F132E454B2600CE8CBF /* SecureMessenger.swift */,
  1080. DD48781F2C7DAF890048F05C /* PushMessage.swift */,
  1081. DD4878122C7B750D0048F05C /* TempTargetView.swift */,
  1082. DD48781D2C7DAF2F0048F05C /* PushNotificationManager.swift */,
  1083. DD4878142C7B75230048F05C /* MealView.swift */,
  1084. DD48780F2C7B74BF0048F05C /* TrioRemoteControlView.swift */,
  1085. DD48780D2C7B74A40048F05C /* TrioRemoteControlViewModel.swift */,
  1086. DD4878162C7B75350048F05C /* BolusView.swift */,
  1087. DDD10F022C518A6500D76A8E /* TreatmentResponse.swift */,
  1088. DD4878182C7C56D60048F05C /* TrioNightscoutRemoteController.swift */,
  1089. DDFD5C522CB167DA00D3FD68 /* TRCCommandType.swift */,
  1090. DDBE3ABC2CB5A961006B37DC /* OverrideView.swift */,
  1091. );
  1092. path = TRC;
  1093. sourceTree = "<group>";
  1094. };
  1095. DD493AEA2ACF2761009A6922 /* Treatments */ = {
  1096. isa = PBXGroup;
  1097. children = (
  1098. DD7E19872ACDA5DA00DBD158 /* Notes.swift */,
  1099. DD7E19832ACDA50C00DBD158 /* Overrides.swift */,
  1100. DD7E19852ACDA59700DBD158 /* BGCheck.swift */,
  1101. DD7E19892ACDA62600DBD158 /* SensorStart.swift */,
  1102. DD493AD62ACF2139009A6922 /* SuspendPump.swift */,
  1103. DD493AD82ACF2171009A6922 /* Carbs.swift */,
  1104. DD493ADC2ACF21E0009A6922 /* Basals.swift */,
  1105. DD493ADA2ACF21A3009A6922 /* Bolus.swift */,
  1106. DD493AD42ACF2109009A6922 /* ResumePump.swift */,
  1107. DDF9676D2AD08C6E00C5EB95 /* SiteChange.swift */,
  1108. DD608A092C23593900F91132 /* SMB.swift */,
  1109. DDD10F0A2C54192A00D76A8E /* TemporaryTarget.swift */,
  1110. DD5334202C60EBEE00062F9D /* InsulinCartridgeChange.swift */,
  1111. );
  1112. path = Treatments;
  1113. sourceTree = "<group>";
  1114. };
  1115. DD50C74D2D0828250057AE6F /* Contact */ = {
  1116. isa = PBXGroup;
  1117. children = (
  1118. DDA9ACAB2D6B316F00E6F1A9 /* ContactType.swift */,
  1119. DDA9ACA92D6A6B8200E6F1A9 /* ContactIncludeOption.swift */,
  1120. DDA9ACA72D6A66DD00E6F1A9 /* ContactColorOption.swift */,
  1121. DDA9ACA52D6A66C800E6F1A9 /* ContactColorMode.swift */,
  1122. DD50C7542D0862770057AE6F /* ContactImageUpdater.swift */,
  1123. );
  1124. path = Contact;
  1125. sourceTree = "<group>";
  1126. };
  1127. DD5334252C61667700062F9D /* InfoDisplaySettings */ = {
  1128. isa = PBXGroup;
  1129. children = (
  1130. DD5334262C61668700062F9D /* InfoDisplaySettingsViewModel.swift */,
  1131. DD5334282C6166A500062F9D /* InfoDisplaySettingsView.swift */,
  1132. );
  1133. path = InfoDisplaySettings;
  1134. sourceTree = "<group>";
  1135. };
  1136. DD7E19802ACDA0EA00DBD158 /* Nightscout */ = {
  1137. isa = PBXGroup;
  1138. children = (
  1139. DD493AEA2ACF2761009A6922 /* Treatments */,
  1140. DD493ADE2ACF22BB009A6922 /* SAge.swift */,
  1141. DD493AE02ACF22FE009A6922 /* Profile.swift */,
  1142. DD493AE22ACF2358009A6922 /* CAge.swift */,
  1143. DD493AE42ACF2383009A6922 /* Treatments.swift */,
  1144. DD493AE62ACF23CF009A6922 /* DeviceStatus.swift */,
  1145. DD493AE82ACF2445009A6922 /* BGData.swift */,
  1146. DD6A935D2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift */,
  1147. DD608A072C1F584900F91132 /* DeviceStatusLoop.swift */,
  1148. DD0C0C5F2C415B9D00DBADDF /* ProfileManager.swift */,
  1149. DD0C0C612C4175FD00DBADDF /* NSProfile.swift */,
  1150. DD5334222C60ED3600062F9D /* IAge.swift */,
  1151. );
  1152. path = Nightscout;
  1153. sourceTree = "<group>";
  1154. };
  1155. DD98F54224BCEF190007425A /* Extensions */ = {
  1156. isa = PBXGroup;
  1157. children = (
  1158. DD98F54324BCEFEE0007425A /* ShareClientExtension.swift */,
  1159. DDCF979324C0D380002C9752 /* UIViewExtension.swift */,
  1160. DD7FFAFC2A72953000C3A304 /* EKEventStore+Extensions.swift */,
  1161. DD0C0C632C45A59400DBADDF /* HKUnit+Extensions.swift */,
  1162. DD4AFB662DB68C5500BB593F /* UUID+Identifiable.swift */,
  1163. DD4AFB6A2DB6BF2A00BB593F /* Binding+Optional.swift */,
  1164. );
  1165. path = Extensions;
  1166. sourceTree = "<group>";
  1167. };
  1168. DD9ED0C62D355225000D2A63 /* Log */ = {
  1169. isa = PBXGroup;
  1170. children = (
  1171. DD9ED0CD2D355879000D2A63 /* LogEntry.swift */,
  1172. DD9ED0CB2D35526E000D2A63 /* SearchBar.swift */,
  1173. DD9ED0C92D355256000D2A63 /* LogView.swift */,
  1174. DD9ED0C72D35523F000D2A63 /* LogViewModel.swift */,
  1175. DDEF50392D31614200999A5D /* LogManager.swift */,
  1176. );
  1177. path = Log;
  1178. sourceTree = "<group>";
  1179. };
  1180. DDAD16302D2EF98C0084BE10 /* Devices */ = {
  1181. isa = PBXGroup;
  1182. children = (
  1183. DD85E9942D739CED001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift */,
  1184. DDAD162E2D2EF97C0084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift */,
  1185. DD5817192D299EF40041FB98 /* DexcomHeartbeatBluetoothDevice.swift */,
  1186. );
  1187. path = Devices;
  1188. sourceTree = "<group>";
  1189. };
  1190. DDB0AF4F2BB1A81F00AFA48B /* Scripts */ = {
  1191. isa = PBXGroup;
  1192. children = (
  1193. DDB0AF502BB1A84500AFA48B /* capture-build-details.sh */,
  1194. );
  1195. path = Scripts;
  1196. sourceTree = "<group>";
  1197. };
  1198. DDC6CA3B2DD7B9050060EE25 /* AlarmType */ = {
  1199. isa = PBXGroup;
  1200. children = (
  1201. DDCF9A812D85FD14004DF4DD /* AlarmType.swift */,
  1202. DD7F4C222DD7A62200D449E9 /* AlarmType+SortDirection.swift */,
  1203. DD7F4C242DD7B20700D449E9 /* AlarmType+timeUnit.swift */,
  1204. DD0B9D552DE1EC8A0090C337 /* AlarmType+Snooze.swift */,
  1205. DD0B9D572DE1F3B20090C337 /* AlarmType+canAcknowledge.swift */,
  1206. );
  1207. path = AlarmType;
  1208. sourceTree = "<group>";
  1209. };
  1210. DDC7E5142DBCE1B900EB1127 /* Snoozer */ = {
  1211. isa = PBXGroup;
  1212. children = (
  1213. DDC7E5CE2DC77C2000EB1127 /* SnoozerViewModel.swift */,
  1214. DDC7E5122DBCE1B900EB1127 /* SnoozerView.swift */,
  1215. DDC7E5132DBCE1B900EB1127 /* SnoozerViewController.swift */,
  1216. );
  1217. path = Snoozer;
  1218. sourceTree = "<group>";
  1219. };
  1220. DDC7E53B2DBD8A1600EB1127 /* Components */ = {
  1221. isa = PBXGroup;
  1222. children = (
  1223. DDDB86F02DF7223C00AADDAC /* DeleteAlarmSection.swift */,
  1224. DD7F4BC42DD3CE0700D449E9 /* AlarmBGLimitSection.swift */,
  1225. DD7F4BA02DD2193F00D449E9 /* AlarmSnoozeSection.swift */,
  1226. DD7F4B9E2DD1F92700D449E9 /* AlarmActiveSection.swift */,
  1227. DD7F4B9C2DD1EAE500D449E9 /* AlarmAudioSection.swift */,
  1228. DD0650F62DCFDA26004D3B41 /* InfoBanner.swift */,
  1229. DD0650F42DCF303F004D3B41 /* AlarmStepperSection.swift */,
  1230. DD0650A82DCA8A10004D3B41 /* AlarmBGSection.swift */,
  1231. DDC7E5392DBD8A1600EB1127 /* AlarmGeneralSection.swift */,
  1232. DDC7E53A2DBD8A1600EB1127 /* SoundFile.swift */,
  1233. );
  1234. path = Components;
  1235. sourceTree = "<group>";
  1236. };
  1237. DDC7E53F2DBD8A1600EB1127 /* Editors */ = {
  1238. isa = PBXGroup;
  1239. children = (
  1240. DDCC3A572DDC9655006F1C10 /* MissedBolusAlarmEditor.swift */,
  1241. B7D2A4EFD18B7B7748B6669E /* FutureCarbsAlarmEditor.swift */,
  1242. DDCC3A532DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift */,
  1243. DDCC3A4C2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift */,
  1244. DDCC3A5C2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift */,
  1245. DDB9FC7C2DDB575300EFAA76 /* IOBAlarmEditor.swift */,
  1246. DDC6CA4A2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift */,
  1247. DDC6CA462DD8D9010060EE25 /* PumpChangeAlarmEditor.swift */,
  1248. DDC6CA402DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift */,
  1249. DDC6CA3E2DD7C6340060EE25 /* TemporaryAlarmEditor.swift */,
  1250. DD7F4C202DD66BB100D449E9 /* FastRiseAlarmEditor.swift */,
  1251. DD7F4C1C2DD650D500D449E9 /* COBAlarmEditor.swift */,
  1252. DD7F4C182DD63FD500D449E9 /* RecBolusAlarmEditor.swift */,
  1253. DD7F4C142DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift */,
  1254. DD7F4C102DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift */,
  1255. DD7F4C0C2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift */,
  1256. DD7F4C062DD5042F00D449E9 /* OverrideStartAlarmEditor.swift */,
  1257. DD7F4C022DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift */,
  1258. DD0650EC2DCE9371004D3B41 /* HighBgAlarmEditor.swift */,
  1259. DDC7E53C2DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift */,
  1260. DDC7E53E2DBD8A1600EB1127 /* LowBgAlarmEditor.swift */,
  1261. DD0650F22DCE9B3D004D3B41 /* MissedReadingEditor.swift */,
  1262. DD0650F82DCFE7BE004D3B41 /* FastDropAlarmEditor.swift */,
  1263. );
  1264. path = Editors;
  1265. sourceTree = "<group>";
  1266. };
  1267. DDC7E5412DBD8A1600EB1127 /* AlarmEditing */ = {
  1268. isa = PBXGroup;
  1269. children = (
  1270. DDC7E53B2DBD8A1600EB1127 /* Components */,
  1271. DDC7E53F2DBD8A1600EB1127 /* Editors */,
  1272. DDC7E5402DBD8A1600EB1127 /* AlarmEditor.swift */,
  1273. );
  1274. path = AlarmEditing;
  1275. sourceTree = "<group>";
  1276. };
  1277. DDC7E5CD2DC6637800EB1127 /* Storage */ = {
  1278. isa = PBXGroup;
  1279. children = (
  1280. FCC688512489363F00A0279D /* Framework */,
  1281. DDD10F002C510C6B00D76A8E /* ObservableUserDefaults.swift */,
  1282. DDD10F062C529DE800D76A8E /* Observable.swift */,
  1283. DD4878042C7B2C970048F05C /* Storage.swift */,
  1284. DD8316472DE49EE5004467AA /* Storage+Migrate.swift */,
  1285. );
  1286. path = Storage;
  1287. sourceTree = "<group>";
  1288. };
  1289. DDCC3A502DDC5BD4006F1C10 /* DataStructs */ = {
  1290. isa = PBXGroup;
  1291. children = (
  1292. DDCC3A592DDC988F006F1C10 /* CarbSample.swift */,
  1293. 2B9BEC26E4E48EF9B811A372 /* PendingFutureCarb.swift */,
  1294. DDB9FC7E2DDB584500EFAA76 /* BolusEntry.swift */,
  1295. DD5DA27B2DC930D6003D44FC /* GlucoseValue.swift */,
  1296. );
  1297. path = DataStructs;
  1298. sourceTree = "<group>";
  1299. };
  1300. DDCF9A7E2D85FCE6004DF4DD /* Alarm */ = {
  1301. isa = PBXGroup;
  1302. children = (
  1303. DD12D4862E1705E6004E0112 /* AlarmsContainerView.swift */,
  1304. DDDC31CA2E13A7D2009EA0F3 /* AddAlarm */,
  1305. DDCC3A502DDC5BD4006F1C10 /* DataStructs */,
  1306. DDC6CA3B2DD7B9050060EE25 /* AlarmType */,
  1307. DD4AFB602DB68BBC00BB593F /* AlarmListView.swift */,
  1308. DDC7E5412DBD8A1600EB1127 /* AlarmEditing */,
  1309. DD4AFB482DB576C200BB593F /* AlarmSettingsView.swift */,
  1310. DD4AFB3C2DB55D2900BB593F /* AlarmConfiguration.swift */,
  1311. DD02475A2DB2E8CE00FCADF6 /* AlarmCondition */,
  1312. DDCF9A8B2D86005E004DF4DD /* AlarmManager.swift */,
  1313. DDCF9A872D85FD33004DF4DD /* AlarmData.swift */,
  1314. DDCF9A7F2D85FD09004DF4DD /* Alarm.swift */,
  1315. DDBD19952DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift */,
  1316. );
  1317. path = Alarm;
  1318. sourceTree = "<group>";
  1319. };
  1320. DDDC31CA2E13A7D2009EA0F3 /* AddAlarm */ = {
  1321. isa = PBXGroup;
  1322. children = (
  1323. DDDC31CD2E13A811009EA0F3 /* AlarmTile.swift */,
  1324. DDDC31CB2E13A7DF009EA0F3 /* AddAlarmSheet.swift */,
  1325. );
  1326. path = AddAlarm;
  1327. sourceTree = "<group>";
  1328. };
  1329. DDDF6F4A2D479B6A00884336 /* Nightscout */ = {
  1330. isa = PBXGroup;
  1331. children = (
  1332. DD0C0C712C4B000800DBADDF /* TrioNightscoutRemoteView.swift */,
  1333. );
  1334. path = Nightscout;
  1335. sourceTree = "<group>";
  1336. };
  1337. DDEF503D2D32753A00999A5D /* Task */ = {
  1338. isa = PBXGroup;
  1339. children = (
  1340. DD9ACA0F2D34128600415D8A /* Task.swift */,
  1341. DD9ACA0D2D340BFE00415D8A /* AlarmTask.swift */,
  1342. DD9ACA0B2D33BB8400415D8A /* CalendarTask.swift */,
  1343. DD9ACA092D33095500415D8A /* MinAgoTask.swift */,
  1344. DD9ACA072D32F68900415D8A /* BGTask.swift */,
  1345. DD9ACA052D32AF6E00415D8A /* TreatmentsTask.swift */,
  1346. DD9ACA032D32821200415D8A /* DeviceStatusTask.swift */,
  1347. DDEF503E2D32754A00999A5D /* ProfileTask.swift */,
  1348. DDEF503B2D31BE2A00999A5D /* TaskScheduler.swift */,
  1349. );
  1350. path = Task;
  1351. sourceTree = "<group>";
  1352. };
  1353. DDEF503E2D479B8A00884336 /* LoopAPNS */ = {
  1354. isa = PBXGroup;
  1355. children = (
  1356. 657F99E82F0BC81500F732BD /* OTPSecureMessenger.swift */,
  1357. 6584B1002E4A263900135D4D /* TOTPService.swift */,
  1358. DDEF503F2D479B8A00884336 /* LoopAPNSService.swift */,
  1359. DDEF50412D479BAA00884336 /* LoopAPNSCarbsView.swift */,
  1360. DDEF50422D479BBA00884336 /* LoopAPNSBolusView.swift */,
  1361. 654134172E1DC09700BDBE08 /* OverridePresetsView.swift */,
  1362. 654134192E1DC27900BDBE08 /* OverridePresetData.swift */,
  1363. DDEF50442D479BDA00884336 /* LoopAPNSRemoteView.swift */,
  1364. );
  1365. path = LoopAPNS;
  1366. sourceTree = "<group>";
  1367. };
  1368. DDF699972C5AA2E50058A8D9 /* TempTargetPreset */ = {
  1369. isa = PBXGroup;
  1370. children = (
  1371. DDF699982C5AA3060058A8D9 /* TempTargetPresetManager.swift */,
  1372. DDF6999A2C5AA32E0058A8D9 /* TempTargetPreset.swift */,
  1373. );
  1374. path = TempTargetPreset;
  1375. sourceTree = "<group>";
  1376. };
  1377. DDF6999C2C5AAA4C0058A8D9 /* Views */ = {
  1378. isa = PBXGroup;
  1379. children = (
  1380. 656F8C0F2E49F36F0008DC1D /* QRCodeDisplayView.swift */,
  1381. DDE75D2C2DE71401007C1FC1 /* TogglableSecureInput.swift */,
  1382. DDE75D222DE5E505007C1FC1 /* Glyph.swift */,
  1383. DD8316492DE4C504004467AA /* SettingsStepperRow.swift */,
  1384. DD8316432DE47CA9004467AA /* BGPicker.swift */,
  1385. DDF6999D2C5AAA640058A8D9 /* ErrorMessageView.swift */,
  1386. DD16AF0E2C99592F00FB655A /* HKQuantityInputView.swift */,
  1387. DD16AF102C997B4600FB655A /* LoadingButtonView.swift */,
  1388. DDE75D262DE5E539007C1FC1 /* ActionRow.swift */,
  1389. 654132E62E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift */,
  1390. DDE75D282DE5E56C007C1FC1 /* LinkRow.swift */,
  1391. DDE75D2A2DE5E613007C1FC1 /* NavigationRow.swift */,
  1392. );
  1393. path = Views;
  1394. sourceTree = "<group>";
  1395. };
  1396. DDFF3D792D140F1800BF9D9E /* BackgroundRefresh */ = {
  1397. isa = PBXGroup;
  1398. children = (
  1399. DDFF3D7A2D140F4200BF9D9E /* BT */,
  1400. DDFF3D842D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift */,
  1401. DDFF3D862D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift */,
  1402. DDFF3D882D1429AB00BF9D9E /* BackgroundRefreshType.swift */,
  1403. );
  1404. path = BackgroundRefresh;
  1405. sourceTree = "<group>";
  1406. };
  1407. DDFF3D7A2D140F4200BF9D9E /* BT */ = {
  1408. isa = PBXGroup;
  1409. children = (
  1410. DDAD16302D2EF98C0084BE10 /* Devices */,
  1411. DD58171D2D299FC50041FB98 /* BluetoothDeviceDelegate.swift */,
  1412. DD58171B2D299F8D0041FB98 /* BluetoothDevice.swift */,
  1413. DD5817162D2710E50041FB98 /* BLEDeviceSelectionView.swift */,
  1414. DDFF3D7E2D1414A200BF9D9E /* BLEDevice.swift */,
  1415. DD5334AF2D1447C500CDD6EA /* BLEManager.swift */,
  1416. );
  1417. path = BT;
  1418. sourceTree = "<group>";
  1419. };
  1420. FC16A97624995FEE003D6245 /* Application */ = {
  1421. isa = PBXGroup;
  1422. children = (
  1423. FC97881F2485969B00A7906C /* Main.storyboard */,
  1424. FC9788172485969B00A7906C /* AppDelegate.swift */,
  1425. FC9788192485969B00A7906C /* SceneDelegate.swift */,
  1426. FC9788272485969C00A7906C /* LaunchScreen.storyboard */,
  1427. );
  1428. path = Application;
  1429. sourceTree = "<group>";
  1430. };
  1431. FC16A9782499657E003D6245 /* Controllers */ = {
  1432. isa = PBXGroup;
  1433. children = (
  1434. DD7E19802ACDA0EA00DBD158 /* Nightscout */,
  1435. FC7CE589248ABEA3001F83B8 /* AlarmSound.swift */,
  1436. FC16A97924996673003D6245 /* NightScout.swift */,
  1437. FC16A97C24996747003D6245 /* SpeakBG.swift */,
  1438. FC16A97E249969E2003D6245 /* Graphs.swift */,
  1439. FC1BDD2A24A22650001B652C /* Stats.swift */,
  1440. FC1BDD2C24A23204001B652C /* MainViewController+updateStats.swift */,
  1441. FCA2DDE52501095000254A8C /* Timers.swift */,
  1442. DD608A0B2C27415C00F91132 /* BackgroundAlertManager.swift */,
  1443. 65E8A2852E44B0300065037B /* VolumeButtonHandler.swift */,
  1444. );
  1445. path = Controllers;
  1446. sourceTree = "<group>";
  1447. };
  1448. FC7CE4A8248ABE0D001F83B8 /* Alarm Sounds */ = {
  1449. isa = PBXGroup;
  1450. children = (
  1451. FC7CE58C248ABEF1001F83B8 /* alarm-notification.m4a */,
  1452. FC7CE58B248ABEF1001F83B8 /* alarm.mp3 */,
  1453. FC7CE4CE248ABE2F001F83B8 /* 1-millisecond-of-silence.mp3 */,
  1454. FC7CE4C9248ABE2F001F83B8 /* 20ms-of-silence.caf */,
  1455. FC7CE4EC248ABE33001F83B8 /* 500ms-of-silence.mp3 */,
  1456. FC7CE507248ABE35001F83B8 /* Alarm_Buzzer.caf */,
  1457. FC7CE4CB248ABE2F001F83B8 /* Alarm_Clock.caf */,
  1458. FC7CE50C248ABE36001F83B8 /* Alert_Tone_Busy.caf */,
  1459. FC7CE4EB248ABE33001F83B8 /* Alert_Tone_Ringtone_1.caf */,
  1460. FC7CE4B8248ABE2C001F83B8 /* Alert_Tone_Ringtone_2.caf */,
  1461. FC7CE4D3248ABE30001F83B8 /* Alien_Siren.caf */,
  1462. FC7CE4FF248ABE35001F83B8 /* Ambulance.caf */,
  1463. FC7CE4DE248ABE32001F83B8 /* Analog_Watch_Alarm.caf */,
  1464. FC7CE4ED248ABE33001F83B8 /* Big_Clock_Ticking.caf */,
  1465. FC7CE4B1248ABE2C001F83B8 /* Burglar_Alarm_Siren_1.caf */,
  1466. FC7CE4F1248ABE33001F83B8 /* Burglar_Alarm_Siren_2.caf */,
  1467. FC7CE4C6248ABE2E001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf */,
  1468. FC7CE4FC248ABE34001F83B8 /* Cartoon_Ascend_Then_Descend.caf */,
  1469. FC7CE4B9248ABE2D001F83B8 /* Cartoon_Bounce_To_Ceiling.caf */,
  1470. FC7CE4CC248ABE2F001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf */,
  1471. FC7CE508248ABE35001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf */,
  1472. FC7CE4E0248ABE32001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf */,
  1473. FC7CE4FB248ABE34001F83B8 /* Cartoon_Siren.caf */,
  1474. FC7CE4B0248ABE2B001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf */,
  1475. FC7CE4D7248ABE31001F83B8 /* Cartoon_Uh_Oh.caf */,
  1476. FC7CE4BF248ABE2D001F83B8 /* Cartoon_Villain_Horns.caf */,
  1477. FC7CE4EF248ABE33001F83B8 /* Cell_Phone_Ring_Tone.caf */,
  1478. FC7CE505248ABE35001F83B8 /* Chimes_Glassy.caf */,
  1479. FC7CE4AF248ABE2B001F83B8 /* Computer_Magic.caf */,
  1480. FC7CE4F4248ABE34001F83B8 /* CSFX-2_Alarm.caf */,
  1481. FC7CE4BD248ABE2D001F83B8 /* Cuckoo_Clock.caf */,
  1482. FC7CE4C1248ABE2E001F83B8 /* Dhol_Shuffleloop.caf */,
  1483. FC7CE4D2248ABE30001F83B8 /* Discreet.caf */,
  1484. FC7CE4CD248ABE2F001F83B8 /* Early_Sunrise.caf */,
  1485. FC7CE4B2248ABE2C001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf */,
  1486. FC7CE4DD248ABE32001F83B8 /* Emergency_Alarm_Siren.caf */,
  1487. FC7CE50B248ABE36001F83B8 /* Emergency_Alarm.caf */,
  1488. FC7CE4C4248ABE2E001F83B8 /* Ending_Reached.caf */,
  1489. FC7CE4C7248ABE2E001F83B8 /* Fly.caf */,
  1490. FC7CE500248ABE35001F83B8 /* Ghost_Hover.caf */,
  1491. FC7CE50A248ABE36001F83B8 /* Good_Morning.caf */,
  1492. FC7CE4DF248ABE32001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf */,
  1493. FC7CE4F7248ABE34001F83B8 /* In_A_Hurry.caf */,
  1494. FC7CE4D6248ABE31001F83B8 /* Indeed.caf */,
  1495. FC7CE501248ABE35001F83B8 /* Insistently.caf */,
  1496. FC7CE4AB248ABE2B001F83B8 /* Jingle_All_The_Way.caf */,
  1497. FC7CE4BA248ABE2D001F83B8 /* Laser_Shoot.caf */,
  1498. FC7CE4BC248ABE2D001F83B8 /* Machine_Charge.caf */,
  1499. FC7CE4DA248ABE31001F83B8 /* Magical_Twinkle.caf */,
  1500. FC7CE504248ABE35001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf */,
  1501. FC7CE4E2248ABE32001F83B8 /* Marimba_Descend.caf */,
  1502. FC7CE4B5248ABE2C001F83B8 /* Marimba_Flutter_or_Shake.caf */,
  1503. FC7CE517248ABE37001F83B8 /* Martian_Gun.caf */,
  1504. FC7CE4EA248ABE33001F83B8 /* Martian_Scanner.caf */,
  1505. FC7CE4EE248ABE33001F83B8 /* Metallic.caf */,
  1506. FC7CE4BB248ABE2D001F83B8 /* Nightguard.caf */,
  1507. FC7CE4AE248ABE2B001F83B8 /* Not_Kiddin.caf */,
  1508. FC7CE4C8248ABE2E001F83B8 /* Open_Your_Eyes_And_See.caf */,
  1509. FC7CE4F8248ABE34001F83B8 /* Orchestral_Horns.caf */,
  1510. FC7CE515248ABE37001F83B8 /* Oringz.caf */,
  1511. FC7CE4D4248ABE30001F83B8 /* Pager_Beeps.caf */,
  1512. FC7CE4CA248ABE2F001F83B8 /* Remembers_Me_Of_Asia.caf */,
  1513. FC7CE4AA248ABE2B001F83B8 /* Rise_And_Shine.caf */,
  1514. FC7CE4E9248ABE33001F83B8 /* Rush.caf */,
  1515. FC7CE4D8248ABE31001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf */,
  1516. FC7CE4D5248ABE31001F83B8 /* Sci-Fi_Alarm_Loop_1.caf */,
  1517. FC7CE514248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_2.caf */,
  1518. FC7CE4B7248ABE2C001F83B8 /* Sci-Fi_Alarm_Loop_3.caf */,
  1519. FC7CE510248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_4.caf */,
  1520. FC7CE511248ABE36001F83B8 /* Sci-Fi_Alarm.caf */,
  1521. FC7CE4C2248ABE2E001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf */,
  1522. FC7CE4E7248ABE33001F83B8 /* Sci-Fi_Console_Alarm.caf */,
  1523. FC7CE4E4248ABE32001F83B8 /* Sci-Fi_Eerie_Alarm.caf */,
  1524. FC7CE4F9248ABE34001F83B8 /* Sci-Fi_Engine_Shut_Down.caf */,
  1525. FC7CE4E6248ABE32001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf */,
  1526. FC7CE4F6248ABE34001F83B8 /* Sci-Fi_Spaceship_Message.caf */,
  1527. FC7CE4AD248ABE2B001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf */,
  1528. FC7CE4B6248ABE2C001F83B8 /* Sci-Fi_Warning.caf */,
  1529. FC7CE4B3248ABE2C001F83B8 /* Signature_Corporate.caf */,
  1530. FC7CE4FA248ABE34001F83B8 /* silence-1sec.mp3 */,
  1531. FC7CE4A9248ABE2B001F83B8 /* Siri_Alert_Calibration_Needed.caf */,
  1532. FC7CE4DC248ABE32001F83B8 /* Siri_Alert_Device_Muted.caf */,
  1533. FC7CE4D0248ABE30001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf */,
  1534. FC7CE4E5248ABE32001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf */,
  1535. FC7CE4E1248ABE32001F83B8 /* Siri_Alert_High_Glucose.caf */,
  1536. FC7CE4FE248ABE35001F83B8 /* Siri_Alert_Low_Glucose.caf */,
  1537. FC7CE509248ABE36001F83B8 /* Siri_Alert_Missed_Readings.caf */,
  1538. FC7CE4F0248ABE33001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf */,
  1539. FC7CE4DB248ABE31001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf */,
  1540. FC7CE4E3248ABE32001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf */,
  1541. FC7CE503248ABE35001F83B8 /* Siri_Calibration_Needed.caf */,
  1542. FC7CE506248ABE35001F83B8 /* Siri_Device_Muted.caf */,
  1543. FC7CE516248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf */,
  1544. FC7CE4C0248ABE2D001F83B8 /* Siri_Glucose_Rising_Fast.caf */,
  1545. FC7CE4C3248ABE2E001F83B8 /* Siri_High_Glucose.caf */,
  1546. FC7CE4F5248ABE34001F83B8 /* Siri_Low_Glucose.caf */,
  1547. FC7CE4C5248ABE2E001F83B8 /* Siri_Missed_Readings.caf */,
  1548. FC7CE513248ABE36001F83B8 /* Siri_Transmitter_Battery_Low.caf */,
  1549. FC7CE4BE248ABE2D001F83B8 /* Siri_Urgent_High_Glucose.caf */,
  1550. FC7CE512248ABE36001F83B8 /* Siri_Urgent_Low_Glucose.caf */,
  1551. FC7CE4E8248ABE33001F83B8 /* Soft_Marimba_Pad_Positive.caf */,
  1552. FC7CE4CF248ABE30001F83B8 /* Soft_Warm_Airy_Optimistic.caf */,
  1553. FC7CE4F3248ABE34001F83B8 /* Soft_Warm_Airy_Reassuring.caf */,
  1554. FC7CE4D9248ABE31001F83B8 /* Store_Door_Chime.caf */,
  1555. FC7CE502248ABE35001F83B8 /* Sunny.caf */,
  1556. FC7CE4AC248ABE2B001F83B8 /* Thunder_Sound_FX.caf */,
  1557. FC7CE4FD248ABE35001F83B8 /* Time_Has_Come.caf */,
  1558. FC7CE50D248ABE36001F83B8 /* Tornado_Siren.caf */,
  1559. FC7CE4D1248ABE30001F83B8 /* Two_Turtle_Doves.caf */,
  1560. FC7CE50F248ABE36001F83B8 /* Unpaved.caf */,
  1561. FC7CE4B4248ABE2C001F83B8 /* Wake_Up_Will_You.caf */,
  1562. FC7CE50E248ABE36001F83B8 /* Win_Gain.caf */,
  1563. FC7CE4F2248ABE34001F83B8 /* Wrong_Answer.caf */,
  1564. );
  1565. path = "Alarm Sounds";
  1566. sourceTree = "<group>";
  1567. };
  1568. FC7CE59A248D334B001F83B8 /* Resources */ = {
  1569. isa = PBXGroup;
  1570. children = (
  1571. FCC6885D24896A6C00A0279D /* silence.mp3 */,
  1572. FCC6885B2489559400A0279D /* blank.wav */,
  1573. FC7CE4A8248ABE0D001F83B8 /* Alarm Sounds */,
  1574. FC9788252485969C00A7906C /* Assets.xcassets */,
  1575. FC7CE59B248D33A9001F83B8 /* dragbar.png */,
  1576. );
  1577. path = Resources;
  1578. sourceTree = "<group>";
  1579. };
  1580. FC8DEEE32485D1680075863F /* LoopFollow */ = {
  1581. isa = PBXGroup;
  1582. children = (
  1583. 379BECAF2F65DA4B0069DC62 /* LiveActivitySettingsView.swift */,
  1584. 376310762F5CD65100656488 /* LiveActivity */,
  1585. 6589CC612E9E7D1600BB18FE /* Settings */,
  1586. 65AC26702ED245DF00421360 /* Treatments */,
  1587. 65AC25F52ECFD5E800421360 /* Stats */,
  1588. DDCF9A7E2D85FCE6004DF4DD /* Alarm */,
  1589. FC16A97624995FEE003D6245 /* Application */,
  1590. DDFF3D792D140F1800BF9D9E /* BackgroundRefresh */,
  1591. DD50C74D2D0828250057AE6F /* Contact */,
  1592. FC16A9782499657E003D6245 /* Controllers */,
  1593. DD98F54224BCEF190007425A /* Extensions */,
  1594. FCC688542489367300A0279D /* Helpers */,
  1595. FC8DEEE62485D1ED0075863F /* Info.plist */,
  1596. DD5334252C61667700062F9D /* InfoDisplaySettings */,
  1597. DD13BC732C3FD60E0062313B /* InfoTable */,
  1598. DD9ED0C62D355225000D2A63 /* Log */,
  1599. FCC688702489A57C00A0279D /* Loop Follow.entitlements */,
  1600. DD0C0C692C4852A100DBADDF /* Metric */,
  1601. DD2C2E4D2D3B8ACF006413A5 /* Nightscout */,
  1602. DD0C0C6E2C4AFFB800DBADDF /* Remote */,
  1603. FC7CE59A248D334B001F83B8 /* Resources */,
  1604. DDC7E5142DBCE1B900EB1127 /* Snoozer */,
  1605. DDC7E5CD2DC6637800EB1127 /* Storage */,
  1606. DDEF503D2D32753A00999A5D /* Task */,
  1607. FCC68871248A736700A0279D /* ViewControllers */,
  1608. );
  1609. path = LoopFollow;
  1610. sourceTree = "<group>";
  1611. };
  1612. FC97880B2485969B00A7906C = {
  1613. isa = PBXGroup;
  1614. children = (
  1615. 379BECA92F6588300069DC62 /* RestartLiveActivityIntent.swift */,
  1616. 374DAACA2F5B924B00BB663B /* LoopFollowLAExtensionExtension.entitlements */,
  1617. DDF2C0132BEFD468007A20E6 /* blacklisted-versions.json */,
  1618. DDB0AF542BB1B24A00AFA48B /* BuildDetails.plist */,
  1619. DDB0AF4F2BB1A81F00AFA48B /* Scripts */,
  1620. DDCFCAF12B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig */,
  1621. FC3AE7B3249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld */,
  1622. FC5A5C3C2497B229009C550E /* Config.xcconfig */,
  1623. FC8DEEE32485D1680075863F /* LoopFollow */,
  1624. DDCC3AD72DDE1790006F1C10 /* Tests */,
  1625. 37A4BDDE2F5B6B4A00EEB289 /* LoopFollowLAExtension */,
  1626. FC9788152485969B00A7906C /* Products */,
  1627. 8E32230C453C93FDCE59C2B9 /* Pods */,
  1628. 6A5880E0B811AF443B05AB02 /* Frameworks */,
  1629. );
  1630. sourceTree = "<group>";
  1631. };
  1632. FC9788152485969B00A7906C /* Products */ = {
  1633. isa = PBXGroup;
  1634. children = (
  1635. FC9788142485969B00A7906C /* Loop Follow.app */,
  1636. DDCC3AD62DDE1790006F1C10 /* Tests.xctest */,
  1637. 37A4BDD92F5B6B4A00EEB289 /* LoopFollowLAExtensionExtension.appex */,
  1638. );
  1639. name = Products;
  1640. sourceTree = "<group>";
  1641. };
  1642. FCC688512489363F00A0279D /* Framework */ = {
  1643. isa = PBXGroup;
  1644. children = (
  1645. FCC6886624898F8000A0279D /* UserDefaultsValue.swift */,
  1646. FCC6886824898FB100A0279D /* UserDefaultsValueGroups.swift */,
  1647. DDD10EFE2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift */,
  1648. DDD10F042C529DA200D76A8E /* ObservableValue.swift */,
  1649. DD4878022C7B297E0048F05C /* StorageValue.swift */,
  1650. DD16AF0C2C98485400FB655A /* SecureStorageValue.swift */,
  1651. );
  1652. path = Framework;
  1653. sourceTree = "<group>";
  1654. };
  1655. FCC688542489367300A0279D /* Helpers */ = {
  1656. isa = PBXGroup;
  1657. children = (
  1658. DD026E5A2EA2C9C300A39CB5 /* InsulinFormatter.swift */,
  1659. DD026E582EA2C8A200A39CB5 /* InsulinPrecisionManager.swift */,
  1660. 656F8C112E49F3780008DC1D /* QRCodeGenerator.swift */,
  1661. DD4A407D2E6AFEE6007B318B /* AuthService.swift */,
  1662. DD1D52BF2E4C100000000001 /* AppearanceMode.swift */,
  1663. DD1D52B82E1EB5DC00432050 /* TabPosition.swift */,
  1664. DD83164B2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift */,
  1665. DD4AFB3A2DB55CB600BB593F /* TimeOfDay.swift */,
  1666. DD7B0D432D730A320063DCB6 /* CycleHelper.swift */,
  1667. DDF6999C2C5AAA4C0058A8D9 /* Views */,
  1668. FCC6886E2489A53800A0279D /* AppConstants.swift */,
  1669. FCC6886A24898FD800A0279D /* ObservationToken.swift */,
  1670. FCC6886C2489909D00A0279D /* AnyConvertible.swift */,
  1671. FCC688592489554800A0279D /* BackgroundTaskAudio.swift */,
  1672. A8CA8BE0B3D247408FE088B4 /* BackgroundRefreshManager.swift */,
  1673. FCFEEC9F2488157B00402A7F /* Chart.swift */,
  1674. FCC0FAC124922A22003E610E /* DictionaryKeyPath.swift */,
  1675. FC16A98024996C07003D6245 /* DateTime.swift */,
  1676. 654132E92E19F24800BDBE08 /* TOTPGenerator.swift */,
  1677. FCE537BB249A4D7D00F80BF8 /* carbBolusArrays.swift */,
  1678. FCEF87AA24A1417900AE6FA0 /* Localizer.swift */,
  1679. FC1BDD2E24A232A3001B652C /* DataStructs.swift */,
  1680. FCD2A27C24C9D044009F7B7B /* Globals.swift */,
  1681. FC8589BE252B54F500C8FC73 /* Mobileprovision.swift */,
  1682. DD07B5C829E2F9C400C6A635 /* NightscoutUtils.swift */,
  1683. DDB0AF512BB1A8BE00AFA48B /* BuildDetails.swift */,
  1684. DD91E4DC2BDEC3F8002D9E97 /* GlucoseConversion.swift */,
  1685. DDF2C00F2BEFA991007A20E6 /* GitHubService.swift */,
  1686. DDF2C0112BEFB733007A20E6 /* AppVersionManager.swift */,
  1687. DDF699952C5582290058A8D9 /* TextFieldWithToolBar.swift */,
  1688. DDC7E5372DBD887400EB1127 /* isOnPhoneCall.swift */,
  1689. DDDC01DC2E244B3100D9975C /* JWTManager.swift */,
  1690. 6541341B2E1DC28000BDBE08 /* DateExtensions.swift */,
  1691. );
  1692. path = Helpers;
  1693. sourceTree = "<group>";
  1694. };
  1695. FCC68871248A736700A0279D /* ViewControllers */ = {
  1696. isa = PBXGroup;
  1697. children = (
  1698. DD1D52BA2E1EB60B00432050 /* MoreMenuViewController.swift */,
  1699. DD12D4842E1705D9004E0112 /* AlarmViewController.swift */,
  1700. FC97881B2485969B00A7906C /* MainViewController.swift */,
  1701. FC97881D2485969B00A7906C /* NightScoutViewController.swift */,
  1702. FCFEECA1248857A600402A7F /* SettingsViewController.swift */,
  1703. );
  1704. path = ViewControllers;
  1705. sourceTree = "<group>";
  1706. };
  1707. /* End PBXGroup section */
  1708. /* Begin PBXNativeTarget section */
  1709. 37A4BDD82F5B6B4A00EEB289 /* LoopFollowLAExtensionExtension */ = {
  1710. isa = PBXNativeTarget;
  1711. buildConfigurationList = 37A4BDEA2F5B6B4C00EEB289 /* Build configuration list for PBXNativeTarget "LoopFollowLAExtensionExtension" */;
  1712. buildPhases = (
  1713. 37A4BDD52F5B6B4A00EEB289 /* Sources */,
  1714. 37A4BDD62F5B6B4A00EEB289 /* Frameworks */,
  1715. 37A4BDD72F5B6B4A00EEB289 /* Resources */,
  1716. );
  1717. buildRules = (
  1718. );
  1719. dependencies = (
  1720. );
  1721. fileSystemSynchronizedGroups = (
  1722. 37A4BDDE2F5B6B4A00EEB289 /* LoopFollowLAExtension */,
  1723. );
  1724. name = LoopFollowLAExtensionExtension;
  1725. packageProductDependencies = (
  1726. );
  1727. productName = LoopFollowLAExtensionExtension;
  1728. productReference = 37A4BDD92F5B6B4A00EEB289 /* LoopFollowLAExtensionExtension.appex */;
  1729. productType = "com.apple.product-type.app-extension";
  1730. };
  1731. DDCC3AD52DDE1790006F1C10 /* Tests */ = {
  1732. isa = PBXNativeTarget;
  1733. buildConfigurationList = DDCC3ADC2DDE1790006F1C10 /* Build configuration list for PBXNativeTarget "Tests" */;
  1734. buildPhases = (
  1735. DDCC3AD22DDE1790006F1C10 /* Sources */,
  1736. DDCC3AD32DDE1790006F1C10 /* Frameworks */,
  1737. DDCC3AD42DDE1790006F1C10 /* Resources */,
  1738. );
  1739. buildRules = (
  1740. );
  1741. dependencies = (
  1742. DDCC3ADB2DDE1790006F1C10 /* PBXTargetDependency */,
  1743. );
  1744. fileSystemSynchronizedGroups = (
  1745. DDCC3AD72DDE1790006F1C10 /* Tests */,
  1746. );
  1747. name = Tests;
  1748. packageProductDependencies = (
  1749. );
  1750. productName = Tests;
  1751. productReference = DDCC3AD62DDE1790006F1C10 /* Tests.xctest */;
  1752. productType = "com.apple.product-type.bundle.unit-test";
  1753. };
  1754. FC9788132485969B00A7906C /* LoopFollow */ = {
  1755. isa = PBXNativeTarget;
  1756. buildConfigurationList = FC97882D2485969C00A7906C /* Build configuration list for PBXNativeTarget "LoopFollow" */;
  1757. buildPhases = (
  1758. DD7F4BEA2DD48B9600D449E9 /* Swiftformat */,
  1759. B038D39450A1F9A97D2B8BA4 /* [CP] Check Pods Manifest.lock */,
  1760. FC9788102485969B00A7906C /* Sources */,
  1761. FC9788112485969B00A7906C /* Frameworks */,
  1762. FC9788122485969B00A7906C /* Resources */,
  1763. 04DA71CCA0280FA5FA2DF7A6 /* [CP] Embed Pods Frameworks */,
  1764. DDB0AF532BB1AA0900AFA48B /* Capture Build Details */,
  1765. 37A4BDED2F5B6B4C00EEB289 /* Embed Foundation Extensions */,
  1766. );
  1767. buildRules = (
  1768. );
  1769. dependencies = (
  1770. 37A4BDE72F5B6B4C00EEB289 /* PBXTargetDependency */,
  1771. );
  1772. fileSystemSynchronizedGroups = (
  1773. 65AC25F52ECFD5E800421360 /* Stats */,
  1774. 65AC26702ED245DF00421360 /* Treatments */,
  1775. );
  1776. name = LoopFollow;
  1777. packageProductDependencies = (
  1778. );
  1779. productName = LoopFollow;
  1780. productReference = FC9788142485969B00A7906C /* Loop Follow.app */;
  1781. productType = "com.apple.product-type.application";
  1782. };
  1783. /* End PBXNativeTarget section */
  1784. /* Begin PBXProject section */
  1785. FC97880C2485969B00A7906C /* Project object */ = {
  1786. isa = PBXProject;
  1787. attributes = {
  1788. LastSwiftUpdateCheck = 2620;
  1789. LastUpgradeCheck = 1140;
  1790. ORGANIZATIONNAME = "Jon Fawcett";
  1791. TargetAttributes = {
  1792. 37A4BDD82F5B6B4A00EEB289 = {
  1793. CreatedOnToolsVersion = 26.2;
  1794. };
  1795. DDCC3AD52DDE1790006F1C10 = {
  1796. CreatedOnToolsVersion = 16.3;
  1797. TestTargetID = FC9788132485969B00A7906C;
  1798. };
  1799. FC9788132485969B00A7906C = {
  1800. CreatedOnToolsVersion = 11.4.1;
  1801. };
  1802. };
  1803. };
  1804. buildConfigurationList = FC97880F2485969B00A7906C /* Build configuration list for PBXProject "LoopFollow" */;
  1805. compatibilityVersion = "Xcode 9.3";
  1806. developmentRegion = en;
  1807. hasScannedForEncodings = 0;
  1808. knownRegions = (
  1809. en,
  1810. Base,
  1811. );
  1812. mainGroup = FC97880B2485969B00A7906C;
  1813. packageReferences = (
  1814. );
  1815. productRefGroup = FC9788152485969B00A7906C /* Products */;
  1816. projectDirPath = "";
  1817. projectRoot = "";
  1818. targets = (
  1819. FC9788132485969B00A7906C /* LoopFollow */,
  1820. DDCC3AD52DDE1790006F1C10 /* Tests */,
  1821. 37A4BDD82F5B6B4A00EEB289 /* LoopFollowLAExtensionExtension */,
  1822. );
  1823. };
  1824. /* End PBXProject section */
  1825. /* Begin PBXResourcesBuildPhase section */
  1826. 37A4BDD72F5B6B4A00EEB289 /* Resources */ = {
  1827. isa = PBXResourcesBuildPhase;
  1828. buildActionMask = 2147483647;
  1829. files = (
  1830. );
  1831. runOnlyForDeploymentPostprocessing = 0;
  1832. };
  1833. DDCC3AD42DDE1790006F1C10 /* Resources */ = {
  1834. isa = PBXResourcesBuildPhase;
  1835. buildActionMask = 2147483647;
  1836. files = (
  1837. );
  1838. runOnlyForDeploymentPostprocessing = 0;
  1839. };
  1840. FC9788122485969B00A7906C /* Resources */ = {
  1841. isa = PBXResourcesBuildPhase;
  1842. buildActionMask = 2147483647;
  1843. files = (
  1844. FC7CE51C248ABE37001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf in Resources */,
  1845. FC7CE526248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_3.caf in Resources */,
  1846. FC7CE54C248ABE37001F83B8 /* Emergency_Alarm_Siren.caf in Resources */,
  1847. FC7CE559248ABE37001F83B8 /* Martian_Scanner.caf in Resources */,
  1848. FC7CE524248ABE37001F83B8 /* Marimba_Flutter_or_Shake.caf in Resources */,
  1849. FC7CE52D248ABE37001F83B8 /* Siri_Urgent_High_Glucose.caf in Resources */,
  1850. FC7CE573248ABE37001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf in Resources */,
  1851. FC7CE51F248ABE37001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf in Resources */,
  1852. FC7CE53B248ABE37001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf in Resources */,
  1853. FC7CE547248ABE37001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf in Resources */,
  1854. FC7CE57F248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_4.caf in Resources */,
  1855. FC7CE576248ABE37001F83B8 /* Alarm_Buzzer.caf in Resources */,
  1856. FC7CE51D248ABE37001F83B8 /* Not_Kiddin.caf in Resources */,
  1857. FCC6885E24896A6C00A0279D /* silence.mp3 in Resources */,
  1858. FC7CE570248ABE37001F83B8 /* Insistently.caf in Resources */,
  1859. FC7CE521248ABE37001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf in Resources */,
  1860. FC7CE52C248ABE37001F83B8 /* Cuckoo_Clock.caf in Resources */,
  1861. FC7CE53D248ABE37001F83B8 /* 1-millisecond-of-silence.mp3 in Resources */,
  1862. FC7CE585248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf in Resources */,
  1863. FC7CE563248ABE37001F83B8 /* CSFX-2_Alarm.caf in Resources */,
  1864. FC7CE58D248ABEF2001F83B8 /* alarm.mp3 in Resources */,
  1865. FC7CE534248ABE37001F83B8 /* Siri_Missed_Readings.caf in Resources */,
  1866. FC7CE548248ABE37001F83B8 /* Store_Door_Chime.caf in Resources */,
  1867. FC7CE584248ABE37001F83B8 /* Oringz.caf in Resources */,
  1868. FC7CE56D248ABE37001F83B8 /* Siri_Alert_Low_Glucose.caf in Resources */,
  1869. FC7CE53F248ABE37001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf in Resources */,
  1870. FC7CE561248ABE37001F83B8 /* Wrong_Answer.caf in Resources */,
  1871. FCC6885C2489559400A0279D /* blank.wav in Resources */,
  1872. DDB0AF552BB1B24A00AFA48B /* BuildDetails.plist in Resources */,
  1873. FC7CE528248ABE37001F83B8 /* Cartoon_Bounce_To_Ceiling.caf in Resources */,
  1874. FC7CE57B248ABE37001F83B8 /* Alert_Tone_Busy.caf in Resources */,
  1875. FC7CE51B248ABE37001F83B8 /* Thunder_Sound_FX.caf in Resources */,
  1876. FC7CE57D248ABE37001F83B8 /* Win_Gain.caf in Resources */,
  1877. FC7CE55F248ABE37001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf in Resources */,
  1878. FC9788292485969C00A7906C /* LaunchScreen.storyboard in Resources */,
  1879. FC7CE583248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_2.caf in Resources */,
  1880. FC7CE549248ABE37001F83B8 /* Magical_Twinkle.caf in Resources */,
  1881. FC7CE540248ABE37001F83B8 /* Two_Turtle_Doves.caf in Resources */,
  1882. FC7CE545248ABE37001F83B8 /* Indeed.caf in Resources */,
  1883. FC7CE564248ABE37001F83B8 /* Siri_Low_Glucose.caf in Resources */,
  1884. FC7CE55D248ABE37001F83B8 /* Metallic.caf in Resources */,
  1885. FC7CE568248ABE37001F83B8 /* Sci-Fi_Engine_Shut_Down.caf in Resources */,
  1886. FC7CE580248ABE37001F83B8 /* Sci-Fi_Alarm.caf in Resources */,
  1887. DDF2C0142BEFD468007A20E6 /* blacklisted-versions.json in Resources */,
  1888. FC7CE533248ABE37001F83B8 /* Ending_Reached.caf in Resources */,
  1889. FC7CE558248ABE37001F83B8 /* Rush.caf in Resources */,
  1890. FC7CE52A248ABE37001F83B8 /* Nightguard.caf in Resources */,
  1891. FC7CE569248ABE37001F83B8 /* silence-1sec.mp3 in Resources */,
  1892. FC7CE519248ABE37001F83B8 /* Rise_And_Shine.caf in Resources */,
  1893. FC7CE565248ABE37001F83B8 /* Sci-Fi_Spaceship_Message.caf in Resources */,
  1894. FC7CE52B248ABE37001F83B8 /* Machine_Charge.caf in Resources */,
  1895. FC7CE536248ABE37001F83B8 /* Fly.caf in Resources */,
  1896. FC7CE567248ABE37001F83B8 /* Orchestral_Horns.caf in Resources */,
  1897. FC7CE544248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_1.caf in Resources */,
  1898. FC7CE551248ABE37001F83B8 /* Marimba_Descend.caf in Resources */,
  1899. FC7CE520248ABE37001F83B8 /* Burglar_Alarm_Siren_1.caf in Resources */,
  1900. FC7CE54D248ABE37001F83B8 /* Analog_Watch_Alarm.caf in Resources */,
  1901. FC7CE530248ABE37001F83B8 /* Dhol_Shuffleloop.caf in Resources */,
  1902. FC7CE59C248D33A9001F83B8 /* dragbar.png in Resources */,
  1903. FC7CE56C248ABE37001F83B8 /* Time_Has_Come.caf in Resources */,
  1904. FC7CE574248ABE37001F83B8 /* Chimes_Glassy.caf in Resources */,
  1905. FC7CE55A248ABE37001F83B8 /* Alert_Tone_Ringtone_1.caf in Resources */,
  1906. FC7CE543248ABE37001F83B8 /* Pager_Beeps.caf in Resources */,
  1907. FC7CE56F248ABE37001F83B8 /* Ghost_Hover.caf in Resources */,
  1908. FC7CE537248ABE37001F83B8 /* Open_Your_Eyes_And_See.caf in Resources */,
  1909. FC7CE56E248ABE37001F83B8 /* Ambulance.caf in Resources */,
  1910. FC7CE571248ABE37001F83B8 /* Sunny.caf in Resources */,
  1911. FC7CE546248ABE37001F83B8 /* Cartoon_Uh_Oh.caf in Resources */,
  1912. FC9788262485969C00A7906C /* Assets.xcassets in Resources */,
  1913. FC7CE557248ABE37001F83B8 /* Soft_Marimba_Pad_Positive.caf in Resources */,
  1914. FC7CE54F248ABE37001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf in Resources */,
  1915. FC7CE562248ABE37001F83B8 /* Soft_Warm_Airy_Reassuring.caf in Resources */,
  1916. FC7CE54B248ABE37001F83B8 /* Siri_Alert_Device_Muted.caf in Resources */,
  1917. FC7CE566248ABE37001F83B8 /* In_A_Hurry.caf in Resources */,
  1918. FC7CE531248ABE37001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf in Resources */,
  1919. FC7CE532248ABE37001F83B8 /* Siri_High_Glucose.caf in Resources */,
  1920. FC7CE555248ABE37001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf in Resources */,
  1921. FC7CE518248ABE37001F83B8 /* Siri_Alert_Calibration_Needed.caf in Resources */,
  1922. FC5A5C3D2497B229009C550E /* Config.xcconfig in Resources */,
  1923. FC7CE550248ABE37001F83B8 /* Siri_Alert_High_Glucose.caf in Resources */,
  1924. DDCFCAF22B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig in Resources */,
  1925. FC7CE525248ABE37001F83B8 /* Sci-Fi_Warning.caf in Resources */,
  1926. FC7CE556248ABE37001F83B8 /* Sci-Fi_Console_Alarm.caf in Resources */,
  1927. FC7CE55C248ABE37001F83B8 /* Big_Clock_Ticking.caf in Resources */,
  1928. FC7CE57C248ABE37001F83B8 /* Tornado_Siren.caf in Resources */,
  1929. FC7CE57E248ABE37001F83B8 /* Unpaved.caf in Resources */,
  1930. FC7CE539248ABE37001F83B8 /* Remembers_Me_Of_Asia.caf in Resources */,
  1931. FC7CE542248ABE37001F83B8 /* Alien_Siren.caf in Resources */,
  1932. FC7CE51E248ABE37001F83B8 /* Computer_Magic.caf in Resources */,
  1933. FC7CE541248ABE37001F83B8 /* Discreet.caf in Resources */,
  1934. FC7CE535248ABE37001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf in Resources */,
  1935. FC7CE529248ABE37001F83B8 /* Laser_Shoot.caf in Resources */,
  1936. FC7CE54A248ABE37001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf in Resources */,
  1937. FC7CE579248ABE37001F83B8 /* Good_Morning.caf in Resources */,
  1938. FC9788212485969B00A7906C /* Main.storyboard in Resources */,
  1939. FC7CE538248ABE37001F83B8 /* 20ms-of-silence.caf in Resources */,
  1940. FC7CE56B248ABE37001F83B8 /* Cartoon_Ascend_Then_Descend.caf in Resources */,
  1941. FC7CE54E248ABE37001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf in Resources */,
  1942. FC7CE586248ABE37001F83B8 /* Martian_Gun.caf in Resources */,
  1943. FC7CE523248ABE37001F83B8 /* Wake_Up_Will_You.caf in Resources */,
  1944. FC7CE552248ABE37001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf in Resources */,
  1945. FC7CE577248ABE37001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf in Resources */,
  1946. FC7CE582248ABE37001F83B8 /* Siri_Transmitter_Battery_Low.caf in Resources */,
  1947. FC7CE57A248ABE37001F83B8 /* Emergency_Alarm.caf in Resources */,
  1948. FC7CE51A248ABE37001F83B8 /* Jingle_All_The_Way.caf in Resources */,
  1949. FC7CE53C248ABE37001F83B8 /* Early_Sunrise.caf in Resources */,
  1950. FC7CE560248ABE37001F83B8 /* Burglar_Alarm_Siren_2.caf in Resources */,
  1951. FC7CE522248ABE37001F83B8 /* Signature_Corporate.caf in Resources */,
  1952. FC7CE572248ABE37001F83B8 /* Siri_Calibration_Needed.caf in Resources */,
  1953. FC7CE53E248ABE37001F83B8 /* Soft_Warm_Airy_Optimistic.caf in Resources */,
  1954. FC7CE58E248ABEF2001F83B8 /* alarm-notification.m4a in Resources */,
  1955. FC7CE52F248ABE37001F83B8 /* Siri_Glucose_Rising_Fast.caf in Resources */,
  1956. FC7CE55E248ABE37001F83B8 /* Cell_Phone_Ring_Tone.caf in Resources */,
  1957. FC7CE554248ABE37001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf in Resources */,
  1958. FC7CE575248ABE37001F83B8 /* Siri_Device_Muted.caf in Resources */,
  1959. FC7CE52E248ABE37001F83B8 /* Cartoon_Villain_Horns.caf in Resources */,
  1960. FC7CE527248ABE37001F83B8 /* Alert_Tone_Ringtone_2.caf in Resources */,
  1961. FC7CE53A248ABE37001F83B8 /* Alarm_Clock.caf in Resources */,
  1962. FC7CE578248ABE37001F83B8 /* Siri_Alert_Missed_Readings.caf in Resources */,
  1963. FC7CE55B248ABE37001F83B8 /* 500ms-of-silence.mp3 in Resources */,
  1964. FC7CE581248ABE37001F83B8 /* Siri_Urgent_Low_Glucose.caf in Resources */,
  1965. FC7CE553248ABE37001F83B8 /* Sci-Fi_Eerie_Alarm.caf in Resources */,
  1966. FC7CE56A248ABE37001F83B8 /* Cartoon_Siren.caf in Resources */,
  1967. );
  1968. runOnlyForDeploymentPostprocessing = 0;
  1969. };
  1970. /* End PBXResourcesBuildPhase section */
  1971. /* Begin PBXShellScriptBuildPhase section */
  1972. 04DA71CCA0280FA5FA2DF7A6 /* [CP] Embed Pods Frameworks */ = {
  1973. isa = PBXShellScriptBuildPhase;
  1974. buildActionMask = 2147483647;
  1975. files = (
  1976. );
  1977. inputFileListPaths = (
  1978. "${PODS_ROOT}/Target Support Files/Pods-LoopFollow/Pods-LoopFollow-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1979. );
  1980. inputPaths = (
  1981. );
  1982. name = "[CP] Embed Pods Frameworks";
  1983. outputFileListPaths = (
  1984. "${PODS_ROOT}/Target Support Files/Pods-LoopFollow/Pods-LoopFollow-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1985. );
  1986. outputPaths = (
  1987. );
  1988. runOnlyForDeploymentPostprocessing = 0;
  1989. shellPath = /bin/sh;
  1990. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LoopFollow/Pods-LoopFollow-frameworks.sh\"\n";
  1991. showEnvVarsInLog = 0;
  1992. };
  1993. B038D39450A1F9A97D2B8BA4 /* [CP] Check Pods Manifest.lock */ = {
  1994. isa = PBXShellScriptBuildPhase;
  1995. buildActionMask = 2147483647;
  1996. files = (
  1997. );
  1998. inputFileListPaths = (
  1999. );
  2000. inputPaths = (
  2001. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2002. "${PODS_ROOT}/Manifest.lock",
  2003. );
  2004. name = "[CP] Check Pods Manifest.lock";
  2005. outputFileListPaths = (
  2006. );
  2007. outputPaths = (
  2008. "$(DERIVED_FILE_DIR)/Pods-LoopFollow-checkManifestLockResult.txt",
  2009. );
  2010. runOnlyForDeploymentPostprocessing = 0;
  2011. shellPath = /bin/sh;
  2012. 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";
  2013. showEnvVarsInLog = 0;
  2014. };
  2015. DD7F4BEA2DD48B9600D449E9 /* Swiftformat */ = {
  2016. isa = PBXShellScriptBuildPhase;
  2017. alwaysOutOfDate = 1;
  2018. buildActionMask = 2147483647;
  2019. files = (
  2020. );
  2021. inputFileListPaths = (
  2022. );
  2023. inputPaths = (
  2024. );
  2025. name = Swiftformat;
  2026. outputFileListPaths = (
  2027. );
  2028. outputPaths = (
  2029. );
  2030. runOnlyForDeploymentPostprocessing = 0;
  2031. shellPath = /bin/sh;
  2032. shellScript = "source \"${SRCROOT}\"/Scripts/swiftformat.sh\n";
  2033. };
  2034. DDB0AF532BB1AA0900AFA48B /* Capture Build Details */ = {
  2035. isa = PBXShellScriptBuildPhase;
  2036. buildActionMask = 2147483647;
  2037. files = (
  2038. );
  2039. inputFileListPaths = (
  2040. );
  2041. inputPaths = (
  2042. );
  2043. name = "Capture Build Details";
  2044. outputFileListPaths = (
  2045. );
  2046. outputPaths = (
  2047. );
  2048. runOnlyForDeploymentPostprocessing = 0;
  2049. shellPath = /bin/sh;
  2050. shellScript = "\"${SRCROOT}/Scripts/capture-build-details.sh\"\n";
  2051. };
  2052. /* End PBXShellScriptBuildPhase section */
  2053. /* Begin PBXSourcesBuildPhase section */
  2054. 37A4BDD52F5B6B4A00EEB289 /* Sources */ = {
  2055. isa = PBXSourcesBuildPhase;
  2056. buildActionMask = 2147483647;
  2057. files = (
  2058. DD91E4DE2BDEC3F8002D9E97 /* GlucoseConversion.swift in Sources */,
  2059. 374A77AA2F5BE17000E96858 /* AppGroupID.swift in Sources */,
  2060. 37E4DD0E2F7E097D000511C8 /* LALivenessStore.swift in Sources */,
  2061. 374A77AB2F5BE17000E96858 /* GlucoseSnapshot.swift in Sources */,
  2062. 37E4DD112F7E0D35000511C8 /* LALivenessMarker.swift in Sources */,
  2063. 374A77AC2F5BE17000E96858 /* LAAppGroupSettings.swift in Sources */,
  2064. 374A77AD2F5BE17000E96858 /* GlucoseLiveActivityAttributes.swift in Sources */,
  2065. );
  2066. runOnlyForDeploymentPostprocessing = 0;
  2067. };
  2068. DDCC3AD22DDE1790006F1C10 /* Sources */ = {
  2069. isa = PBXSourcesBuildPhase;
  2070. buildActionMask = 2147483647;
  2071. files = (
  2072. );
  2073. runOnlyForDeploymentPostprocessing = 0;
  2074. };
  2075. FC9788102485969B00A7906C /* Sources */ = {
  2076. isa = PBXSourcesBuildPhase;
  2077. buildActionMask = 2147483647;
  2078. files = (
  2079. DD5334292C6166A500062F9D /* InfoDisplaySettingsView.swift in Sources */,
  2080. DD48781E2C7DAF2F0048F05C /* PushNotificationManager.swift in Sources */,
  2081. DD0B9D582DE1F3B20090C337 /* AlarmType+canAcknowledge.swift in Sources */,
  2082. DD7F4BC52DD3CE0700D449E9 /* AlarmBGLimitSection.swift in Sources */,
  2083. DD7F4B9F2DD1F92700D449E9 /* AlarmActiveSection.swift in Sources */,
  2084. DD4AFB672DB68C5500BB593F /* UUID+Identifiable.swift in Sources */,
  2085. DD9ED0CA2D355257000D2A63 /* LogView.swift in Sources */,
  2086. DD9ACA082D32F68B00415D8A /* BGTask.swift in Sources */,
  2087. DD9ACA102D34129200415D8A /* Task.swift in Sources */,
  2088. DD4AFB492DB576C200BB593F /* AlarmSettingsView.swift in Sources */,
  2089. DD7F4C032DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift in Sources */,
  2090. DD7F4C1B2DD6501D00D449E9 /* COBCondition.swift in Sources */,
  2091. 374A77B42F5BE1AC00E96858 /* StorageCurrentGlucoseStateProvider.swift in Sources */,
  2092. 374A77B52F5BE1AC00E96858 /* GlucoseSnapshotBuilder.swift in Sources */,
  2093. 374A77B72F5BE1AC00E96858 /* LiveActivityManager.swift in Sources */,
  2094. 374A77B82F5BE1AC00E96858 /* GlucoseSnapshotStore.swift in Sources */,
  2095. 374A77B92F5BE1AC00E96858 /* PreferredGlucoseUnit.swift in Sources */,
  2096. DDE75D232DE5E505007C1FC1 /* Glyph.swift in Sources */,
  2097. DD4878202C7DAF890048F05C /* PushMessage.swift in Sources */,
  2098. DD0247712DB4337700FCADF6 /* BuildExpireCondition.swift in Sources */,
  2099. DDF6999B2C5AA32E0058A8D9 /* TempTargetPreset.swift in Sources */,
  2100. DD7F4C0F2DD51EC200D449E9 /* TempTargetStartCondition.swift in Sources */,
  2101. DDBD19962DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift in Sources */,
  2102. 656F8C102E49F36F0008DC1D /* QRCodeDisplayView.swift in Sources */,
  2103. DDC6CA3D2DD7C6090060EE25 /* TemporaryCondition.swift in Sources */,
  2104. DD9ACA0E2D340BFF00415D8A /* AlarmTask.swift in Sources */,
  2105. DDCF9A822D85FD15004DF4DD /* AlarmType.swift in Sources */,
  2106. DD7FFAFD2A72953000C3A304 /* EKEventStore+Extensions.swift in Sources */,
  2107. 656F8C122E49F3780008DC1D /* QRCodeGenerator.swift in Sources */,
  2108. 6541341A2E1DC27900BDBE08 /* OverridePresetData.swift in Sources */,
  2109. FCC6886724898F8000A0279D /* UserDefaultsValue.swift in Sources */,
  2110. DD7F4C092DD504A700D449E9 /* OverrideStartCondition.swift in Sources */,
  2111. DDEF503F2D32754F00999A5D /* ProfileTask.swift in Sources */,
  2112. DD7F4C052DD4BBE200D449E9 /* NotLoopingCondition.swift in Sources */,
  2113. DD5334212C60EBEE00062F9D /* InsulinCartridgeChange.swift in Sources */,
  2114. DDDB86F12DF7223C00AADDAC /* DeleteAlarmSection.swift in Sources */,
  2115. DD7F4B9D2DD1EAE500D449E9 /* AlarmAudioSection.swift in Sources */,
  2116. FC97881E2485969B00A7906C /* NightScoutViewController.swift in Sources */,
  2117. DD608A0A2C23593900F91132 /* SMB.swift in Sources */,
  2118. FC3AE7B5249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld in Sources */,
  2119. DD7F4C252DD7B20700D449E9 /* AlarmType+timeUnit.swift in Sources */,
  2120. DDC7E5152DBCFA7900EB1127 /* SnoozerViewController.swift in Sources */,
  2121. DD7F4C072DD5042F00D449E9 /* OverrideStartAlarmEditor.swift in Sources */,
  2122. DDCC3A4B2DDBB5E4006F1C10 /* BatteryCondition.swift in Sources */,
  2123. DDCC3A502DDED000006F1C10 /* PumpBatteryCondition.swift in Sources */,
  2124. DDDF6F492D479AF000884336 /* NoRemoteView.swift in Sources */,
  2125. 656F8C142E49F3D20008DC1D /* RemoteCommandSettings.swift in Sources */,
  2126. DD12D4872E1705E6004E0112 /* AlarmsContainerView.swift in Sources */,
  2127. DD83164A2DE4C504004467AA /* SettingsStepperRow.swift in Sources */,
  2128. DD0650ED2DCE9371004D3B41 /* HighBgAlarmEditor.swift in Sources */,
  2129. DD7F4C172DD63FA700D449E9 /* RecBolusCondition.swift in Sources */,
  2130. FCC6886F2489A53800A0279D /* AppConstants.swift in Sources */,
  2131. DDE75D2D2DE71401007C1FC1 /* TogglableSecureInput.swift in Sources */,
  2132. DD7E19842ACDA50C00DBD158 /* Overrides.swift in Sources */,
  2133. DD0B9D562DE1EC8A0090C337 /* AlarmType+Snooze.swift in Sources */,
  2134. DDF2C0102BEFA991007A20E6 /* GitHubService.swift in Sources */,
  2135. FC16A97A24996673003D6245 /* NightScout.swift in Sources */,
  2136. DD07B5C929E2F9C400C6A635 /* NightscoutUtils.swift in Sources */,
  2137. DDCF9A8C2D86005E004DF4DD /* AlarmManager.swift in Sources */,
  2138. DDCC3A4F2DDC5B54006F1C10 /* BatteryDropCondition.swift in Sources */,
  2139. FCC6886924898FB100A0279D /* UserDefaultsValueGroups.swift in Sources */,
  2140. DDF2C0122BEFB733007A20E6 /* AppVersionManager.swift in Sources */,
  2141. DDB9FC7B2DDB573F00EFAA76 /* IOBCondition.swift in Sources */,
  2142. DD7E19862ACDA59700DBD158 /* BGCheck.swift in Sources */,
  2143. DDCC3A5A2DDC988F006F1C10 /* CarbSample.swift in Sources */,
  2144. F19449721F3B792730A0F4FD /* PendingFutureCarb.swift in Sources */,
  2145. 2D8068C66833EEAED7B4BEB8 /* FutureCarbsCondition.swift in Sources */,
  2146. ACE7F6DE0D065BEB52CDC0DB /* FutureCarbsAlarmEditor.swift in Sources */,
  2147. DD0650F12DCE9A9E004D3B41 /* MissedReadingCondition.swift in Sources */,
  2148. DDC6CA4B2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift in Sources */,
  2149. 6589CC752E9EAFB700BB18FE /* SettingsMigrationManager.swift in Sources */,
  2150. DD16AF0F2C99592F00FB655A /* HKQuantityInputView.swift in Sources */,
  2151. DDFF3D7F2D1414A200BF9D9E /* BLEDevice.swift in Sources */,
  2152. DD9ACA042D32821400415D8A /* DeviceStatusTask.swift in Sources */,
  2153. FC16A97D24996747003D6245 /* SpeakBG.swift in Sources */,
  2154. DDFD5C532CB167DA00D3FD68 /* TRCCommandType.swift in Sources */,
  2155. DD16AF112C997B4600FB655A /* LoadingButtonView.swift in Sources */,
  2156. DD0650F92DCFE7BE004D3B41 /* FastDropAlarmEditor.swift in Sources */,
  2157. DD5817172D2710E90041FB98 /* BLEDeviceSelectionView.swift in Sources */,
  2158. FC16A97B249966A3003D6245 /* AlarmSound.swift in Sources */,
  2159. DDCC3A562DDC9617006F1C10 /* MissedBolusCondition.swift in Sources */,
  2160. DDBE3ABD2CB5A961006B37DC /* OverrideView.swift in Sources */,
  2161. DDB0AF522BB1A8BE00AFA48B /* BuildDetails.swift in Sources */,
  2162. DDA9ACAA2D6A6B8300E6F1A9 /* ContactIncludeOption.swift in Sources */,
  2163. DD7F4C1D2DD650D500D449E9 /* COBAlarmEditor.swift in Sources */,
  2164. DDE75D272DE5E539007C1FC1 /* ActionRow.swift in Sources */,
  2165. DD0C0C622C4175FD00DBADDF /* NSProfile.swift in Sources */,
  2166. DD58171E2D299FCA0041FB98 /* BluetoothDeviceDelegate.swift in Sources */,
  2167. DDE69ED22C7256260013EAEC /* RemoteType.swift in Sources */,
  2168. DDD10F032C518A6500D76A8E /* TreatmentResponse.swift in Sources */,
  2169. DDD10F0B2C54192A00D76A8E /* TemporaryTarget.swift in Sources */,
  2170. DD7F4C1F2DD6648B00D449E9 /* FastRiseCondition.swift in Sources */,
  2171. DD5334272C61668800062F9D /* InfoDisplaySettingsViewModel.swift in Sources */,
  2172. DD0247592DB2E89600FCADF6 /* AlarmCondition.swift in Sources */,
  2173. DD0650F32DCE9B3D004D3B41 /* MissedReadingEditor.swift in Sources */,
  2174. 6584B1012E4A263900135D4D /* TOTPService.swift in Sources */,
  2175. DD48780E2C7B74A40048F05C /* TrioRemoteControlViewModel.swift in Sources */,
  2176. DDEF503A2D31615000999A5D /* LogManager.swift in Sources */,
  2177. DD4878172C7B75350048F05C /* BolusView.swift in Sources */,
  2178. DD026E592EA2C8A200A39CB5 /* InsulinPrecisionManager.swift in Sources */,
  2179. 374A77992F5BD8B200E96858 /* APNSClient.swift in Sources */,
  2180. DD493AE72ACF23CF009A6922 /* DeviceStatus.swift in Sources */,
  2181. DDC7E5162DBCFA7F00EB1127 /* SnoozerView.swift in Sources */,
  2182. FCFEECA2248857A600402A7F /* SettingsViewController.swift in Sources */,
  2183. DD7F4C232DD7A62200D449E9 /* AlarmType+SortDirection.swift in Sources */,
  2184. 65E8A2862E44B0300065037B /* VolumeButtonHandler.swift in Sources */,
  2185. DD0650F72DCFDA26004D3B41 /* InfoBanner.swift in Sources */,
  2186. DDE75D292DE5E56C007C1FC1 /* LinkRow.swift in Sources */,
  2187. DD4AFB612DB68BBC00BB593F /* AlarmListView.swift in Sources */,
  2188. DD7B0D442D730A3B0063DCB6 /* CycleHelper.swift in Sources */,
  2189. DDDC31CC2E13A7DF009EA0F3 /* AddAlarmSheet.swift in Sources */,
  2190. DD7F4BA12DD2193F00D449E9 /* AlarmSnoozeSection.swift in Sources */,
  2191. DD9ACA0C2D33BB8600415D8A /* CalendarTask.swift in Sources */,
  2192. DD13BC792C3FE63A0062313B /* InfoManager.swift in Sources */,
  2193. DD0C0C702C4AFFE800DBADDF /* RemoteViewController.swift in Sources */,
  2194. DD48780A2C7B30D40048F05C /* RemoteSettingsViewModel.swift in Sources */,
  2195. FCFEECA02488157B00402A7F /* Chart.swift in Sources */,
  2196. DDDC31CE2E13A811009EA0F3 /* AlarmTile.swift in Sources */,
  2197. DDCF979424C0D380002C9752 /* UIViewExtension.swift in Sources */,
  2198. DD0C0C6D2C48606200DBADDF /* CarbMetric.swift in Sources */,
  2199. DDC7E5422DBD8A1600EB1127 /* AlarmGeneralSection.swift in Sources */,
  2200. DD7F4BC72DD473A600D449E9 /* FastDropCondition.swift in Sources */,
  2201. DD7F4C0D2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift in Sources */,
  2202. DDC7E5432DBD8A1600EB1127 /* SoundFile.swift in Sources */,
  2203. DDC7E5442DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift in Sources */,
  2204. DDC7E5462DBD8A1600EB1127 /* LowBgAlarmEditor.swift in Sources */,
  2205. DDC7E5472DBD8A1600EB1127 /* AlarmEditor.swift in Sources */,
  2206. DDA9ACA82D6A66E200E6F1A9 /* ContactColorOption.swift in Sources */,
  2207. DDA9ACA62D6A66D000E6F1A9 /* ContactColorMode.swift in Sources */,
  2208. DDC7E5382DBD887400EB1127 /* isOnPhoneCall.swift in Sources */,
  2209. DD7E19882ACDA5DA00DBD158 /* Notes.swift in Sources */,
  2210. FCEF87AC24A141A700AE6FA0 /* Localizer.swift in Sources */,
  2211. FC1BDD3224A2585C001B652C /* DataStructs.swift in Sources */,
  2212. DDF6999E2C5AAA640058A8D9 /* ErrorMessageView.swift in Sources */,
  2213. DD1D52BB2E1EB60B00432050 /* MoreMenuViewController.swift in Sources */,
  2214. 654132E72E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift in Sources */,
  2215. DD4878152C7B75230048F05C /* MealView.swift in Sources */,
  2216. FC16A97F249969E2003D6245 /* Graphs.swift in Sources */,
  2217. FC8589BF252B54F500C8FC73 /* Mobileprovision.swift in Sources */,
  2218. DD4878052C7B2C970048F05C /* Storage.swift in Sources */,
  2219. DD493AE12ACF22FE009A6922 /* Profile.swift in Sources */,
  2220. 6589CC622E9E7D1600BB18FE /* ImportExportSettingsView.swift in Sources */,
  2221. 6589CC632E9E7D1600BB18FE /* GeneralSettingsView.swift in Sources */,
  2222. 5544D8C363FB5D3B9BF8CE4A /* APNSettingsView.swift in Sources */,
  2223. 6589CC642E9E7D1600BB18FE /* ContactSettingsView.swift in Sources */,
  2224. 37E4DD0D2F7E0967000511C8 /* LALivenessStore.swift in Sources */,
  2225. 6589CC652E9E7D1600BB18FE /* DexcomSettingsViewModel.swift in Sources */,
  2226. 6589CC662E9E7D1600BB18FE /* AdvancedSettingsView.swift in Sources */,
  2227. 6589CC672E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift in Sources */,
  2228. 6589CC682E9E7D1600BB18FE /* ExportableSettings.swift in Sources */,
  2229. 6589CC692E9E7D1600BB18FE /* ContactSettingsViewModel.swift in Sources */,
  2230. 6589CC6A2E9E7D1600BB18FE /* DexcomSettingsView.swift in Sources */,
  2231. 6589CC6B2E9E7D1600BB18FE /* TabCustomizationModal.swift in Sources */,
  2232. 6589CC6C2E9E7D1600BB18FE /* GraphSettingsView.swift in Sources */,
  2233. 6589CC6D2E9E7D1600BB18FE /* CalendarSettingsView.swift in Sources */,
  2234. 6589CC6E2E9E7D1600BB18FE /* SettingsMenuView.swift in Sources */,
  2235. 657F98182F043D8100F732BD /* HomeContentView.swift in Sources */,
  2236. 6589CC6F2E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift in Sources */,
  2237. DD493ADF2ACF22BB009A6922 /* SAge.swift in Sources */,
  2238. DDC6CA3F2DD7C6340060EE25 /* TemporaryAlarmEditor.swift in Sources */,
  2239. DDF699992C5AA3060058A8D9 /* TempTargetPresetManager.swift in Sources */,
  2240. DDC6CA452DD8D8E60060EE25 /* PumpChangeCondition.swift in Sources */,
  2241. DD0C0C722C4B000800DBADDF /* TrioNightscoutRemoteView.swift in Sources */,
  2242. DD493ADB2ACF21A3009A6922 /* Bolus.swift in Sources */,
  2243. DDF9676E2AD08C6E00C5EB95 /* SiteChange.swift in Sources */,
  2244. DDCC3A542DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift in Sources */,
  2245. DD13BC772C3FD64E0062313B /* InfoData.swift in Sources */,
  2246. DD13BC752C3FD6210062313B /* InfoType.swift in Sources */,
  2247. DDCC3A4D2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift in Sources */,
  2248. DDCC3A5B2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift in Sources */,
  2249. DDC6CA492DD8E47A0060EE25 /* PumpVolumeCondition.swift in Sources */,
  2250. DD9ACA0A2D33095600415D8A /* MinAgoTask.swift in Sources */,
  2251. DD9ED0CC2D35526E000D2A63 /* SearchBar.swift in Sources */,
  2252. DDD10EFF2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift in Sources */,
  2253. DDB9FC7D2DDB575300EFAA76 /* IOBAlarmEditor.swift in Sources */,
  2254. DD58171A2D299EF80041FB98 /* DexcomHeartbeatBluetoothDevice.swift in Sources */,
  2255. DD7F4C0B2DD51C5500D449E9 /* OverrideEndCondition.swift in Sources */,
  2256. DDFF3D872D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift in Sources */,
  2257. 6589CC712E9E814F00BB18FE /* AlarmSelectionView.swift in Sources */,
  2258. DD7F4C192DD63FD500D449E9 /* RecBolusAlarmEditor.swift in Sources */,
  2259. DDAD162F2D2EF9830084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift in Sources */,
  2260. FC97881C2485969B00A7906C /* MainViewController.swift in Sources */,
  2261. DD6A935E2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift in Sources */,
  2262. DD493AD52ACF2109009A6922 /* ResumePump.swift in Sources */,
  2263. DD85E9952D739CFE001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift in Sources */,
  2264. DD8316442DE47CA9004467AA /* BGPicker.swift in Sources */,
  2265. FCC0FAC224922A22003E610E /* DictionaryKeyPath.swift in Sources */,
  2266. DD493AD72ACF2139009A6922 /* SuspendPump.swift in Sources */,
  2267. DDB9FC7F2DDB584500EFAA76 /* BolusEntry.swift in Sources */,
  2268. FC9788182485969B00A7906C /* AppDelegate.swift in Sources */,
  2269. DD4A407E2E6AFEE6007B318B /* AuthService.swift in Sources */,
  2270. 654134182E1DC09700BDBE08 /* OverridePresetsView.swift in Sources */,
  2271. DDDC01DD2E244B3100D9975C /* JWTManager.swift in Sources */,
  2272. DDD10F072C529DE800D76A8E /* Observable.swift in Sources */,
  2273. DDFF3D852D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift in Sources */,
  2274. DDCF9A882D85FD33004DF4DD /* AlarmData.swift in Sources */,
  2275. DD608A0C2C27415C00F91132 /* BackgroundAlertManager.swift in Sources */,
  2276. 66E3D12E66AA4534A144A54B /* BackgroundRefreshManager.swift in Sources */,
  2277. 379BECB02F65DA4B0069DC62 /* LiveActivitySettingsView.swift in Sources */,
  2278. DD4878082C7B30BF0048F05C /* RemoteSettingsView.swift in Sources */,
  2279. DDE75D2B2DE5E613007C1FC1 /* NavigationRow.swift in Sources */,
  2280. DD4AFB3B2DB55CB600BB593F /* TimeOfDay.swift in Sources */,
  2281. DDEF503C2D31BE2D00999A5D /* TaskScheduler.swift in Sources */,
  2282. DD0650EB2DCE8385004D3B41 /* LowBGCondition.swift in Sources */,
  2283. DD12D4852E1705D9004E0112 /* AlarmViewController.swift in Sources */,
  2284. DD0C0C6B2C48562000DBADDF /* InsulinMetric.swift in Sources */,
  2285. DD493AD92ACF2171009A6922 /* Carbs.swift in Sources */,
  2286. DD493AE92ACF2445009A6922 /* BGData.swift in Sources */,
  2287. DD0650A92DCA8A10004D3B41 /* AlarmBGSection.swift in Sources */,
  2288. FCC6886B24898FD800A0279D /* ObservationToken.swift in Sources */,
  2289. DD4AFB6B2DB6BF2A00BB593F /* Binding+Optional.swift in Sources */,
  2290. DD608A082C1F584900F91132 /* DeviceStatusLoop.swift in Sources */,
  2291. DD5DA27C2DC930D6003D44FC /* GlucoseValue.swift in Sources */,
  2292. DD9ACA062D32AF7900415D8A /* TreatmentsTask.swift in Sources */,
  2293. DD98F54424BCEFEE0007425A /* ShareClientExtension.swift in Sources */,
  2294. 657F99E92F0BC81500F732BD /* OTPSecureMessenger.swift in Sources */,
  2295. DD9ED0CE2D35587A000D2A63 /* LogEntry.swift in Sources */,
  2296. DD0C0C602C415B9D00DBADDF /* ProfileManager.swift in Sources */,
  2297. DD83164C2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift in Sources */,
  2298. DD4AFB3D2DB55D2900BB593F /* AlarmConfiguration.swift in Sources */,
  2299. DDF699962C5582290058A8D9 /* TextFieldWithToolBar.swift in Sources */,
  2300. DD91E4DD2BDEC3F8002D9E97 /* GlucoseConversion.swift in Sources */,
  2301. DD0650EF2DCE96FF004D3B41 /* HighBGCondition.swift in Sources */,
  2302. DDC6CA472DD8D9010060EE25 /* PumpChangeAlarmEditor.swift in Sources */,
  2303. DD4878132C7B750D0048F05C /* TempTargetView.swift in Sources */,
  2304. 65E153C32E4BB69100693A4F /* URLTokenValidationView.swift in Sources */,
  2305. DD0C0C682C48529400DBADDF /* Metric.swift in Sources */,
  2306. FCC6886D2489909D00A0279D /* AnyConvertible.swift in Sources */,
  2307. DDC6CA432DD8CED20060EE25 /* SensorAgeCondition.swift in Sources */,
  2308. DD7F4C212DD66BB200D449E9 /* FastRiseAlarmEditor.swift in Sources */,
  2309. FC97881A2485969B00A7906C /* SceneDelegate.swift in Sources */,
  2310. DD0C0C662C46E54C00DBADDF /* InfoDataSeparator.swift in Sources */,
  2311. 374A77A52F5BE17000E96858 /* AppGroupID.swift in Sources */,
  2312. 374A77A62F5BE17000E96858 /* GlucoseSnapshot.swift in Sources */,
  2313. 374A77A72F5BE17000E96858 /* LAAppGroupSettings.swift in Sources */,
  2314. 374A77A82F5BE17000E96858 /* GlucoseLiveActivityAttributes.swift in Sources */,
  2315. DD58171C2D299F940041FB98 /* BluetoothDevice.swift in Sources */,
  2316. DD7E198A2ACDA62600DBD158 /* SensorStart.swift in Sources */,
  2317. DD026E5B2EA2C9C300A39CB5 /* InsulinFormatter.swift in Sources */,
  2318. DD5334B02D1447C500CDD6EA /* BLEManager.swift in Sources */,
  2319. DD4878032C7B297E0048F05C /* StorageValue.swift in Sources */,
  2320. DD4878192C7C56D60048F05C /* TrioNightscoutRemoteController.swift in Sources */,
  2321. FC1BDD2B24A22650001B652C /* Stats.swift in Sources */,
  2322. DDA9ACAC2D6B317100E6F1A9 /* ContactType.swift in Sources */,
  2323. DDD10F052C529DA200D76A8E /* ObservableValue.swift in Sources */,
  2324. FC1BDD2D24A23204001B652C /* MainViewController+updateStats.swift in Sources */,
  2325. DD4878102C7B74BF0048F05C /* TrioRemoteControlView.swift in Sources */,
  2326. DD7F4C152DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift in Sources */,
  2327. FCE537BC249A4D7D00F80BF8 /* carbBolusArrays.swift in Sources */,
  2328. DD5334232C60ED3600062F9D /* IAge.swift in Sources */,
  2329. FCD2A27D24C9D044009F7B7B /* Globals.swift in Sources */,
  2330. DD0C0C642C45A59400DBADDF /* HKUnit+Extensions.swift in Sources */,
  2331. DDC6CA412DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift in Sources */,
  2332. DD493AE52ACF2383009A6922 /* Treatments.swift in Sources */,
  2333. DD7F4C112DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift in Sources */,
  2334. DD1D52B92E1EB5DC00432050 /* TabPosition.swift in Sources */,
  2335. DD1D52C02E4C100000000001 /* AppearanceMode.swift in Sources */,
  2336. DD50C7552D0862770057AE6F /* ContactImageUpdater.swift in Sources */,
  2337. 654132EA2E19F24800BDBE08 /* TOTPGenerator.swift in Sources */,
  2338. 6541341C2E1DC28000BDBE08 /* DateExtensions.swift in Sources */,
  2339. DD0650F52DCF303F004D3B41 /* AlarmStepperSection.swift in Sources */,
  2340. 379BECAA2F6588300069DC62 /* RestartLiveActivityIntent.swift in Sources */,
  2341. DDCF9A802D85FD0B004DF4DD /* Alarm.swift in Sources */,
  2342. DD7F4C132DD51FD500D449E9 /* TempTargetEndCondition.swift in Sources */,
  2343. DDD10F012C510C6B00D76A8E /* ObservableUserDefaults.swift in Sources */,
  2344. DD16AF0D2C98485400FB655A /* SecureStorageValue.swift in Sources */,
  2345. DDC7E5CF2DC77C2000EB1127 /* SnoozerViewModel.swift in Sources */,
  2346. DD2C2E4F2D3B8AF1006413A5 /* NightscoutSettingsView.swift in Sources */,
  2347. DD8316482DE49EE5004467AA /* Storage+Migrate.swift in Sources */,
  2348. FCA2DDE62501095000254A8C /* Timers.swift in Sources */,
  2349. DD2C2E512D3B8B0C006413A5 /* NightscoutSettingsViewModel.swift in Sources */,
  2350. DD9ED0C82D355244000D2A63 /* LogViewModel.swift in Sources */,
  2351. DDFF3D892D1429AB00BF9D9E /* BackgroundRefreshType.swift in Sources */,
  2352. DD493AE32ACF2358009A6922 /* CAge.swift in Sources */,
  2353. DD493ADD2ACF21E0009A6922 /* Basals.swift in Sources */,
  2354. FC16A98124996C07003D6245 /* DateTime.swift in Sources */,
  2355. FC3CAB022493B6220068A152 /* BackgroundTaskAudio.swift in Sources */,
  2356. DDCC3A582DDC9655006F1C10 /* MissedBolusAlarmEditor.swift in Sources */,
  2357. DDEF50402D479B8A00884336 /* LoopAPNSService.swift in Sources */,
  2358. DD485F142E454B2600CE8CBF /* SecureMessenger.swift in Sources */,
  2359. DDEF50422D479BAA00884336 /* LoopAPNSCarbsView.swift in Sources */,
  2360. DDEF50432D479BBA00884336 /* LoopAPNSBolusView.swift in Sources */,
  2361. DDEF50452D479BDA00884336 /* LoopAPNSRemoteView.swift in Sources */,
  2362. );
  2363. runOnlyForDeploymentPostprocessing = 0;
  2364. };
  2365. /* End PBXSourcesBuildPhase section */
  2366. /* Begin PBXTargetDependency section */
  2367. 37A4BDE72F5B6B4C00EEB289 /* PBXTargetDependency */ = {
  2368. isa = PBXTargetDependency;
  2369. platformFilter = ios;
  2370. target = 37A4BDD82F5B6B4A00EEB289 /* LoopFollowLAExtensionExtension */;
  2371. targetProxy = 37A4BDE62F5B6B4C00EEB289 /* PBXContainerItemProxy */;
  2372. };
  2373. DDCC3ADB2DDE1790006F1C10 /* PBXTargetDependency */ = {
  2374. isa = PBXTargetDependency;
  2375. target = FC9788132485969B00A7906C /* LoopFollow */;
  2376. targetProxy = DDCC3ADA2DDE1790006F1C10 /* PBXContainerItemProxy */;
  2377. };
  2378. /* End PBXTargetDependency section */
  2379. /* Begin PBXVariantGroup section */
  2380. FC97881F2485969B00A7906C /* Main.storyboard */ = {
  2381. isa = PBXVariantGroup;
  2382. children = (
  2383. FC9788202485969B00A7906C /* Base */,
  2384. );
  2385. name = Main.storyboard;
  2386. sourceTree = "<group>";
  2387. };
  2388. FC9788272485969C00A7906C /* LaunchScreen.storyboard */ = {
  2389. isa = PBXVariantGroup;
  2390. children = (
  2391. FC9788282485969C00A7906C /* Base */,
  2392. );
  2393. name = LaunchScreen.storyboard;
  2394. sourceTree = "<group>";
  2395. };
  2396. /* End PBXVariantGroup section */
  2397. /* Begin XCBuildConfiguration section */
  2398. 37A4BDEB2F5B6B4C00EEB289 /* Debug */ = {
  2399. isa = XCBuildConfiguration;
  2400. buildSettings = {
  2401. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2402. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2403. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  2404. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2405. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2406. CODE_SIGN_ENTITLEMENTS = LoopFollowLAExtensionExtension.entitlements;
  2407. CODE_SIGN_STYLE = Automatic;
  2408. CURRENT_PROJECT_VERSION = 1;
  2409. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2410. ENABLE_APP_SANDBOX = NO;
  2411. ENABLE_HARDENED_RUNTIME = NO;
  2412. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2413. GCC_C_LANGUAGE_STANDARD = gnu17;
  2414. GENERATE_INFOPLIST_FILE = NO;
  2415. INFOPLIST_FILE = LoopFollowLAExtension/ExtensionInfo.plist;
  2416. INFOPLIST_KEY_CFBundleDisplayName = LoopFollowLAExtension;
  2417. INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2026 Jon Fawcett. All rights reserved.";
  2418. IPHONEOS_DEPLOYMENT_TARGET = 16.6;
  2419. LD_RUNPATH_SEARCH_PATHS = (
  2420. "$(inherited)",
  2421. "@executable_path/Frameworks",
  2422. "@executable_path/../../Frameworks",
  2423. );
  2424. "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = (
  2425. "$(inherited)",
  2426. "@executable_path/../Frameworks",
  2427. "@executable_path/../../../../Frameworks",
  2428. );
  2429. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2430. MACOSX_DEPLOYMENT_TARGET = 26.2;
  2431. MARKETING_VERSION = "$(MARKETING_VERSION)";
  2432. PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow$(app_suffix).LoopFollowLAExtension";
  2433. PRODUCT_MODULE_NAME = LoopFollowLAExtension;
  2434. PRODUCT_NAME = "$(TARGET_NAME)";
  2435. SDKROOT = auto;
  2436. SKIP_INSTALL = YES;
  2437. STRING_CATALOG_GENERATE_SYMBOLS = YES;
  2438. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2439. SUPPORTS_MACCATALYST = NO;
  2440. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  2441. SWIFT_APPROACHABLE_CONCURRENCY = YES;
  2442. SWIFT_EMIT_LOC_STRINGS = YES;
  2443. SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
  2444. SWIFT_VERSION = 5.0;
  2445. TARGETED_DEVICE_FAMILY = "1,2";
  2446. XROS_DEPLOYMENT_TARGET = 26.2;
  2447. };
  2448. name = Debug;
  2449. };
  2450. 37A4BDEC2F5B6B4C00EEB289 /* Release */ = {
  2451. isa = XCBuildConfiguration;
  2452. buildSettings = {
  2453. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2454. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2455. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  2456. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2457. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2458. CODE_SIGN_ENTITLEMENTS = LoopFollowLAExtensionExtension.entitlements;
  2459. CODE_SIGN_STYLE = Automatic;
  2460. CURRENT_PROJECT_VERSION = 1;
  2461. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2462. ENABLE_APP_SANDBOX = NO;
  2463. ENABLE_HARDENED_RUNTIME = NO;
  2464. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2465. GCC_C_LANGUAGE_STANDARD = gnu17;
  2466. GENERATE_INFOPLIST_FILE = NO;
  2467. INFOPLIST_FILE = LoopFollowLAExtension/ExtensionInfo.plist;
  2468. INFOPLIST_KEY_CFBundleDisplayName = LoopFollowLAExtension;
  2469. INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2026 Jon Fawcett. All rights reserved.";
  2470. IPHONEOS_DEPLOYMENT_TARGET = 16.6;
  2471. LD_RUNPATH_SEARCH_PATHS = (
  2472. "$(inherited)",
  2473. "@executable_path/Frameworks",
  2474. "@executable_path/../../Frameworks",
  2475. );
  2476. "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = (
  2477. "$(inherited)",
  2478. "@executable_path/../Frameworks",
  2479. "@executable_path/../../../../Frameworks",
  2480. );
  2481. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2482. MACOSX_DEPLOYMENT_TARGET = 26.2;
  2483. MARKETING_VERSION = "$(MARKETING_VERSION)";
  2484. PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow$(app_suffix).LoopFollowLAExtension";
  2485. PRODUCT_MODULE_NAME = LoopFollowLAExtension;
  2486. PRODUCT_NAME = "$(TARGET_NAME)";
  2487. SDKROOT = auto;
  2488. SKIP_INSTALL = YES;
  2489. STRING_CATALOG_GENERATE_SYMBOLS = YES;
  2490. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2491. SUPPORTS_MACCATALYST = NO;
  2492. SWIFT_APPROACHABLE_CONCURRENCY = YES;
  2493. SWIFT_EMIT_LOC_STRINGS = YES;
  2494. SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
  2495. SWIFT_VERSION = 5.0;
  2496. TARGETED_DEVICE_FAMILY = "1,2";
  2497. XROS_DEPLOYMENT_TARGET = 26.2;
  2498. };
  2499. name = Release;
  2500. };
  2501. DDCC3ADD2DDE1790006F1C10 /* Debug */ = {
  2502. isa = XCBuildConfiguration;
  2503. buildSettings = {
  2504. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2505. BUNDLE_LOADER = "$(TEST_HOST)";
  2506. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2507. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2508. CODE_SIGN_STYLE = Automatic;
  2509. CURRENT_PROJECT_VERSION = 1;
  2510. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2511. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2512. FRAMEWORK_SEARCH_PATHS = (
  2513. "$(inherited)",
  2514. "$(BUILT_PRODUCTS_DIR)/Charts",
  2515. "$(BUILT_PRODUCTS_DIR)/ShareClient",
  2516. "$(BUILT_PRODUCTS_DIR)/SwiftAlgorithms",
  2517. );
  2518. GCC_C_LANGUAGE_STANDARD = gnu17;
  2519. GENERATE_INFOPLIST_FILE = YES;
  2520. IPHONEOS_DEPLOYMENT_TARGET = 18.4;
  2521. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2522. MARKETING_VERSION = 1.0;
  2523. PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollowTests$(app_suffix).Tests";
  2524. PRODUCT_MODULE_NAME = Tests;
  2525. PRODUCT_NAME = "$(TARGET_NAME)";
  2526. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  2527. SWIFT_EMIT_LOC_STRINGS = NO;
  2528. SWIFT_VERSION = 5.0;
  2529. TARGETED_DEVICE_FAMILY = "1,2";
  2530. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Loop Follow.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Loop Follow";
  2531. };
  2532. name = Debug;
  2533. };
  2534. DDCC3ADE2DDE1790006F1C10 /* Release */ = {
  2535. isa = XCBuildConfiguration;
  2536. buildSettings = {
  2537. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2538. BUNDLE_LOADER = "$(TEST_HOST)";
  2539. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2540. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2541. CODE_SIGN_STYLE = Automatic;
  2542. CURRENT_PROJECT_VERSION = 1;
  2543. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2544. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2545. FRAMEWORK_SEARCH_PATHS = (
  2546. "$(inherited)",
  2547. "$(BUILT_PRODUCTS_DIR)/Charts",
  2548. "$(BUILT_PRODUCTS_DIR)/ShareClient",
  2549. "$(BUILT_PRODUCTS_DIR)/SwiftAlgorithms",
  2550. );
  2551. GCC_C_LANGUAGE_STANDARD = gnu17;
  2552. GENERATE_INFOPLIST_FILE = YES;
  2553. IPHONEOS_DEPLOYMENT_TARGET = 18.4;
  2554. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2555. MARKETING_VERSION = 1.0;
  2556. PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollowTests$(app_suffix).Tests";
  2557. PRODUCT_MODULE_NAME = Tests;
  2558. PRODUCT_NAME = "$(TARGET_NAME)";
  2559. SWIFT_EMIT_LOC_STRINGS = NO;
  2560. SWIFT_VERSION = 5.0;
  2561. TARGETED_DEVICE_FAMILY = "1,2";
  2562. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Loop Follow.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Loop Follow";
  2563. };
  2564. name = Release;
  2565. };
  2566. FC97882B2485969C00A7906C /* Debug */ = {
  2567. isa = XCBuildConfiguration;
  2568. baseConfigurationReference = FC5A5C3C2497B229009C550E /* Config.xcconfig */;
  2569. buildSettings = {
  2570. ALWAYS_SEARCH_USER_PATHS = NO;
  2571. CLANG_ANALYZER_NONNULL = YES;
  2572. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2573. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2574. CLANG_CXX_LIBRARY = "libc++";
  2575. CLANG_ENABLE_MODULES = YES;
  2576. CLANG_ENABLE_OBJC_ARC = YES;
  2577. CLANG_ENABLE_OBJC_WEAK = YES;
  2578. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2579. CLANG_WARN_BOOL_CONVERSION = YES;
  2580. CLANG_WARN_COMMA = YES;
  2581. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2582. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2583. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2584. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2585. CLANG_WARN_EMPTY_BODY = YES;
  2586. CLANG_WARN_ENUM_CONVERSION = YES;
  2587. CLANG_WARN_INFINITE_RECURSION = YES;
  2588. CLANG_WARN_INT_CONVERSION = YES;
  2589. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2590. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2591. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2592. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2593. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2594. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2595. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2596. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2597. CLANG_WARN_UNREACHABLE_CODE = YES;
  2598. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2599. COPY_PHASE_STRIP = NO;
  2600. DEBUG_INFORMATION_FORMAT = dwarf;
  2601. DEFINES_MODULE = YES;
  2602. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2603. ENABLE_TESTABILITY = YES;
  2604. GCC_C_LANGUAGE_STANDARD = gnu11;
  2605. GCC_DYNAMIC_NO_PIC = NO;
  2606. GCC_NO_COMMON_BLOCKS = YES;
  2607. GCC_OPTIMIZATION_LEVEL = 0;
  2608. GCC_PREPROCESSOR_DEFINITIONS = (
  2609. "DEBUG=1",
  2610. "$(inherited)",
  2611. );
  2612. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2613. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2614. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2615. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2616. GCC_WARN_UNUSED_FUNCTION = YES;
  2617. GCC_WARN_UNUSED_VARIABLE = YES;
  2618. IPHONEOS_DEPLOYMENT_TARGET = 15.6;
  2619. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2620. MTL_FAST_MATH = YES;
  2621. ONLY_ACTIVE_ARCH = YES;
  2622. PRODUCT_MODULE_NAME = LoopFollow;
  2623. SDKROOT = iphoneos;
  2624. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2625. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2626. };
  2627. name = Debug;
  2628. };
  2629. FC97882C2485969C00A7906C /* Release */ = {
  2630. isa = XCBuildConfiguration;
  2631. baseConfigurationReference = FC5A5C3C2497B229009C550E /* Config.xcconfig */;
  2632. buildSettings = {
  2633. ALWAYS_SEARCH_USER_PATHS = NO;
  2634. CLANG_ANALYZER_NONNULL = YES;
  2635. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2636. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2637. CLANG_CXX_LIBRARY = "libc++";
  2638. CLANG_ENABLE_MODULES = YES;
  2639. CLANG_ENABLE_OBJC_ARC = YES;
  2640. CLANG_ENABLE_OBJC_WEAK = YES;
  2641. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2642. CLANG_WARN_BOOL_CONVERSION = YES;
  2643. CLANG_WARN_COMMA = YES;
  2644. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2645. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2646. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2647. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2648. CLANG_WARN_EMPTY_BODY = YES;
  2649. CLANG_WARN_ENUM_CONVERSION = YES;
  2650. CLANG_WARN_INFINITE_RECURSION = YES;
  2651. CLANG_WARN_INT_CONVERSION = YES;
  2652. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2653. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2654. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2655. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2656. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2657. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2658. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2659. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2660. CLANG_WARN_UNREACHABLE_CODE = YES;
  2661. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2662. COPY_PHASE_STRIP = NO;
  2663. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2664. DEFINES_MODULE = YES;
  2665. ENABLE_NS_ASSERTIONS = NO;
  2666. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2667. GCC_C_LANGUAGE_STANDARD = gnu11;
  2668. GCC_NO_COMMON_BLOCKS = YES;
  2669. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2670. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2671. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2672. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2673. GCC_WARN_UNUSED_FUNCTION = YES;
  2674. GCC_WARN_UNUSED_VARIABLE = YES;
  2675. IPHONEOS_DEPLOYMENT_TARGET = 15.6;
  2676. MTL_ENABLE_DEBUG_INFO = NO;
  2677. MTL_FAST_MATH = YES;
  2678. PRODUCT_MODULE_NAME = LoopFollow;
  2679. SDKROOT = iphoneos;
  2680. SWIFT_COMPILATION_MODE = wholemodule;
  2681. SWIFT_OPTIMIZATION_LEVEL = "-O";
  2682. VALIDATE_PRODUCT = YES;
  2683. };
  2684. name = Release;
  2685. };
  2686. FC97882E2485969C00A7906C /* Debug */ = {
  2687. isa = XCBuildConfiguration;
  2688. baseConfigurationReference = ECA3EFB4037410B4973BB632 /* Pods-LoopFollow.debug.xcconfig */;
  2689. buildSettings = {
  2690. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2691. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  2692. CODE_SIGN_ENTITLEMENTS = "LoopFollow/Loop Follow.entitlements";
  2693. CODE_SIGN_STYLE = Automatic;
  2694. DEFINES_MODULE = YES;
  2695. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2696. INFOPLIST_FILE = LoopFollow/Info.plist;
  2697. IPHONEOS_DEPLOYMENT_TARGET = 16.6;
  2698. LD_RUNPATH_SEARCH_PATHS = (
  2699. "$(inherited)",
  2700. "@executable_path/Frameworks",
  2701. );
  2702. PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow$(app_suffix)";
  2703. PRODUCT_NAME = "Loop Follow";
  2704. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2705. SUPPORTS_MACCATALYST = YES;
  2706. SWIFT_VERSION = 5.0;
  2707. TARGETED_DEVICE_FAMILY = "1,2";
  2708. };
  2709. name = Debug;
  2710. };
  2711. FC97882F2485969C00A7906C /* Release */ = {
  2712. isa = XCBuildConfiguration;
  2713. baseConfigurationReference = 059B0FA59AABFE72FE13DDDA /* Pods-LoopFollow.release.xcconfig */;
  2714. buildSettings = {
  2715. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2716. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  2717. CODE_SIGN_ENTITLEMENTS = "LoopFollow/Loop Follow.entitlements";
  2718. CODE_SIGN_STYLE = Automatic;
  2719. DEFINES_MODULE = YES;
  2720. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2721. INFOPLIST_FILE = LoopFollow/Info.plist;
  2722. IPHONEOS_DEPLOYMENT_TARGET = 16.6;
  2723. LD_RUNPATH_SEARCH_PATHS = (
  2724. "$(inherited)",
  2725. "@executable_path/Frameworks",
  2726. );
  2727. PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow$(app_suffix)";
  2728. PRODUCT_NAME = "Loop Follow";
  2729. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2730. SUPPORTS_MACCATALYST = YES;
  2731. SWIFT_VERSION = 5.0;
  2732. TARGETED_DEVICE_FAMILY = "1,2";
  2733. };
  2734. name = Release;
  2735. };
  2736. /* End XCBuildConfiguration section */
  2737. /* Begin XCConfigurationList section */
  2738. 37A4BDEA2F5B6B4C00EEB289 /* Build configuration list for PBXNativeTarget "LoopFollowLAExtensionExtension" */ = {
  2739. isa = XCConfigurationList;
  2740. buildConfigurations = (
  2741. 37A4BDEB2F5B6B4C00EEB289 /* Debug */,
  2742. 37A4BDEC2F5B6B4C00EEB289 /* Release */,
  2743. );
  2744. defaultConfigurationIsVisible = 0;
  2745. defaultConfigurationName = Release;
  2746. };
  2747. DDCC3ADC2DDE1790006F1C10 /* Build configuration list for PBXNativeTarget "Tests" */ = {
  2748. isa = XCConfigurationList;
  2749. buildConfigurations = (
  2750. DDCC3ADD2DDE1790006F1C10 /* Debug */,
  2751. DDCC3ADE2DDE1790006F1C10 /* Release */,
  2752. );
  2753. defaultConfigurationIsVisible = 0;
  2754. defaultConfigurationName = Release;
  2755. };
  2756. FC97880F2485969B00A7906C /* Build configuration list for PBXProject "LoopFollow" */ = {
  2757. isa = XCConfigurationList;
  2758. buildConfigurations = (
  2759. FC97882B2485969C00A7906C /* Debug */,
  2760. FC97882C2485969C00A7906C /* Release */,
  2761. );
  2762. defaultConfigurationIsVisible = 0;
  2763. defaultConfigurationName = Release;
  2764. };
  2765. FC97882D2485969C00A7906C /* Build configuration list for PBXNativeTarget "LoopFollow" */ = {
  2766. isa = XCConfigurationList;
  2767. buildConfigurations = (
  2768. FC97882E2485969C00A7906C /* Debug */,
  2769. FC97882F2485969C00A7906C /* Release */,
  2770. );
  2771. defaultConfigurationIsVisible = 0;
  2772. defaultConfigurationName = Release;
  2773. };
  2774. /* End XCConfigurationList section */
  2775. /* Begin XCVersionGroup section */
  2776. FC3AE7B3249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld */ = {
  2777. isa = XCVersionGroup;
  2778. children = (
  2779. FC3AE7B4249E8E0E00AAE1E0 /* LoopFollow.xcdatamodel */,
  2780. );
  2781. currentVersion = FC3AE7B4249E8E0E00AAE1E0 /* LoopFollow.xcdatamodel */;
  2782. name = LoopFollow.xcdatamodeld;
  2783. path = LoopFollow/LoopFollow.xcdatamodeld;
  2784. sourceTree = "<group>";
  2785. versionGroupType = wrapper.xcdatamodel;
  2786. };
  2787. /* End XCVersionGroup section */
  2788. };
  2789. rootObject = FC97880C2485969B00A7906C /* Project object */;
  2790. }