project.pbxproj 201 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 52;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */; };
  10. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5822B15939E719628E9FF7C /* SnoozeRootView.swift */; };
  11. 0CEA2EA070AB041AF3E3745B /* BolusRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */; };
  12. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */; };
  13. 0F7A65FBD2CD8D6477ED4539 /* NotificationsConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */; };
  14. 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */; };
  15. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 1927C8E82744606D00347C69 /* InfoPlist.strings */; };
  16. 1935364028496F7D001E0B16 /* TDD_averages.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1935363F28496F7D001E0B16 /* TDD_averages.swift */; };
  17. 19795118275953E50044850D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  18. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  19. 199561C1275E61A50077B976 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 199561C0275E61A50077B976 /* HealthKit.framework */; };
  20. 19F79FA9283AE7E000646323 /* TDD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F79FA8283AE7E000646323 /* TDD.swift */; };
  21. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */; };
  22. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60744C3E9BB3652895C908CC /* DataTableProvider.swift */; };
  23. 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19984D62EFC0035A9E9644D /* BolusProvider.swift */; };
  24. 28089E07169488CF6DCC2A31 /* AddCarbsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */; };
  25. 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */; };
  26. 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */; };
  27. 3171D2818C7C72CD1584BB5E /* NotificationsConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */; };
  28. 320D030F724170A637F06D50 /* CalibrationsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */; };
  29. 33E198D3039045D98C3DC5D4 /* AddCarbsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */; };
  30. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0725C9D32E00A708ED /* BaseView.swift */; };
  31. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0825C9D32F00A708ED /* BaseProvider.swift */; };
  32. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */ = {isa = PBXBuildFile; productRef = 3811DE0F25C9D37700A708ED /* Swinject */; };
  33. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1525C9D40400A708ED /* Screen.swift */; };
  34. 3811DE1825C9D40400A708ED /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1625C9D40400A708ED /* Router.swift */; };
  35. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1C25C9D48300A708ED /* MainProvider.swift */; };
  36. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */; };
  37. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2025C9D48300A708ED /* MainRootView.swift */; };
  38. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2825C9D49500A708ED /* HomeStateModel.swift */; };
  39. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2925C9D49500A708ED /* HomeProvider.swift */; };
  40. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */; };
  41. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2E25C9D49500A708ED /* HomeRootView.swift */; };
  42. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */; };
  43. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */; };
  44. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */; };
  45. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */; };
  46. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5425C9D4D500A708ED /* Formatters.swift */; };
  47. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  48. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5725C9D4D500A708ED /* ProgressBar.swift */; };
  49. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */; };
  50. 3811DE8F25C9D80400A708ED /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE8E25C9D80400A708ED /* User.swift */; };
  51. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9325C9D88200A708ED /* AppearanceManager.swift */; };
  52. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */; };
  53. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9725C9D88300A708ED /* NightscoutManager.swift */; };
  54. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */; };
  55. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9B25C9D88300A708ED /* Cache.swift */; };
  56. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */; };
  57. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */; };
  58. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9F25C9D88300A708ED /* Keychain.swift */; };
  59. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */; };
  60. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA625C9D88300A708ED /* UnlockManager.swift */; };
  61. 3811DEE825CA063400A708ED /* Injected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE425CA063400A708ED /* Injected.swift */; };
  62. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE625CA063400A708ED /* SyncAccess.swift */; };
  63. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE725CA063400A708ED /* PersistedProperty.swift */; };
  64. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0125CA9FEA00A708ED /* Credentials.swift */; };
  65. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0F25CAAAE200A708ED /* APSManager.swift */; };
  66. 3818AA47274C255A00843DB3 /* LibreTransmitter in Frameworks */ = {isa = PBXBuildFile; productRef = 3818AA46274C255A00843DB3 /* LibreTransmitter */; };
  67. 3818AA4A274C267000843DB3 /* CGMBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA49274C267000843DB3 /* CGMBLEKit.framework */; };
  68. 3818AA4B274C267100843DB3 /* CGMBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA49274C267000843DB3 /* CGMBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  69. 3818AA58274C26A300843DB3 /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; };
  70. 3818AA59274C26A300843DB3 /* LoopKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  71. 3818AA5A274C26A300843DB3 /* LoopKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; };
  72. 3818AA5B274C26A300843DB3 /* LoopKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  73. 3818AA5C274C26A300843DB3 /* MockKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; };
  74. 3818AA5D274C26A300843DB3 /* MockKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  75. 3818AA5E274C26A300843DB3 /* MockKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; };
  76. 3818AA5F274C26A300843DB3 /* MockKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  77. 3818AA60274C26A300843DB3 /* Crypto.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA50274C26A300843DB3 /* Crypto.framework */; };
  78. 3818AA61274C26A300843DB3 /* Crypto.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA50274C26A300843DB3 /* Crypto.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  79. 3818AA62274C26A400843DB3 /* MinimedKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA51274C26A300843DB3 /* MinimedKit.framework */; };
  80. 3818AA63274C26A400843DB3 /* MinimedKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA51274C26A300843DB3 /* MinimedKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  81. 3818AA64274C26A400843DB3 /* MinimedKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */; };
  82. 3818AA65274C26A400843DB3 /* MinimedKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  83. 3818AA66274C26A400843DB3 /* OmniKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA53274C26A300843DB3 /* OmniKit.framework */; };
  84. 3818AA67274C26A400843DB3 /* OmniKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA53274C26A300843DB3 /* OmniKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  85. 3818AA68274C26A400843DB3 /* OmniKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA54274C26A300843DB3 /* OmniKitUI.framework */; };
  86. 3818AA69274C26A400843DB3 /* OmniKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA54274C26A300843DB3 /* OmniKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  87. 3818AA6A274C26A500843DB3 /* RileyLinkBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */; };
  88. 3818AA6B274C26A500843DB3 /* RileyLinkBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  89. 3818AA6C274C26A500843DB3 /* RileyLinkKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */; };
  90. 3818AA6D274C26A500843DB3 /* RileyLinkKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  91. 3818AA6E274C26A500843DB3 /* RileyLinkKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */; };
  92. 3818AA6F274C26A500843DB3 /* RileyLinkKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  93. 3818AA71274C278200843DB3 /* LoopTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; };
  94. 3818AA72274C278200843DB3 /* LoopTestingKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  95. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E03261B82FA0094D973 /* ReachabilityManager.swift */; };
  96. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */; };
  97. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  98. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3821ED4B25DD18BA00BC42AD /* Constants.swift */; };
  99. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */; };
  100. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C134A25F14E3700715CE1 /* BGTargets.swift */; };
  101. 3833B46D26012030003021B3 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 3833B46C26012030003021B3 /* Algorithms */; };
  102. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D525FFE38C002D46C1 /* LoopView.swift */; };
  103. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D825FFEB3F002D46C1 /* Popup.swift */; };
  104. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D525CD4D8900E91849 /* FileStorage.swift */; };
  105. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D925CD64D500E91849 /* Glucose.swift */; };
  106. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803325C385E60086DB71 /* JavaScriptWorker.swift */; };
  107. 384E803825C388640086DB71 /* Script.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803725C388640086DB71 /* Script.swift */; };
  108. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569344270B5DFA0002C50D /* CGMType.swift */; };
  109. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569345270B5DFA0002C50D /* GlucoseSource.swift */; };
  110. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569346270B5DFB0002C50D /* AppGroupSource.swift */; };
  111. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569352270B5E350002C50D /* CGMRootView.swift */; };
  112. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */; };
  113. 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC025F2EA52002D6D5B /* Announcement.swift */; };
  114. 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */; };
  115. 3862CC05273D152B00BF832C /* CalibrationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC04273D152B00BF832C /* CalibrationService.swift */; };
  116. 3862CC1F273FDC9200BF832C /* CalibrationsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */; };
  117. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC2D2743F9F700BF832C /* CalendarManager.swift */; };
  118. 386A124F271707F000DDC61C /* DexcomSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 386A124E271707F000DDC61C /* DexcomSource.swift */; };
  119. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3870FF4225EC13F40088248F /* BloodGlucose.swift */; };
  120. 3871F38725ED661C0013ECB5 /* Suggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F38625ED661C0013ECB5 /* Suggestion.swift */; };
  121. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39B25ED892B0013ECB5 /* TempTarget.swift */; };
  122. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  123. 3883581C25EE79BB00E024B2 /* DecimalTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */; };
  124. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883583325EEB38000E024B2 /* PumpSettings.swift */; };
  125. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */; };
  126. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38887CCD25F5725200944304 /* IOBEntry.swift */; };
  127. 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E595B25AD948C0019842D /* FreeAPSApp.swift */; };
  128. 388E596025AD948E0019842D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 388E595F25AD948E0019842D /* Assets.xcassets */; };
  129. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E596B25AD95110019842D /* OpenAPS.swift */; };
  130. 388E596F25AD96040019842D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 388E596E25AD96040019842D /* javascript */; };
  131. 388E597225AD9CF10019842D /* json in Resources */ = {isa = PBXBuildFile; fileRef = 388E597125AD9CF10019842D /* json */; };
  132. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5B25B6F0770019842D /* JSON.swift */; };
  133. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5F25B6F2310019842D /* Autosens.swift */; };
  134. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */; };
  135. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389487392614928B004DF424 /* DispatchTimer.swift */; };
  136. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3895E4C525B9E00D00214B37 /* Preferences.swift */; };
  137. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389A571F26079BAA00BC102F /* Interpolation.swift */; };
  138. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECDFD2601061500D86C4F /* View+Snapshot.swift */; };
  139. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECE042601144100D86C4F /* ConcurrentMap.swift */; };
  140. 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */; };
  141. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */; };
  142. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */; };
  143. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0364125ED069400FCBB52 /* TempBasal.swift */; };
  144. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */; };
  145. 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */; };
  146. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */; };
  147. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A9260425F012D8009E3739 /* CarbRatios.swift */; };
  148. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */; };
  149. 38AAF8712600C1B0004AF583 /* MainChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF8702600C1B0004AF583 /* MainChartView.swift */; };
  150. 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */; };
  151. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75125F022080013F05B /* SettingsManager.swift */; };
  152. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */; };
  153. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38B17B6525DD90E0005CAE3D /* SwiftDate */; };
  154. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */; };
  155. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */; };
  156. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */; };
  157. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */; };
  158. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */; };
  159. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */; };
  160. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */; };
  161. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021A25E7D06400579895 /* PumpSettingsView.swift */; };
  162. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021C25E7E3AF00579895 /* Reservoir.swift */; };
  163. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */; };
  164. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */; };
  165. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */; };
  166. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3B525EBE24900CB6E88 /* Battery.swift */; };
  167. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */; };
  168. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB27F260CBB7F00F74C1A /* PumpView.swift */; };
  169. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */; };
  170. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF1785276A73D400B3528F /* TagCloudView.swift */; };
  171. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */ = {isa = PBXBuildFile; productRef = 38DF1788276FC8C400B3528F /* SwiftMessages */; };
  172. 38DF178D27733E6800B3528F /* snow.sks in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178B27733E6800B3528F /* snow.sks */; };
  173. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178C27733E6800B3528F /* Assets.xcassets */; };
  174. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF178F27733EAD00B3528F /* SnowScene.swift */; };
  175. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4451D274DB04600EC9A94 /* AppDelegate.swift */; };
  176. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */; };
  177. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44527274E401C00EC9A94 /* Protected.swift */; };
  178. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */; };
  179. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452B274E411600EC9A94 /* Disk+Data.swift */; };
  180. 38E44536274E411700EC9A94 /* Disk.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452C274E411600EC9A94 /* Disk.swift */; };
  181. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */; };
  182. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452E274E411600EC9A94 /* Disk+[Data].swift */; };
  183. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */; };
  184. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */; };
  185. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */; };
  186. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44532274E411700EC9A94 /* Disk+Codable.swift */; };
  187. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44533274E411700EC9A94 /* Disk+Errors.swift */; };
  188. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E873FD274F761800975559 /* CoreNFC.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
  189. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */; settings = {ATTRIBUTES = (Weak, ); }; };
  190. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87407274F9AD000975559 /* UserNotificationsManager.swift */; };
  191. 38E8751F27554D5700975559 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8751E27554D5700975559 /* Assets.xcassets */; };
  192. 38E8752527554D5700975559 /* FreeAPSWatch WatchKit Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  193. 38E8752A27554D5700975559 /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752927554D5700975559 /* FreeAPSApp.swift */; };
  194. 38E8752C27554D5700975559 /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752B27554D5700975559 /* MainView.swift */; };
  195. 38E8752E27554D5700975559 /* NotificationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752D27554D5700975559 /* NotificationController.swift */; };
  196. 38E8753027554D5700975559 /* NotificationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752F27554D5700975559 /* NotificationView.swift */; };
  197. 38E8753227554D5700975559 /* ComplicationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8753127554D5700975559 /* ComplicationController.swift */; };
  198. 38E8753427554D5800975559 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8753327554D5800975559 /* Assets.xcassets */; };
  199. 38E8753727554D5900975559 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8753627554D5800975559 /* Preview Assets.xcassets */; };
  200. 38E8753C27554D5900975559 /* FreeAPSWatch.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = 38E8751C27554D5500975559 /* FreeAPSWatch.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  201. 38E8754527554D8800975559 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 388E595F25AD948E0019842D /* Assets.xcassets */; };
  202. 38E8754627554D8A00975559 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 388E595F25AD948E0019842D /* Assets.xcassets */; };
  203. 38E8754727554DF100975559 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  204. 38E8754A275550BB00975559 /* CarbsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87549275550BB00975559 /* CarbsView.swift */; };
  205. 38E8754C2755548F00975559 /* WatchStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8754B2755548F00975559 /* WatchStateModel.swift */; };
  206. 38E8754F275556FA00975559 /* WatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8754E275556FA00975559 /* WatchManager.swift */; };
  207. 38E8755127555D0500975559 /* DataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755027555D0500975559 /* DataFlow.swift */; };
  208. 38E8755427561E9800975559 /* DataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755027555D0500975559 /* DataFlow.swift */; };
  209. 38E8755827567AE400975559 /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38E8755727567AE400975559 /* SwiftDate */; };
  210. 38E8755927567CA600975559 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  211. 38E8755B27568A6800975559 /* ConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755A27568A6700975559 /* ConfirmationView.swift */; };
  212. 38E8757927579D9200975559 /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  213. 38E8757B2757B1C300975559 /* TempTargetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757A2757B1C300975559 /* TempTargetsView.swift */; };
  214. 38E8757D2757C45D00975559 /* BolusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757C2757C45D00975559 /* BolusView.swift */; };
  215. 38E8757E2758C86A00975559 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  216. 38E8758027595DC600975559 /* BolusConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757F27595DC500975559 /* BolusConfirmationView.swift */; };
  217. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E989DC25F5021400C0CED0 /* PumpStatus.swift */; };
  218. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1B25F52C9300C0CED0 /* Signpost.swift */; };
  219. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1C25F52C9300C0CED0 /* Logger.swift */; };
  220. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */; };
  221. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */; };
  222. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */; };
  223. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */; };
  224. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2F25F52FF700C0CED0 /* Config.swift */; };
  225. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A3625F5509500C0CED0 /* String+Extensions.swift */; };
  226. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */; };
  227. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */; };
  228. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  229. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */; };
  230. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3D525E8FDF40078B0D1 /* MD5.swift */; };
  231. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */; };
  232. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */; };
  233. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826925CC82DB001FF17A /* NetworkService.swift */; };
  234. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */; };
  235. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3F92737E42000574A46 /* BaseStateModel.swift */; };
  236. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FB2737E53800574A46 /* MainStateModel.swift */; };
  237. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FD2738083E00574A46 /* CGMProvider.swift */; };
  238. 38FEF408273B011A00574A46 /* LibreTransmitterSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */; };
  239. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF412273B317A00574A46 /* HKUnit.swift */; };
  240. 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */; };
  241. 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */; };
  242. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */; };
  243. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */; };
  244. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */; };
  245. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */; };
  246. 5BFA1C2208114643B77F8CEB /* AddTempTargetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */; };
  247. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */; };
  248. 61962FCAF8A2D222553AC5A3 /* LibreConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */; };
  249. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */; };
  250. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */; };
  251. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */; };
  252. 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */; };
  253. 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */; };
  254. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */; };
  255. 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */; };
  256. 6EADD581738D64431902AC0A /* LibreConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */; };
  257. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */; };
  258. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */; };
  259. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */; };
  260. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */; };
  261. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */; };
  262. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */; };
  263. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */; };
  264. 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */; };
  265. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */; };
  266. 8BC2F5A29AD1ED08AC0EE013 /* AddTempTargetRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */; };
  267. 903D18976088B09110BCBE29 /* LibreConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */; };
  268. 9050F378F0063C064D7FFC86 /* LibreConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */; };
  269. 919DBD08F13BAFB180DF6F47 /* AddTempTargetStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */; };
  270. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */; };
  271. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */; };
  272. 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */; };
  273. A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */; };
  274. A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */; };
  275. A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */; };
  276. A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */; };
  277. A6F097A14CAAE0CE0D11BE1B /* AddCarbsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */; };
  278. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */; };
  279. B7C465E9472624D8A2BE2A6A /* CalibrationsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */; };
  280. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */; };
  281. BA90041DC8991147E5C8C3AA /* CalibrationsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */; };
  282. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */; };
  283. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */; };
  284. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */; };
  285. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */; };
  286. CD78BB94E43B249D60CC1A1B /* NotificationsConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */; };
  287. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */; };
  288. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */; };
  289. CEB434DC28B8F5B900B70274 /* MKRingProgressView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */; };
  290. CEB434DD28B8F5B900B70274 /* MKRingProgressView.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  291. CEB434DF28B8F5C400B70274 /* OmniBLE.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEB434DE28B8F5C400B70274 /* OmniBLE.framework */; };
  292. CEB434E028B8F5C400B70274 /* OmniBLE.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CEB434DE28B8F5C400B70274 /* OmniBLE.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  293. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */; };
  294. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E428B8FF5D00B70274 /* UIColor.swift */; };
  295. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */; };
  296. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; };
  297. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
  298. D2165E9D78EFF692C1DED1C6 /* AddTempTargetDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */; };
  299. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */; };
  300. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */; };
  301. D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */; };
  302. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */; };
  303. DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */; };
  304. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFD27368630002FF094 /* ServiceAssembly.swift */; };
  305. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFE27368630002FF094 /* SecurityAssembly.swift */; };
  306. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFF27368630002FF094 /* StorageAssembly.swift */; };
  307. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0027368630002FF094 /* UIAssembly.swift */; };
  308. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0127368630002FF094 /* APSAssembly.swift */; };
  309. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0227368630002FF094 /* NetworkAssembly.swift */; };
  310. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */; };
  311. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06B9119275B5EEA003C04B6 /* Array+Extension.swift */; };
  312. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */; };
  313. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */; };
  314. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */; };
  315. E25073BC86C11C3D6A42F5AC /* CalibrationsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */; };
  316. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */; };
  317. E3A08AAE59538BC8A8ABE477 /* NotificationsConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */; };
  318. E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */; };
  319. E97285ED9B814CD5253C6658 /* AddCarbsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */; };
  320. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */; };
  321. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */; };
  322. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */; };
  323. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692A9274B7AAE0037068D /* HealthKitManager.swift */; };
  324. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692CE274B999A0037068D /* HealthKitDataFlow.swift */; };
  325. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D0274B99B60037068D /* HealthKitProvider.swift */; };
  326. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */; };
  327. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D5274B9A450037068D /* HealthKitStateModel.swift */; };
  328. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */; };
  329. /* End PBXBuildFile section */
  330. /* Begin PBXContainerItemProxy section */
  331. 38E8752627554D5700975559 /* PBXContainerItemProxy */ = {
  332. isa = PBXContainerItemProxy;
  333. containerPortal = 388E595025AD948C0019842D /* Project object */;
  334. proxyType = 1;
  335. remoteGlobalIDString = 38E8752327554D5700975559;
  336. remoteInfo = "FreeAPSWatch WatchKit Extension";
  337. };
  338. 38E8753A27554D5900975559 /* PBXContainerItemProxy */ = {
  339. isa = PBXContainerItemProxy;
  340. containerPortal = 388E595025AD948C0019842D /* Project object */;
  341. proxyType = 1;
  342. remoteGlobalIDString = 38E8751B27554D5500975559;
  343. remoteInfo = FreeAPSWatch;
  344. };
  345. 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */ = {
  346. isa = PBXContainerItemProxy;
  347. containerPortal = 388E595025AD948C0019842D /* Project object */;
  348. proxyType = 1;
  349. remoteGlobalIDString = 388E595725AD948C0019842D;
  350. remoteInfo = FreeAPS;
  351. };
  352. /* End PBXContainerItemProxy section */
  353. /* Begin PBXCopyFilesBuildPhase section */
  354. 3821ECD025DC703C00BC42AD /* Embed Frameworks */ = {
  355. isa = PBXCopyFilesBuildPhase;
  356. buildActionMask = 2147483647;
  357. dstPath = "";
  358. dstSubfolderSpec = 10;
  359. files = (
  360. 3818AA6F274C26A500843DB3 /* RileyLinkKitUI.framework in Embed Frameworks */,
  361. 3818AA4B274C267100843DB3 /* CGMBLEKit.framework in Embed Frameworks */,
  362. 3818AA67274C26A400843DB3 /* OmniKit.framework in Embed Frameworks */,
  363. CEB434E028B8F5C400B70274 /* OmniBLE.framework in Embed Frameworks */,
  364. 3818AA63274C26A400843DB3 /* MinimedKit.framework in Embed Frameworks */,
  365. CEB434DD28B8F5B900B70274 /* MKRingProgressView.framework in Embed Frameworks */,
  366. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */,
  367. 3818AA6B274C26A500843DB3 /* RileyLinkBLEKit.framework in Embed Frameworks */,
  368. 3818AA59274C26A300843DB3 /* LoopKit.framework in Embed Frameworks */,
  369. 3818AA65274C26A400843DB3 /* MinimedKitUI.framework in Embed Frameworks */,
  370. 3818AA5B274C26A300843DB3 /* LoopKitUI.framework in Embed Frameworks */,
  371. 3818AA69274C26A400843DB3 /* OmniKitUI.framework in Embed Frameworks */,
  372. 3818AA61274C26A300843DB3 /* Crypto.framework in Embed Frameworks */,
  373. 3818AA72274C278200843DB3 /* LoopTestingKit.framework in Embed Frameworks */,
  374. 3818AA6D274C26A500843DB3 /* RileyLinkKit.framework in Embed Frameworks */,
  375. 3818AA5D274C26A300843DB3 /* MockKit.framework in Embed Frameworks */,
  376. 3818AA5F274C26A300843DB3 /* MockKitUI.framework in Embed Frameworks */,
  377. );
  378. name = "Embed Frameworks";
  379. runOnlyForDeploymentPostprocessing = 0;
  380. };
  381. 38E8753D27554D5900975559 /* Embed Watch Content */ = {
  382. isa = PBXCopyFilesBuildPhase;
  383. buildActionMask = 2147483647;
  384. dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
  385. dstSubfolderSpec = 16;
  386. files = (
  387. 38E8753C27554D5900975559 /* FreeAPSWatch.app in Embed Watch Content */,
  388. );
  389. name = "Embed Watch Content";
  390. runOnlyForDeploymentPostprocessing = 0;
  391. };
  392. 38E8754027554D5900975559 /* Embed App Extensions */ = {
  393. isa = PBXCopyFilesBuildPhase;
  394. buildActionMask = 2147483647;
  395. dstPath = "";
  396. dstSubfolderSpec = 13;
  397. files = (
  398. 38E8752527554D5700975559 /* FreeAPSWatch WatchKit Extension.appex in Embed App Extensions */,
  399. );
  400. name = "Embed App Extensions";
  401. runOnlyForDeploymentPostprocessing = 0;
  402. };
  403. /* End PBXCopyFilesBuildPhase section */
  404. /* Begin PBXFileReference section */
  405. 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorDataFlow.swift; sourceTree = "<group>"; };
  406. 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorStateModel.swift; sourceTree = "<group>"; };
  407. 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusRootView.swift; sourceTree = "<group>"; };
  408. 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorDataFlow.swift; sourceTree = "<group>"; };
  409. 1918333A26ADA46800F45722 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  410. 1927C8E92744611700347C69 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  411. 1927C8EA2744611800347C69 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  412. 1927C8EB2744611900347C69 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  413. 1927C8EC2744611A00347C69 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  414. 1927C8ED2744611B00347C69 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  415. 1927C8EE2744611C00347C69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  416. 1927C8EF2744611D00347C69 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  417. 1927C8F02744611E00347C69 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  418. 1927C8F12744611E00347C69 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  419. 1927C8F22744611F00347C69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  420. 1927C8F32744612000347C69 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  421. 1927C8F42744612100347C69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  422. 1927C8F52744612100347C69 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  423. 1927C8F62744612200347C69 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  424. 1927C8F72744612300347C69 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  425. 1927C8F82744612400347C69 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  426. 1927C8F92744612400347C69 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  427. 1927C8FA2744612500347C69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  428. 1927C8FB2744612600347C69 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  429. 1927C8FE274489BA00347C69 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  430. 1935363F28496F7D001E0B16 /* TDD_averages.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TDD_averages.swift; sourceTree = "<group>"; };
  431. 198377D3266BFFF6004DE65E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  432. 198377D5266C0A05004DE65E /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  433. 198377D6266C0A0A004DE65E /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  434. 198377D7266C0A15004DE65E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  435. 198377D8266C0A1C004DE65E /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  436. 198377D9266C0A21004DE65E /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  437. 198377DA266C0A2B004DE65E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  438. 198377DB266C0A32004DE65E /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  439. 198377DC266C0A3C004DE65E /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  440. 198377DD266C0A51004DE65E /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  441. 198377DE266C0A69004DE65E /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
  442. 198377DF266C0A7F004DE65E /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  443. 198377E0266C0AB5004DE65E /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  444. 198377E1266C0ABF004DE65E /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  445. 198377E2266C0AC8004DE65E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  446. 198377E3266C0ADC004DE65E /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  447. 198377E4266C13D2004DE65E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  448. 199561C0275E61A50077B976 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = Platforms/WatchOS.platform/Developer/SDKs/WatchOS8.0.sdk/System/Library/Frameworks/HealthKit.framework; sourceTree = DEVELOPER_DIR; };
  449. 199732B4271B72DD00129A3F /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  450. 199732B5271B9EE900129A3F /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  451. 19C166682756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  452. 19C166692756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  453. 19F79FA8283AE7E000646323 /* TDD.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TDD.swift; sourceTree = "<group>"; };
  454. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeProvider.swift; sourceTree = "<group>"; };
  455. 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsProvider.swift; sourceTree = "<group>"; };
  456. 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusStateModel.swift; sourceTree = "<group>"; };
  457. 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigRootView.swift; sourceTree = "<group>"; };
  458. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigRootView.swift; sourceTree = "<group>"; };
  459. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigDataFlow.swift; sourceTree = "<group>"; };
  460. 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigDataFlow.swift; sourceTree = "<group>"; };
  461. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeDataFlow.swift; sourceTree = "<group>"; };
  462. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorStateModel.swift; sourceTree = "<group>"; };
  463. 3811DE0725C9D32E00A708ED /* BaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  464. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseProvider.swift; sourceTree = "<group>"; };
  465. 3811DE1525C9D40400A708ED /* Screen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Screen.swift; sourceTree = "<group>"; };
  466. 3811DE1625C9D40400A708ED /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = "<group>"; };
  467. 3811DE1C25C9D48300A708ED /* MainProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainProvider.swift; sourceTree = "<group>"; };
  468. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainDataFlow.swift; sourceTree = "<group>"; };
  469. 3811DE2025C9D48300A708ED /* MainRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainRootView.swift; sourceTree = "<group>"; };
  470. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeStateModel.swift; sourceTree = "<group>"; };
  471. 3811DE2925C9D49500A708ED /* HomeProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeProvider.swift; sourceTree = "<group>"; };
  472. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeDataFlow.swift; sourceTree = "<group>"; };
  473. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeRootView.swift; sourceTree = "<group>"; };
  474. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsStateModel.swift; sourceTree = "<group>"; };
  475. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsRootView.swift; sourceTree = "<group>"; };
  476. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsDataFlow.swift; sourceTree = "<group>"; };
  477. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsProvider.swift; sourceTree = "<group>"; };
  478. 3811DE5425C9D4D500A708ED /* Formatters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Formatters.swift; sourceTree = "<group>"; };
  479. 3811DE5525C9D4D500A708ED /* Publisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Publisher.swift; sourceTree = "<group>"; };
  480. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = "<group>"; };
  481. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
  482. 3811DE8E25C9D80400A708ED /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  483. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppearanceManager.swift; sourceTree = "<group>"; };
  484. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTTPResponseStatus.swift; sourceTree = "<group>"; };
  485. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightscoutManager.swift; sourceTree = "<group>"; };
  486. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Cache.swift"; sourceTree = "<group>"; };
  487. 3811DE9B25C9D88300A708ED /* Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cache.swift; sourceTree = "<group>"; };
  488. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyValueStorage.swift; sourceTree = "<group>"; };
  489. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseKeychain.swift; sourceTree = "<group>"; };
  490. 3811DE9F25C9D88300A708ED /* Keychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
  491. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeychainItemAccessibility.swift; sourceTree = "<group>"; };
  492. 3811DEA625C9D88300A708ED /* UnlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnlockManager.swift; sourceTree = "<group>"; };
  493. 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPS.entitlements; sourceTree = "<group>"; };
  494. 3811DEE425CA063400A708ED /* Injected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Injected.swift; sourceTree = "<group>"; };
  495. 3811DEE625CA063400A708ED /* SyncAccess.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncAccess.swift; sourceTree = "<group>"; };
  496. 3811DEE725CA063400A708ED /* PersistedProperty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistedProperty.swift; sourceTree = "<group>"; };
  497. 3811DF0125CA9FEA00A708ED /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
  498. 3811DF0F25CAAAE200A708ED /* APSManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APSManager.swift; sourceTree = "<group>"; };
  499. 3818AA42274BBC1100843DB3 /* ConfigOverride.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = ConfigOverride.xcconfig; sourceTree = "<group>"; };
  500. 3818AA45274C229000843DB3 /* LibreTransmitter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LibreTransmitter; path = Dependencies/LibreTransmitter; sourceTree = "<group>"; };
  501. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  502. 3818AA4C274C26A300843DB3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  503. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  504. 3818AA4E274C26A300843DB3 /* MockKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  505. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  506. 3818AA50274C26A300843DB3 /* Crypto.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Crypto.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  507. 3818AA51274C26A300843DB3 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  508. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  509. 3818AA53274C26A300843DB3 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  510. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  511. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  512. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  513. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  514. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopTestingKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  515. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReachabilityManager.swift; sourceTree = "<group>"; };
  516. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchTreatmentsManager.swift; sourceTree = "<group>"; };
  517. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConvenienceExtensions.swift; sourceTree = "<group>"; };
  518. 3821ED4B25DD18BA00BC42AD /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
  519. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinSensitivities.swift; sourceTree = "<group>"; };
  520. 382C134A25F14E3700715CE1 /* BGTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTargets.swift; sourceTree = "<group>"; };
  521. 383420D525FFE38C002D46C1 /* LoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopView.swift; sourceTree = "<group>"; };
  522. 383420D825FFEB3F002D46C1 /* Popup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popup.swift; sourceTree = "<group>"; };
  523. 383948D525CD4D8900E91849 /* FileStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorage.swift; sourceTree = "<group>"; };
  524. 383948D925CD64D500E91849 /* Glucose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glucose.swift; sourceTree = "<group>"; };
  525. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JavaScriptWorker.swift; sourceTree = "<group>"; };
  526. 384E803725C388640086DB71 /* Script.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Script.swift; sourceTree = "<group>"; };
  527. 38569344270B5DFA0002C50D /* CGMType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMType.swift; sourceTree = "<group>"; };
  528. 38569345270B5DFA0002C50D /* GlucoseSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSource.swift; sourceTree = "<group>"; };
  529. 38569346270B5DFB0002C50D /* AppGroupSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppGroupSource.swift; sourceTree = "<group>"; };
  530. 38569352270B5E350002C50D /* CGMRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMRootView.swift; sourceTree = "<group>"; };
  531. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatus.swift; sourceTree = "<group>"; };
  532. 385CEAC025F2EA52002D6D5B /* Announcement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Announcement.swift; sourceTree = "<group>"; };
  533. 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnnouncementsStorage.swift; sourceTree = "<group>"; };
  534. 3862CC04273D152B00BF832C /* CalibrationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationService.swift; sourceTree = "<group>"; };
  535. 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationsChart.swift; sourceTree = "<group>"; };
  536. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = "<group>"; };
  537. 386A124E271707F000DDC61C /* DexcomSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSource.swift; sourceTree = "<group>"; };
  538. 3870FF4225EC13F40088248F /* BloodGlucose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BloodGlucose.swift; sourceTree = "<group>"; };
  539. 3871F38625ED661C0013ECB5 /* Suggestion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Suggestion.swift; sourceTree = "<group>"; };
  540. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTarget.swift; sourceTree = "<group>"; };
  541. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decimal+Extensions.swift"; sourceTree = "<group>"; };
  542. 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DecimalTextField.swift; sourceTree = "<group>"; };
  543. 3883583325EEB38000E024B2 /* PumpSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
  544. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalProfileEntry.swift; sourceTree = "<group>"; };
  545. 38887CCD25F5725200944304 /* IOBEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBEntry.swift; sourceTree = "<group>"; };
  546. 388E595825AD948C0019842D /* FreeAPS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPS.app; sourceTree = BUILT_PRODUCTS_DIR; };
  547. 388E595B25AD948C0019842D /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
  548. 388E595F25AD948E0019842D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  549. 388E596425AD948E0019842D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  550. 388E596B25AD95110019842D /* OpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPS.swift; sourceTree = "<group>"; };
  551. 388E596E25AD96040019842D /* javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; path = javascript; sourceTree = "<group>"; };
  552. 388E597125AD9CF10019842D /* json */ = {isa = PBXFileReference; lastKnownFileType = folder; path = json; sourceTree = "<group>"; };
  553. 388E5A5B25B6F0770019842D /* JSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
  554. 388E5A5F25B6F2310019842D /* Autosens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autosens.swift; sourceTree = "<group>"; };
  555. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutTreatment.swift; sourceTree = "<group>"; };
  556. 389487392614928B004DF424 /* DispatchTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DispatchTimer.swift; sourceTree = "<group>"; };
  557. 3895E4C525B9E00D00214B37 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
  558. 389A571F26079BAA00BC102F /* Interpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolation.swift; sourceTree = "<group>"; };
  559. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snapshot.swift"; sourceTree = "<group>"; };
  560. 389ECE042601144100D86C4F /* ConcurrentMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConcurrentMap.swift; sourceTree = "<group>"; };
  561. 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autotune.swift; sourceTree = "<group>"; };
  562. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LRUCache.swift; sourceTree = "<group>"; };
  563. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorage.swift; sourceTree = "<group>"; };
  564. 38A0364125ED069400FCBB52 /* TempBasal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempBasal.swift; sourceTree = "<group>"; };
  565. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryEvent.swift; sourceTree = "<group>"; };
  566. 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchAnnouncementsManager.swift; sourceTree = "<group>"; };
  567. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtensions.swift; sourceTree = "<group>"; };
  568. 38A9260425F012D8009E3739 /* CarbRatios.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbRatios.swift; sourceTree = "<group>"; };
  569. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentGlucoseView.swift; sourceTree = "<group>"; };
  570. 38AAF8702600C1B0004AF583 /* MainChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartView.swift; sourceTree = "<group>"; };
  571. 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSSettings.swift; sourceTree = "<group>"; };
  572. 38AEE75125F022080013F05B /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
  573. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorage.swift; sourceTree = "<group>"; };
  574. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IndexedCollection.swift; sourceTree = "<group>"; };
  575. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSetupView.swift; sourceTree = "<group>"; };
  576. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenter.swift; sourceTree = "<group>"; };
  577. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftNotificationCenter.swift; sourceTree = "<group>"; };
  578. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeakObjectSet.swift; sourceTree = "<group>"; };
  579. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Broadcaster.swift; sourceTree = "<group>"; };
  580. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpManagerExtensions.swift; sourceTree = "<group>"; };
  581. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettingsView.swift; sourceTree = "<group>"; };
  582. 38BF021C25E7E3AF00579895 /* Reservoir.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reservoir.swift; sourceTree = "<group>"; };
  583. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceDataManager.swift; sourceTree = "<group>"; };
  584. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
  585. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+AssociatedValues.swift"; sourceTree = "<group>"; };
  586. 38D0B3B525EBE24900CB6E88 /* Battery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Battery.swift; sourceTree = "<group>"; };
  587. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsEntry.swift; sourceTree = "<group>"; };
  588. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpView.swift; sourceTree = "<group>"; };
  589. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchGlucoseManager.swift; sourceTree = "<group>"; };
  590. 38DF1785276A73D400B3528F /* TagCloudView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagCloudView.swift; sourceTree = "<group>"; };
  591. 38DF178B27733E6800B3528F /* snow.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = snow.sks; sourceTree = "<group>"; };
  592. 38DF178C27733E6800B3528F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  593. 38DF178F27733EAD00B3528F /* SnowScene.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnowScene.swift; sourceTree = "<group>"; };
  594. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  595. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = "<group>"; };
  596. 38E44527274E401C00EC9A94 /* Protected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protected.swift; sourceTree = "<group>"; };
  597. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+InternalHelpers.swift"; sourceTree = "<group>"; };
  598. 38E4452B274E411600EC9A94 /* Disk+Data.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Data.swift"; sourceTree = "<group>"; };
  599. 38E4452C274E411600EC9A94 /* Disk.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Disk.swift; sourceTree = "<group>"; };
  600. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Helpers.swift"; sourceTree = "<group>"; };
  601. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[Data].swift"; sourceTree = "<group>"; };
  602. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+UIImage.swift"; sourceTree = "<group>"; };
  603. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[UIImage].swift"; sourceTree = "<group>"; };
  604. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+VolumeInformation.swift"; sourceTree = "<group>"; };
  605. 38E44532274E411700EC9A94 /* Disk+Codable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Codable.swift"; sourceTree = "<group>"; };
  606. 38E44533274E411700EC9A94 /* Disk+Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Errors.swift"; sourceTree = "<group>"; };
  607. 38E873FD274F761800975559 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
  608. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libswiftCoreNFC.tbd; path = usr/lib/swift/libswiftCoreNFC.tbd; sourceTree = SDKROOT; };
  609. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserNotificationsManager.swift; sourceTree = "<group>"; };
  610. 38E8751C27554D5500975559 /* FreeAPSWatch.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPSWatch.app; sourceTree = BUILT_PRODUCTS_DIR; };
  611. 38E8751E27554D5700975559 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  612. 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "FreeAPSWatch WatchKit Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  613. 38E8752927554D5700975559 /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
  614. 38E8752B27554D5700975559 /* MainView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = "<group>"; };
  615. 38E8752D27554D5700975559 /* NotificationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationController.swift; sourceTree = "<group>"; };
  616. 38E8752F27554D5700975559 /* NotificationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationView.swift; sourceTree = "<group>"; };
  617. 38E8753127554D5700975559 /* ComplicationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComplicationController.swift; sourceTree = "<group>"; };
  618. 38E8753327554D5800975559 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  619. 38E8753627554D5800975559 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
  620. 38E8753827554D5900975559 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  621. 38E8753927554D5900975559 /* PushNotificationPayload.apns */ = {isa = PBXFileReference; lastKnownFileType = text; path = PushNotificationPayload.apns; sourceTree = "<group>"; };
  622. 38E87549275550BB00975559 /* CarbsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsView.swift; sourceTree = "<group>"; };
  623. 38E8754B2755548F00975559 /* WatchStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchStateModel.swift; sourceTree = "<group>"; };
  624. 38E8754E275556FA00975559 /* WatchManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchManager.swift; sourceTree = "<group>"; };
  625. 38E8755027555D0500975559 /* DataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataFlow.swift; sourceTree = "<group>"; };
  626. 38E8755527564B5000975559 /* FreeAPSWatch WatchKit Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "FreeAPSWatch WatchKit Extension.entitlements"; sourceTree = "<group>"; };
  627. 38E8755627564B6100975559 /* FreeAPSWatch.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPSWatch.entitlements; sourceTree = "<group>"; };
  628. 38E8755A27568A6700975559 /* ConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfirmationView.swift; sourceTree = "<group>"; };
  629. 38E8757A2757B1C300975559 /* TempTargetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsView.swift; sourceTree = "<group>"; };
  630. 38E8757C2757C45D00975559 /* BolusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusView.swift; sourceTree = "<group>"; };
  631. 38E8757F27595DC500975559 /* BolusConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusConfirmationView.swift; sourceTree = "<group>"; };
  632. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpStatus.swift; sourceTree = "<group>"; };
  633. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signpost.swift; sourceTree = "<group>"; };
  634. 38E98A1C25F52C9300C0CED0 /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
  635. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueReporter.swift; sourceTree = "<group>"; };
  636. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionIssueReporter.swift; sourceTree = "<group>"; };
  637. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Error+Extensions.swift"; sourceTree = "<group>"; };
  638. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSLocking+Extensions.swift"; sourceTree = "<group>"; };
  639. 38E98A2F25F52FF700C0CED0 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
  640. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
  641. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleLogReporter.swift; sourceTree = "<group>"; };
  642. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressViewStyle.swift; sourceTree = "<group>"; };
  643. 38F37827261260DC009DB701 /* Color+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Color+Extensions.swift"; sourceTree = "<group>"; };
  644. 38F3783A2613555C009DB701 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  645. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsStorage.swift; sourceTree = "<group>"; };
  646. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
  647. 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FreeAPSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  648. 38FCF3F125E9028E0078B0D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  649. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorageTests.swift; sourceTree = "<group>"; };
  650. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorage.swift; sourceTree = "<group>"; };
  651. 38FE826925CC82DB001FF17A /* NetworkService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkService.swift; sourceTree = "<group>"; };
  652. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutAPI.swift; sourceTree = "<group>"; };
  653. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseStateModel.swift; sourceTree = "<group>"; };
  654. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainStateModel.swift; sourceTree = "<group>"; };
  655. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMProvider.swift; sourceTree = "<group>"; };
  656. 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LibreTransmitterSource.swift; sourceTree = "<group>"; };
  657. 38FEF412273B317A00574A46 /* HKUnit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
  658. 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsStateModel.swift; sourceTree = "<group>"; };
  659. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorProvider.swift; sourceTree = "<group>"; };
  660. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigProvider.swift; sourceTree = "<group>"; };
  661. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigStateModel.swift; sourceTree = "<group>"; };
  662. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorDataFlow.swift; sourceTree = "<group>"; };
  663. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorProvider.swift; sourceTree = "<group>"; };
  664. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorProvider.swift; sourceTree = "<group>"; };
  665. 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsStateModel.swift; sourceTree = "<group>"; };
  666. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorRootView.swift; sourceTree = "<group>"; };
  667. 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsRootView.swift; sourceTree = "<group>"; };
  668. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorStateModel.swift; sourceTree = "<group>"; };
  669. 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetDataFlow.swift; sourceTree = "<group>"; };
  670. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMStateModel.swift; sourceTree = "<group>"; };
  671. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorStateModel.swift; sourceTree = "<group>"; };
  672. 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsDataFlow.swift; sourceTree = "<group>"; };
  673. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableProvider.swift; sourceTree = "<group>"; };
  674. 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsProvider.swift; sourceTree = "<group>"; };
  675. 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorStateModel.swift; sourceTree = "<group>"; };
  676. 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigDataFlow.swift; sourceTree = "<group>"; };
  677. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorDataFlow.swift; sourceTree = "<group>"; };
  678. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalProvider.swift; sourceTree = "<group>"; };
  679. 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorProvider.swift; sourceTree = "<group>"; };
  680. 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorStateModel.swift; sourceTree = "<group>"; };
  681. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorDataFlow.swift; sourceTree = "<group>"; };
  682. 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorDataFlow.swift; sourceTree = "<group>"; };
  683. 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsRootView.swift; sourceTree = "<group>"; };
  684. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigRootView.swift; sourceTree = "<group>"; };
  685. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableRootView.swift; sourceTree = "<group>"; };
  686. 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorRootView.swift; sourceTree = "<group>"; };
  687. 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetStateModel.swift; sourceTree = "<group>"; };
  688. 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigRootView.swift; sourceTree = "<group>"; };
  689. 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigDataFlow.swift; sourceTree = "<group>"; };
  690. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorRootView.swift; sourceTree = "<group>"; };
  691. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableStateModel.swift; sourceTree = "<group>"; };
  692. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalDataFlow.swift; sourceTree = "<group>"; };
  693. 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorProvider.swift; sourceTree = "<group>"; };
  694. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorProvider.swift; sourceTree = "<group>"; };
  695. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigStateModel.swift; sourceTree = "<group>"; };
  696. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableDataFlow.swift; sourceTree = "<group>"; };
  697. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigProvider.swift; sourceTree = "<group>"; };
  698. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorStateModel.swift; sourceTree = "<group>"; };
  699. AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetProvider.swift; sourceTree = "<group>"; };
  700. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigDataFlow.swift; sourceTree = "<group>"; };
  701. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeRootView.swift; sourceTree = "<group>"; };
  702. B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigProvider.swift; sourceTree = "<group>"; };
  703. B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorRootView.swift; sourceTree = "<group>"; };
  704. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMDataFlow.swift; sourceTree = "<group>"; };
  705. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorDataFlow.swift; sourceTree = "<group>"; };
  706. BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigRootView.swift; sourceTree = "<group>"; };
  707. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorRootView.swift; sourceTree = "<group>"; };
  708. C19984D62EFC0035A9E9644D /* BolusProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusProvider.swift; sourceTree = "<group>"; };
  709. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalRootView.swift; sourceTree = "<group>"; };
  710. C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusDataFlow.swift; sourceTree = "<group>"; };
  711. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniBLEPumpManagerExtensions.swift; sourceTree = "<group>"; };
  712. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniPodManagerExtensions.swift; sourceTree = "<group>"; };
  713. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MKRingProgressView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  714. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniBLE.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  715. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothStateManager.swift; sourceTree = "<group>"; };
  716. CEB434E428B8FF5D00B70274 /* UIColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIColor.swift; sourceTree = "<group>"; };
  717. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopUIColorPalette+Default.swift"; sourceTree = "<group>"; };
  718. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalStateModel.swift; sourceTree = "<group>"; };
  719. D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorRootView.swift; sourceTree = "<group>"; };
  720. D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigStateModel.swift; sourceTree = "<group>"; };
  721. D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorProvider.swift; sourceTree = "<group>"; };
  722. DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsDataFlow.swift; sourceTree = "<group>"; };
  723. DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigStateModel.swift; sourceTree = "<group>"; };
  724. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServiceAssembly.swift; sourceTree = "<group>"; };
  725. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecurityAssembly.swift; sourceTree = "<group>"; };
  726. E00EEBFF27368630002FF094 /* StorageAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageAssembly.swift; sourceTree = "<group>"; };
  727. E00EEC0027368630002FF094 /* UIAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAssembly.swift; sourceTree = "<group>"; };
  728. E00EEC0127368630002FF094 /* APSAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APSAssembly.swift; sourceTree = "<group>"; };
  729. E00EEC0227368630002FF094 /* NetworkAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkAssembly.swift; sourceTree = "<group>"; };
  730. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSimulatorSource.swift; sourceTree = "<group>"; };
  731. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
  732. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = System/Library/Frameworks/HealthKit.framework; sourceTree = SDKROOT; };
  733. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitSample.swift; sourceTree = "<group>"; };
  734. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeStateModel.swift; sourceTree = "<group>"; };
  735. E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigProvider.swift; sourceTree = "<group>"; };
  736. E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigProvider.swift; sourceTree = "<group>"; };
  737. E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigStateModel.swift; sourceTree = "<group>"; };
  738. E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetRootView.swift; sourceTree = "<group>"; };
  739. F90692A9274B7AAE0037068D /* HealthKitManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitManager.swift; sourceTree = "<group>"; };
  740. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitDataFlow.swift; sourceTree = "<group>"; };
  741. F90692D0274B99B60037068D /* HealthKitProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitProvider.swift; sourceTree = "<group>"; };
  742. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleHealthKitRootView.swift; sourceTree = "<group>"; };
  743. F90692D5274B9A450037068D /* HealthKitStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitStateModel.swift; sourceTree = "<group>"; };
  744. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorRootView.swift; sourceTree = "<group>"; };
  745. /* End PBXFileReference section */
  746. /* Begin PBXFrameworksBuildPhase section */
  747. 388E595525AD948C0019842D /* Frameworks */ = {
  748. isa = PBXFrameworksBuildPhase;
  749. buildActionMask = 2147483647;
  750. files = (
  751. CEB434DC28B8F5B900B70274 /* MKRingProgressView.framework in Frameworks */,
  752. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */,
  753. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */,
  754. CEB434DF28B8F5C400B70274 /* OmniBLE.framework in Frameworks */,
  755. 3818AA71274C278200843DB3 /* LoopTestingKit.framework in Frameworks */,
  756. 3818AA47274C255A00843DB3 /* LibreTransmitter in Frameworks */,
  757. 3818AA4A274C267000843DB3 /* CGMBLEKit.framework in Frameworks */,
  758. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */,
  759. 3818AA5C274C26A300843DB3 /* MockKit.framework in Frameworks */,
  760. 3818AA6A274C26A500843DB3 /* RileyLinkBLEKit.framework in Frameworks */,
  761. 3818AA64274C26A400843DB3 /* MinimedKitUI.framework in Frameworks */,
  762. 3818AA66274C26A400843DB3 /* OmniKit.framework in Frameworks */,
  763. 3818AA6C274C26A500843DB3 /* RileyLinkKit.framework in Frameworks */,
  764. 3818AA68274C26A400843DB3 /* OmniKitUI.framework in Frameworks */,
  765. 3818AA5E274C26A300843DB3 /* MockKitUI.framework in Frameworks */,
  766. 3818AA6E274C26A500843DB3 /* RileyLinkKitUI.framework in Frameworks */,
  767. 3818AA5A274C26A300843DB3 /* LoopKitUI.framework in Frameworks */,
  768. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */,
  769. 3818AA60274C26A300843DB3 /* Crypto.framework in Frameworks */,
  770. 3833B46D26012030003021B3 /* Algorithms in Frameworks */,
  771. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */,
  772. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */,
  773. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */,
  774. 3818AA62274C26A400843DB3 /* MinimedKit.framework in Frameworks */,
  775. 3818AA58274C26A300843DB3 /* LoopKit.framework in Frameworks */,
  776. );
  777. runOnlyForDeploymentPostprocessing = 0;
  778. };
  779. 38E8752127554D5700975559 /* Frameworks */ = {
  780. isa = PBXFrameworksBuildPhase;
  781. buildActionMask = 2147483647;
  782. files = (
  783. 38E8755827567AE400975559 /* SwiftDate in Frameworks */,
  784. 199561C1275E61A50077B976 /* HealthKit.framework in Frameworks */,
  785. );
  786. runOnlyForDeploymentPostprocessing = 0;
  787. };
  788. 38FCF3EA25E9028E0078B0D1 /* Frameworks */ = {
  789. isa = PBXFrameworksBuildPhase;
  790. buildActionMask = 2147483647;
  791. files = (
  792. );
  793. runOnlyForDeploymentPostprocessing = 0;
  794. };
  795. /* End PBXFrameworksBuildPhase section */
  796. /* Begin PBXGroup section */
  797. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */ = {
  798. isa = PBXGroup;
  799. children = (
  800. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */,
  801. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */,
  802. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */,
  803. 4E8C7B59F8065047ECE20965 /* View */,
  804. );
  805. path = ConfigEditor;
  806. sourceTree = "<group>";
  807. };
  808. 0A67A70F9438DB6586398458 /* View */ = {
  809. isa = PBXGroup;
  810. children = (
  811. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */,
  812. );
  813. path = View;
  814. sourceTree = "<group>";
  815. };
  816. 0D76BBC81CEDC1A0050F45EF /* View */ = {
  817. isa = PBXGroup;
  818. children = (
  819. 38569352270B5E350002C50D /* CGMRootView.swift */,
  820. );
  821. path = View;
  822. sourceTree = "<group>";
  823. };
  824. 0EE66DD474AFFD4FD787D5B9 /* View */ = {
  825. isa = PBXGroup;
  826. children = (
  827. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */,
  828. );
  829. path = View;
  830. sourceTree = "<group>";
  831. };
  832. 18B49BC9587A59E3A347C1CD /* View */ = {
  833. isa = PBXGroup;
  834. children = (
  835. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */,
  836. );
  837. path = View;
  838. sourceTree = "<group>";
  839. };
  840. 192F0FF5276AC36D0085BE4D /* Recovered References */ = {
  841. isa = PBXGroup;
  842. children = (
  843. 199561C0275E61A50077B976 /* HealthKit.framework */,
  844. );
  845. name = "Recovered References";
  846. sourceTree = "<group>";
  847. };
  848. 198377CF266BFEDE004DE65E /* Localizations */ = {
  849. isa = PBXGroup;
  850. children = (
  851. 19D440A926B6FEBD008DA6C8 /* Main */,
  852. );
  853. path = Localizations;
  854. sourceTree = "<group>";
  855. };
  856. 19D440A926B6FEBD008DA6C8 /* Main */ = {
  857. isa = PBXGroup;
  858. children = (
  859. 198377D4266BFFF6004DE65E /* Localizable.strings */,
  860. );
  861. path = Main;
  862. sourceTree = "<group>";
  863. };
  864. 29B478DF61BF8D270F7D8954 /* Snooze */ = {
  865. isa = PBXGroup;
  866. children = (
  867. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */,
  868. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */,
  869. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */,
  870. 0A67A70F9438DB6586398458 /* View */,
  871. );
  872. path = Snooze;
  873. sourceTree = "<group>";
  874. };
  875. 34CA4DF169B53D67EF18ED8A /* View */ = {
  876. isa = PBXGroup;
  877. children = (
  878. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */,
  879. );
  880. path = View;
  881. sourceTree = "<group>";
  882. };
  883. 3811DE0325C9D31700A708ED /* Modules */ = {
  884. isa = PBXGroup;
  885. children = (
  886. F90692CD274B99850037068D /* HealthKit */,
  887. 6DC5D590658EF8B8DF94F9F5 /* AddCarbs */,
  888. A9A4C88374496B3C89058A89 /* AddTempTarget */,
  889. 672F63EEAE27400625E14BAD /* AutotuneConfig */,
  890. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */,
  891. 3811DE0425C9D32E00A708ED /* Base */,
  892. C2C98283C436DB934D7E7994 /* Bolus */,
  893. E8176B120B55CE89F1591542 /* Calibrations */,
  894. F75CB57ED6971B46F8756083 /* CGM */,
  895. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */,
  896. E42231DBF0DBE2B4B92D1B15 /* CREditor */,
  897. 9E56E3626FAD933385101B76 /* DataTable */,
  898. 3811DE2725C9D49500A708ED /* Home */,
  899. D8F047E14D567F2B5DBEFD96 /* ISFEditor */,
  900. C11D545CED3ECEB525EDEE23 /* LibreConfig */,
  901. 3811DE1A25C9D48300A708ED /* Main */,
  902. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */,
  903. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */,
  904. F66B236E00924A05D6A9F9DF /* NotificationsConfig */,
  905. 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */,
  906. 99C01B871ACAB3F32CE755C7 /* PumpConfig */,
  907. E493126EA71765130F64CCE5 /* PumpSettingsEditor */,
  908. 3811DE3825C9D4A100A708ED /* Settings */,
  909. 29B478DF61BF8D270F7D8954 /* Snooze */,
  910. 6517011F19F244F64E1FF14B /* TargetsEditor */,
  911. );
  912. path = Modules;
  913. sourceTree = "<group>";
  914. };
  915. 3811DE0425C9D32E00A708ED /* Base */ = {
  916. isa = PBXGroup;
  917. children = (
  918. 3811DE0725C9D32E00A708ED /* BaseView.swift */,
  919. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */,
  920. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */,
  921. );
  922. path = Base;
  923. sourceTree = "<group>";
  924. };
  925. 3811DE1325C9D39E00A708ED /* Sources */ = {
  926. isa = PBXGroup;
  927. children = (
  928. 3811DEDE25C9E2DD00A708ED /* Application */,
  929. 3811DF0A25CAAAA500A708ED /* APS */,
  930. E00EEBFC27368630002FF094 /* Assemblies */,
  931. 38E98A3225F5300800C0CED0 /* Config */,
  932. 388E5A5A25B6F05F0019842D /* Helpers */,
  933. 38DF178A27733E0F00B3528F /* AnimatedBackground */,
  934. 198377CF266BFEDE004DE65E /* Localizations */,
  935. 38E98A1A25F52C9300C0CED0 /* Logger */,
  936. 388E5A5925B6F0250019842D /* Models */,
  937. 3811DE0325C9D31700A708ED /* Modules */,
  938. 3811DE1425C9D40400A708ED /* Router */,
  939. 3811DE9125C9D88200A708ED /* Services */,
  940. 3883582E25EEAFC000E024B2 /* Views */,
  941. );
  942. path = Sources;
  943. sourceTree = "<group>";
  944. };
  945. 3811DE1425C9D40400A708ED /* Router */ = {
  946. isa = PBXGroup;
  947. children = (
  948. 3811DE1525C9D40400A708ED /* Screen.swift */,
  949. 3811DE1625C9D40400A708ED /* Router.swift */,
  950. );
  951. path = Router;
  952. sourceTree = "<group>";
  953. };
  954. 3811DE1A25C9D48300A708ED /* Main */ = {
  955. isa = PBXGroup;
  956. children = (
  957. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */,
  958. 3811DE1C25C9D48300A708ED /* MainProvider.swift */,
  959. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */,
  960. 3811DE1F25C9D48300A708ED /* View */,
  961. );
  962. path = Main;
  963. sourceTree = "<group>";
  964. };
  965. 3811DE1F25C9D48300A708ED /* View */ = {
  966. isa = PBXGroup;
  967. children = (
  968. 3811DE2025C9D48300A708ED /* MainRootView.swift */,
  969. );
  970. path = View;
  971. sourceTree = "<group>";
  972. };
  973. 3811DE2725C9D49500A708ED /* Home */ = {
  974. isa = PBXGroup;
  975. children = (
  976. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */,
  977. 3811DE2925C9D49500A708ED /* HomeProvider.swift */,
  978. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */,
  979. 3811DE2C25C9D49500A708ED /* View */,
  980. );
  981. path = Home;
  982. sourceTree = "<group>";
  983. };
  984. 3811DE2C25C9D49500A708ED /* View */ = {
  985. isa = PBXGroup;
  986. children = (
  987. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */,
  988. 3833B51E260264AC003021B3 /* Chart */,
  989. 3833B51F260264B6003021B3 /* Header */,
  990. );
  991. path = View;
  992. sourceTree = "<group>";
  993. };
  994. 3811DE3825C9D4A100A708ED /* Settings */ = {
  995. isa = PBXGroup;
  996. children = (
  997. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */,
  998. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */,
  999. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */,
  1000. 3811DE3B25C9D4A100A708ED /* View */,
  1001. );
  1002. path = Settings;
  1003. sourceTree = "<group>";
  1004. };
  1005. 3811DE3B25C9D4A100A708ED /* View */ = {
  1006. isa = PBXGroup;
  1007. children = (
  1008. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */,
  1009. );
  1010. path = View;
  1011. sourceTree = "<group>";
  1012. };
  1013. 3811DE9125C9D88200A708ED /* Services */ = {
  1014. isa = PBXGroup;
  1015. children = (
  1016. CEB434E128B8F9BC00B70274 /* Bluetooth */,
  1017. F90692A8274B7A980037068D /* HealthKit */,
  1018. 38E8754D275556E100975559 /* WatchManager */,
  1019. 38E87406274F9AA500975559 /* UserNotifiactions */,
  1020. 3862CC2C2743F9DC00BF832C /* Calendar */,
  1021. 38AEE75025F021F10013F05B /* SettingsManager */,
  1022. 38B4F3C425E5016800E76A18 /* Notifications */,
  1023. 3811DE9225C9D88200A708ED /* Appearance */,
  1024. 3811DE9425C9D88200A708ED /* Network */,
  1025. 3811DE9825C9D88300A708ED /* Storage */,
  1026. 3811DEA525C9D88300A708ED /* UnlockManager */,
  1027. );
  1028. path = Services;
  1029. sourceTree = "<group>";
  1030. };
  1031. 3811DE9225C9D88200A708ED /* Appearance */ = {
  1032. isa = PBXGroup;
  1033. children = (
  1034. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */,
  1035. );
  1036. path = Appearance;
  1037. sourceTree = "<group>";
  1038. };
  1039. 3811DE9425C9D88200A708ED /* Network */ = {
  1040. isa = PBXGroup;
  1041. children = (
  1042. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */,
  1043. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */,
  1044. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */,
  1045. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */,
  1046. 38FE826925CC82DB001FF17A /* NetworkService.swift */,
  1047. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */,
  1048. );
  1049. path = Network;
  1050. sourceTree = "<group>";
  1051. };
  1052. 3811DE9825C9D88300A708ED /* Storage */ = {
  1053. isa = PBXGroup;
  1054. children = (
  1055. 383948D525CD4D8900E91849 /* FileStorage.swift */,
  1056. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */,
  1057. 3811DE9925C9D88300A708ED /* Cache */,
  1058. 38E44529274E40F100EC9A94 /* Disk */,
  1059. 3811DE9D25C9D88300A708ED /* Keychain */,
  1060. );
  1061. path = Storage;
  1062. sourceTree = "<group>";
  1063. };
  1064. 3811DE9925C9D88300A708ED /* Cache */ = {
  1065. isa = PBXGroup;
  1066. children = (
  1067. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */,
  1068. 3811DE9B25C9D88300A708ED /* Cache.swift */,
  1069. );
  1070. path = Cache;
  1071. sourceTree = "<group>";
  1072. };
  1073. 3811DE9D25C9D88300A708ED /* Keychain */ = {
  1074. isa = PBXGroup;
  1075. children = (
  1076. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */,
  1077. 3811DE9F25C9D88300A708ED /* Keychain.swift */,
  1078. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */,
  1079. );
  1080. path = Keychain;
  1081. sourceTree = "<group>";
  1082. };
  1083. 3811DEA525C9D88300A708ED /* UnlockManager */ = {
  1084. isa = PBXGroup;
  1085. children = (
  1086. 3811DEA625C9D88300A708ED /* UnlockManager.swift */,
  1087. );
  1088. path = UnlockManager;
  1089. sourceTree = "<group>";
  1090. };
  1091. 3811DED425C9E1E300A708ED /* Resources */ = {
  1092. isa = PBXGroup;
  1093. children = (
  1094. 388E597125AD9CF10019842D /* json */,
  1095. 388E596E25AD96040019842D /* javascript */,
  1096. 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */,
  1097. 388E596425AD948E0019842D /* Info.plist */,
  1098. 1927C8E82744606D00347C69 /* InfoPlist.strings */,
  1099. 388E595F25AD948E0019842D /* Assets.xcassets */,
  1100. );
  1101. path = Resources;
  1102. sourceTree = "<group>";
  1103. };
  1104. 3811DEDE25C9E2DD00A708ED /* Application */ = {
  1105. isa = PBXGroup;
  1106. children = (
  1107. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */,
  1108. 388E595B25AD948C0019842D /* FreeAPSApp.swift */,
  1109. );
  1110. path = Application;
  1111. sourceTree = "<group>";
  1112. };
  1113. 3811DEE325CA063400A708ED /* PropertyWrappers */ = {
  1114. isa = PBXGroup;
  1115. children = (
  1116. 38E44527274E401C00EC9A94 /* Protected.swift */,
  1117. 3811DEE425CA063400A708ED /* Injected.swift */,
  1118. 3811DEE625CA063400A708ED /* SyncAccess.swift */,
  1119. 3811DEE725CA063400A708ED /* PersistedProperty.swift */,
  1120. );
  1121. path = PropertyWrappers;
  1122. sourceTree = "<group>";
  1123. };
  1124. 3811DF0A25CAAAA500A708ED /* APS */ = {
  1125. isa = PBXGroup;
  1126. children = (
  1127. 3811DF0F25CAAAE200A708ED /* APSManager.swift */,
  1128. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */,
  1129. 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */,
  1130. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */,
  1131. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */,
  1132. 3856933F270B57A00002C50D /* CGM */,
  1133. 38A504F625DDA0E200C5B9E8 /* Extensions */,
  1134. 388E5A5825B6F0070019842D /* OpenAPS */,
  1135. 38A0362725ECF05300FCBB52 /* Storage */,
  1136. );
  1137. path = APS;
  1138. sourceTree = "<group>";
  1139. };
  1140. 3818AA44274C229000843DB3 /* Packages */ = {
  1141. isa = PBXGroup;
  1142. children = (
  1143. 3818AA45274C229000843DB3 /* LibreTransmitter */,
  1144. );
  1145. name = Packages;
  1146. sourceTree = "<group>";
  1147. };
  1148. 3818AA48274C267000843DB3 /* Frameworks */ = {
  1149. isa = PBXGroup;
  1150. children = (
  1151. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */,
  1152. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */,
  1153. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */,
  1154. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */,
  1155. 38E873FD274F761800975559 /* CoreNFC.framework */,
  1156. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */,
  1157. 3818AA4C274C26A300843DB3 /* LoopKit.framework */,
  1158. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */,
  1159. 3818AA4E274C26A300843DB3 /* MockKit.framework */,
  1160. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */,
  1161. 3818AA50274C26A300843DB3 /* Crypto.framework */,
  1162. 3818AA51274C26A300843DB3 /* MinimedKit.framework */,
  1163. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */,
  1164. 3818AA53274C26A300843DB3 /* OmniKit.framework */,
  1165. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */,
  1166. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */,
  1167. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */,
  1168. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */,
  1169. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */,
  1170. );
  1171. name = Frameworks;
  1172. sourceTree = "<group>";
  1173. };
  1174. 3833B51E260264AC003021B3 /* Chart */ = {
  1175. isa = PBXGroup;
  1176. children = (
  1177. 38AAF8702600C1B0004AF583 /* MainChartView.swift */,
  1178. );
  1179. path = Chart;
  1180. sourceTree = "<group>";
  1181. };
  1182. 3833B51F260264B6003021B3 /* Header */ = {
  1183. isa = PBXGroup;
  1184. children = (
  1185. 383420D525FFE38C002D46C1 /* LoopView.swift */,
  1186. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */,
  1187. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */,
  1188. );
  1189. path = Header;
  1190. sourceTree = "<group>";
  1191. };
  1192. 3856933F270B57A00002C50D /* CGM */ = {
  1193. isa = PBXGroup;
  1194. children = (
  1195. 38569346270B5DFB0002C50D /* AppGroupSource.swift */,
  1196. 38569344270B5DFA0002C50D /* CGMType.swift */,
  1197. 386A124E271707F000DDC61C /* DexcomSource.swift */,
  1198. 38569345270B5DFA0002C50D /* GlucoseSource.swift */,
  1199. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */,
  1200. 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */,
  1201. 3862CC03273D150600BF832C /* Calibrations */,
  1202. );
  1203. path = CGM;
  1204. sourceTree = "<group>";
  1205. };
  1206. 3862CC03273D150600BF832C /* Calibrations */ = {
  1207. isa = PBXGroup;
  1208. children = (
  1209. 3862CC04273D152B00BF832C /* CalibrationService.swift */,
  1210. );
  1211. path = Calibrations;
  1212. sourceTree = "<group>";
  1213. };
  1214. 3862CC2C2743F9DC00BF832C /* Calendar */ = {
  1215. isa = PBXGroup;
  1216. children = (
  1217. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */,
  1218. );
  1219. path = Calendar;
  1220. sourceTree = "<group>";
  1221. };
  1222. 3883582E25EEAFC000E024B2 /* Views */ = {
  1223. isa = PBXGroup;
  1224. children = (
  1225. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */,
  1226. 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */,
  1227. 383420D825FFEB3F002D46C1 /* Popup.swift */,
  1228. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */,
  1229. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */,
  1230. 38DF1785276A73D400B3528F /* TagCloudView.swift */,
  1231. );
  1232. path = Views;
  1233. sourceTree = "<group>";
  1234. };
  1235. 388E594F25AD948C0019842D = {
  1236. isa = PBXGroup;
  1237. children = (
  1238. 38F3783A2613555C009DB701 /* Config.xcconfig */,
  1239. 3818AA42274BBC1100843DB3 /* ConfigOverride.xcconfig */,
  1240. 388E595A25AD948C0019842D /* FreeAPS */,
  1241. 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */,
  1242. 3818AA44274C229000843DB3 /* Packages */,
  1243. 38E8751D27554D5500975559 /* FreeAPSWatch */,
  1244. 38E8752827554D5700975559 /* FreeAPSWatch WatchKit Extension */,
  1245. 388E595925AD948C0019842D /* Products */,
  1246. 3818AA48274C267000843DB3 /* Frameworks */,
  1247. 192F0FF5276AC36D0085BE4D /* Recovered References */,
  1248. );
  1249. sourceTree = "<group>";
  1250. };
  1251. 388E595925AD948C0019842D /* Products */ = {
  1252. isa = PBXGroup;
  1253. children = (
  1254. 388E595825AD948C0019842D /* FreeAPS.app */,
  1255. 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */,
  1256. 38E8751C27554D5500975559 /* FreeAPSWatch.app */,
  1257. 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */,
  1258. );
  1259. name = Products;
  1260. sourceTree = "<group>";
  1261. };
  1262. 388E595A25AD948C0019842D /* FreeAPS */ = {
  1263. isa = PBXGroup;
  1264. children = (
  1265. 3811DED425C9E1E300A708ED /* Resources */,
  1266. 3811DE1325C9D39E00A708ED /* Sources */,
  1267. );
  1268. path = FreeAPS;
  1269. sourceTree = "<group>";
  1270. };
  1271. 388E5A5825B6F0070019842D /* OpenAPS */ = {
  1272. isa = PBXGroup;
  1273. children = (
  1274. 388E596B25AD95110019842D /* OpenAPS.swift */,
  1275. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */,
  1276. 384E803725C388640086DB71 /* Script.swift */,
  1277. 3821ED4B25DD18BA00BC42AD /* Constants.swift */,
  1278. );
  1279. path = OpenAPS;
  1280. sourceTree = "<group>";
  1281. };
  1282. 388E5A5925B6F0250019842D /* Models */ = {
  1283. isa = PBXGroup;
  1284. children = (
  1285. 385CEAC025F2EA52002D6D5B /* Announcement.swift */,
  1286. 388E5A5F25B6F2310019842D /* Autosens.swift */,
  1287. 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */,
  1288. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */,
  1289. 38D0B3B525EBE24900CB6E88 /* Battery.swift */,
  1290. 382C134A25F14E3700715CE1 /* BGTargets.swift */,
  1291. 3870FF4225EC13F40088248F /* BloodGlucose.swift */,
  1292. 38A9260425F012D8009E3739 /* CarbRatios.swift */,
  1293. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */,
  1294. 3811DF0125CA9FEA00A708ED /* Credentials.swift */,
  1295. 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */,
  1296. 383948D925CD64D500E91849 /* Glucose.swift */,
  1297. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */,
  1298. 38887CCD25F5725200944304 /* IOBEntry.swift */,
  1299. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */,
  1300. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */,
  1301. 3895E4C525B9E00D00214B37 /* Preferences.swift */,
  1302. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */,
  1303. 3883583325EEB38000E024B2 /* PumpSettings.swift */,
  1304. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */,
  1305. 38BF021C25E7E3AF00579895 /* Reservoir.swift */,
  1306. 3871F38625ED661C0013ECB5 /* Suggestion.swift */,
  1307. 38A0364125ED069400FCBB52 /* TempBasal.swift */,
  1308. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */,
  1309. 3811DE8E25C9D80400A708ED /* User.swift */,
  1310. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */,
  1311. 19F79FA8283AE7E000646323 /* TDD.swift */,
  1312. 1935363F28496F7D001E0B16 /* TDD_averages.swift */,
  1313. );
  1314. path = Models;
  1315. sourceTree = "<group>";
  1316. };
  1317. 388E5A5A25B6F05F0019842D /* Helpers */ = {
  1318. isa = PBXGroup;
  1319. children = (
  1320. 38F37827261260DC009DB701 /* Color+Extensions.swift */,
  1321. 389ECE042601144100D86C4F /* ConcurrentMap.swift */,
  1322. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */,
  1323. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */,
  1324. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */,
  1325. 389487392614928B004DF424 /* DispatchTimer.swift */,
  1326. 3811DE5425C9D4D500A708ED /* Formatters.swift */,
  1327. 38FEF412273B317A00574A46 /* HKUnit.swift */,
  1328. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */,
  1329. 389A571F26079BAA00BC102F /* Interpolation.swift */,
  1330. 388E5A5B25B6F0770019842D /* JSON.swift */,
  1331. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */,
  1332. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */,
  1333. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */,
  1334. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */,
  1335. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */,
  1336. 3811DE5525C9D4D500A708ED /* Publisher.swift */,
  1337. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */,
  1338. 3811DEE325CA063400A708ED /* PropertyWrappers */,
  1339. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */,
  1340. CEB434E428B8FF5D00B70274 /* UIColor.swift */,
  1341. );
  1342. path = Helpers;
  1343. sourceTree = "<group>";
  1344. };
  1345. 38A0362725ECF05300FCBB52 /* Storage */ = {
  1346. isa = PBXGroup;
  1347. children = (
  1348. 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */,
  1349. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */,
  1350. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */,
  1351. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */,
  1352. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */,
  1353. );
  1354. path = Storage;
  1355. sourceTree = "<group>";
  1356. };
  1357. 38A504F625DDA0E200C5B9E8 /* Extensions */ = {
  1358. isa = PBXGroup;
  1359. children = (
  1360. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */,
  1361. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */,
  1362. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */,
  1363. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */,
  1364. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */,
  1365. );
  1366. path = Extensions;
  1367. sourceTree = "<group>";
  1368. };
  1369. 38AEE75025F021F10013F05B /* SettingsManager */ = {
  1370. isa = PBXGroup;
  1371. children = (
  1372. 38AEE75125F022080013F05B /* SettingsManager.swift */,
  1373. );
  1374. path = SettingsManager;
  1375. sourceTree = "<group>";
  1376. };
  1377. 38B4F3C425E5016800E76A18 /* Notifications */ = {
  1378. isa = PBXGroup;
  1379. children = (
  1380. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */,
  1381. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */,
  1382. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */,
  1383. );
  1384. path = Notifications;
  1385. sourceTree = "<group>";
  1386. };
  1387. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */ = {
  1388. isa = PBXGroup;
  1389. children = (
  1390. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */,
  1391. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */,
  1392. );
  1393. path = SwiftNotificationCenter;
  1394. sourceTree = "<group>";
  1395. };
  1396. 38DF178A27733E0F00B3528F /* AnimatedBackground */ = {
  1397. isa = PBXGroup;
  1398. children = (
  1399. 38DF178B27733E6800B3528F /* snow.sks */,
  1400. 38DF178C27733E6800B3528F /* Assets.xcassets */,
  1401. 38DF178F27733EAD00B3528F /* SnowScene.swift */,
  1402. );
  1403. path = AnimatedBackground;
  1404. sourceTree = "<group>";
  1405. };
  1406. 38E44529274E40F100EC9A94 /* Disk */ = {
  1407. isa = PBXGroup;
  1408. children = (
  1409. 38E4452C274E411600EC9A94 /* Disk.swift */,
  1410. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */,
  1411. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */,
  1412. 38E44532274E411700EC9A94 /* Disk+Codable.swift */,
  1413. 38E4452B274E411600EC9A94 /* Disk+Data.swift */,
  1414. 38E44533274E411700EC9A94 /* Disk+Errors.swift */,
  1415. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */,
  1416. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */,
  1417. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */,
  1418. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */,
  1419. );
  1420. path = Disk;
  1421. sourceTree = "<group>";
  1422. };
  1423. 38E87406274F9AA500975559 /* UserNotifiactions */ = {
  1424. isa = PBXGroup;
  1425. children = (
  1426. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */,
  1427. );
  1428. path = UserNotifiactions;
  1429. sourceTree = "<group>";
  1430. };
  1431. 38E8751D27554D5500975559 /* FreeAPSWatch */ = {
  1432. isa = PBXGroup;
  1433. children = (
  1434. 38E8755627564B6100975559 /* FreeAPSWatch.entitlements */,
  1435. 38E8751E27554D5700975559 /* Assets.xcassets */,
  1436. );
  1437. path = FreeAPSWatch;
  1438. sourceTree = "<group>";
  1439. };
  1440. 38E8752827554D5700975559 /* FreeAPSWatch WatchKit Extension */ = {
  1441. isa = PBXGroup;
  1442. children = (
  1443. 38E8755527564B5000975559 /* FreeAPSWatch WatchKit Extension.entitlements */,
  1444. 38E8755027555D0500975559 /* DataFlow.swift */,
  1445. 38E8754B2755548F00975559 /* WatchStateModel.swift */,
  1446. 38E875482755505800975559 /* Views */,
  1447. 38E8752927554D5700975559 /* FreeAPSApp.swift */,
  1448. 38E8752D27554D5700975559 /* NotificationController.swift */,
  1449. 38E8752F27554D5700975559 /* NotificationView.swift */,
  1450. 38E8753127554D5700975559 /* ComplicationController.swift */,
  1451. 38E8753327554D5800975559 /* Assets.xcassets */,
  1452. 38E8753827554D5900975559 /* Info.plist */,
  1453. 38E8753927554D5900975559 /* PushNotificationPayload.apns */,
  1454. 38E8753527554D5800975559 /* Preview Content */,
  1455. );
  1456. path = "FreeAPSWatch WatchKit Extension";
  1457. sourceTree = "<group>";
  1458. };
  1459. 38E8753527554D5800975559 /* Preview Content */ = {
  1460. isa = PBXGroup;
  1461. children = (
  1462. 38E8753627554D5800975559 /* Preview Assets.xcassets */,
  1463. );
  1464. path = "Preview Content";
  1465. sourceTree = "<group>";
  1466. };
  1467. 38E875482755505800975559 /* Views */ = {
  1468. isa = PBXGroup;
  1469. children = (
  1470. 38E8752B27554D5700975559 /* MainView.swift */,
  1471. 38E87549275550BB00975559 /* CarbsView.swift */,
  1472. 38E8755A27568A6700975559 /* ConfirmationView.swift */,
  1473. 38E8757A2757B1C300975559 /* TempTargetsView.swift */,
  1474. 38E8757C2757C45D00975559 /* BolusView.swift */,
  1475. 38E8757F27595DC500975559 /* BolusConfirmationView.swift */,
  1476. );
  1477. path = Views;
  1478. sourceTree = "<group>";
  1479. };
  1480. 38E8754D275556E100975559 /* WatchManager */ = {
  1481. isa = PBXGroup;
  1482. children = (
  1483. 38E8754E275556FA00975559 /* WatchManager.swift */,
  1484. );
  1485. path = WatchManager;
  1486. sourceTree = "<group>";
  1487. };
  1488. 38E98A1A25F52C9300C0CED0 /* Logger */ = {
  1489. isa = PBXGroup;
  1490. children = (
  1491. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */,
  1492. 38E98A1C25F52C9300C0CED0 /* Logger.swift */,
  1493. 38E98A1D25F52C9300C0CED0 /* IssueReporter */,
  1494. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */,
  1495. );
  1496. path = Logger;
  1497. sourceTree = "<group>";
  1498. };
  1499. 38E98A1D25F52C9300C0CED0 /* IssueReporter */ = {
  1500. isa = PBXGroup;
  1501. children = (
  1502. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */,
  1503. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */,
  1504. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */,
  1505. );
  1506. path = IssueReporter;
  1507. sourceTree = "<group>";
  1508. };
  1509. 38E98A3225F5300800C0CED0 /* Config */ = {
  1510. isa = PBXGroup;
  1511. children = (
  1512. 38E98A2F25F52FF700C0CED0 /* Config.swift */,
  1513. );
  1514. path = Config;
  1515. sourceTree = "<group>";
  1516. };
  1517. 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */ = {
  1518. isa = PBXGroup;
  1519. children = (
  1520. 38FCF3F125E9028E0078B0D1 /* Info.plist */,
  1521. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */,
  1522. );
  1523. path = FreeAPSTests;
  1524. sourceTree = "<group>";
  1525. };
  1526. 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */ = {
  1527. isa = PBXGroup;
  1528. children = (
  1529. 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */,
  1530. 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */,
  1531. 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */,
  1532. 833DA2F9E47E64E305F92F9D /* View */,
  1533. );
  1534. path = PreferencesEditor;
  1535. sourceTree = "<group>";
  1536. };
  1537. 3F8670D63672AF88E2E9B09E /* View */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */,
  1541. );
  1542. path = View;
  1543. sourceTree = "<group>";
  1544. };
  1545. 43952E72FE7AF85715FE020E /* View */ = {
  1546. isa = PBXGroup;
  1547. children = (
  1548. 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */,
  1549. 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */,
  1550. );
  1551. path = View;
  1552. sourceTree = "<group>";
  1553. };
  1554. 4E8C7B59F8065047ECE20965 /* View */ = {
  1555. isa = PBXGroup;
  1556. children = (
  1557. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */,
  1558. );
  1559. path = View;
  1560. sourceTree = "<group>";
  1561. };
  1562. 4F4AE4D901E8BA872B207D7F /* View */ = {
  1563. isa = PBXGroup;
  1564. children = (
  1565. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */,
  1566. );
  1567. path = View;
  1568. sourceTree = "<group>";
  1569. };
  1570. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */ = {
  1571. isa = PBXGroup;
  1572. children = (
  1573. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */,
  1574. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */,
  1575. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */,
  1576. 84BDC840A57C65A1E6F9F780 /* View */,
  1577. );
  1578. path = ManualTempBasal;
  1579. sourceTree = "<group>";
  1580. };
  1581. 50E85421406582CF9D321A20 /* View */ = {
  1582. isa = PBXGroup;
  1583. children = (
  1584. 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */,
  1585. );
  1586. path = View;
  1587. sourceTree = "<group>";
  1588. };
  1589. 510CCF29FD3216C5BBC49A15 /* View */ = {
  1590. isa = PBXGroup;
  1591. children = (
  1592. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */,
  1593. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */,
  1594. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */,
  1595. );
  1596. path = View;
  1597. sourceTree = "<group>";
  1598. };
  1599. 54946647FDCFE43028F60511 /* View */ = {
  1600. isa = PBXGroup;
  1601. children = (
  1602. D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */,
  1603. );
  1604. path = View;
  1605. sourceTree = "<group>";
  1606. };
  1607. 55DE731ACE8289FAF3819077 /* View */ = {
  1608. isa = PBXGroup;
  1609. children = (
  1610. 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */,
  1611. );
  1612. path = View;
  1613. sourceTree = "<group>";
  1614. };
  1615. 64271A287C92581EADCB47FA /* View */ = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */,
  1619. );
  1620. path = View;
  1621. sourceTree = "<group>";
  1622. };
  1623. 6517011F19F244F64E1FF14B /* TargetsEditor */ = {
  1624. isa = PBXGroup;
  1625. children = (
  1626. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */,
  1627. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */,
  1628. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */,
  1629. 34CA4DF169B53D67EF18ED8A /* View */,
  1630. );
  1631. path = TargetsEditor;
  1632. sourceTree = "<group>";
  1633. };
  1634. 672F63EEAE27400625E14BAD /* AutotuneConfig */ = {
  1635. isa = PBXGroup;
  1636. children = (
  1637. 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */,
  1638. B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */,
  1639. D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */,
  1640. 55DE731ACE8289FAF3819077 /* View */,
  1641. );
  1642. path = AutotuneConfig;
  1643. sourceTree = "<group>";
  1644. };
  1645. 6DC5D590658EF8B8DF94F9F5 /* AddCarbs */ = {
  1646. isa = PBXGroup;
  1647. children = (
  1648. 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */,
  1649. 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */,
  1650. 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */,
  1651. 50E85421406582CF9D321A20 /* View */,
  1652. );
  1653. path = AddCarbs;
  1654. sourceTree = "<group>";
  1655. };
  1656. 833DA2F9E47E64E305F92F9D /* View */ = {
  1657. isa = PBXGroup;
  1658. children = (
  1659. 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */,
  1660. );
  1661. path = View;
  1662. sourceTree = "<group>";
  1663. };
  1664. 84BDC840A57C65A1E6F9F780 /* View */ = {
  1665. isa = PBXGroup;
  1666. children = (
  1667. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */,
  1668. );
  1669. path = View;
  1670. sourceTree = "<group>";
  1671. };
  1672. 99C01B871ACAB3F32CE755C7 /* PumpConfig */ = {
  1673. isa = PBXGroup;
  1674. children = (
  1675. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */,
  1676. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */,
  1677. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */,
  1678. 510CCF29FD3216C5BBC49A15 /* View */,
  1679. );
  1680. path = PumpConfig;
  1681. sourceTree = "<group>";
  1682. };
  1683. 9E56E3626FAD933385101B76 /* DataTable */ = {
  1684. isa = PBXGroup;
  1685. children = (
  1686. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */,
  1687. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */,
  1688. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */,
  1689. 0EE66DD474AFFD4FD787D5B9 /* View */,
  1690. );
  1691. path = DataTable;
  1692. sourceTree = "<group>";
  1693. };
  1694. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */ = {
  1695. isa = PBXGroup;
  1696. children = (
  1697. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */,
  1698. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */,
  1699. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */,
  1700. 18B49BC9587A59E3A347C1CD /* View */,
  1701. );
  1702. path = BasalProfileEditor;
  1703. sourceTree = "<group>";
  1704. };
  1705. A56097CB1DCBCE98F2F42177 /* View */ = {
  1706. isa = PBXGroup;
  1707. children = (
  1708. BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */,
  1709. );
  1710. path = View;
  1711. sourceTree = "<group>";
  1712. };
  1713. A9A4C88374496B3C89058A89 /* AddTempTarget */ = {
  1714. isa = PBXGroup;
  1715. children = (
  1716. 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */,
  1717. AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */,
  1718. 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */,
  1719. 3F8670D63672AF88E2E9B09E /* View */,
  1720. );
  1721. path = AddTempTarget;
  1722. sourceTree = "<group>";
  1723. };
  1724. B9488883C59C31550E0B4CEC /* View */ = {
  1725. isa = PBXGroup;
  1726. children = (
  1727. 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */,
  1728. );
  1729. path = View;
  1730. sourceTree = "<group>";
  1731. };
  1732. C11D545CED3ECEB525EDEE23 /* LibreConfig */ = {
  1733. isa = PBXGroup;
  1734. children = (
  1735. 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */,
  1736. E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */,
  1737. E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */,
  1738. A56097CB1DCBCE98F2F42177 /* View */,
  1739. );
  1740. path = LibreConfig;
  1741. sourceTree = "<group>";
  1742. };
  1743. C2C98283C436DB934D7E7994 /* Bolus */ = {
  1744. isa = PBXGroup;
  1745. children = (
  1746. C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */,
  1747. C19984D62EFC0035A9E9644D /* BolusProvider.swift */,
  1748. 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */,
  1749. B9488883C59C31550E0B4CEC /* View */,
  1750. );
  1751. path = Bolus;
  1752. sourceTree = "<group>";
  1753. };
  1754. CEB434E128B8F9BC00B70274 /* Bluetooth */ = {
  1755. isa = PBXGroup;
  1756. children = (
  1757. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */,
  1758. );
  1759. path = Bluetooth;
  1760. sourceTree = "<group>";
  1761. };
  1762. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */ = {
  1763. isa = PBXGroup;
  1764. children = (
  1765. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */,
  1766. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */,
  1767. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */,
  1768. 4F4AE4D901E8BA872B207D7F /* View */,
  1769. );
  1770. path = NightscoutConfig;
  1771. sourceTree = "<group>";
  1772. };
  1773. D8F047E14D567F2B5DBEFD96 /* ISFEditor */ = {
  1774. isa = PBXGroup;
  1775. children = (
  1776. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */,
  1777. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */,
  1778. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */,
  1779. EEC747824D6593B5CD87E195 /* View */,
  1780. );
  1781. path = ISFEditor;
  1782. sourceTree = "<group>";
  1783. };
  1784. E00EEBFC27368630002FF094 /* Assemblies */ = {
  1785. isa = PBXGroup;
  1786. children = (
  1787. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */,
  1788. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */,
  1789. E00EEBFF27368630002FF094 /* StorageAssembly.swift */,
  1790. E00EEC0027368630002FF094 /* UIAssembly.swift */,
  1791. E00EEC0127368630002FF094 /* APSAssembly.swift */,
  1792. E00EEC0227368630002FF094 /* NetworkAssembly.swift */,
  1793. );
  1794. path = Assemblies;
  1795. sourceTree = "<group>";
  1796. };
  1797. E42231DBF0DBE2B4B92D1B15 /* CREditor */ = {
  1798. isa = PBXGroup;
  1799. children = (
  1800. 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */,
  1801. 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */,
  1802. 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */,
  1803. 54946647FDCFE43028F60511 /* View */,
  1804. );
  1805. path = CREditor;
  1806. sourceTree = "<group>";
  1807. };
  1808. E493126EA71765130F64CCE5 /* PumpSettingsEditor */ = {
  1809. isa = PBXGroup;
  1810. children = (
  1811. 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */,
  1812. D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */,
  1813. 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */,
  1814. 64271A287C92581EADCB47FA /* View */,
  1815. );
  1816. path = PumpSettingsEditor;
  1817. sourceTree = "<group>";
  1818. };
  1819. E8176B120B55CE89F1591542 /* Calibrations */ = {
  1820. isa = PBXGroup;
  1821. children = (
  1822. DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */,
  1823. 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */,
  1824. 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */,
  1825. 43952E72FE7AF85715FE020E /* View */,
  1826. );
  1827. path = Calibrations;
  1828. sourceTree = "<group>";
  1829. };
  1830. EEC747824D6593B5CD87E195 /* View */ = {
  1831. isa = PBXGroup;
  1832. children = (
  1833. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */,
  1834. );
  1835. path = View;
  1836. sourceTree = "<group>";
  1837. };
  1838. F5DE2E6D7B2133BBD3353DC7 /* View */ = {
  1839. isa = PBXGroup;
  1840. children = (
  1841. 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */,
  1842. );
  1843. path = View;
  1844. sourceTree = "<group>";
  1845. };
  1846. F66B236E00924A05D6A9F9DF /* NotificationsConfig */ = {
  1847. isa = PBXGroup;
  1848. children = (
  1849. 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */,
  1850. E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */,
  1851. DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */,
  1852. F5DE2E6D7B2133BBD3353DC7 /* View */,
  1853. );
  1854. path = NotificationsConfig;
  1855. sourceTree = "<group>";
  1856. };
  1857. F75CB57ED6971B46F8756083 /* CGM */ = {
  1858. isa = PBXGroup;
  1859. children = (
  1860. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */,
  1861. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */,
  1862. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */,
  1863. 0D76BBC81CEDC1A0050F45EF /* View */,
  1864. );
  1865. path = CGM;
  1866. sourceTree = "<group>";
  1867. };
  1868. F90692A8274B7A980037068D /* HealthKit */ = {
  1869. isa = PBXGroup;
  1870. children = (
  1871. F90692A9274B7AAE0037068D /* HealthKitManager.swift */,
  1872. );
  1873. path = HealthKit;
  1874. sourceTree = "<group>";
  1875. };
  1876. F90692CD274B99850037068D /* HealthKit */ = {
  1877. isa = PBXGroup;
  1878. children = (
  1879. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */,
  1880. F90692D0274B99B60037068D /* HealthKitProvider.swift */,
  1881. F90692D5274B9A450037068D /* HealthKitStateModel.swift */,
  1882. F90692D4274B9A160037068D /* View */,
  1883. );
  1884. path = HealthKit;
  1885. sourceTree = "<group>";
  1886. };
  1887. F90692D4274B9A160037068D /* View */ = {
  1888. isa = PBXGroup;
  1889. children = (
  1890. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */,
  1891. );
  1892. path = View;
  1893. sourceTree = "<group>";
  1894. };
  1895. /* End PBXGroup section */
  1896. /* Begin PBXNativeTarget section */
  1897. 388E595725AD948C0019842D /* FreeAPS */ = {
  1898. isa = PBXNativeTarget;
  1899. buildConfigurationList = 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */;
  1900. buildPhases = (
  1901. 3811DEF525CA169200A708ED /* Swiftformat */,
  1902. 388E595425AD948C0019842D /* Sources */,
  1903. 388E595525AD948C0019842D /* Frameworks */,
  1904. 388E595625AD948C0019842D /* Resources */,
  1905. 3821ECD025DC703C00BC42AD /* Embed Frameworks */,
  1906. 38E8753D27554D5900975559 /* Embed Watch Content */,
  1907. );
  1908. buildRules = (
  1909. );
  1910. dependencies = (
  1911. 38E8753B27554D5900975559 /* PBXTargetDependency */,
  1912. );
  1913. name = FreeAPS;
  1914. packageProductDependencies = (
  1915. 3811DE0F25C9D37700A708ED /* Swinject */,
  1916. 38B17B6525DD90E0005CAE3D /* SwiftDate */,
  1917. 3833B46C26012030003021B3 /* Algorithms */,
  1918. 3818AA46274C255A00843DB3 /* LibreTransmitter */,
  1919. 38DF1788276FC8C400B3528F /* SwiftMessages */,
  1920. CEB434FC28B90B7C00B70274 /* SwiftCharts */,
  1921. );
  1922. productName = FreeAPS;
  1923. productReference = 388E595825AD948C0019842D /* FreeAPS.app */;
  1924. productType = "com.apple.product-type.application";
  1925. };
  1926. 38E8751B27554D5500975559 /* FreeAPSWatch */ = {
  1927. isa = PBXNativeTarget;
  1928. buildConfigurationList = 38E8754427554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch" */;
  1929. buildPhases = (
  1930. 38E8751A27554D5500975559 /* Resources */,
  1931. 38E8754027554D5900975559 /* Embed App Extensions */,
  1932. );
  1933. buildRules = (
  1934. );
  1935. dependencies = (
  1936. 38E8752727554D5700975559 /* PBXTargetDependency */,
  1937. );
  1938. name = FreeAPSWatch;
  1939. productName = FreeAPSWatch;
  1940. productReference = 38E8751C27554D5500975559 /* FreeAPSWatch.app */;
  1941. productType = "com.apple.product-type.application.watchapp2";
  1942. };
  1943. 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */ = {
  1944. isa = PBXNativeTarget;
  1945. buildConfigurationList = 38E8754327554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch WatchKit Extension" */;
  1946. buildPhases = (
  1947. 38E8752027554D5700975559 /* Sources */,
  1948. 38E8752127554D5700975559 /* Frameworks */,
  1949. 38E8752227554D5700975559 /* Resources */,
  1950. );
  1951. buildRules = (
  1952. );
  1953. dependencies = (
  1954. );
  1955. name = "FreeAPSWatch WatchKit Extension";
  1956. packageProductDependencies = (
  1957. 38E8755727567AE400975559 /* SwiftDate */,
  1958. );
  1959. productName = "FreeAPSWatch WatchKit Extension";
  1960. productReference = 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */;
  1961. productType = "com.apple.product-type.watchkit2-extension";
  1962. };
  1963. 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */ = {
  1964. isa = PBXNativeTarget;
  1965. buildConfigurationList = 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */;
  1966. buildPhases = (
  1967. 38FCF3E925E9028E0078B0D1 /* Sources */,
  1968. 38FCF3EA25E9028E0078B0D1 /* Frameworks */,
  1969. 38FCF3EB25E9028E0078B0D1 /* Resources */,
  1970. );
  1971. buildRules = (
  1972. );
  1973. dependencies = (
  1974. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */,
  1975. );
  1976. name = FreeAPSTests;
  1977. productName = FreeAPSTests;
  1978. productReference = 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */;
  1979. productType = "com.apple.product-type.bundle.unit-test";
  1980. };
  1981. /* End PBXNativeTarget section */
  1982. /* Begin PBXProject section */
  1983. 388E595025AD948C0019842D /* Project object */ = {
  1984. isa = PBXProject;
  1985. attributes = {
  1986. LastSwiftUpdateCheck = 1310;
  1987. LastUpgradeCheck = 1240;
  1988. TargetAttributes = {
  1989. 388E595725AD948C0019842D = {
  1990. CreatedOnToolsVersion = 12.3;
  1991. };
  1992. 38E8751B27554D5500975559 = {
  1993. CreatedOnToolsVersion = 13.1;
  1994. };
  1995. 38E8752327554D5700975559 = {
  1996. CreatedOnToolsVersion = 13.1;
  1997. };
  1998. 38FCF3EC25E9028E0078B0D1 = {
  1999. CreatedOnToolsVersion = 12.4;
  2000. TestTargetID = 388E595725AD948C0019842D;
  2001. };
  2002. };
  2003. };
  2004. buildConfigurationList = 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */;
  2005. compatibilityVersion = "Xcode 9.3";
  2006. developmentRegion = en;
  2007. hasScannedForEncodings = 0;
  2008. knownRegions = (
  2009. en,
  2010. Base,
  2011. ar,
  2012. ca,
  2013. "zh-Hans",
  2014. da,
  2015. nl,
  2016. fr,
  2017. de,
  2018. he,
  2019. it,
  2020. nb,
  2021. pl,
  2022. ru,
  2023. es,
  2024. sv,
  2025. tr,
  2026. uk,
  2027. fi,
  2028. "pt-PT",
  2029. "pt-BR",
  2030. sk,
  2031. );
  2032. mainGroup = 388E594F25AD948C0019842D;
  2033. packageReferences = (
  2034. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */,
  2035. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */,
  2036. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */,
  2037. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */,
  2038. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */,
  2039. );
  2040. productRefGroup = 388E595925AD948C0019842D /* Products */;
  2041. projectDirPath = "";
  2042. projectRoot = "";
  2043. targets = (
  2044. 388E595725AD948C0019842D /* FreeAPS */,
  2045. 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */,
  2046. 38E8751B27554D5500975559 /* FreeAPSWatch */,
  2047. 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */,
  2048. );
  2049. };
  2050. /* End PBXProject section */
  2051. /* Begin PBXResourcesBuildPhase section */
  2052. 388E595625AD948C0019842D /* Resources */ = {
  2053. isa = PBXResourcesBuildPhase;
  2054. buildActionMask = 2147483647;
  2055. files = (
  2056. 388E596025AD948E0019842D /* Assets.xcassets in Resources */,
  2057. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */,
  2058. 38DF178D27733E6800B3528F /* snow.sks in Resources */,
  2059. 388E597225AD9CF10019842D /* json in Resources */,
  2060. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */,
  2061. 388E596F25AD96040019842D /* javascript in Resources */,
  2062. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */,
  2063. );
  2064. runOnlyForDeploymentPostprocessing = 0;
  2065. };
  2066. 38E8751A27554D5500975559 /* Resources */ = {
  2067. isa = PBXResourcesBuildPhase;
  2068. buildActionMask = 2147483647;
  2069. files = (
  2070. 38E8754527554D8800975559 /* Assets.xcassets in Resources */,
  2071. 38E8751F27554D5700975559 /* Assets.xcassets in Resources */,
  2072. );
  2073. runOnlyForDeploymentPostprocessing = 0;
  2074. };
  2075. 38E8752227554D5700975559 /* Resources */ = {
  2076. isa = PBXResourcesBuildPhase;
  2077. buildActionMask = 2147483647;
  2078. files = (
  2079. 38E8753727554D5900975559 /* Preview Assets.xcassets in Resources */,
  2080. 19795118275953E50044850D /* Localizable.strings in Resources */,
  2081. 38E8754627554D8A00975559 /* Assets.xcassets in Resources */,
  2082. 38E8753427554D5800975559 /* Assets.xcassets in Resources */,
  2083. );
  2084. runOnlyForDeploymentPostprocessing = 0;
  2085. };
  2086. 38FCF3EB25E9028E0078B0D1 /* Resources */ = {
  2087. isa = PBXResourcesBuildPhase;
  2088. buildActionMask = 2147483647;
  2089. files = (
  2090. );
  2091. runOnlyForDeploymentPostprocessing = 0;
  2092. };
  2093. /* End PBXResourcesBuildPhase section */
  2094. /* Begin PBXShellScriptBuildPhase section */
  2095. 3811DEF525CA169200A708ED /* Swiftformat */ = {
  2096. isa = PBXShellScriptBuildPhase;
  2097. buildActionMask = 2147483647;
  2098. files = (
  2099. );
  2100. inputFileListPaths = (
  2101. );
  2102. inputPaths = (
  2103. );
  2104. name = Swiftformat;
  2105. outputFileListPaths = (
  2106. );
  2107. outputPaths = (
  2108. );
  2109. runOnlyForDeploymentPostprocessing = 0;
  2110. shellPath = /bin/sh;
  2111. shellScript = "source \"${SRCROOT}\"/scripts/swiftformat.sh\n\n";
  2112. };
  2113. /* End PBXShellScriptBuildPhase section */
  2114. /* Begin PBXSourcesBuildPhase section */
  2115. 388E595425AD948C0019842D /* Sources */ = {
  2116. isa = PBXSourcesBuildPhase;
  2117. buildActionMask = 2147483647;
  2118. files = (
  2119. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */,
  2120. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */,
  2121. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */,
  2122. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */,
  2123. 3811DE8F25C9D80400A708ED /* User.swift in Sources */,
  2124. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */,
  2125. 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */,
  2126. 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */,
  2127. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */,
  2128. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */,
  2129. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */,
  2130. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */,
  2131. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */,
  2132. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */,
  2133. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */,
  2134. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */,
  2135. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */,
  2136. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */,
  2137. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */,
  2138. 38FEF408273B011A00574A46 /* LibreTransmitterSource.swift in Sources */,
  2139. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */,
  2140. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */,
  2141. 386A124F271707F000DDC61C /* DexcomSource.swift in Sources */,
  2142. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */,
  2143. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */,
  2144. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */,
  2145. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */,
  2146. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */,
  2147. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */,
  2148. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */,
  2149. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */,
  2150. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */,
  2151. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */,
  2152. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */,
  2153. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */,
  2154. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */,
  2155. 384E803825C388640086DB71 /* Script.swift in Sources */,
  2156. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */,
  2157. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */,
  2158. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */,
  2159. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */,
  2160. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */,
  2161. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */,
  2162. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */,
  2163. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */,
  2164. 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */,
  2165. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */,
  2166. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */,
  2167. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */,
  2168. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */,
  2169. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */,
  2170. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */,
  2171. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */,
  2172. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */,
  2173. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */,
  2174. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */,
  2175. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */,
  2176. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */,
  2177. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */,
  2178. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */,
  2179. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */,
  2180. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */,
  2181. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */,
  2182. 3811DE1825C9D40400A708ED /* Router.swift in Sources */,
  2183. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */,
  2184. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */,
  2185. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */,
  2186. 3811DEE825CA063400A708ED /* Injected.swift in Sources */,
  2187. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */,
  2188. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */,
  2189. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */,
  2190. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */,
  2191. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */,
  2192. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */,
  2193. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */,
  2194. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */,
  2195. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */,
  2196. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */,
  2197. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */,
  2198. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */,
  2199. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */,
  2200. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */,
  2201. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */,
  2202. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */,
  2203. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */,
  2204. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */,
  2205. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */,
  2206. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */,
  2207. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */,
  2208. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */,
  2209. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */,
  2210. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */,
  2211. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */,
  2212. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */,
  2213. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */,
  2214. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */,
  2215. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */,
  2216. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */,
  2217. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */,
  2218. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */,
  2219. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */,
  2220. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */,
  2221. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */,
  2222. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */,
  2223. 3862CC05273D152B00BF832C /* CalibrationService.swift in Sources */,
  2224. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */,
  2225. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */,
  2226. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */,
  2227. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */,
  2228. 3883581C25EE79BB00E024B2 /* DecimalTextField.swift in Sources */,
  2229. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */,
  2230. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */,
  2231. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */,
  2232. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */,
  2233. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */,
  2234. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */,
  2235. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */,
  2236. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */,
  2237. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */,
  2238. 3871F38725ED661C0013ECB5 /* Suggestion.swift in Sources */,
  2239. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */,
  2240. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */,
  2241. 38AAF8712600C1B0004AF583 /* MainChartView.swift in Sources */,
  2242. 1935364028496F7D001E0B16 /* TDD_averages.swift in Sources */,
  2243. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */,
  2244. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */,
  2245. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */,
  2246. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */,
  2247. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */,
  2248. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */,
  2249. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */,
  2250. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */,
  2251. 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */,
  2252. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */,
  2253. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */,
  2254. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */,
  2255. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */,
  2256. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */,
  2257. 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */,
  2258. 38E44536274E411700EC9A94 /* Disk.swift in Sources */,
  2259. 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */,
  2260. 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */,
  2261. A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */,
  2262. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */,
  2263. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */,
  2264. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */,
  2265. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */,
  2266. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */,
  2267. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */,
  2268. 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */,
  2269. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */,
  2270. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */,
  2271. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */,
  2272. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */,
  2273. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */,
  2274. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */,
  2275. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */,
  2276. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */,
  2277. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */,
  2278. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */,
  2279. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */,
  2280. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */,
  2281. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */,
  2282. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */,
  2283. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */,
  2284. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */,
  2285. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */,
  2286. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */,
  2287. A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */,
  2288. 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */,
  2289. 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */,
  2290. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */,
  2291. 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */,
  2292. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */,
  2293. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */,
  2294. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */,
  2295. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */,
  2296. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */,
  2297. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */,
  2298. 38E8754F275556FA00975559 /* WatchManager.swift in Sources */,
  2299. A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */,
  2300. 19F79FA9283AE7E000646323 /* TDD.swift in Sources */,
  2301. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */,
  2302. E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */,
  2303. DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */,
  2304. 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */,
  2305. E97285ED9B814CD5253C6658 /* AddCarbsDataFlow.swift in Sources */,
  2306. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */,
  2307. 38E8755427561E9800975559 /* DataFlow.swift in Sources */,
  2308. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */,
  2309. A6F097A14CAAE0CE0D11BE1B /* AddCarbsProvider.swift in Sources */,
  2310. 33E198D3039045D98C3DC5D4 /* AddCarbsStateModel.swift in Sources */,
  2311. 28089E07169488CF6DCC2A31 /* AddCarbsRootView.swift in Sources */,
  2312. D2165E9D78EFF692C1DED1C6 /* AddTempTargetDataFlow.swift in Sources */,
  2313. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */,
  2314. 5BFA1C2208114643B77F8CEB /* AddTempTargetProvider.swift in Sources */,
  2315. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */,
  2316. 919DBD08F13BAFB180DF6F47 /* AddTempTargetStateModel.swift in Sources */,
  2317. 8BC2F5A29AD1ED08AC0EE013 /* AddTempTargetRootView.swift in Sources */,
  2318. 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */,
  2319. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */,
  2320. 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */,
  2321. 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */,
  2322. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */,
  2323. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */,
  2324. 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */,
  2325. 0CEA2EA070AB041AF3E3745B /* BolusRootView.swift in Sources */,
  2326. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */,
  2327. 3862CC1F273FDC9200BF832C /* CalibrationsChart.swift in Sources */,
  2328. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */,
  2329. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */,
  2330. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */,
  2331. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */,
  2332. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */,
  2333. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */,
  2334. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */,
  2335. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */,
  2336. 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */,
  2337. 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */,
  2338. D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */,
  2339. A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */,
  2340. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */,
  2341. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */,
  2342. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */,
  2343. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */,
  2344. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */,
  2345. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */,
  2346. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */,
  2347. 61962FCAF8A2D222553AC5A3 /* LibreConfigDataFlow.swift in Sources */,
  2348. 6EADD581738D64431902AC0A /* LibreConfigProvider.swift in Sources */,
  2349. 903D18976088B09110BCBE29 /* LibreConfigStateModel.swift in Sources */,
  2350. 9050F378F0063C064D7FFC86 /* LibreConfigRootView.swift in Sources */,
  2351. B7C465E9472624D8A2BE2A6A /* CalibrationsDataFlow.swift in Sources */,
  2352. 320D030F724170A637F06D50 /* CalibrationsProvider.swift in Sources */,
  2353. E25073BC86C11C3D6A42F5AC /* CalibrationsStateModel.swift in Sources */,
  2354. BA90041DC8991147E5C8C3AA /* CalibrationsRootView.swift in Sources */,
  2355. E3A08AAE59538BC8A8ABE477 /* NotificationsConfigDataFlow.swift in Sources */,
  2356. 0F7A65FBD2CD8D6477ED4539 /* NotificationsConfigProvider.swift in Sources */,
  2357. 3171D2818C7C72CD1584BB5E /* NotificationsConfigStateModel.swift in Sources */,
  2358. CD78BB94E43B249D60CC1A1B /* NotificationsConfigRootView.swift in Sources */,
  2359. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */,
  2360. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */,
  2361. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */,
  2362. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */,
  2363. );
  2364. runOnlyForDeploymentPostprocessing = 0;
  2365. };
  2366. 38E8752027554D5700975559 /* Sources */ = {
  2367. isa = PBXSourcesBuildPhase;
  2368. buildActionMask = 2147483647;
  2369. files = (
  2370. 38E8757927579D9200975559 /* Publisher.swift in Sources */,
  2371. 38E8755B27568A6800975559 /* ConfirmationView.swift in Sources */,
  2372. 38E8757D2757C45D00975559 /* BolusView.swift in Sources */,
  2373. 38E8752E27554D5700975559 /* NotificationController.swift in Sources */,
  2374. 38E8754C2755548F00975559 /* WatchStateModel.swift in Sources */,
  2375. 38E8754A275550BB00975559 /* CarbsView.swift in Sources */,
  2376. 38E8752C27554D5700975559 /* MainView.swift in Sources */,
  2377. 38E8755127555D0500975559 /* DataFlow.swift in Sources */,
  2378. 38E8753227554D5700975559 /* ComplicationController.swift in Sources */,
  2379. 38E8752A27554D5700975559 /* FreeAPSApp.swift in Sources */,
  2380. 38E8757B2757B1C300975559 /* TempTargetsView.swift in Sources */,
  2381. 38E8753027554D5700975559 /* NotificationView.swift in Sources */,
  2382. 38E8757E2758C86A00975559 /* ConvenienceExtensions.swift in Sources */,
  2383. 38E8754727554DF100975559 /* Color+Extensions.swift in Sources */,
  2384. 38E8755927567CA600975559 /* Decimal+Extensions.swift in Sources */,
  2385. 38E8758027595DC600975559 /* BolusConfirmationView.swift in Sources */,
  2386. );
  2387. runOnlyForDeploymentPostprocessing = 0;
  2388. };
  2389. 38FCF3E925E9028E0078B0D1 /* Sources */ = {
  2390. isa = PBXSourcesBuildPhase;
  2391. buildActionMask = 2147483647;
  2392. files = (
  2393. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */,
  2394. );
  2395. runOnlyForDeploymentPostprocessing = 0;
  2396. };
  2397. /* End PBXSourcesBuildPhase section */
  2398. /* Begin PBXTargetDependency section */
  2399. 38E8752727554D5700975559 /* PBXTargetDependency */ = {
  2400. isa = PBXTargetDependency;
  2401. target = 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */;
  2402. targetProxy = 38E8752627554D5700975559 /* PBXContainerItemProxy */;
  2403. };
  2404. 38E8753B27554D5900975559 /* PBXTargetDependency */ = {
  2405. isa = PBXTargetDependency;
  2406. target = 38E8751B27554D5500975559 /* FreeAPSWatch */;
  2407. targetProxy = 38E8753A27554D5900975559 /* PBXContainerItemProxy */;
  2408. };
  2409. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */ = {
  2410. isa = PBXTargetDependency;
  2411. target = 388E595725AD948C0019842D /* FreeAPS */;
  2412. targetProxy = 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */;
  2413. };
  2414. /* End PBXTargetDependency section */
  2415. /* Begin PBXVariantGroup section */
  2416. 1927C8E82744606D00347C69 /* InfoPlist.strings */ = {
  2417. isa = PBXVariantGroup;
  2418. children = (
  2419. 1927C8E92744611700347C69 /* ar */,
  2420. 1927C8EA2744611800347C69 /* ca */,
  2421. 1927C8EB2744611900347C69 /* zh-Hans */,
  2422. 1927C8EC2744611A00347C69 /* da */,
  2423. 1927C8ED2744611B00347C69 /* fi */,
  2424. 1927C8EE2744611C00347C69 /* nl */,
  2425. 1927C8EF2744611D00347C69 /* fr */,
  2426. 1927C8F02744611E00347C69 /* de */,
  2427. 1927C8F12744611E00347C69 /* he */,
  2428. 1927C8F22744611F00347C69 /* it */,
  2429. 1927C8F32744612000347C69 /* nb */,
  2430. 1927C8F42744612100347C69 /* pl */,
  2431. 1927C8F52744612100347C69 /* pt-BR */,
  2432. 1927C8F62744612200347C69 /* pt-PT */,
  2433. 1927C8F72744612300347C69 /* ru */,
  2434. 1927C8F82744612400347C69 /* es */,
  2435. 1927C8F92744612400347C69 /* sv */,
  2436. 1927C8FA2744612500347C69 /* tr */,
  2437. 1927C8FB2744612600347C69 /* uk */,
  2438. 1927C8FE274489BA00347C69 /* Base */,
  2439. 19C166682756EFBD00ED12E3 /* sk */,
  2440. );
  2441. name = InfoPlist.strings;
  2442. sourceTree = "<group>";
  2443. };
  2444. 198377D4266BFFF6004DE65E /* Localizable.strings */ = {
  2445. isa = PBXVariantGroup;
  2446. children = (
  2447. 198377D3266BFFF6004DE65E /* en */,
  2448. 198377D5266C0A05004DE65E /* ar */,
  2449. 198377D6266C0A0A004DE65E /* ca */,
  2450. 198377D7266C0A15004DE65E /* zh-Hans */,
  2451. 198377D8266C0A1C004DE65E /* da */,
  2452. 198377D9266C0A21004DE65E /* nl */,
  2453. 198377DA266C0A2B004DE65E /* fr */,
  2454. 198377DB266C0A32004DE65E /* de */,
  2455. 198377DC266C0A3C004DE65E /* he */,
  2456. 198377DD266C0A51004DE65E /* it */,
  2457. 198377DE266C0A69004DE65E /* nb */,
  2458. 198377DF266C0A7F004DE65E /* pl */,
  2459. 198377E0266C0AB5004DE65E /* ru */,
  2460. 198377E1266C0ABF004DE65E /* es */,
  2461. 198377E2266C0AC8004DE65E /* sv */,
  2462. 198377E3266C0ADC004DE65E /* tr */,
  2463. 198377E4266C13D2004DE65E /* uk */,
  2464. 1918333A26ADA46800F45722 /* fi */,
  2465. 199732B4271B72DD00129A3F /* pt-PT */,
  2466. 199732B5271B9EE900129A3F /* pt-BR */,
  2467. 19C166692756EFBD00ED12E3 /* sk */,
  2468. );
  2469. name = Localizable.strings;
  2470. sourceTree = "<group>";
  2471. };
  2472. /* End PBXVariantGroup section */
  2473. /* Begin XCBuildConfiguration section */
  2474. 388E596525AD948E0019842D /* Debug */ = {
  2475. isa = XCBuildConfiguration;
  2476. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  2477. buildSettings = {
  2478. ALWAYS_SEARCH_USER_PATHS = NO;
  2479. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2480. CLANG_ANALYZER_NONNULL = YES;
  2481. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2482. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2483. CLANG_CXX_LIBRARY = "libc++";
  2484. CLANG_ENABLE_MODULES = YES;
  2485. CLANG_ENABLE_OBJC_ARC = YES;
  2486. CLANG_ENABLE_OBJC_WEAK = YES;
  2487. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2488. CLANG_WARN_BOOL_CONVERSION = YES;
  2489. CLANG_WARN_COMMA = YES;
  2490. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2491. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2492. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2493. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2494. CLANG_WARN_EMPTY_BODY = YES;
  2495. CLANG_WARN_ENUM_CONVERSION = YES;
  2496. CLANG_WARN_INFINITE_RECURSION = YES;
  2497. CLANG_WARN_INT_CONVERSION = YES;
  2498. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2499. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2500. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2501. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2502. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2503. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2504. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2505. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2506. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2507. CLANG_WARN_UNREACHABLE_CODE = YES;
  2508. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2509. COPY_PHASE_STRIP = NO;
  2510. CURRENT_PROJECT_VERSION = $CURRENT_PROJECT_VERSION;
  2511. DEBUG_INFORMATION_FORMAT = dwarf;
  2512. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2513. ENABLE_TESTABILITY = YES;
  2514. GCC_C_LANGUAGE_STANDARD = gnu11;
  2515. GCC_DYNAMIC_NO_PIC = NO;
  2516. GCC_NO_COMMON_BLOCKS = YES;
  2517. GCC_OPTIMIZATION_LEVEL = 0;
  2518. GCC_PREPROCESSOR_DEFINITIONS = (
  2519. "DEBUG=1",
  2520. "$(inherited)",
  2521. );
  2522. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2523. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2524. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2525. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2526. GCC_WARN_UNUSED_FUNCTION = YES;
  2527. GCC_WARN_UNUSED_VARIABLE = YES;
  2528. IPHONEOS_DEPLOYMENT_TARGET = 14.5;
  2529. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2530. MTL_FAST_MATH = YES;
  2531. ONLY_ACTIVE_ARCH = YES;
  2532. SDKROOT = iphoneos;
  2533. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2534. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2535. };
  2536. name = Debug;
  2537. };
  2538. 388E596625AD948E0019842D /* Release */ = {
  2539. isa = XCBuildConfiguration;
  2540. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  2541. buildSettings = {
  2542. ALWAYS_SEARCH_USER_PATHS = NO;
  2543. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2544. CLANG_ANALYZER_NONNULL = YES;
  2545. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2546. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2547. CLANG_CXX_LIBRARY = "libc++";
  2548. CLANG_ENABLE_MODULES = YES;
  2549. CLANG_ENABLE_OBJC_ARC = YES;
  2550. CLANG_ENABLE_OBJC_WEAK = YES;
  2551. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2552. CLANG_WARN_BOOL_CONVERSION = YES;
  2553. CLANG_WARN_COMMA = YES;
  2554. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2555. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2556. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2557. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2558. CLANG_WARN_EMPTY_BODY = YES;
  2559. CLANG_WARN_ENUM_CONVERSION = YES;
  2560. CLANG_WARN_INFINITE_RECURSION = YES;
  2561. CLANG_WARN_INT_CONVERSION = YES;
  2562. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2563. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2564. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2565. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2566. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2567. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2568. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2569. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2570. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2571. CLANG_WARN_UNREACHABLE_CODE = YES;
  2572. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2573. COPY_PHASE_STRIP = NO;
  2574. CURRENT_PROJECT_VERSION = $CURRENT_PROJECT_VERSION;
  2575. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2576. ENABLE_NS_ASSERTIONS = NO;
  2577. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2578. GCC_C_LANGUAGE_STANDARD = gnu11;
  2579. GCC_NO_COMMON_BLOCKS = YES;
  2580. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2581. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2582. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2583. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2584. GCC_WARN_UNUSED_FUNCTION = YES;
  2585. GCC_WARN_UNUSED_VARIABLE = YES;
  2586. IPHONEOS_DEPLOYMENT_TARGET = 14.5;
  2587. MTL_ENABLE_DEBUG_INFO = NO;
  2588. MTL_FAST_MATH = YES;
  2589. SDKROOT = iphoneos;
  2590. SWIFT_COMPILATION_MODE = wholemodule;
  2591. SWIFT_OPTIMIZATION_LEVEL = "-O";
  2592. VALIDATE_PRODUCT = YES;
  2593. };
  2594. name = Release;
  2595. };
  2596. 388E596825AD948E0019842D /* Debug */ = {
  2597. isa = XCBuildConfiguration;
  2598. buildSettings = {
  2599. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  2600. APP_GROUP_ID = "$(APP_GROUP_ID)";
  2601. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  2602. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2603. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  2604. CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
  2605. CODE_SIGN_STYLE = Automatic;
  2606. CURRENT_PROJECT_VERSION = 2;
  2607. DEVELOPMENT_ASSET_PATHS = "";
  2608. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  2609. ENABLE_PREVIEWS = YES;
  2610. INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
  2611. IPHONEOS_DEPLOYMENT_TARGET = 14.5;
  2612. LD_RUNPATH_SEARCH_PATHS = (
  2613. "$(inherited)",
  2614. "@executable_path/Frameworks",
  2615. );
  2616. LIBRARY_SEARCH_PATHS = (
  2617. "$(inherited)",
  2618. "$(SDKROOT)/usr/lib/swift",
  2619. );
  2620. MARKETING_VERSION = "$(APP_VERSION)";
  2621. OTHER_LDFLAGS = (
  2622. "-weak_framework",
  2623. CoreNFC,
  2624. );
  2625. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  2626. PRODUCT_NAME = "$(TARGET_NAME)";
  2627. SWIFT_VERSION = 5.0;
  2628. TARGETED_DEVICE_FAMILY = "1,2";
  2629. };
  2630. name = Debug;
  2631. };
  2632. 388E596925AD948E0019842D /* Release */ = {
  2633. isa = XCBuildConfiguration;
  2634. buildSettings = {
  2635. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  2636. APP_GROUP_ID = "$(APP_GROUP_ID)";
  2637. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  2638. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2639. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  2640. CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
  2641. CODE_SIGN_STYLE = Automatic;
  2642. CURRENT_PROJECT_VERSION = 2;
  2643. DEVELOPMENT_ASSET_PATHS = "";
  2644. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  2645. ENABLE_PREVIEWS = YES;
  2646. INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
  2647. IPHONEOS_DEPLOYMENT_TARGET = 14.5;
  2648. LD_RUNPATH_SEARCH_PATHS = (
  2649. "$(inherited)",
  2650. "@executable_path/Frameworks",
  2651. );
  2652. LIBRARY_SEARCH_PATHS = (
  2653. "$(inherited)",
  2654. "$(SDKROOT)/usr/lib/swift",
  2655. );
  2656. MARKETING_VERSION = "$(APP_VERSION)";
  2657. OTHER_LDFLAGS = (
  2658. "-weak_framework",
  2659. CoreNFC,
  2660. );
  2661. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  2662. PRODUCT_NAME = "$(TARGET_NAME)";
  2663. SWIFT_VERSION = 5.0;
  2664. TARGETED_DEVICE_FAMILY = "1,2";
  2665. };
  2666. name = Release;
  2667. };
  2668. 38E8753E27554D5900975559 /* Debug */ = {
  2669. isa = XCBuildConfiguration;
  2670. buildSettings = {
  2671. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  2672. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  2673. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  2674. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2675. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  2676. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  2677. CODE_SIGN_ENTITLEMENTS = FreeAPSWatch/FreeAPSWatch.entitlements;
  2678. CODE_SIGN_STYLE = Automatic;
  2679. CURRENT_PROJECT_VERSION = 2;
  2680. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  2681. GENERATE_INFOPLIST_FILE = YES;
  2682. IBSC_MODULE = FreeAPSWatch_WatchKit_Extension;
  2683. INFOPLIST_KEY_CFBundleDisplayName = "FreeAPS X";
  2684. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  2685. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  2686. MARKETING_VERSION = "$(APP_VERSION)";
  2687. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  2688. PRODUCT_NAME = "$(TARGET_NAME)";
  2689. SDKROOT = watchos;
  2690. SKIP_INSTALL = YES;
  2691. SWIFT_EMIT_LOC_STRINGS = YES;
  2692. SWIFT_VERSION = 5.0;
  2693. TARGETED_DEVICE_FAMILY = 4;
  2694. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  2695. };
  2696. name = Debug;
  2697. };
  2698. 38E8753F27554D5900975559 /* Release */ = {
  2699. isa = XCBuildConfiguration;
  2700. buildSettings = {
  2701. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  2702. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  2703. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  2704. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2705. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  2706. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  2707. CODE_SIGN_ENTITLEMENTS = FreeAPSWatch/FreeAPSWatch.entitlements;
  2708. CODE_SIGN_STYLE = Automatic;
  2709. CURRENT_PROJECT_VERSION = 2;
  2710. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  2711. GENERATE_INFOPLIST_FILE = YES;
  2712. IBSC_MODULE = FreeAPSWatch_WatchKit_Extension;
  2713. INFOPLIST_KEY_CFBundleDisplayName = "FreeAPS X";
  2714. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  2715. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  2716. MARKETING_VERSION = "$(APP_VERSION)";
  2717. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  2718. PRODUCT_NAME = "$(TARGET_NAME)";
  2719. SDKROOT = watchos;
  2720. SKIP_INSTALL = YES;
  2721. SWIFT_EMIT_LOC_STRINGS = YES;
  2722. SWIFT_VERSION = 5.0;
  2723. TARGETED_DEVICE_FAMILY = 4;
  2724. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  2725. };
  2726. name = Release;
  2727. };
  2728. 38E8754127554D5900975559 /* Debug */ = {
  2729. isa = XCBuildConfiguration;
  2730. buildSettings = {
  2731. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  2732. ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication;
  2733. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  2734. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  2735. CODE_SIGN_ENTITLEMENTS = "FreeAPSWatch WatchKit Extension/FreeAPSWatch WatchKit Extension.entitlements";
  2736. CODE_SIGN_STYLE = Automatic;
  2737. CURRENT_PROJECT_VERSION = 2;
  2738. DEVELOPMENT_ASSET_PATHS = "\"FreeAPSWatch WatchKit Extension/Preview Content\"";
  2739. DEVELOPMENT_TEAM = "${DEVELOPER_TEAM}";
  2740. ENABLE_PREVIEWS = YES;
  2741. GENERATE_INFOPLIST_FILE = YES;
  2742. INFOPLIST_FILE = "FreeAPSWatch WatchKit Extension/Info.plist";
  2743. INFOPLIST_KEY_CFBundleDisplayName = "FreeAPS X WatchKit Extension";
  2744. INFOPLIST_KEY_CLKComplicationPrincipalClass = FreeAPSWatch_WatchKit_Extension.ComplicationController;
  2745. INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "Bla bla Record Health";
  2746. INFOPLIST_KEY_NSHealthShareUsageDescription = "Bla bla Share Health";
  2747. INFOPLIST_KEY_NSHealthUpdateUsageDescription = "Bla bla Update Health";
  2748. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  2749. INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = NO;
  2750. LD_RUNPATH_SEARCH_PATHS = (
  2751. "$(inherited)",
  2752. "@executable_path/Frameworks",
  2753. "@executable_path/../../Frameworks",
  2754. );
  2755. MARKETING_VERSION = "$(APP_VERSION)";
  2756. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.watchkitextension";
  2757. PRODUCT_NAME = "${TARGET_NAME}";
  2758. SDKROOT = watchos;
  2759. SKIP_INSTALL = YES;
  2760. SWIFT_EMIT_LOC_STRINGS = YES;
  2761. SWIFT_VERSION = 5.0;
  2762. TARGETED_DEVICE_FAMILY = 4;
  2763. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  2764. };
  2765. name = Debug;
  2766. };
  2767. 38E8754227554D5900975559 /* Release */ = {
  2768. isa = XCBuildConfiguration;
  2769. buildSettings = {
  2770. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  2771. ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication;
  2772. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  2773. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  2774. CODE_SIGN_ENTITLEMENTS = "FreeAPSWatch WatchKit Extension/FreeAPSWatch WatchKit Extension.entitlements";
  2775. CODE_SIGN_STYLE = Automatic;
  2776. CURRENT_PROJECT_VERSION = 2;
  2777. DEVELOPMENT_ASSET_PATHS = "\"FreeAPSWatch WatchKit Extension/Preview Content\"";
  2778. DEVELOPMENT_TEAM = "${DEVELOPER_TEAM}";
  2779. ENABLE_PREVIEWS = YES;
  2780. GENERATE_INFOPLIST_FILE = YES;
  2781. INFOPLIST_FILE = "FreeAPSWatch WatchKit Extension/Info.plist";
  2782. INFOPLIST_KEY_CFBundleDisplayName = "FreeAPS X WatchKit Extension";
  2783. INFOPLIST_KEY_CLKComplicationPrincipalClass = FreeAPSWatch_WatchKit_Extension.ComplicationController;
  2784. INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "Bla bla Record Health";
  2785. INFOPLIST_KEY_NSHealthShareUsageDescription = "Bla bla Share Health";
  2786. INFOPLIST_KEY_NSHealthUpdateUsageDescription = "Bla bla Update Health";
  2787. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  2788. INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = NO;
  2789. LD_RUNPATH_SEARCH_PATHS = (
  2790. "$(inherited)",
  2791. "@executable_path/Frameworks",
  2792. "@executable_path/../../Frameworks",
  2793. );
  2794. MARKETING_VERSION = "$(APP_VERSION)";
  2795. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.watchkitextension";
  2796. PRODUCT_NAME = "${TARGET_NAME}";
  2797. SDKROOT = watchos;
  2798. SKIP_INSTALL = YES;
  2799. SWIFT_EMIT_LOC_STRINGS = YES;
  2800. SWIFT_VERSION = 5.0;
  2801. TARGETED_DEVICE_FAMILY = 4;
  2802. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  2803. };
  2804. name = Release;
  2805. };
  2806. 38FCF3F525E9028E0078B0D1 /* Debug */ = {
  2807. isa = XCBuildConfiguration;
  2808. buildSettings = {
  2809. BUNDLE_LOADER = "$(TEST_HOST)";
  2810. CODE_SIGN_STYLE = Automatic;
  2811. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  2812. INFOPLIST_FILE = FreeAPSTests/Info.plist;
  2813. IPHONEOS_DEPLOYMENT_TARGET = 14.4;
  2814. LD_RUNPATH_SEARCH_PATHS = (
  2815. "$(inherited)",
  2816. "@executable_path/Frameworks",
  2817. "@loader_path/Frameworks",
  2818. );
  2819. PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPSTests;
  2820. PRODUCT_NAME = "$(TARGET_NAME)";
  2821. SWIFT_VERSION = 5.0;
  2822. TARGETED_DEVICE_FAMILY = "1,2";
  2823. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
  2824. };
  2825. name = Debug;
  2826. };
  2827. 38FCF3F625E9028E0078B0D1 /* Release */ = {
  2828. isa = XCBuildConfiguration;
  2829. buildSettings = {
  2830. BUNDLE_LOADER = "$(TEST_HOST)";
  2831. CODE_SIGN_STYLE = Automatic;
  2832. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  2833. INFOPLIST_FILE = FreeAPSTests/Info.plist;
  2834. IPHONEOS_DEPLOYMENT_TARGET = 14.4;
  2835. LD_RUNPATH_SEARCH_PATHS = (
  2836. "$(inherited)",
  2837. "@executable_path/Frameworks",
  2838. "@loader_path/Frameworks",
  2839. );
  2840. PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPSTests;
  2841. PRODUCT_NAME = "$(TARGET_NAME)";
  2842. SWIFT_VERSION = 5.0;
  2843. TARGETED_DEVICE_FAMILY = "1,2";
  2844. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
  2845. };
  2846. name = Release;
  2847. };
  2848. /* End XCBuildConfiguration section */
  2849. /* Begin XCConfigurationList section */
  2850. 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */ = {
  2851. isa = XCConfigurationList;
  2852. buildConfigurations = (
  2853. 388E596525AD948E0019842D /* Debug */,
  2854. 388E596625AD948E0019842D /* Release */,
  2855. );
  2856. defaultConfigurationIsVisible = 0;
  2857. defaultConfigurationName = Release;
  2858. };
  2859. 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */ = {
  2860. isa = XCConfigurationList;
  2861. buildConfigurations = (
  2862. 388E596825AD948E0019842D /* Debug */,
  2863. 388E596925AD948E0019842D /* Release */,
  2864. );
  2865. defaultConfigurationIsVisible = 0;
  2866. defaultConfigurationName = Release;
  2867. };
  2868. 38E8754327554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch WatchKit Extension" */ = {
  2869. isa = XCConfigurationList;
  2870. buildConfigurations = (
  2871. 38E8754127554D5900975559 /* Debug */,
  2872. 38E8754227554D5900975559 /* Release */,
  2873. );
  2874. defaultConfigurationIsVisible = 0;
  2875. defaultConfigurationName = Release;
  2876. };
  2877. 38E8754427554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch" */ = {
  2878. isa = XCConfigurationList;
  2879. buildConfigurations = (
  2880. 38E8753E27554D5900975559 /* Debug */,
  2881. 38E8753F27554D5900975559 /* Release */,
  2882. );
  2883. defaultConfigurationIsVisible = 0;
  2884. defaultConfigurationName = Release;
  2885. };
  2886. 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */ = {
  2887. isa = XCConfigurationList;
  2888. buildConfigurations = (
  2889. 38FCF3F525E9028E0078B0D1 /* Debug */,
  2890. 38FCF3F625E9028E0078B0D1 /* Release */,
  2891. );
  2892. defaultConfigurationIsVisible = 0;
  2893. defaultConfigurationName = Release;
  2894. };
  2895. /* End XCConfigurationList section */
  2896. /* Begin XCRemoteSwiftPackageReference section */
  2897. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */ = {
  2898. isa = XCRemoteSwiftPackageReference;
  2899. repositoryURL = "https://github.com/Swinject/Swinject";
  2900. requirement = {
  2901. kind = upToNextMajorVersion;
  2902. minimumVersion = 2.7.1;
  2903. };
  2904. };
  2905. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */ = {
  2906. isa = XCRemoteSwiftPackageReference;
  2907. repositoryURL = "https://github.com/apple/swift-algorithms";
  2908. requirement = {
  2909. kind = upToNextMajorVersion;
  2910. minimumVersion = 0.0.3;
  2911. };
  2912. };
  2913. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */ = {
  2914. isa = XCRemoteSwiftPackageReference;
  2915. repositoryURL = "https://github.com/malcommac/SwiftDate";
  2916. requirement = {
  2917. kind = upToNextMajorVersion;
  2918. minimumVersion = 6.3.1;
  2919. };
  2920. };
  2921. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */ = {
  2922. isa = XCRemoteSwiftPackageReference;
  2923. repositoryURL = "https://github.com/SwiftKickMobile/SwiftMessages";
  2924. requirement = {
  2925. kind = upToNextMajorVersion;
  2926. minimumVersion = 9.0.0;
  2927. };
  2928. };
  2929. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */ = {
  2930. isa = XCRemoteSwiftPackageReference;
  2931. repositoryURL = "https://github.com/ivanschuetz/SwiftCharts.git";
  2932. requirement = {
  2933. branch = master;
  2934. kind = branch;
  2935. };
  2936. };
  2937. /* End XCRemoteSwiftPackageReference section */
  2938. /* Begin XCSwiftPackageProductDependency section */
  2939. 3811DE0F25C9D37700A708ED /* Swinject */ = {
  2940. isa = XCSwiftPackageProductDependency;
  2941. package = 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */;
  2942. productName = Swinject;
  2943. };
  2944. 3818AA46274C255A00843DB3 /* LibreTransmitter */ = {
  2945. isa = XCSwiftPackageProductDependency;
  2946. productName = LibreTransmitter;
  2947. };
  2948. 3833B46C26012030003021B3 /* Algorithms */ = {
  2949. isa = XCSwiftPackageProductDependency;
  2950. package = 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */;
  2951. productName = Algorithms;
  2952. };
  2953. 38B17B6525DD90E0005CAE3D /* SwiftDate */ = {
  2954. isa = XCSwiftPackageProductDependency;
  2955. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  2956. productName = SwiftDate;
  2957. };
  2958. 38DF1788276FC8C400B3528F /* SwiftMessages */ = {
  2959. isa = XCSwiftPackageProductDependency;
  2960. package = 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */;
  2961. productName = SwiftMessages;
  2962. };
  2963. 38E8755727567AE400975559 /* SwiftDate */ = {
  2964. isa = XCSwiftPackageProductDependency;
  2965. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  2966. productName = SwiftDate;
  2967. };
  2968. CEB434FC28B90B7C00B70274 /* SwiftCharts */ = {
  2969. isa = XCSwiftPackageProductDependency;
  2970. package = CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */;
  2971. productName = SwiftCharts;
  2972. };
  2973. /* End XCSwiftPackageProductDependency section */
  2974. };
  2975. rootObject = 388E595025AD948C0019842D /* Project object */;
  2976. }