project.pbxproj 217 KB

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