project.pbxproj 384 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 70;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 041D1E995A6AE92E9289DC49 /* TreatmentsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.swift */; };
  10. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5822B15939E719628E9FF7C /* SnoozeRootView.swift */; };
  11. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */; };
  12. 0F7A65FBD2CD8D6477ED4539 /* GlucoseNotificationSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.swift */; };
  13. 110AEDE32C5193D200615CC9 /* BolusIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE02C5193D100615CC9 /* BolusIntent.swift */; };
  14. 110AEDE42C5193D200615CC9 /* BolusIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */; };
  15. 110AEDEB2C51A0AE00615CC9 /* ShortcutsConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */; };
  16. 110AEDEC2C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */; };
  17. 110AEDED2C51A0AE00615CC9 /* ShortcutsConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */; };
  18. 110AEDEE2C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */; };
  19. 118DF76A2C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */; };
  20. 118DF76B2C5ECBC60067FEB7 /* CancelOverrideIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */; };
  21. 118DF76D2C5ECBC60067FEB7 /* OverridePresetEntity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */; };
  22. 118DF76E2C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */; };
  23. 17A9D0899046B45E87834820 /* CarbRatioEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */; };
  24. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19012CDB291D2CB900FB8210 /* LoopStats.swift */; };
  25. 190EBCC429FF136900BA767D /* UserInterfaceSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */; };
  26. 190EBCC629FF138000BA767D /* UserInterfaceSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */; };
  27. 190EBCC829FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */; };
  28. 190EBCCB29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */; };
  29. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */; };
  30. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1935363F28496F7D001E0B16 /* Oref2_variables.swift */; };
  31. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */ = {isa = PBXBuildFile; fileRef = 193F6CDC2A512C8F001240FD /* Loops.swift */; };
  32. 195D80B42AF6973A00D25097 /* DynamicSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */; };
  33. 195D80B72AF697B800D25097 /* DynamicSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */; };
  34. 195D80B92AF697F700D25097 /* DynamicSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */; };
  35. 195D80BB2AF6980B00D25097 /* DynamicSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */; };
  36. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBD29D052C200759F30 /* Icons.swift */; };
  37. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBF29D053AC00759F30 /* IconSelection.swift */; };
  38. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFC129D053D300759F30 /* IconImage.swift */; };
  39. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910352A24D6D700C8951B /* DateFilter.swift */; };
  40. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19B0EF2028F6D66200069496 /* Statistics.swift */; };
  41. 19D466A329AA2B80004D5F33 /* MealSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */; };
  42. 19D466A529AA2BD4004D5F33 /* MealSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */; };
  43. 19D466A729AA2C22004D5F33 /* MealSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */; };
  44. 19D466AA29AA3099004D5F33 /* MealSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A929AA3099004D5F33 /* MealSettingsRootView.swift */; };
  45. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D4E4EA29FC6A9F00351451 /* Charts.swift */; };
  46. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
  47. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */; };
  48. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */; };
  49. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */; };
  50. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */; };
  51. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */; };
  52. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF429F10FCF00314DDC /* StatProvider.swift */; };
  53. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF629F10FEE00314DDC /* StatStateModel.swift */; };
  54. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF929F1102A00314DDC /* StatRootView.swift */; };
  55. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */; };
  56. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60744C3E9BB3652895C908CC /* DataTableProvider.swift */; };
  57. 23888883D4EA091C88480FF2 /* TreatmentsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */; };
  58. 3171D2818C7C72CD1584BB5E /* GlucoseNotificationSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */; };
  59. 320D030F724170A637F06D50 /* (null) in Sources */ = {isa = PBXBuildFile; };
  60. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0725C9D32E00A708ED /* BaseView.swift */; };
  61. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0825C9D32F00A708ED /* BaseProvider.swift */; };
  62. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */ = {isa = PBXBuildFile; productRef = 3811DE0F25C9D37700A708ED /* Swinject */; };
  63. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1525C9D40400A708ED /* Screen.swift */; };
  64. 3811DE1825C9D40400A708ED /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1625C9D40400A708ED /* Router.swift */; };
  65. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1C25C9D48300A708ED /* MainProvider.swift */; };
  66. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */; };
  67. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2025C9D48300A708ED /* MainRootView.swift */; };
  68. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2825C9D49500A708ED /* HomeStateModel.swift */; };
  69. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2925C9D49500A708ED /* HomeProvider.swift */; };
  70. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */; };
  71. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2E25C9D49500A708ED /* HomeRootView.swift */; };
  72. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */; };
  73. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */; };
  74. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */; };
  75. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */; };
  76. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5425C9D4D500A708ED /* Formatters.swift */; };
  77. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  78. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5725C9D4D500A708ED /* ProgressBar.swift */; };
  79. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */; };
  80. 3811DE8F25C9D80400A708ED /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE8E25C9D80400A708ED /* User.swift */; };
  81. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9325C9D88200A708ED /* AppearanceManager.swift */; };
  82. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */; };
  83. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9725C9D88300A708ED /* NightscoutManager.swift */; };
  84. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */; };
  85. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9B25C9D88300A708ED /* Cache.swift */; };
  86. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */; };
  87. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */; };
  88. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9F25C9D88300A708ED /* Keychain.swift */; };
  89. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */; };
  90. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA625C9D88300A708ED /* UnlockManager.swift */; };
  91. 3811DEE825CA063400A708ED /* Injected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE425CA063400A708ED /* Injected.swift */; };
  92. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE625CA063400A708ED /* SyncAccess.swift */; };
  93. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE725CA063400A708ED /* PersistedProperty.swift */; };
  94. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0125CA9FEA00A708ED /* Credentials.swift */; };
  95. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0F25CAAAE200A708ED /* APSManager.swift */; };
  96. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E03261B82FA0094D973 /* ReachabilityManager.swift */; };
  97. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */; };
  98. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  99. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3821ED4B25DD18BA00BC42AD /* Constants.swift */; };
  100. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */; };
  101. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C134A25F14E3700715CE1 /* BGTargets.swift */; };
  102. 3833B46D26012030003021B3 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 3833B46C26012030003021B3 /* Algorithms */; };
  103. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D525FFE38C002D46C1 /* LoopView.swift */; };
  104. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D825FFEB3F002D46C1 /* Popup.swift */; };
  105. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D525CD4D8900E91849 /* FileStorage.swift */; };
  106. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D925CD64D500E91849 /* Glucose.swift */; };
  107. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803325C385E60086DB71 /* JavaScriptWorker.swift */; };
  108. 384E803825C388640086DB71 /* Script.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803725C388640086DB71 /* Script.swift */; };
  109. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569344270B5DFA0002C50D /* CGMType.swift */; };
  110. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569345270B5DFA0002C50D /* GlucoseSource.swift */; };
  111. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569346270B5DFB0002C50D /* AppGroupSource.swift */; };
  112. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569352270B5E350002C50D /* CGMRootView.swift */; };
  113. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */; };
  114. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC2D2743F9F700BF832C /* CalendarManager.swift */; };
  115. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3870FF4225EC13F40088248F /* BloodGlucose.swift */; };
  116. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39B25ED892B0013ECB5 /* TempTarget.swift */; };
  117. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  118. 3883581C25EE79BB00E024B2 /* TextFieldWithToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */; };
  119. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883583325EEB38000E024B2 /* PumpSettings.swift */; };
  120. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */; };
  121. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38887CCD25F5725200944304 /* IOBEntry.swift */; };
  122. 388E595C25AD948C0019842D /* TrioApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E595B25AD948C0019842D /* TrioApp.swift */; };
  123. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E596B25AD95110019842D /* OpenAPS.swift */; };
  124. 388E596F25AD96040019842D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 388E596E25AD96040019842D /* javascript */; };
  125. 388E597225AD9CF10019842D /* json in Resources */ = {isa = PBXBuildFile; fileRef = 388E597125AD9CF10019842D /* json */; };
  126. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5B25B6F0770019842D /* JSON.swift */; };
  127. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5F25B6F2310019842D /* Autosens.swift */; };
  128. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */; };
  129. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389487392614928B004DF424 /* DispatchTimer.swift */; };
  130. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3895E4C525B9E00D00214B37 /* Preferences.swift */; };
  131. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389A571F26079BAA00BC102F /* Interpolation.swift */; };
  132. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECDFD2601061500D86C4F /* View+Snapshot.swift */; };
  133. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECE042601144100D86C4F /* ConcurrentMap.swift */; };
  134. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */; };
  135. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */; };
  136. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0364125ED069400FCBB52 /* TempBasal.swift */; };
  137. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */; };
  138. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */; };
  139. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A9260425F012D8009E3739 /* CarbRatios.swift */; };
  140. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */; };
  141. 38AEE73D25F0200C0013F05B /* TrioSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE73C25F0200C0013F05B /* TrioSettings.swift */; };
  142. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75125F022080013F05B /* SettingsManager.swift */; };
  143. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */; };
  144. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38B17B6525DD90E0005CAE3D /* SwiftDate */; };
  145. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */; };
  146. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */; };
  147. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */; };
  148. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */; };
  149. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */; };
  150. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */; };
  151. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */; };
  152. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021A25E7D06400579895 /* PumpSettingsView.swift */; };
  153. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021C25E7E3AF00579895 /* Reservoir.swift */; };
  154. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */; };
  155. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */; };
  156. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */; };
  157. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3B525EBE24900CB6E88 /* Battery.swift */; };
  158. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */; };
  159. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB27F260CBB7F00F74C1A /* PumpView.swift */; };
  160. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */; };
  161. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF1785276A73D400B3528F /* TagCloudView.swift */; };
  162. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */ = {isa = PBXBuildFile; productRef = 38DF1788276FC8C400B3528F /* SwiftMessages */; };
  163. 38DF178D27733E6800B3528F /* snow.sks in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178B27733E6800B3528F /* snow.sks */; };
  164. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178C27733E6800B3528F /* Assets.xcassets */; };
  165. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF178F27733EAD00B3528F /* SnowScene.swift */; };
  166. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4451D274DB04600EC9A94 /* AppDelegate.swift */; };
  167. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */; };
  168. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44527274E401C00EC9A94 /* Protected.swift */; };
  169. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */; };
  170. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452B274E411600EC9A94 /* Disk+Data.swift */; };
  171. 38E44536274E411700EC9A94 /* Disk.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452C274E411600EC9A94 /* Disk.swift */; };
  172. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */; };
  173. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452E274E411600EC9A94 /* Disk+[Data].swift */; };
  174. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */; };
  175. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */; };
  176. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */; };
  177. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44532274E411700EC9A94 /* Disk+Codable.swift */; };
  178. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44533274E411700EC9A94 /* Disk+Errors.swift */; };
  179. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E873FD274F761800975559 /* CoreNFC.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
  180. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */; settings = {ATTRIBUTES = (Weak, ); }; };
  181. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87407274F9AD000975559 /* UserNotificationsManager.swift */; };
  182. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E989DC25F5021400C0CED0 /* PumpStatus.swift */; };
  183. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1B25F52C9300C0CED0 /* Signpost.swift */; };
  184. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1C25F52C9300C0CED0 /* Logger.swift */; };
  185. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */; };
  186. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */; };
  187. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */; };
  188. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */; };
  189. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2F25F52FF700C0CED0 /* Config.swift */; };
  190. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A3625F5509500C0CED0 /* String+Extensions.swift */; };
  191. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */; };
  192. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */; };
  193. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  194. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */; };
  195. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3D525E8FDF40078B0D1 /* MD5.swift */; };
  196. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */; };
  197. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */; };
  198. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826925CC82DB001FF17A /* NetworkService.swift */; };
  199. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */; };
  200. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3F92737E42000574A46 /* BaseStateModel.swift */; };
  201. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FB2737E53800574A46 /* MainStateModel.swift */; };
  202. 38FEF3FE2738083E00574A46 /* CGMSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FD2738083E00574A46 /* CGMSettingsProvider.swift */; };
  203. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF412273B317A00574A46 /* HKUnit.swift */; };
  204. 3B2F77862D7E52ED005ED9FA /* TDD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B2F77852D7E52ED005ED9FA /* TDD.swift */; };
  205. 3B2F77882D7E5387005ED9FA /* CurrentTDDSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B2F77872D7E5387005ED9FA /* CurrentTDDSetup.swift */; };
  206. 3B3B57C92DA07B3400849D16 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3B57C82DA07B3400849D16 /* GoogleService-Info.plist */; };
  207. 3B4196E02D8C4BC00091DFF7 /* HomeStateModel+CGM.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B4196DF2D8C4BBB0091DFF7 /* HomeStateModel+CGM.swift */; };
  208. 3B47C6102DA0A28F00B0E5EF /* FirebaseCrashlytics in Frameworks */ = {isa = PBXBuildFile; productRef = 3B47C60F2DA0A28F00B0E5EF /* FirebaseCrashlytics */; };
  209. 3B4BA76A2D8DBD690069D5B8 /* CGMBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75B2D8DBD690069D5B8 /* CGMBLEKit.framework */; };
  210. 3B4BA76B2D8DBD690069D5B8 /* CGMBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75B2D8DBD690069D5B8 /* CGMBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  211. 3B4BA76C2D8DBD690069D5B8 /* CGMBLEKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75C2D8DBD690069D5B8 /* CGMBLEKitUI.framework */; };
  212. 3B4BA76D2D8DBD690069D5B8 /* CGMBLEKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75C2D8DBD690069D5B8 /* CGMBLEKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  213. 3B4BA76E2D8DBD690069D5B8 /* DanaKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75D2D8DBD690069D5B8 /* DanaKit.framework */; };
  214. 3B4BA76F2D8DBD690069D5B8 /* DanaKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75D2D8DBD690069D5B8 /* DanaKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  215. 3B4BA7702D8DBD690069D5B8 /* G7SensorKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75E2D8DBD690069D5B8 /* G7SensorKit.framework */; };
  216. 3B4BA7712D8DBD690069D5B8 /* G7SensorKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75E2D8DBD690069D5B8 /* G7SensorKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  217. 3B4BA7722D8DBD690069D5B8 /* G7SensorKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75F2D8DBD690069D5B8 /* G7SensorKitUI.framework */; };
  218. 3B4BA7732D8DBD690069D5B8 /* G7SensorKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA75F2D8DBD690069D5B8 /* G7SensorKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  219. 3B4BA7742D8DBD690069D5B8 /* LibreTransmitter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7602D8DBD690069D5B8 /* LibreTransmitter.framework */; };
  220. 3B4BA7752D8DBD690069D5B8 /* LibreTransmitter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7602D8DBD690069D5B8 /* LibreTransmitter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  221. 3B4BA7762D8DBD690069D5B8 /* LibreTransmitterUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7612D8DBD690069D5B8 /* LibreTransmitterUI.framework */; };
  222. 3B4BA7772D8DBD690069D5B8 /* LibreTransmitterUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7612D8DBD690069D5B8 /* LibreTransmitterUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  223. 3B4BA7782D8DBD690069D5B8 /* MinimedKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7622D8DBD690069D5B8 /* MinimedKit.framework */; };
  224. 3B4BA7792D8DBD690069D5B8 /* MinimedKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7622D8DBD690069D5B8 /* MinimedKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  225. 3B4BA77A2D8DBD690069D5B8 /* MinimedKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7632D8DBD690069D5B8 /* MinimedKitUI.framework */; };
  226. 3B4BA77B2D8DBD690069D5B8 /* MinimedKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7632D8DBD690069D5B8 /* MinimedKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  227. 3B4BA77C2D8DBD690069D5B8 /* OmniBLE.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7642D8DBD690069D5B8 /* OmniBLE.framework */; };
  228. 3B4BA77D2D8DBD690069D5B8 /* OmniBLE.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7642D8DBD690069D5B8 /* OmniBLE.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  229. 3B4BA77E2D8DBD690069D5B8 /* OmniKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7652D8DBD690069D5B8 /* OmniKit.framework */; };
  230. 3B4BA77F2D8DBD690069D5B8 /* OmniKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7652D8DBD690069D5B8 /* OmniKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  231. 3B4BA7802D8DBD690069D5B8 /* OmniKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7662D8DBD690069D5B8 /* OmniKitUI.framework */; };
  232. 3B4BA7812D8DBD690069D5B8 /* OmniKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7662D8DBD690069D5B8 /* OmniKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  233. 3B4BA7822D8DBD690069D5B8 /* RileyLinkBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7672D8DBD690069D5B8 /* RileyLinkBLEKit.framework */; };
  234. 3B4BA7832D8DBD690069D5B8 /* RileyLinkBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7672D8DBD690069D5B8 /* RileyLinkBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  235. 3B4BA7842D8DBD690069D5B8 /* RileyLinkKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7682D8DBD690069D5B8 /* RileyLinkKit.framework */; };
  236. 3B4BA7852D8DBD690069D5B8 /* RileyLinkKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7682D8DBD690069D5B8 /* RileyLinkKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  237. 3B4BA7862D8DBD690069D5B8 /* RileyLinkKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7692D8DBD690069D5B8 /* RileyLinkKitUI.framework */; };
  238. 3B4BA7872D8DBD690069D5B8 /* RileyLinkKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7692D8DBD690069D5B8 /* RileyLinkKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  239. 3B4BA78A2D8DC0EC0069D5B8 /* ShareClient.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE398D1A297D69A900DF218F /* ShareClient.framework */; };
  240. 3B4BA78B2D8DC0EC0069D5B8 /* ShareClient.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE398D1A297D69A900DF218F /* ShareClient.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  241. 3B4BA78C2D8DC0EC0069D5B8 /* ShareClientUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE79502D29980E4D00FA576E /* ShareClientUI.framework */; };
  242. 3B4BA78D2D8DC0EC0069D5B8 /* ShareClientUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE79502D29980E4D00FA576E /* ShareClientUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  243. 3B4BA78E2D8DC0EC0069D5B8 /* TidepoolServiceKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7882D8DC0EC0069D5B8 /* TidepoolServiceKit.framework */; };
  244. 3B4BA78F2D8DC0EC0069D5B8 /* TidepoolServiceKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7882D8DC0EC0069D5B8 /* TidepoolServiceKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  245. 3B4BA7902D8DC0EC0069D5B8 /* TidepoolServiceKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7892D8DC0EC0069D5B8 /* TidepoolServiceKitUI.framework */; };
  246. 3B4BA7912D8DC0EC0069D5B8 /* TidepoolServiceKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B4BA7892D8DC0EC0069D5B8 /* TidepoolServiceKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  247. 3BAD36B22D7CDC1A00CC298D /* MainLoadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BAD36B12D7CDC1400CC298D /* MainLoadingView.swift */; };
  248. 3BAD36CC2D7D420E00CC298D /* CoreDataInitializationCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BAD36CB2D7D420500CC298D /* CoreDataInitializationCoordinator.swift */; };
  249. 3BD9687C2D8DDD4600899469 /* SlideButton in Frameworks */ = {isa = PBXBuildFile; productRef = 3BD9687B2D8DDD4600899469 /* SlideButton */; };
  250. 3BD9687F2D8DDD8800899469 /* CryptoSwift in Frameworks */ = {isa = PBXBuildFile; productRef = 3BD9687E2D8DDD8800899469 /* CryptoSwift */; };
  251. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */; };
  252. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */; };
  253. 491D6FBD2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491D6FBC2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift */; };
  254. 491D6FBE2D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491D6FB92D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift */; };
  255. 491D6FBF2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491D6FBA2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift */; };
  256. 491D6FC02D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491D6FBB2D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift */; };
  257. 49B9B57F2D5768D2009C6B59 /* AdjustmentStored+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49B9B57E2D5768D2009C6B59 /* AdjustmentStored+Helper.swift */; };
  258. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */; };
  259. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */; };
  260. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */; };
  261. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */; };
  262. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581AC4382BE22ED10038760C /* JSONConverter.swift */; };
  263. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */; };
  264. 5825A1BE2C97335C0046467E /* EditTempTargetForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */; };
  265. 582DF9752C8CDB92001F516D /* GlucoseChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */; };
  266. 582DF9772C8CDBE7001F516D /* InsulinView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9762C8CDBE7001F516D /* InsulinView.swift */; };
  267. 582DF9792C8CE1E5001F516D /* MainChartHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */; };
  268. 582DF97B2C8CE209001F516D /* CarbView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF97A2C8CE209001F516D /* CarbView.swift */; };
  269. 582FAE432C05102C00D1C13F /* CoreDataError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582FAE422C05102C00D1C13F /* CoreDataError.swift */; };
  270. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */; };
  271. 583684082BD195A700070A60 /* Determination.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684072BD195A700070A60 /* Determination.swift */; };
  272. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */; };
  273. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */; };
  274. 58645B992CA2D1A4008AFCE7 /* GlucoseSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */; };
  275. 58645B9B2CA2D24F008AFCE7 /* CarbSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */; };
  276. 58645B9D2CA2D275008AFCE7 /* DeterminationSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */; };
  277. 58645B9F2CA2D2BE008AFCE7 /* PumpHistorySetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */; };
  278. 58645BA12CA2D2F8008AFCE7 /* OverrideSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */; };
  279. 58645BA32CA2D325008AFCE7 /* BatterySetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */; };
  280. 58645BA52CA2D347008AFCE7 /* ForecastSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */; };
  281. 58645BA72CA2D390008AFCE7 /* ChartAxisSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */; };
  282. 5864E8592C42CFAE00294306 /* DeterminationStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */; };
  283. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */; };
  284. 58A3D53A2C96D4DE003F90FC /* AddTempTargetForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */; };
  285. 58A3D5442C96DE11003F90FC /* TempTargetStored+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */; };
  286. 58D08B222C8DAA8E00AA37D3 /* OverrideView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */; };
  287. 58D08B302C8DEA7500AA37D3 /* ForecastView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */; };
  288. 58D08B322C8DF88900AA37D3 /* DummyCharts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */; };
  289. 58D08B342C8DF9A700AA37D3 /* CobIobChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */; };
  290. 58D08B382C8DFB6000AA37D3 /* BasalChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */; };
  291. 58D08B3A2C8DFECD00AA37D3 /* TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */; };
  292. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58F107732BD1A4D000B1A680 /* Determination+helper.swift */; };
  293. 5A2325522BFCBF55003518CA /* NightscoutUploadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */; };
  294. 5A2325542BFCBF66003518CA /* NightscoutFetchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */; };
  295. 5A2325582BFCC168003518CA /* NightscoutConnectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */; };
  296. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */; };
  297. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */; };
  298. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */; };
  299. 65070A332BFDCB83006F213F /* TidepoolStartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65070A322BFDCB83006F213F /* TidepoolStartView.swift */; };
  300. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */; };
  301. 69A31254F2451C20361D172F /* TreatmentsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */; };
  302. 69B9A368029F7EB39F525422 /* CarbRatioEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */; };
  303. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D182B14D91600E76752 /* WidgetKit.framework */; };
  304. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */; };
  305. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */; };
  306. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */; };
  307. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6B1A8D232B14D91700E76752 /* Assets.xcassets */; };
  308. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  309. 6B1A8D2E2B156EEF00E76752 /* LiveActivityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D2D2B156EEF00E76752 /* LiveActivityManager.swift */; };
  310. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */; };
  311. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */; };
  312. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */; };
  313. 6EADD581738D64431902AC0A /* (null) in Sources */ = {isa = PBXBuildFile; };
  314. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */; };
  315. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */; };
  316. 715120D22D3C2BB4005D9FB6 /* GlucoseNotificationsOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 715120D12D3C2B84005D9FB6 /* GlucoseNotificationsOption.swift */; };
  317. 71D44AAB2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */; };
  318. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */; };
  319. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */; };
  320. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */; };
  321. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */; };
  322. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */; };
  323. 8A91342A2D63D9A1007F8874 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 8A9134292D63D9A1007F8874 /* Localizable.xcstrings */; };
  324. 8A91342C2D63D9A2007F8874 /* InfoPlist.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 8A91342B2D63D9A2007F8874 /* InfoPlist.xcstrings */; };
  325. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */; };
  326. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */; };
  327. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */; };
  328. 98641AF4F92123DA668AB931 /* CarbRatioEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */; };
  329. A33352ED40476125EBAC6EE0 /* CarbRatioEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */; };
  330. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */; };
  331. B7C465E9472624D8A2BE2A6A /* (null) in Sources */ = {isa = PBXBuildFile; };
  332. B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */ = {isa = PBXBuildFile; productRef = B958F1B62BA0711600484851 /* MKRingProgressView */; };
  333. BA00D96F7B2FF169A06FB530 /* CGMSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C018D1680307A31C9ED7120 /* CGMSettingsStateModel.swift */; };
  334. BD04ECCE2D29952A008C5FEB /* BolusProgressOverlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */; };
  335. BD0B2EF32C5998E600B3298F /* MealPresetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD0B2EF22C5998E600B3298F /* MealPresetView.swift */; };
  336. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1661302B82ADAB00256551 /* CustomProgressView.swift */; };
  337. BD249D862D42FBEC00412DEB /* GlucoseMetricsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D852D42FBE600412DEB /* GlucoseMetricsView.swift */; };
  338. BD249D882D42FC0000412DEB /* BolusStatsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D872D42FBFB00412DEB /* BolusStatsView.swift */; };
  339. BD249D8A2D42FC1200412DEB /* GlucosePercentileChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D892D42FC0E00412DEB /* GlucosePercentileChart.swift */; };
  340. BD249D8C2D42FC2C00412DEB /* GlucoseDistributionChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D8B2D42FC2500412DEB /* GlucoseDistributionChart.swift */; };
  341. BD249D8E2D42FC3900412DEB /* LoopBarChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D8D2D42FC3600412DEB /* LoopBarChartView.swift */; };
  342. BD249D902D42FC4500412DEB /* MealStatsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D8F2D42FC4300412DEB /* MealStatsView.swift */; };
  343. BD249D922D42FC5300412DEB /* GlucoseSectorChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D912D42FC5000412DEB /* GlucoseSectorChart.swift */; };
  344. BD249D942D42FC5E00412DEB /* TotalDailyDoseChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D932D42FC5C00412DEB /* TotalDailyDoseChart.swift */; };
  345. BD249D972D42FCBF00412DEB /* AreaChartSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D962D42FCBD00412DEB /* AreaChartSetup.swift */; };
  346. BD249D992D42FCCD00412DEB /* BolusStatsSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D982D42FCCA00412DEB /* BolusStatsSetup.swift */; };
  347. BD249D9B2D42FCDB00412DEB /* LoopChartSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D9A2D42FCD800412DEB /* LoopChartSetup.swift */; };
  348. BD249D9D2D42FCF500412DEB /* MealStatsSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D9C2D42FCF300412DEB /* MealStatsSetup.swift */; };
  349. BD249D9F2D42FD0600412DEB /* StackedChartSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249D9E2D42FD0200412DEB /* StackedChartSetup.swift */; };
  350. BD249DA12D42FD1200412DEB /* TDDSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249DA02D42FD1000412DEB /* TDDSetup.swift */; };
  351. BD249DA72D42FE4600412DEB /* Calendar+GlucoseStatsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD249DA62D42FE3800412DEB /* Calendar+GlucoseStatsChart.swift */; };
  352. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */; };
  353. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */; };
  354. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3CC0712B0B89D50013189E /* MainChartView.swift */; };
  355. BD4064D12C4ED26900582F43 /* CoreDataObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */; };
  356. BD432CA12D2F4E3600D1EB79 /* WatchMessageKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */; };
  357. BD432CA22D2F4E4000D1EB79 /* WatchMessageKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */; };
  358. BD4D738D2D15A4080052227B /* TDDStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4D738B2D15A4080052227B /* TDDStored+CoreDataClass.swift */; };
  359. BD4D738E2D15A4080052227B /* TDDStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4D738C2D15A4080052227B /* TDDStored+CoreDataProperties.swift */; };
  360. BD4D73A22D15A42A0052227B /* TDDStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4D73A12D15A4220052227B /* TDDStorage.swift */; };
  361. BD4E1A7A2D3681B700D21626 /* GlucoseTargetSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */; };
  362. BD4E1A7C2D3686D900D21626 /* StartEndMarkerSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */; };
  363. BD4ED4FD2CF9D5E8000EDC9C /* AppState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */; };
  364. BD54A9592D27FB7800F9C1EE /* OverridePresetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */; };
  365. BD54A95B2D28087C00F9C1EE /* OverridePresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */; };
  366. BD54A95C2D2808A300F9C1EE /* OverridePresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */; };
  367. BD54A9712D281A8100F9C1EE /* TempTargetPresetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */; };
  368. BD54A9732D281ABC00F9C1EE /* TempTargetPresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */; };
  369. BD54A9742D281AEF00F9C1EE /* TempTargetPresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */; };
  370. BD6EB2D62C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */; };
  371. BD793CB02CE7C61500D669AC /* OverrideRunStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */; };
  372. BD793CB22CE8033500D669AC /* TempTargetRunStored.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */; };
  373. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */; };
  374. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */; };
  375. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */; };
  376. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */; };
  377. BD7DB88E2D2C4A17003D3155 /* BolusCalculationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */; };
  378. BD8207C42D2B42E60023339D /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D182B14D91600E76752 /* WidgetKit.framework */; };
  379. BD8207C52D2B42E60023339D /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */; };
  380. BD8207CE2D2B42E70023339D /* Trio Watch Complication Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  381. BD8FC0542D66186000B95AED /* TestError.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC0532D66186000B95AED /* TestError.swift */; };
  382. BD8FC0572D66188700B95AED /* PumpHistoryStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC0562D66188700B95AED /* PumpHistoryStorageTests.swift */; };
  383. BD8FC0592D66189700B95AED /* TestAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC0582D66189700B95AED /* TestAssembly.swift */; };
  384. BD8FC05B2D6618AF00B95AED /* DeterminationStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC05A2D6618AF00B95AED /* DeterminationStorageTests.swift */; };
  385. BD8FC05E2D6618CE00B95AED /* BolusCalculatorTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC05D2D6618CE00B95AED /* BolusCalculatorTests.swift */; };
  386. BD8FC0602D6619DB00B95AED /* CarbsStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC05F2D6619DB00B95AED /* CarbsStorageTests.swift */; };
  387. BD8FC0622D6619E600B95AED /* OverrideStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC0612D6619E600B95AED /* OverrideStorageTests.swift */; };
  388. BD8FC0642D6619EF00B95AED /* TempTargetStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC0632D6619EF00B95AED /* TempTargetStorageTests.swift */; };
  389. BD8FC0662D661A0000B95AED /* GlucoseStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8FC0652D661A0000B95AED /* GlucoseStorageTests.swift */; };
  390. BDA25EE42D260CD500035F34 /* AppleWatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */; };
  391. BDA25EE62D260D5E00035F34 /* WatchState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EE52D260D5800035F34 /* WatchState.swift */; };
  392. BDA25EFD2D261C0000035F34 /* WatchState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EFC2D261BF200035F34 /* WatchState.swift */; };
  393. BDA25F1C2D26BD0700035F34 /* TrendShape.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1B2D26BD0300035F34 /* TrendShape.swift */; };
  394. BDA25F1E2D26D5DD00035F34 /* GlucoseChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */; };
  395. BDA25F202D26D5FE00035F34 /* CarbsInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */; };
  396. BDA25F222D26D62800035F34 /* BolusInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F212D26D62200035F34 /* BolusInputView.swift */; };
  397. BDA6CC882CAF219B00F942F9 /* TempTargetSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */; };
  398. BDA7593E2D37CFC400E649A4 /* CarbEntryEditorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA7593D2D37CFC000E649A4 /* CarbEntryEditorView.swift */; };
  399. BDAE40002D372BAD009C12B1 /* WatchState+Requests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */; };
  400. BDB3C1192C03DD1000CEEAA1 /* UserDefaultsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */; };
  401. BDB899882C564509006F3298 /* ForecastChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB899872C564509006F3298 /* ForecastChart.swift */; };
  402. BDB8998A2C565D0C006F3298 /* CarbsGlucose+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */; };
  403. BDBAACFA2C2D439700370AAE /* OverrideData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDBAACF92C2D439700370AAE /* OverrideData.swift */; };
  404. BDC2EA452C3043B000E5BBD0 /* OverrideStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */; };
  405. BDC2EA472C3045AD00E5BBD0 /* Override.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC2EA462C3045AD00E5BBD0 /* Override.swift */; };
  406. BDC530FF2D0F6BE300088832 /* ContactImageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */; };
  407. BDC531122D1060FA00088832 /* ContactImageDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531112D1060FA00088832 /* ContactImageDetailView.swift */; };
  408. BDC531142D10611D00088832 /* AddContactImageSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531132D10611D00088832 /* AddContactImageSheet.swift */; };
  409. BDC531162D10629000088832 /* ContactPicture.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531152D10629000088832 /* ContactPicture.swift */; };
  410. BDC531182D1062F200088832 /* ContactImageState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531172D1062F200088832 /* ContactImageState.swift */; };
  411. BDCAF2382C639F35002DC907 /* SettingItems.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCAF2372C639F35002DC907 /* SettingItems.swift */; };
  412. BDCD47AF2C1F3F1700F8BCD5 /* OverrideStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */; };
  413. BDDAF9EF2D00554500B34E7A /* SelectionPopoverView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */; };
  414. BDF34EBE2C0A31D100D51995 /* CustomNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */; };
  415. BDF34F832C10C5B600D51995 /* DataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F822C10C5B600D51995 /* DataManager.swift */; };
  416. BDF34F852C10C62E00D51995 /* GlucoseData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F842C10C62E00D51995 /* GlucoseData.swift */; };
  417. BDF34F902C10CF8C00D51995 /* CoreDataStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */; };
  418. BDF34F932C10D0E100D51995 /* LiveActivityAttributes+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */; };
  419. BDF34F952C10D27300D51995 /* DeterminationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F942C10D27300D51995 /* DeterminationData.swift */; };
  420. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */; };
  421. BDFD165A2AE40438007F0DDA /* TreatmentsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */; };
  422. BDFF799F2D25AA890016C40C /* Trio Watch App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = BDFF797C2D25AA870016C40C /* Trio Watch App.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  423. BDFF7A872D25F97D0016C40C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BDFF7A832D25F97D0016C40C /* Assets.xcassets */; };
  424. BDFF7A882D25F97D0016C40C /* TrioMainWatchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */; };
  425. BDFF7A892D25F97D0016C40C /* TrioWatchApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */; };
  426. BDFF7A8B2D25F97D0016C40C /* Unit Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */; };
  427. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */; };
  428. C2A0A42F2CE03131003B98E8 /* ConstantValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */; };
  429. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */; };
  430. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */; };
  431. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */; };
  432. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */; };
  433. CD78BB94E43B249D60CC1A1B /* GlucoseNotificationSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */; };
  434. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */; };
  435. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */; };
  436. CE1F6DD92BADF4620064EB8D /* PluginManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */; };
  437. CE1F6DDB2BAE08B60064EB8D /* TidepoolManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */; };
  438. CE1F6DE72BAF1A180064EB8D /* BuildDetails.plist in Resources */ = {isa = PBXBuildFile; fileRef = CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */; };
  439. CE1F6DE92BAF37C90064EB8D /* TidepoolConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */; };
  440. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */; };
  441. CE3EEF9A2D463717001944DD /* CustomCGMOptionsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE3EEF992D46370A001944DD /* CustomCGMOptionsView.swift */; };
  442. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */; };
  443. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */; };
  444. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; };
  445. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  446. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950232997D81700FA576E /* CGMSettingsView.swift */; };
  447. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950252998056D00FA576E /* CGMSetupView.swift */; };
  448. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3432A064973004BE681 /* AppShortcuts.swift */; };
  449. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */; };
  450. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */; };
  451. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */; };
  452. CE7CA3532A064973004BE681 /* TempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3492A064973004BE681 /* TempPresetIntent.swift */; };
  453. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */; };
  454. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34C2A064973004BE681 /* ListStateIntent.swift */; };
  455. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */; };
  456. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3572A064E2F004BE681 /* ListStateView.swift */; };
  457. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02428E867BA00473A9C /* AlertStorage.swift */; };
  458. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02628E869DF00473A9C /* AlertEntry.swift */; };
  459. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */; };
  460. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */; };
  461. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */; };
  462. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */; };
  463. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */; };
  464. CE95BF572BA5F5FE00DC3DE3 /* PluginManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */; };
  465. CE95BF5A2BA62E4A00DC3DE3 /* PluginSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */; };
  466. CE95BF5B2BA770C300DC3DE3 /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; };
  467. CE95BF5C2BA770C300DC3DE3 /* LoopKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  468. CE95BF5D2BA770C300DC3DE3 /* LoopKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; };
  469. CE95BF5E2BA770C300DC3DE3 /* LoopKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  470. CE95BF5F2BA7715800DC3DE3 /* MockKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; };
  471. CE95BF602BA7715800DC3DE3 /* MockKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  472. CE95BF612BA7715900DC3DE3 /* MockKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; };
  473. CE95BF622BA7715900DC3DE3 /* MockKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  474. CE95BF632BA771BE00DC3DE3 /* LoopTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; };
  475. CE95BF642BA771BE00DC3DE3 /* LoopTestingKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  476. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */; };
  477. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */; };
  478. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E428B8FF5D00B70274 /* UIColor.swift */; };
  479. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */; };
  480. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; };
  481. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
  482. CEE9A6552BBB418300EB5194 /* CalibrationsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */; };
  483. CEE9A6562BBB418300EB5194 /* CalibrationsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */; };
  484. CEE9A6572BBB418300EB5194 /* CalibrationsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */; };
  485. CEE9A6582BBB418300EB5194 /* CalibrationsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */; };
  486. CEE9A6592BBB418300EB5194 /* CalibrationsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */; };
  487. CEE9A65C2BBB41C800EB5194 /* CalibrationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */; };
  488. CEE9A65E2BBC9F6500EB5194 /* CalibrationsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */; };
  489. CEF1ED6B2D58FB5800FAF41E /* CGMOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEF1ED6A2D58FB4600FAF41E /* CGMOptions.swift */; };
  490. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */; };
  491. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */; };
  492. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */; };
  493. DD09D47B2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */; };
  494. DD09D47D2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */; };
  495. DD09D47F2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */; };
  496. DD09D4822C5986F6003FEA5D /* CalendarEventSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */; };
  497. DD09D5C72D29EB2F000D82C9 /* Helper+Enums.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */; };
  498. DD09D5C92D29F3D0000D82C9 /* AcknowledgementPendingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */; };
  499. DD09D6442D2B553A000D82C9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DD09D6412D2B553A000D82C9 /* Assets.xcassets */; };
  500. DD09D6462D2B553A000D82C9 /* TrioWatchComplication.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */; };
  501. DD1745132C54169400211FAC /* DevicesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745122C54169400211FAC /* DevicesView.swift */; };
  502. DD1745152C54388A00211FAC /* TherapySettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745142C54388A00211FAC /* TherapySettingsView.swift */; };
  503. DD1745172C54389F00211FAC /* FeatureSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745162C54389F00211FAC /* FeatureSettingsView.swift */; };
  504. DD1745192C543B5700211FAC /* NotificationsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745182C543B5700211FAC /* NotificationsView.swift */; };
  505. DD17451D2C543C5F00211FAC /* ServicesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17451C2C543C5F00211FAC /* ServicesView.swift */; };
  506. DD1745202C55523E00211FAC /* SMBSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */; };
  507. DD1745222C55524800211FAC /* SMBSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745212C55524800211FAC /* SMBSettingsProvider.swift */; };
  508. DD1745242C55526000211FAC /* SMBSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */; };
  509. DD1745262C55526F00211FAC /* SMBSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */; };
  510. DD1745292C55642100211FAC /* SettingInputSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745282C55642100211FAC /* SettingInputSection.swift */; };
  511. DD17452B2C556E8100211FAC /* SettingInputHintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452A2C556E8100211FAC /* SettingInputHintView.swift */; };
  512. DD17452E2C55AE4800211FAC /* TargetBehavoirDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */; };
  513. DD1745302C55AE5300211FAC /* TargetBehaviorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */; };
  514. DD1745322C55AE6000211FAC /* TargetBehavoirStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */; };
  515. DD1745352C55AE7E00211FAC /* TargetBehavoirRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */; };
  516. DD1745372C55B74200211FAC /* AlgorithmSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745362C55B74200211FAC /* AlgorithmSettings.swift */; };
  517. DD17453A2C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */; };
  518. DD17453C2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */; };
  519. DD17453E2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */; };
  520. DD1745402C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */; };
  521. DD1745442C55C60E00211FAC /* AutosensSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */; };
  522. DD1745462C55C61500211FAC /* AutosensSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */; };
  523. DD1745482C55C61D00211FAC /* AutosensSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */; };
  524. DD17454B2C55C62800211FAC /* AutosensSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */; };
  525. DD17454E2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */; };
  526. DD1745502C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */; };
  527. DD1745522C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */; };
  528. DD1745552C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */; };
  529. DD1DB7CC2BECCA1F0048B367 /* BuildDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */; };
  530. DD1E53592D273F26008F32A4 /* LoopStatusHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */; };
  531. DD21FCB52C6952AD00AF2C25 /* DecimalPickerSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */; };
  532. DD246F062D2836AA0027DDE0 /* GlucoseTrendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */; };
  533. DD2CC85C2D25DA1000445446 /* GlucoseTargetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */; };
  534. DD3078682D42F5CE00DE0490 /* WatchGlucoseObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3078672D42F5CE00DE0490 /* WatchGlucoseObject.swift */; };
  535. DD30786A2D42F94000DE0490 /* GarminDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3078692D42F94000DE0490 /* GarminDevice.swift */; };
  536. DD32CF982CC82463003686D6 /* TrioRemoteControl+Bolus.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */; };
  537. DD32CF9A2CC8247B003686D6 /* TrioRemoteControl+Meal.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */; };
  538. DD32CF9C2CC82499003686D6 /* TrioRemoteControl+TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */; };
  539. DD32CF9E2CC824C5003686D6 /* TrioRemoteControl+Override.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */; };
  540. DD32CFA02CC824D6003686D6 /* TrioRemoteControl+APNS.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */; };
  541. DD32CFA22CC824E2003686D6 /* TrioRemoteControl+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */; };
  542. DD3A3CE72D29C93F00AE478E /* Helper+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */; };
  543. DD3A3CE92D29C97800AE478E /* Helper+ButtonStyles.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */; };
  544. DD498F2B2D692BEA00AAEA30 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 8A9134292D63D9A1007F8874 /* Localizable.xcstrings */; };
  545. DD498F2C2D692BEA00AAEA30 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 8A9134292D63D9A1007F8874 /* Localizable.xcstrings */; };
  546. DD498F2D2D692BEA00AAEA30 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 8A9134292D63D9A1007F8874 /* Localizable.xcstrings */; };
  547. DD4C57A82D73ADEA001BFF2C /* RestartLiveActivityIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4C57A72D73ADEA001BFF2C /* RestartLiveActivityIntent.swift */; };
  548. DD4C57AA2D73B3E2001BFF2C /* RestartLiveActivityIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4C57A92D73B3D9001BFF2C /* RestartLiveActivityIntentRequest.swift */; };
  549. DD4C581F2D73C43D001BFF2C /* LoopStatsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4C581E2D73C43D001BFF2C /* LoopStatsView.swift */; };
  550. DD4FFF332D458EE600B6CFF9 /* GarminWatchState.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4FFF322D458EE600B6CFF9 /* GarminWatchState.swift */; };
  551. DD5DC9F12CF3D97C00AB8703 /* AdjustmentsStateModel+Overrides.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */; };
  552. DD5DC9F32CF3D9DD00AB8703 /* AdjustmentsStateModel+TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */; };
  553. DD5DC9F72CF3DA9300AB8703 /* TargetPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */; };
  554. DD5DC9F92CF3DAA900AB8703 /* RadioButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */; };
  555. DD5DC9FB2CF3E1B100AB8703 /* AdjustmentsStateModel+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */; };
  556. DD68889D2C386E17006E3C44 /* NightscoutExercise.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */; };
  557. DD6B7CB22C7B6F0800B75029 /* Rounding.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB12C7B6F0800B75029 /* Rounding.swift */; };
  558. DD6B7CB42C7B71F700B75029 /* ForecastDisplayType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */; };
  559. DD6B7CB92C7BAC6900B75029 /* NightscoutImportResultView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */; };
  560. DD6B7CBB2C7FBBFA00B75029 /* ReviewInsulinActionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */; };
  561. DD6D67E42C9C253500660C9B /* ColorSchemeOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */; };
  562. DD6F63CC2D27F615007D94CF /* TreatmentMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */; };
  563. DD73FA0F2D74F58E00D19D1E /* BackgroundTask+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD73FA0E2D74F57300D19D1E /* BackgroundTask+Helper.swift */; };
  564. DD8262CB2D289297009F6F62 /* BolusConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */; };
  565. DD88C8E22C50420800F2D558 /* DefinitionRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD88C8E12C50420800F2D558 /* DefinitionRow.swift */; };
  566. DD940BAA2CA7585D000830A5 /* GlucoseColorScheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */; };
  567. DD940BAC2CA75889000830A5 /* DynamicGlucoseColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */; };
  568. DD98ACC02D71013200C0778F /* StatChartUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD98ACBF2D71013200C0778F /* StatChartUtils.swift */; };
  569. DD9ECB682CA99F4500AA7C45 /* TrioRemoteControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */; };
  570. DD9ECB6A2CA99F6C00AA7C45 /* PushMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */; };
  571. DD9ECB702CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */; };
  572. DD9ECB712CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */; };
  573. DD9ECB722CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */; };
  574. DD9ECB742CA9A0C300AA7C45 /* RemoteControlConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */; };
  575. DDA6E2502D22187500C2988C /* ChartLegendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E24F2D22187500C2988C /* ChartLegendView.swift */; };
  576. DDA6E2852D2361F800C2988C /* LoopStatusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E2842D2361F800C2988C /* LoopStatusView.swift */; };
  577. DDA6E3202D258E0500C2988C /* OverrideHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */; };
  578. DDA6E3222D25901100C2988C /* TempTargetHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */; };
  579. DDA6E3572D25988500C2988C /* ContactImageHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */; };
  580. DDA9AC092D672CF100E6F1A9 /* AppVersionChecker.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA9AC082D672CEB00E6F1A9 /* AppVersionChecker.swift */; };
  581. DDAA29832D2D1D93006546A1 /* AdjustmentsRootView+Overrides.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */; };
  582. DDAA29852D2D1D9E006546A1 /* AdjustmentsRootView+TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */; };
  583. DDB37CC52D05048F00D99BF4 /* ContactImageStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */; };
  584. DDB37CC72D05127500D99BF4 /* FontExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB37CC62D05127500D99BF4 /* FontExtensions.swift */; };
  585. DDCAE8332D78D4A800B1BB51 /* TherapySettingsUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCAE8322D78D49C00B1BB51 /* TherapySettingsUtil.swift */; };
  586. DDCE790F2D6F97FC000A4D7A /* SubmodulesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCE790E2D6F97F7000A4D7A /* SubmodulesView.swift */; };
  587. DDCEBF5B2CC1B76400DF4C36 /* LiveActivity+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */; };
  588. DDD163122C4C689900CD525A /* AdjustmentsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */; };
  589. DDD163142C4C68D300CD525A /* AdjustmentsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */; };
  590. DDD163162C4C690300CD525A /* AdjustmentsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */; };
  591. DDD163182C4C694000CD525A /* AdjustmentsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */; };
  592. DDD1631A2C4C695E00CD525A /* EditOverrideForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163192C4C695E00CD525A /* EditOverrideForm.swift */; };
  593. DDD1631C2C4C697400CD525A /* AddOverrideForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */; };
  594. DDD1631F2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */; };
  595. DDD6D4D32CDE90720029439A /* EstimatedA1cDisplayUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD6D4D22CDE90720029439A /* EstimatedA1cDisplayUnit.swift */; };
  596. DDE179522C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */; };
  597. DDE179532C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */; };
  598. DDE179542C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */; };
  599. DDE179552C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */; };
  600. DDE179562C910127003CDDB7 /* BolusStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */; };
  601. DDE179572C910127003CDDB7 /* BolusStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */; };
  602. DDE179582C910127003CDDB7 /* ForecastValue+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */; };
  603. DDE179592C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */; };
  604. DDE1795A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */; };
  605. DDE1795B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */; };
  606. DDE1795E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */; };
  607. DDE1795F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */; };
  608. DDE179602C910127003CDDB7 /* StatsData+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */; };
  609. DDE179612C910127003CDDB7 /* StatsData+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */; };
  610. DDE179622C910127003CDDB7 /* Forecast+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */; };
  611. DDE179632C910127003CDDB7 /* Forecast+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */; };
  612. DDE179642C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */; };
  613. DDE179652C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */; };
  614. DDE179662C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */; };
  615. DDE179672C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */; };
  616. DDE179682C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */; };
  617. DDE179692C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */; };
  618. DDE1796C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */; };
  619. DDE1796D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */; };
  620. DDE1796E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */; };
  621. DDE1796F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */; };
  622. DDE179702C910127003CDDB7 /* OverrideStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */; };
  623. DDE179712C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */; };
  624. DDEBB05C2D89E9050032305D /* TimeInRangeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEBB05B2D89E9050032305D /* TimeInRangeType.swift */; };
  625. DDF847DD2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */; };
  626. DDF847DF2C5C28780049BB3B /* LiveActivitySettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */; };
  627. DDF847E12C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */; };
  628. DDF847E42C5C288F0049BB3B /* LiveActivitySettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */; };
  629. DDF847E62C5D66490049BB3B /* AddMealPresetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */; };
  630. DDF847E82C5DABA30049BB3B /* WatchConfigAppleWatchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */; };
  631. DDF847EA2C5DABAC0049BB3B /* WatchConfigGarminView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */; };
  632. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFD27368630002FF094 /* ServiceAssembly.swift */; };
  633. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFE27368630002FF094 /* SecurityAssembly.swift */; };
  634. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFF27368630002FF094 /* StorageAssembly.swift */; };
  635. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0027368630002FF094 /* UIAssembly.swift */; };
  636. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0127368630002FF094 /* APSAssembly.swift */; };
  637. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0227368630002FF094 /* NetworkAssembly.swift */; };
  638. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */; };
  639. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06B9119275B5EEA003C04B6 /* Array+Extension.swift */; };
  640. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */; };
  641. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */; };
  642. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */; };
  643. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */; };
  644. E3A08AAE59538BC8A8ABE477 /* GlucoseNotificationSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */; };
  645. E592A3702CEEC01E009A472C /* ContactTrickEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */; };
  646. E592A3772CEEC038009A472C /* ContactImageStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3752CEEC038009A472C /* ContactImageStateModel.swift */; };
  647. E592A3782CEEC038009A472C /* ContactImageDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */; };
  648. E592A3792CEEC038009A472C /* ContactImageRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3712CEEC038009A472C /* ContactImageRootView.swift */; };
  649. E592A37A2CEEC038009A472C /* ContactImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3742CEEC038009A472C /* ContactImageProvider.swift */; };
  650. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */; };
  651. F5CA3DB1F9DC8B05792BBFAA /* CGMSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B5C0607505A38F256BF99A /* CGMSettingsDataFlow.swift */; };
  652. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */; };
  653. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825D28DB441200054060 /* HeartBeatManager.swift */; };
  654. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825F28DB441800054060 /* BluetoothTransmitter.swift */; };
  655. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692A9274B7AAE0037068D /* HealthKitManager.swift */; };
  656. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692CE274B999A0037068D /* HealthKitDataFlow.swift */; };
  657. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D0274B99B60037068D /* HealthKitProvider.swift */; };
  658. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */; };
  659. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D5274B9A450037068D /* HealthKitStateModel.swift */; };
  660. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */; };
  661. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */; };
  662. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */; };
  663. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */; };
  664. /* End PBXBuildFile section */
  665. /* Begin PBXContainerItemProxy section */
  666. 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */ = {
  667. isa = PBXContainerItemProxy;
  668. containerPortal = 388E595025AD948C0019842D /* Project object */;
  669. proxyType = 1;
  670. remoteGlobalIDString = 388E595725AD948C0019842D;
  671. remoteInfo = Trio;
  672. };
  673. 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */ = {
  674. isa = PBXContainerItemProxy;
  675. containerPortal = 388E595025AD948C0019842D /* Project object */;
  676. proxyType = 1;
  677. remoteGlobalIDString = 6B1A8D162B14D91500E76752;
  678. remoteInfo = LiveActivityExtension;
  679. };
  680. BD8207CC2D2B42E70023339D /* PBXContainerItemProxy */ = {
  681. isa = PBXContainerItemProxy;
  682. containerPortal = 388E595025AD948C0019842D /* Project object */;
  683. proxyType = 1;
  684. remoteGlobalIDString = BD8207C22D2B42E50023339D;
  685. remoteInfo = "Trio Watch WidgetExtension";
  686. };
  687. BDFF798C2D25AA890016C40C /* PBXContainerItemProxy */ = {
  688. isa = PBXContainerItemProxy;
  689. containerPortal = 388E595025AD948C0019842D /* Project object */;
  690. proxyType = 1;
  691. remoteGlobalIDString = BDFF797B2D25AA870016C40C;
  692. remoteInfo = "TrioWatch Watch App";
  693. };
  694. BDFF799D2D25AA890016C40C /* PBXContainerItemProxy */ = {
  695. isa = PBXContainerItemProxy;
  696. containerPortal = 388E595025AD948C0019842D /* Project object */;
  697. proxyType = 1;
  698. remoteGlobalIDString = BDFF797B2D25AA870016C40C;
  699. remoteInfo = "TrioWatch Watch App";
  700. };
  701. /* End PBXContainerItemProxy section */
  702. /* Begin PBXCopyFilesBuildPhase section */
  703. 3821ECD025DC703C00BC42AD /* Embed Frameworks */ = {
  704. isa = PBXCopyFilesBuildPhase;
  705. buildActionMask = 2147483647;
  706. dstPath = "";
  707. dstSubfolderSpec = 10;
  708. files = (
  709. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */,
  710. 3B4BA78F2D8DC0EC0069D5B8 /* TidepoolServiceKit.framework in Embed Frameworks */,
  711. 3B4BA7732D8DBD690069D5B8 /* G7SensorKitUI.framework in Embed Frameworks */,
  712. 3B4BA76D2D8DBD690069D5B8 /* CGMBLEKitUI.framework in Embed Frameworks */,
  713. 3B4BA76B2D8DBD690069D5B8 /* CGMBLEKit.framework in Embed Frameworks */,
  714. 3B4BA7792D8DBD690069D5B8 /* MinimedKit.framework in Embed Frameworks */,
  715. CE95BF5C2BA770C300DC3DE3 /* LoopKit.framework in Embed Frameworks */,
  716. 3B4BA7712D8DBD690069D5B8 /* G7SensorKit.framework in Embed Frameworks */,
  717. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */,
  718. 3B4BA7812D8DBD690069D5B8 /* OmniKitUI.framework in Embed Frameworks */,
  719. 3B4BA76F2D8DBD690069D5B8 /* DanaKit.framework in Embed Frameworks */,
  720. 3B4BA77D2D8DBD690069D5B8 /* OmniBLE.framework in Embed Frameworks */,
  721. 3B4BA77F2D8DBD690069D5B8 /* OmniKit.framework in Embed Frameworks */,
  722. 3B4BA7852D8DBD690069D5B8 /* RileyLinkKit.framework in Embed Frameworks */,
  723. 3B4BA7752D8DBD690069D5B8 /* LibreTransmitter.framework in Embed Frameworks */,
  724. 3B4BA7772D8DBD690069D5B8 /* LibreTransmitterUI.framework in Embed Frameworks */,
  725. 3B4BA77B2D8DBD690069D5B8 /* MinimedKitUI.framework in Embed Frameworks */,
  726. 3B4BA7832D8DBD690069D5B8 /* RileyLinkBLEKit.framework in Embed Frameworks */,
  727. CE95BF642BA771BE00DC3DE3 /* LoopTestingKit.framework in Embed Frameworks */,
  728. CE95BF622BA7715900DC3DE3 /* MockKitUI.framework in Embed Frameworks */,
  729. 3B4BA78D2D8DC0EC0069D5B8 /* ShareClientUI.framework in Embed Frameworks */,
  730. 3B4BA7872D8DBD690069D5B8 /* RileyLinkKitUI.framework in Embed Frameworks */,
  731. 3B4BA78B2D8DC0EC0069D5B8 /* ShareClient.framework in Embed Frameworks */,
  732. 3B4BA7912D8DC0EC0069D5B8 /* TidepoolServiceKitUI.framework in Embed Frameworks */,
  733. CE95BF602BA7715800DC3DE3 /* MockKit.framework in Embed Frameworks */,
  734. CE95BF5E2BA770C300DC3DE3 /* LoopKitUI.framework in Embed Frameworks */,
  735. );
  736. name = "Embed Frameworks";
  737. runOnlyForDeploymentPostprocessing = 0;
  738. };
  739. 38E8753D27554D5900975559 /* Embed Watch Content */ = {
  740. isa = PBXCopyFilesBuildPhase;
  741. buildActionMask = 2147483647;
  742. dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
  743. dstSubfolderSpec = 16;
  744. files = (
  745. BDFF799F2D25AA890016C40C /* Trio Watch App.app in Embed Watch Content */,
  746. );
  747. name = "Embed Watch Content";
  748. runOnlyForDeploymentPostprocessing = 0;
  749. };
  750. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */ = {
  751. isa = PBXCopyFilesBuildPhase;
  752. buildActionMask = 2147483647;
  753. dstPath = "";
  754. dstSubfolderSpec = 13;
  755. files = (
  756. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */,
  757. );
  758. name = "Embed Foundation Extensions";
  759. runOnlyForDeploymentPostprocessing = 0;
  760. };
  761. BD8207CF2D2B42E80023339D /* Embed Foundation Extensions */ = {
  762. isa = PBXCopyFilesBuildPhase;
  763. buildActionMask = 2147483647;
  764. dstPath = "";
  765. dstSubfolderSpec = 13;
  766. files = (
  767. BD8207CE2D2B42E70023339D /* Trio Watch Complication Extension.appex in Embed Foundation Extensions */,
  768. );
  769. name = "Embed Foundation Extensions";
  770. runOnlyForDeploymentPostprocessing = 0;
  771. };
  772. /* End PBXCopyFilesBuildPhase section */
  773. /* Begin PBXFileReference section */
  774. 110AEDE02C5193D100615CC9 /* BolusIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusIntent.swift; sourceTree = "<group>"; };
  775. 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusIntentRequest.swift; sourceTree = "<group>"; };
  776. 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigView.swift; sourceTree = "<group>"; };
  777. 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigDataFlow.swift; sourceTree = "<group>"; };
  778. 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigProvider.swift; sourceTree = "<group>"; };
  779. 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigStateModel.swift; sourceTree = "<group>"; };
  780. 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyOverridePresetIntent.swift; sourceTree = "<group>"; };
  781. 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelOverrideIntent.swift; sourceTree = "<group>"; };
  782. 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OverridePresetEntity.swift; sourceTree = "<group>"; };
  783. 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OverridePresetsIntentRequest.swift; sourceTree = "<group>"; };
  784. 19012CDB291D2CB900FB8210 /* LoopStats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStats.swift; sourceTree = "<group>"; };
  785. 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsDataFlow.swift; sourceTree = "<group>"; };
  786. 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsProvider.swift; sourceTree = "<group>"; };
  787. 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsStateModel.swift; sourceTree = "<group>"; };
  788. 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsRootView.swift; sourceTree = "<group>"; };
  789. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettings.swift; sourceTree = "<group>"; };
  790. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Oref2_variables.swift; sourceTree = "<group>"; };
  791. 193F6CDC2A512C8F001240FD /* Loops.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Loops.swift; sourceTree = "<group>"; };
  792. 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsRootView.swift; sourceTree = "<group>"; };
  793. 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsDataFlow.swift; sourceTree = "<group>"; };
  794. 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsProvider.swift; sourceTree = "<group>"; };
  795. 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsStateModel.swift; sourceTree = "<group>"; };
  796. 1967DFBD29D052C200759F30 /* Icons.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Icons.swift; sourceTree = "<group>"; };
  797. 1967DFBF29D053AC00759F30 /* IconSelection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconSelection.swift; sourceTree = "<group>"; };
  798. 1967DFC129D053D300759F30 /* IconImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconImage.swift; sourceTree = "<group>"; };
  799. 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; };
  800. 19A910352A24D6D700C8951B /* DateFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateFilter.swift; sourceTree = "<group>"; };
  801. 19B0EF2028F6D66200069496 /* Statistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Statistics.swift; sourceTree = "<group>"; };
  802. 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsDataFlow.swift; sourceTree = "<group>"; };
  803. 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsProvider.swift; sourceTree = "<group>"; };
  804. 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsStateModel.swift; sourceTree = "<group>"; };
  805. 19D466A929AA3099004D5F33 /* MealSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsRootView.swift; sourceTree = "<group>"; };
  806. 19D4E4EA29FC6A9F00351451 /* Charts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Charts.swift; sourceTree = "<group>"; };
  807. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  808. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigDataFlow.swift; sourceTree = "<group>"; };
  809. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigProvider.swift; sourceTree = "<group>"; };
  810. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigStateModel.swift; sourceTree = "<group>"; };
  811. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigRootWiew.swift; sourceTree = "<group>"; };
  812. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatDataFlow.swift; sourceTree = "<group>"; };
  813. 19F95FF429F10FCF00314DDC /* StatProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatProvider.swift; sourceTree = "<group>"; };
  814. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatStateModel.swift; sourceTree = "<group>"; };
  815. 19F95FF929F1102A00314DDC /* StatRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatRootView.swift; sourceTree = "<group>"; };
  816. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeProvider.swift; sourceTree = "<group>"; };
  817. 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsStateModel.swift; sourceTree = "<group>"; };
  818. 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsRootView.swift; sourceTree = "<group>"; };
  819. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigRootView.swift; sourceTree = "<group>"; };
  820. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigDataFlow.swift; sourceTree = "<group>"; };
  821. 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsDataFlow.swift; sourceTree = "<group>"; };
  822. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeDataFlow.swift; sourceTree = "<group>"; };
  823. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorStateModel.swift; sourceTree = "<group>"; };
  824. 3811DE0725C9D32E00A708ED /* BaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  825. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseProvider.swift; sourceTree = "<group>"; };
  826. 3811DE1525C9D40400A708ED /* Screen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Screen.swift; sourceTree = "<group>"; };
  827. 3811DE1625C9D40400A708ED /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = "<group>"; };
  828. 3811DE1C25C9D48300A708ED /* MainProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainProvider.swift; sourceTree = "<group>"; };
  829. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainDataFlow.swift; sourceTree = "<group>"; };
  830. 3811DE2025C9D48300A708ED /* MainRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainRootView.swift; sourceTree = "<group>"; };
  831. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeStateModel.swift; sourceTree = "<group>"; };
  832. 3811DE2925C9D49500A708ED /* HomeProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeProvider.swift; sourceTree = "<group>"; };
  833. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeDataFlow.swift; sourceTree = "<group>"; };
  834. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeRootView.swift; sourceTree = "<group>"; };
  835. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsStateModel.swift; sourceTree = "<group>"; };
  836. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsRootView.swift; sourceTree = "<group>"; };
  837. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsDataFlow.swift; sourceTree = "<group>"; };
  838. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsProvider.swift; sourceTree = "<group>"; };
  839. 3811DE5425C9D4D500A708ED /* Formatters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Formatters.swift; sourceTree = "<group>"; };
  840. 3811DE5525C9D4D500A708ED /* Publisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Publisher.swift; sourceTree = "<group>"; };
  841. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = "<group>"; };
  842. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
  843. 3811DE8E25C9D80400A708ED /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  844. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppearanceManager.swift; sourceTree = "<group>"; };
  845. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTTPResponseStatus.swift; sourceTree = "<group>"; };
  846. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightscoutManager.swift; sourceTree = "<group>"; };
  847. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Cache.swift"; sourceTree = "<group>"; };
  848. 3811DE9B25C9D88300A708ED /* Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cache.swift; sourceTree = "<group>"; };
  849. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyValueStorage.swift; sourceTree = "<group>"; };
  850. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseKeychain.swift; sourceTree = "<group>"; };
  851. 3811DE9F25C9D88300A708ED /* Keychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
  852. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeychainItemAccessibility.swift; sourceTree = "<group>"; };
  853. 3811DEA625C9D88300A708ED /* UnlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnlockManager.swift; sourceTree = "<group>"; };
  854. 3811DEC725C9DA7300A708ED /* Trio.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Trio.entitlements; sourceTree = "<group>"; };
  855. 3811DEE425CA063400A708ED /* Injected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Injected.swift; sourceTree = "<group>"; };
  856. 3811DEE625CA063400A708ED /* SyncAccess.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncAccess.swift; sourceTree = "<group>"; };
  857. 3811DEE725CA063400A708ED /* PersistedProperty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistedProperty.swift; sourceTree = "<group>"; };
  858. 3811DF0125CA9FEA00A708ED /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
  859. 3811DF0F25CAAAE200A708ED /* APSManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APSManager.swift; sourceTree = "<group>"; };
  860. 3818AA45274C229000843DB3 /* LibreTransmitter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LibreTransmitter; path = Dependencies/LibreTransmitter; sourceTree = "<group>"; };
  861. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  862. 3818AA4C274C26A300843DB3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  863. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  864. 3818AA4E274C26A300843DB3 /* MockKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  865. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  866. 3818AA51274C26A300843DB3 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  867. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  868. 3818AA53274C26A300843DB3 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  869. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  870. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  871. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  872. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  873. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopTestingKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  874. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReachabilityManager.swift; sourceTree = "<group>"; };
  875. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchTreatmentsManager.swift; sourceTree = "<group>"; };
  876. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConvenienceExtensions.swift; sourceTree = "<group>"; };
  877. 3821ED4B25DD18BA00BC42AD /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
  878. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinSensitivities.swift; sourceTree = "<group>"; };
  879. 382C134A25F14E3700715CE1 /* BGTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTargets.swift; sourceTree = "<group>"; };
  880. 383420D525FFE38C002D46C1 /* LoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopView.swift; sourceTree = "<group>"; };
  881. 383420D825FFEB3F002D46C1 /* Popup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popup.swift; sourceTree = "<group>"; };
  882. 383948D525CD4D8900E91849 /* FileStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorage.swift; sourceTree = "<group>"; };
  883. 383948D925CD64D500E91849 /* Glucose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glucose.swift; sourceTree = "<group>"; };
  884. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JavaScriptWorker.swift; sourceTree = "<group>"; };
  885. 384E803725C388640086DB71 /* Script.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Script.swift; sourceTree = "<group>"; };
  886. 38569344270B5DFA0002C50D /* CGMType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMType.swift; sourceTree = "<group>"; };
  887. 38569345270B5DFA0002C50D /* GlucoseSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSource.swift; sourceTree = "<group>"; };
  888. 38569346270B5DFB0002C50D /* AppGroupSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppGroupSource.swift; sourceTree = "<group>"; };
  889. 38569352270B5E350002C50D /* CGMRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMRootView.swift; sourceTree = "<group>"; };
  890. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatus.swift; sourceTree = "<group>"; };
  891. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = "<group>"; };
  892. 3870FF4225EC13F40088248F /* BloodGlucose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BloodGlucose.swift; sourceTree = "<group>"; };
  893. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTarget.swift; sourceTree = "<group>"; };
  894. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decimal+Extensions.swift"; sourceTree = "<group>"; };
  895. 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldWithToolBar.swift; sourceTree = "<group>"; };
  896. 3883583325EEB38000E024B2 /* PumpSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
  897. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalProfileEntry.swift; sourceTree = "<group>"; };
  898. 38887CCD25F5725200944304 /* IOBEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBEntry.swift; sourceTree = "<group>"; };
  899. 388E595825AD948C0019842D /* Trio.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Trio.app; sourceTree = BUILT_PRODUCTS_DIR; };
  900. 388E595B25AD948C0019842D /* TrioApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioApp.swift; sourceTree = "<group>"; };
  901. 388E596425AD948E0019842D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  902. 388E596B25AD95110019842D /* OpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPS.swift; sourceTree = "<group>"; };
  903. 388E596E25AD96040019842D /* javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; path = javascript; sourceTree = "<group>"; };
  904. 388E597125AD9CF10019842D /* json */ = {isa = PBXFileReference; lastKnownFileType = folder; path = json; sourceTree = "<group>"; };
  905. 388E5A5B25B6F0770019842D /* JSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
  906. 388E5A5F25B6F2310019842D /* Autosens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autosens.swift; sourceTree = "<group>"; };
  907. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutTreatment.swift; sourceTree = "<group>"; };
  908. 389487392614928B004DF424 /* DispatchTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DispatchTimer.swift; sourceTree = "<group>"; };
  909. 3895E4C525B9E00D00214B37 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
  910. 389A571F26079BAA00BC102F /* Interpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolation.swift; sourceTree = "<group>"; };
  911. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snapshot.swift"; sourceTree = "<group>"; };
  912. 389ECE042601144100D86C4F /* ConcurrentMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConcurrentMap.swift; sourceTree = "<group>"; };
  913. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LRUCache.swift; sourceTree = "<group>"; };
  914. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorage.swift; sourceTree = "<group>"; };
  915. 38A0364125ED069400FCBB52 /* TempBasal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempBasal.swift; sourceTree = "<group>"; };
  916. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryEvent.swift; sourceTree = "<group>"; };
  917. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtensions.swift; sourceTree = "<group>"; };
  918. 38A9260425F012D8009E3739 /* CarbRatios.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbRatios.swift; sourceTree = "<group>"; };
  919. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentGlucoseView.swift; sourceTree = "<group>"; };
  920. 38AEE73C25F0200C0013F05B /* TrioSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioSettings.swift; sourceTree = "<group>"; };
  921. 38AEE75125F022080013F05B /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
  922. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorage.swift; sourceTree = "<group>"; };
  923. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IndexedCollection.swift; sourceTree = "<group>"; };
  924. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSetupView.swift; sourceTree = "<group>"; };
  925. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenter.swift; sourceTree = "<group>"; };
  926. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftNotificationCenter.swift; sourceTree = "<group>"; };
  927. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeakObjectSet.swift; sourceTree = "<group>"; };
  928. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Broadcaster.swift; sourceTree = "<group>"; };
  929. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpManagerExtensions.swift; sourceTree = "<group>"; };
  930. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettingsView.swift; sourceTree = "<group>"; };
  931. 38BF021C25E7E3AF00579895 /* Reservoir.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reservoir.swift; sourceTree = "<group>"; };
  932. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceDataManager.swift; sourceTree = "<group>"; };
  933. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
  934. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+AssociatedValues.swift"; sourceTree = "<group>"; };
  935. 38D0B3B525EBE24900CB6E88 /* Battery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Battery.swift; sourceTree = "<group>"; };
  936. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsEntry.swift; sourceTree = "<group>"; };
  937. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpView.swift; sourceTree = "<group>"; };
  938. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchGlucoseManager.swift; sourceTree = "<group>"; };
  939. 38DF1785276A73D400B3528F /* TagCloudView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagCloudView.swift; sourceTree = "<group>"; };
  940. 38DF178B27733E6800B3528F /* snow.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = snow.sks; sourceTree = "<group>"; };
  941. 38DF178C27733E6800B3528F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  942. 38DF178F27733EAD00B3528F /* SnowScene.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnowScene.swift; sourceTree = "<group>"; };
  943. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  944. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = "<group>"; };
  945. 38E44527274E401C00EC9A94 /* Protected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protected.swift; sourceTree = "<group>"; };
  946. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+InternalHelpers.swift"; sourceTree = "<group>"; };
  947. 38E4452B274E411600EC9A94 /* Disk+Data.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Data.swift"; sourceTree = "<group>"; };
  948. 38E4452C274E411600EC9A94 /* Disk.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Disk.swift; sourceTree = "<group>"; };
  949. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Helpers.swift"; sourceTree = "<group>"; };
  950. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[Data].swift"; sourceTree = "<group>"; };
  951. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+UIImage.swift"; sourceTree = "<group>"; };
  952. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[UIImage].swift"; sourceTree = "<group>"; };
  953. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+VolumeInformation.swift"; sourceTree = "<group>"; };
  954. 38E44532274E411700EC9A94 /* Disk+Codable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Codable.swift"; sourceTree = "<group>"; };
  955. 38E44533274E411700EC9A94 /* Disk+Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Errors.swift"; sourceTree = "<group>"; };
  956. 38E873FD274F761800975559 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
  957. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libswiftCoreNFC.tbd; path = usr/lib/swift/libswiftCoreNFC.tbd; sourceTree = SDKROOT; };
  958. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserNotificationsManager.swift; sourceTree = "<group>"; };
  959. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpStatus.swift; sourceTree = "<group>"; };
  960. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signpost.swift; sourceTree = "<group>"; };
  961. 38E98A1C25F52C9300C0CED0 /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
  962. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueReporter.swift; sourceTree = "<group>"; };
  963. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionIssueReporter.swift; sourceTree = "<group>"; };
  964. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Error+Extensions.swift"; sourceTree = "<group>"; };
  965. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSLocking+Extensions.swift"; sourceTree = "<group>"; };
  966. 38E98A2F25F52FF700C0CED0 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
  967. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
  968. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleLogReporter.swift; sourceTree = "<group>"; };
  969. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressViewStyle.swift; sourceTree = "<group>"; };
  970. 38F37827261260DC009DB701 /* Color+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Color+Extensions.swift"; sourceTree = "<group>"; };
  971. 38F3783A2613555C009DB701 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  972. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsStorage.swift; sourceTree = "<group>"; };
  973. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
  974. 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TrioTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  975. 38FCF3F125E9028E0078B0D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  976. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorageTests.swift; sourceTree = "<group>"; };
  977. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorage.swift; sourceTree = "<group>"; };
  978. 38FE826925CC82DB001FF17A /* NetworkService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkService.swift; sourceTree = "<group>"; };
  979. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutAPI.swift; sourceTree = "<group>"; };
  980. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseStateModel.swift; sourceTree = "<group>"; };
  981. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainStateModel.swift; sourceTree = "<group>"; };
  982. 38FEF3FD2738083E00574A46 /* CGMSettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMSettingsProvider.swift; sourceTree = "<group>"; };
  983. 38FEF412273B317A00574A46 /* HKUnit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
  984. 3B2F77852D7E52ED005ED9FA /* TDD.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TDD.swift; sourceTree = "<group>"; };
  985. 3B2F77872D7E5387005ED9FA /* CurrentTDDSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentTDDSetup.swift; sourceTree = "<group>"; };
  986. 3B3B57C82DA07B3400849D16 /* GoogleService-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
  987. 3B4196DF2D8C4BBB0091DFF7 /* HomeStateModel+CGM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "HomeStateModel+CGM.swift"; sourceTree = "<group>"; };
  988. 3B4BA75B2D8DBD690069D5B8 /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  989. 3B4BA75C2D8DBD690069D5B8 /* CGMBLEKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  990. 3B4BA75D2D8DBD690069D5B8 /* DanaKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DanaKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  991. 3B4BA75E2D8DBD690069D5B8 /* G7SensorKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  992. 3B4BA75F2D8DBD690069D5B8 /* G7SensorKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  993. 3B4BA7602D8DBD690069D5B8 /* LibreTransmitter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LibreTransmitter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  994. 3B4BA7612D8DBD690069D5B8 /* LibreTransmitterUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LibreTransmitterUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  995. 3B4BA7622D8DBD690069D5B8 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  996. 3B4BA7632D8DBD690069D5B8 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  997. 3B4BA7642D8DBD690069D5B8 /* OmniBLE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniBLE.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  998. 3B4BA7652D8DBD690069D5B8 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  999. 3B4BA7662D8DBD690069D5B8 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1000. 3B4BA7672D8DBD690069D5B8 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1001. 3B4BA7682D8DBD690069D5B8 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1002. 3B4BA7692D8DBD690069D5B8 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1003. 3B4BA7882D8DC0EC0069D5B8 /* TidepoolServiceKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = TidepoolServiceKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1004. 3B4BA7892D8DC0EC0069D5B8 /* TidepoolServiceKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = TidepoolServiceKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1005. 3BAD36B12D7CDC1400CC298D /* MainLoadingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainLoadingView.swift; sourceTree = "<group>"; };
  1006. 3BAD36CB2D7D420500CC298D /* CoreDataInitializationCoordinator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataInitializationCoordinator.swift; sourceTree = "<group>"; };
  1007. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorProvider.swift; sourceTree = "<group>"; };
  1008. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigProvider.swift; sourceTree = "<group>"; };
  1009. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigStateModel.swift; sourceTree = "<group>"; };
  1010. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorDataFlow.swift; sourceTree = "<group>"; };
  1011. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorProvider.swift; sourceTree = "<group>"; };
  1012. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorProvider.swift; sourceTree = "<group>"; };
  1013. 491D6FB92D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetRunStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1014. 491D6FBA2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetRunStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1015. 491D6FBB2D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1016. 491D6FBC2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1017. 49B9B57E2D5768D2009C6B59 /* AdjustmentStored+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentStored+Helper.swift"; sourceTree = "<group>"; };
  1018. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorRootView.swift; sourceTree = "<group>"; };
  1019. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorStateModel.swift; sourceTree = "<group>"; };
  1020. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebuggingIdentifiers.swift; sourceTree = "<group>"; };
  1021. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSPredicates.swift; sourceTree = "<group>"; };
  1022. 581AC4382BE22ED10038760C /* JSONConverter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSONConverter.swift; sourceTree = "<group>"; };
  1023. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopupView.swift; sourceTree = "<group>"; };
  1024. 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditTempTargetForm.swift; sourceTree = "<group>"; };
  1025. 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseChartView.swift; sourceTree = "<group>"; };
  1026. 582DF9762C8CDBE7001F516D /* InsulinView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinView.swift; sourceTree = "<group>"; };
  1027. 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartHelper.swift; sourceTree = "<group>"; };
  1028. 582DF97A2C8CE209001F516D /* CarbView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbView.swift; sourceTree = "<group>"; };
  1029. 582FAE422C05102C00D1C13F /* CoreDataError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataError.swift; sourceTree = "<group>"; };
  1030. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+helper.swift"; sourceTree = "<group>"; };
  1031. 583684072BD195A700070A60 /* Determination.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Determination.swift; sourceTree = "<group>"; };
  1032. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+helper.swift"; sourceTree = "<group>"; };
  1033. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEvent+helper.swift"; sourceTree = "<group>"; };
  1034. 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSetup.swift; sourceTree = "<group>"; };
  1035. 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbSetup.swift; sourceTree = "<group>"; };
  1036. 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationSetup.swift; sourceTree = "<group>"; };
  1037. 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistorySetup.swift; sourceTree = "<group>"; };
  1038. 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideSetup.swift; sourceTree = "<group>"; };
  1039. 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatterySetup.swift; sourceTree = "<group>"; };
  1040. 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastSetup.swift; sourceTree = "<group>"; };
  1041. 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartAxisSetup.swift; sourceTree = "<group>"; };
  1042. 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationStorage.swift; sourceTree = "<group>"; };
  1043. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPSBattery.swift; sourceTree = "<group>"; };
  1044. 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddTempTargetForm.swift; sourceTree = "<group>"; };
  1045. 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+Helper.swift"; sourceTree = "<group>"; };
  1046. 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideView.swift; sourceTree = "<group>"; };
  1047. 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastView.swift; sourceTree = "<group>"; };
  1048. 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DummyCharts.swift; sourceTree = "<group>"; };
  1049. 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CobIobChart.swift; sourceTree = "<group>"; };
  1050. 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalChart.swift; sourceTree = "<group>"; };
  1051. 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargets.swift; sourceTree = "<group>"; };
  1052. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Determination+helper.swift"; sourceTree = "<group>"; };
  1053. 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutUploadView.swift; sourceTree = "<group>"; };
  1054. 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutFetchView.swift; sourceTree = "<group>"; };
  1055. 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutConnectView.swift; sourceTree = "<group>"; };
  1056. 5C018D1680307A31C9ED7120 /* CGMSettingsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMSettingsStateModel.swift; sourceTree = "<group>"; };
  1057. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorStateModel.swift; sourceTree = "<group>"; };
  1058. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableProvider.swift; sourceTree = "<group>"; };
  1059. 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorStateModel.swift; sourceTree = "<group>"; };
  1060. 65070A322BFDCB83006F213F /* TidepoolStartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolStartView.swift; sourceTree = "<group>"; };
  1061. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorDataFlow.swift; sourceTree = "<group>"; };
  1062. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalProvider.swift; sourceTree = "<group>"; };
  1063. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UniformTypeIdentifiers.framework; path = System/Library/Frameworks/UniformTypeIdentifiers.framework; sourceTree = SDKROOT; };
  1064. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = LiveActivityExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1065. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
  1066. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
  1067. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBundle.swift; sourceTree = "<group>"; };
  1068. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivity.swift; sourceTree = "<group>"; };
  1069. 6B1A8D232B14D91700E76752 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1070. 6B1A8D252B14D91700E76752 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1071. 6B1A8D2D2B156EEF00E76752 /* LiveActivityManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityManager.swift; sourceTree = "<group>"; };
  1072. 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActitiyAttributes.swift; sourceTree = "<group>"; };
  1073. 715120D12D3C2B84005D9FB6 /* GlucoseNotificationsOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationsOption.swift; sourceTree = "<group>"; };
  1074. 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlertPermissionsChecker.swift; sourceTree = "<group>"; };
  1075. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorDataFlow.swift; sourceTree = "<group>"; };
  1076. 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorDataFlow.swift; sourceTree = "<group>"; };
  1077. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigRootView.swift; sourceTree = "<group>"; };
  1078. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableRootView.swift; sourceTree = "<group>"; };
  1079. 8A9134292D63D9A1007F8874 /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = "<group>"; };
  1080. 8A91342B2D63D9A2007F8874 /* InfoPlist.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = InfoPlist.xcstrings; sourceTree = "<group>"; };
  1081. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorRootView.swift; sourceTree = "<group>"; };
  1082. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableStateModel.swift; sourceTree = "<group>"; };
  1083. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalDataFlow.swift; sourceTree = "<group>"; };
  1084. 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorProvider.swift; sourceTree = "<group>"; };
  1085. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorProvider.swift; sourceTree = "<group>"; };
  1086. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigStateModel.swift; sourceTree = "<group>"; };
  1087. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableDataFlow.swift; sourceTree = "<group>"; };
  1088. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigProvider.swift; sourceTree = "<group>"; };
  1089. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorStateModel.swift; sourceTree = "<group>"; };
  1090. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigDataFlow.swift; sourceTree = "<group>"; };
  1091. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeRootView.swift; sourceTree = "<group>"; };
  1092. B9B5C0607505A38F256BF99A /* CGMSettingsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMSettingsDataFlow.swift; sourceTree = "<group>"; };
  1093. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorDataFlow.swift; sourceTree = "<group>"; };
  1094. BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressOverlay.swift; sourceTree = "<group>"; };
  1095. BD0B2EF22C5998E600B3298F /* MealPresetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealPresetView.swift; sourceTree = "<group>"; };
  1096. BD1661302B82ADAB00256551 /* CustomProgressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomProgressView.swift; sourceTree = "<group>"; };
  1097. BD1CF8B72C1A4A8400CB930A /* ConfigOverride.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = ConfigOverride.xcconfig; sourceTree = "<group>"; };
  1098. BD249D852D42FBE600412DEB /* GlucoseMetricsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseMetricsView.swift; sourceTree = "<group>"; };
  1099. BD249D872D42FBFB00412DEB /* BolusStatsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusStatsView.swift; sourceTree = "<group>"; };
  1100. BD249D892D42FC0E00412DEB /* GlucosePercentileChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucosePercentileChart.swift; sourceTree = "<group>"; };
  1101. BD249D8B2D42FC2500412DEB /* GlucoseDistributionChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseDistributionChart.swift; sourceTree = "<group>"; };
  1102. BD249D8D2D42FC3600412DEB /* LoopBarChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopBarChartView.swift; sourceTree = "<group>"; };
  1103. BD249D8F2D42FC4300412DEB /* MealStatsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealStatsView.swift; sourceTree = "<group>"; };
  1104. BD249D912D42FC5000412DEB /* GlucoseSectorChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSectorChart.swift; sourceTree = "<group>"; };
  1105. BD249D932D42FC5C00412DEB /* TotalDailyDoseChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TotalDailyDoseChart.swift; sourceTree = "<group>"; };
  1106. BD249D962D42FCBD00412DEB /* AreaChartSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AreaChartSetup.swift; sourceTree = "<group>"; };
  1107. BD249D982D42FCCA00412DEB /* BolusStatsSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusStatsSetup.swift; sourceTree = "<group>"; };
  1108. BD249D9A2D42FCD800412DEB /* LoopChartSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopChartSetup.swift; sourceTree = "<group>"; };
  1109. BD249D9C2D42FCF300412DEB /* MealStatsSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealStatsSetup.swift; sourceTree = "<group>"; };
  1110. BD249D9E2D42FD0200412DEB /* StackedChartSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StackedChartSetup.swift; sourceTree = "<group>"; };
  1111. BD249DA02D42FD1000412DEB /* TDDSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TDDSetup.swift; sourceTree = "<group>"; };
  1112. BD249DA62D42FE3800412DEB /* Calendar+GlucoseStatsChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Calendar+GlucoseStatsChart.swift"; sourceTree = "<group>"; };
  1113. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckboxToggleStyle.swift; sourceTree = "<group>"; };
  1114. BD3CC0712B0B89D50013189E /* MainChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartView.swift; sourceTree = "<group>"; };
  1115. BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataObserver.swift; sourceTree = "<group>"; };
  1116. BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchMessageKeys.swift; sourceTree = "<group>"; };
  1117. BD4D738B2D15A4080052227B /* TDDStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TDDStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1118. BD4D738C2D15A4080052227B /* TDDStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TDDStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1119. BD4D73A12D15A4220052227B /* TDDStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TDDStorage.swift; sourceTree = "<group>"; };
  1120. BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTargetSetup.swift; sourceTree = "<group>"; };
  1121. BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StartEndMarkerSetup.swift; sourceTree = "<group>"; };
  1122. BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppState.swift; sourceTree = "<group>"; };
  1123. BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetsView.swift; sourceTree = "<group>"; };
  1124. BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetWatch.swift; sourceTree = "<group>"; };
  1125. BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPresetsView.swift; sourceTree = "<group>"; };
  1126. BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPresetWatch.swift; sourceTree = "<group>"; };
  1127. BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityWidgetConfiguration.swift; sourceTree = "<group>"; };
  1128. BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+helper.swift"; sourceTree = "<group>"; };
  1129. BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetRunStored.swift; sourceTree = "<group>"; };
  1130. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigDataFlow.swift; sourceTree = "<group>"; };
  1131. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigProvider.swift; sourceTree = "<group>"; };
  1132. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorStateModel.swift; sourceTree = "<group>"; };
  1133. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigRootView.swift; sourceTree = "<group>"; };
  1134. BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculationManager.swift; sourceTree = "<group>"; };
  1135. BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Trio Watch Complication Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1136. BD8FC0532D66186000B95AED /* TestError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestError.swift; sourceTree = "<group>"; };
  1137. BD8FC0562D66188700B95AED /* PumpHistoryStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorageTests.swift; sourceTree = "<group>"; };
  1138. BD8FC0582D66189700B95AED /* TestAssembly.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestAssembly.swift; sourceTree = "<group>"; };
  1139. BD8FC05A2D6618AF00B95AED /* DeterminationStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationStorageTests.swift; sourceTree = "<group>"; };
  1140. BD8FC05D2D6618CE00B95AED /* BolusCalculatorTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorTests.swift; sourceTree = "<group>"; };
  1141. BD8FC05F2D6619DB00B95AED /* CarbsStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorageTests.swift; sourceTree = "<group>"; };
  1142. BD8FC0612D6619E600B95AED /* OverrideStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStorageTests.swift; sourceTree = "<group>"; };
  1143. BD8FC0632D6619EF00B95AED /* TempTargetStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetStorageTests.swift; sourceTree = "<group>"; };
  1144. BD8FC0652D661A0000B95AED /* GlucoseStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorageTests.swift; sourceTree = "<group>"; };
  1145. BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleWatchManager.swift; sourceTree = "<group>"; };
  1146. BDA25EE52D260D5800035F34 /* WatchState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchState.swift; sourceTree = "<group>"; };
  1147. BDA25EFC2D261BF200035F34 /* WatchState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchState.swift; sourceTree = "<group>"; };
  1148. BDA25F1B2D26BD0300035F34 /* TrendShape.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrendShape.swift; sourceTree = "<group>"; };
  1149. BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseChartView.swift; sourceTree = "<group>"; };
  1150. BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsInputView.swift; sourceTree = "<group>"; };
  1151. BDA25F212D26D62200035F34 /* BolusInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusInputView.swift; sourceTree = "<group>"; };
  1152. BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetSetup.swift; sourceTree = "<group>"; };
  1153. BDA7593D2D37CFC000E649A4 /* CarbEntryEditorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbEntryEditorView.swift; sourceTree = "<group>"; };
  1154. BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WatchState+Requests.swift"; sourceTree = "<group>"; };
  1155. BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtension.swift; sourceTree = "<group>"; };
  1156. BDB899872C564509006F3298 /* ForecastChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastChart.swift; sourceTree = "<group>"; };
  1157. BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbsGlucose+helper.swift"; sourceTree = "<group>"; };
  1158. BDBAACF92C2D439700370AAE /* OverrideData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideData.swift; sourceTree = "<group>"; };
  1159. BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStorage.swift; sourceTree = "<group>"; };
  1160. BDC2EA462C3045AD00E5BBD0 /* Override.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Override.swift; sourceTree = "<group>"; };
  1161. BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageManager.swift; sourceTree = "<group>"; };
  1162. BDC531112D1060FA00088832 /* ContactImageDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageDetailView.swift; sourceTree = "<group>"; };
  1163. BDC531132D10611D00088832 /* AddContactImageSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddContactImageSheet.swift; sourceTree = "<group>"; };
  1164. BDC531152D10629000088832 /* ContactPicture.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactPicture.swift; sourceTree = "<group>"; };
  1165. BDC531172D1062F200088832 /* ContactImageState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageState.swift; sourceTree = "<group>"; };
  1166. BDCAF2372C639F35002DC907 /* SettingItems.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingItems.swift; sourceTree = "<group>"; };
  1167. BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+helper.swift"; sourceTree = "<group>"; };
  1168. BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelectionPopoverView.swift; sourceTree = "<group>"; };
  1169. BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomNotification.swift; sourceTree = "<group>"; };
  1170. BDF34F822C10C5B600D51995 /* DataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataManager.swift; sourceTree = "<group>"; };
  1171. BDF34F842C10C62E00D51995 /* GlucoseData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseData.swift; sourceTree = "<group>"; };
  1172. BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataStack.swift; sourceTree = "<group>"; };
  1173. BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LiveActivityAttributes+Helper.swift"; sourceTree = "<group>"; };
  1174. BDF34F942C10D27300D51995 /* DeterminationData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationData.swift; sourceTree = "<group>"; };
  1175. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LockScreenView.swift; sourceTree = "<group>"; };
  1176. BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentsRootView.swift; sourceTree = "<group>"; };
  1177. BDFF797C2D25AA870016C40C /* Trio Watch App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Trio Watch App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  1178. BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Trio Watch AppTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  1179. BDFF7A832D25F97D0016C40C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1180. BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioMainWatchView.swift; sourceTree = "<group>"; };
  1181. BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchApp.swift; sourceTree = "<group>"; };
  1182. BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Unit Tests.swift"; sourceTree = "<group>"; };
  1183. BDFF7A902D25F97D0016C40C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1184. BDFF7A912D25F97D0016C40C /* TrioWatchApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchApp.swift; sourceTree = "<group>"; };
  1185. BDFF7A922D25F97D0016C40C /* TrioWatchAppExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchAppExtension.swift; sourceTree = "<group>"; };
  1186. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorRootView.swift; sourceTree = "<group>"; };
  1187. C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsProvider.swift; sourceTree = "<group>"; };
  1188. C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConstantValues.swift; sourceTree = "<group>"; };
  1189. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalRootView.swift; sourceTree = "<group>"; };
  1190. C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsDataFlow.swift; sourceTree = "<group>"; };
  1191. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RawFetchedProfile.swift; sourceTree = "<group>"; };
  1192. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+helper.swift"; sourceTree = "<group>"; };
  1193. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddCarbPresetIntent.swift; sourceTree = "<group>"; };
  1194. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbPresetIntentRequest.swift; sourceTree = "<group>"; };
  1195. CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginManagerTests.swift; sourceTree = "<group>"; };
  1196. CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolManager.swift; sourceTree = "<group>"; };
  1197. CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = BuildDetails.plist; sourceTree = "<group>"; };
  1198. CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolConfigView.swift; sourceTree = "<group>"; };
  1199. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BloodGlucoseExtensions.swift; sourceTree = "<group>"; };
  1200. CE398D012977349800DF218F /* CryptoKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CryptoKit.framework; path = System/Library/Frameworks/CryptoKit.framework; sourceTree = SDKROOT; };
  1201. CE398D17297C9EE800DF218F /* G7SensorKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1202. CE398D1A297D69A900DF218F /* ShareClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClient.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1203. CE3EEF992D46370A001944DD /* CustomCGMOptionsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomCGMOptionsView.swift; sourceTree = "<group>"; };
  1204. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniBLEPumpManagerExtensions.swift; sourceTree = "<group>"; };
  1205. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniPodManagerExtensions.swift; sourceTree = "<group>"; };
  1206. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = "ConnectIQ 2.xcframework"; path = "Dependencies/ConnectIQ 2.xcframework"; sourceTree = "<group>"; };
  1207. 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; };
  1208. CE7950232997D81700FA576E /* CGMSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSettingsView.swift; sourceTree = "<group>"; };
  1209. CE7950252998056D00FA576E /* CGMSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSetupView.swift; sourceTree = "<group>"; };
  1210. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1211. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1212. CE79502D29980E4D00FA576E /* ShareClientUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClientUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1213. CE7CA3432A064973004BE681 /* AppShortcuts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppShortcuts.swift; sourceTree = "<group>"; };
  1214. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseIntentsRequest.swift; sourceTree = "<group>"; };
  1215. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelTempPresetIntent.swift; sourceTree = "<group>"; };
  1216. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyTempPresetIntent.swift; sourceTree = "<group>"; };
  1217. CE7CA3492A064973004BE681 /* TempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetIntent.swift; sourceTree = "<group>"; };
  1218. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetsIntentRequest.swift; sourceTree = "<group>"; };
  1219. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListStateIntent.swift; sourceTree = "<group>"; };
  1220. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StateIntentRequest.swift; sourceTree = "<group>"; };
  1221. CE7CA3572A064E2F004BE681 /* ListStateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListStateView.swift; sourceTree = "<group>"; };
  1222. CE82E02428E867BA00473A9C /* AlertStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertStorage.swift; sourceTree = "<group>"; };
  1223. CE82E02628E869DF00473A9C /* AlertEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertEntry.swift; sourceTree = "<group>"; };
  1224. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ConnectIQ.framework; path = "Dependencies/ios-armv7_arm64/ConnectIQ.framework"; sourceTree = "<group>"; };
  1225. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminManager.swift; sourceTree = "<group>"; };
  1226. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigDataFlow.swift; sourceTree = "<group>"; };
  1227. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigProvider.swift; sourceTree = "<group>"; };
  1228. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigStateModel.swift; sourceTree = "<group>"; };
  1229. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigRootView.swift; sourceTree = "<group>"; };
  1230. CE95BF492BA5CED700DC3DE3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1231. CE95BF4A2BA5CED700DC3DE3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1232. CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginManager.swift; sourceTree = "<group>"; };
  1233. CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginSource.swift; sourceTree = "<group>"; };
  1234. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SavitzkyGolayFilter.swift; sourceTree = "<group>"; };
  1235. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MKRingProgressView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1236. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniBLE.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1237. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothStateManager.swift; sourceTree = "<group>"; };
  1238. CEB434E428B8FF5D00B70274 /* UIColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIColor.swift; sourceTree = "<group>"; };
  1239. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopUIColorPalette+Default.swift"; sourceTree = "<group>"; };
  1240. CEC751D129D88257006E9D24 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1241. CEC751D329D88257006E9D24 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1242. CEC751D529D88262006E9D24 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1243. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1244. CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsProvider.swift; sourceTree = "<group>"; };
  1245. CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsRootView.swift; sourceTree = "<group>"; };
  1246. CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsChart.swift; sourceTree = "<group>"; };
  1247. CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsStateModel.swift; sourceTree = "<group>"; };
  1248. CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsDataFlow.swift; sourceTree = "<group>"; };
  1249. CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationService.swift; sourceTree = "<group>"; };
  1250. CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationsTests.swift; sourceTree = "<group>"; };
  1251. CEF1ED6A2D58FB4600FAF41E /* CGMOptions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMOptions.swift; sourceTree = "<group>"; };
  1252. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalStateModel.swift; sourceTree = "<group>"; };
  1253. D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorRootView.swift; sourceTree = "<group>"; };
  1254. DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsStateModel.swift; sourceTree = "<group>"; };
  1255. DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsDataFlow.swift; sourceTree = "<group>"; };
  1256. DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsProvider.swift; sourceTree = "<group>"; };
  1257. DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsStateModel.swift; sourceTree = "<group>"; };
  1258. DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsRootView.swift; sourceTree = "<group>"; };
  1259. DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+Enums.swift"; sourceTree = "<group>"; };
  1260. DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AcknowledgementPendingView.swift; sourceTree = "<group>"; };
  1261. DD09D6162D2A2E4A000D82C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1262. DD09D6412D2B553A000D82C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1263. DD09D6422D2B553A000D82C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1264. DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchComplication.swift; sourceTree = "<group>"; };
  1265. DD1745122C54169400211FAC /* DevicesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DevicesView.swift; sourceTree = "<group>"; };
  1266. DD1745142C54388A00211FAC /* TherapySettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TherapySettingsView.swift; sourceTree = "<group>"; };
  1267. DD1745162C54389F00211FAC /* FeatureSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeatureSettingsView.swift; sourceTree = "<group>"; };
  1268. DD1745182C543B5700211FAC /* NotificationsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationsView.swift; sourceTree = "<group>"; };
  1269. DD17451C2C543C5F00211FAC /* ServicesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServicesView.swift; sourceTree = "<group>"; };
  1270. DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsDataFlow.swift; sourceTree = "<group>"; };
  1271. DD1745212C55524800211FAC /* SMBSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsProvider.swift; sourceTree = "<group>"; };
  1272. DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsStateModel.swift; sourceTree = "<group>"; };
  1273. DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsRootView.swift; sourceTree = "<group>"; };
  1274. DD1745282C55642100211FAC /* SettingInputSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingInputSection.swift; sourceTree = "<group>"; };
  1275. DD17452A2C556E8100211FAC /* SettingInputHintView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingInputHintView.swift; sourceTree = "<group>"; };
  1276. DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirDataFlow.swift; sourceTree = "<group>"; };
  1277. DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehaviorProvider.swift; sourceTree = "<group>"; };
  1278. DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirStateModel.swift; sourceTree = "<group>"; };
  1279. DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirRootView.swift; sourceTree = "<group>"; };
  1280. DD1745362C55B74200211FAC /* AlgorithmSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmSettings.swift; sourceTree = "<group>"; };
  1281. DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsDataFlow.swift; sourceTree = "<group>"; };
  1282. DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsProvider.swift; sourceTree = "<group>"; };
  1283. DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsStateModel.swift; sourceTree = "<group>"; };
  1284. DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsRootView.swift; sourceTree = "<group>"; };
  1285. DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsDataFlow.swift; sourceTree = "<group>"; };
  1286. DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsProvider.swift; sourceTree = "<group>"; };
  1287. DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsStateModel.swift; sourceTree = "<group>"; };
  1288. DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsRootView.swift; sourceTree = "<group>"; };
  1289. DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsDataFlow.swift; sourceTree = "<group>"; };
  1290. DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsProvider.swift; sourceTree = "<group>"; };
  1291. DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsStateModel.swift; sourceTree = "<group>"; };
  1292. DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsRootView.swift; sourceTree = "<group>"; };
  1293. DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildDetails.swift; sourceTree = "<group>"; };
  1294. DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStatusHelpView.swift; sourceTree = "<group>"; };
  1295. DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DecimalPickerSettings.swift; sourceTree = "<group>"; };
  1296. DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTrendView.swift; sourceTree = "<group>"; };
  1297. DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTargetsView.swift; sourceTree = "<group>"; };
  1298. DD3078672D42F5CE00DE0490 /* WatchGlucoseObject.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchGlucoseObject.swift; sourceTree = "<group>"; };
  1299. DD3078692D42F94000DE0490 /* GarminDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminDevice.swift; sourceTree = "<group>"; };
  1300. DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Bolus.swift"; sourceTree = "<group>"; };
  1301. DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Meal.swift"; sourceTree = "<group>"; };
  1302. DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+TempTarget.swift"; sourceTree = "<group>"; };
  1303. DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Override.swift"; sourceTree = "<group>"; };
  1304. DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+APNS.swift"; sourceTree = "<group>"; };
  1305. DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Helpers.swift"; sourceTree = "<group>"; };
  1306. DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+Extensions.swift"; sourceTree = "<group>"; };
  1307. DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+ButtonStyles.swift"; sourceTree = "<group>"; };
  1308. DD4C57A72D73ADEA001BFF2C /* RestartLiveActivityIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RestartLiveActivityIntent.swift; sourceTree = "<group>"; };
  1309. DD4C57A92D73B3D9001BFF2C /* RestartLiveActivityIntentRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RestartLiveActivityIntentRequest.swift; sourceTree = "<group>"; };
  1310. DD4C581E2D73C43D001BFF2C /* LoopStatsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStatsView.swift; sourceTree = "<group>"; };
  1311. DD4FFF322D458EE600B6CFF9 /* GarminWatchState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminWatchState.swift; sourceTree = "<group>"; };
  1312. DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+Overrides.swift"; sourceTree = "<group>"; };
  1313. DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+TempTargets.swift"; sourceTree = "<group>"; };
  1314. DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetPicker.swift; sourceTree = "<group>"; };
  1315. DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RadioButton.swift; sourceTree = "<group>"; };
  1316. DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+Helpers.swift"; sourceTree = "<group>"; };
  1317. DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutExercise.swift; sourceTree = "<group>"; };
  1318. DD6B7CB12C7B6F0800B75029 /* Rounding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Rounding.swift; sourceTree = "<group>"; };
  1319. DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastDisplayType.swift; sourceTree = "<group>"; };
  1320. DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutImportResultView.swift; sourceTree = "<group>"; };
  1321. DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewInsulinActionView.swift; sourceTree = "<group>"; };
  1322. DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorSchemeOption.swift; sourceTree = "<group>"; };
  1323. DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentMenuView.swift; sourceTree = "<group>"; };
  1324. DD73FA0E2D74F57300D19D1E /* BackgroundTask+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BackgroundTask+Helper.swift"; sourceTree = "<group>"; };
  1325. DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusConfirmationView.swift; sourceTree = "<group>"; };
  1326. DD88C8E12C50420800F2D558 /* DefinitionRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DefinitionRow.swift; sourceTree = "<group>"; };
  1327. DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseColorScheme.swift; sourceTree = "<group>"; };
  1328. DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicGlucoseColor.swift; sourceTree = "<group>"; };
  1329. DD98ACBF2D71013200C0778F /* StatChartUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatChartUtils.swift; sourceTree = "<group>"; };
  1330. DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioRemoteControl.swift; sourceTree = "<group>"; };
  1331. DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PushMessage.swift; sourceTree = "<group>"; };
  1332. DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigStateModel.swift; sourceTree = "<group>"; };
  1333. DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigProvider.swift; sourceTree = "<group>"; };
  1334. DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigDataFlow.swift; sourceTree = "<group>"; };
  1335. DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfig.swift; sourceTree = "<group>"; };
  1336. DDA6E24F2D22187500C2988C /* ChartLegendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartLegendView.swift; sourceTree = "<group>"; };
  1337. DDA6E2842D2361F800C2988C /* LoopStatusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStatusView.swift; sourceTree = "<group>"; };
  1338. DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideHelpView.swift; sourceTree = "<group>"; };
  1339. DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetHelpView.swift; sourceTree = "<group>"; };
  1340. DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageHelpView.swift; sourceTree = "<group>"; };
  1341. DDA9AC082D672CEB00E6F1A9 /* AppVersionChecker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppVersionChecker.swift; sourceTree = "<group>"; };
  1342. DDA9AC0A2D678DAD00E6F1A9 /* blacklisted-versions.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "blacklisted-versions.json"; sourceTree = "<group>"; };
  1343. DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsRootView+Overrides.swift"; sourceTree = "<group>"; };
  1344. DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsRootView+TempTargets.swift"; sourceTree = "<group>"; };
  1345. DDB37CC22D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ContactTrickEntryStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1346. DDB37CC32D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ContactTrickEntryStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1347. DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageStorage.swift; sourceTree = "<group>"; };
  1348. DDB37CC62D05127500D99BF4 /* FontExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FontExtensions.swift; sourceTree = "<group>"; };
  1349. DDCAE8322D78D49C00B1BB51 /* TherapySettingsUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TherapySettingsUtil.swift; sourceTree = "<group>"; };
  1350. DDCE790E2D6F97F7000A4D7A /* SubmodulesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SubmodulesView.swift; sourceTree = "<group>"; };
  1351. DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LiveActivity+Helper.swift"; sourceTree = "<group>"; };
  1352. DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsStateModel.swift; sourceTree = "<group>"; };
  1353. DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsProvider.swift; sourceTree = "<group>"; };
  1354. DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsDataFlow.swift; sourceTree = "<group>"; };
  1355. DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsRootView.swift; sourceTree = "<group>"; };
  1356. DDD163192C4C695E00CD525A /* EditOverrideForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditOverrideForm.swift; sourceTree = "<group>"; };
  1357. DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddOverrideForm.swift; sourceTree = "<group>"; };
  1358. DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = TrioCoreDataPersistentContainer.xcdatamodel; sourceTree = "<group>"; };
  1359. DDD6D4D22CDE90720029439A /* EstimatedA1cDisplayUnit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EstimatedA1cDisplayUnit.swift; sourceTree = "<group>"; };
  1360. DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MealPresetStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1361. DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MealPresetStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1362. DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataClass.swift"; sourceTree = "<group>"; };
  1363. DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1364. DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1365. DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1366. DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataClass.swift"; sourceTree = "<group>"; };
  1367. DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1368. DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1369. DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1370. DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1371. DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1372. DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataClass.swift"; sourceTree = "<group>"; };
  1373. DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1374. DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataClass.swift"; sourceTree = "<group>"; };
  1375. DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1376. DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1377. DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1378. DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataClass.swift"; sourceTree = "<group>"; };
  1379. DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1380. DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1381. DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1382. DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1383. DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1384. DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataClass.swift"; sourceTree = "<group>"; };
  1385. DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1386. DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1387. DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1388. DDEBB05B2D89E9050032305D /* TimeInRangeType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeInRangeType.swift; sourceTree = "<group>"; };
  1389. DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsDataFlow.swift; sourceTree = "<group>"; };
  1390. DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsProvider.swift; sourceTree = "<group>"; };
  1391. DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsStateModel.swift; sourceTree = "<group>"; };
  1392. DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsRootView.swift; sourceTree = "<group>"; };
  1393. DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddMealPresetView.swift; sourceTree = "<group>"; };
  1394. DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigAppleWatchView.swift; sourceTree = "<group>"; };
  1395. DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigGarminView.swift; sourceTree = "<group>"; };
  1396. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServiceAssembly.swift; sourceTree = "<group>"; };
  1397. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecurityAssembly.swift; sourceTree = "<group>"; };
  1398. E00EEBFF27368630002FF094 /* StorageAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageAssembly.swift; sourceTree = "<group>"; };
  1399. E00EEC0027368630002FF094 /* UIAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAssembly.swift; sourceTree = "<group>"; };
  1400. E00EEC0127368630002FF094 /* APSAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APSAssembly.swift; sourceTree = "<group>"; };
  1401. E00EEC0227368630002FF094 /* NetworkAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkAssembly.swift; sourceTree = "<group>"; };
  1402. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSimulatorSource.swift; sourceTree = "<group>"; };
  1403. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
  1404. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = System/Library/Frameworks/HealthKit.framework; sourceTree = SDKROOT; };
  1405. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitSample.swift; sourceTree = "<group>"; };
  1406. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeStateModel.swift; sourceTree = "<group>"; };
  1407. E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactTrickEntry.swift; sourceTree = "<group>"; };
  1408. E592A3712CEEC038009A472C /* ContactImageRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageRootView.swift; sourceTree = "<group>"; };
  1409. E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageDataFlow.swift; sourceTree = "<group>"; };
  1410. E592A3742CEEC038009A472C /* ContactImageProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageProvider.swift; sourceTree = "<group>"; };
  1411. E592A3752CEEC038009A472C /* ContactImageStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageStateModel.swift; sourceTree = "<group>"; };
  1412. E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsProvider.swift; sourceTree = "<group>"; };
  1413. F816825D28DB441200054060 /* HeartBeatManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeartBeatManager.swift; sourceTree = "<group>"; };
  1414. F816825F28DB441800054060 /* BluetoothTransmitter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BluetoothTransmitter.swift; sourceTree = "<group>"; };
  1415. F90692A9274B7AAE0037068D /* HealthKitManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitManager.swift; sourceTree = "<group>"; };
  1416. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitDataFlow.swift; sourceTree = "<group>"; };
  1417. F90692D0274B99B60037068D /* HealthKitProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitProvider.swift; sourceTree = "<group>"; };
  1418. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleHealthKitRootView.swift; sourceTree = "<group>"; };
  1419. F90692D5274B9A450037068D /* HealthKitStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitStateModel.swift; sourceTree = "<group>"; };
  1420. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorRootView.swift; sourceTree = "<group>"; };
  1421. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutPreferences.swift; sourceTree = "<group>"; };
  1422. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Extensions.swift"; sourceTree = "<group>"; };
  1423. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extensions.swift"; sourceTree = "<group>"; };
  1424. /* End PBXFileReference section */
  1425. /* Begin PBXFileSystemSynchronizedRootGroup section */
  1426. BDFF7A9E2D25FA970016C40C /* Preview Content */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = "Preview Content"; sourceTree = "<group>"; };
  1427. DDCEBF412CC1B42500DF4C36 /* Views */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Views; sourceTree = "<group>"; };
  1428. /* End PBXFileSystemSynchronizedRootGroup section */
  1429. /* Begin PBXFrameworksBuildPhase section */
  1430. 388E595525AD948C0019842D /* Frameworks */ = {
  1431. isa = PBXFrameworksBuildPhase;
  1432. buildActionMask = 2147483647;
  1433. files = (
  1434. CE95BF632BA771BE00DC3DE3 /* LoopTestingKit.framework in Frameworks */,
  1435. 3B4BA7722D8DBD690069D5B8 /* G7SensorKitUI.framework in Frameworks */,
  1436. 3B4BA7742D8DBD690069D5B8 /* LibreTransmitter.framework in Frameworks */,
  1437. 3B4BA78C2D8DC0EC0069D5B8 /* ShareClientUI.framework in Frameworks */,
  1438. 3B4BA77A2D8DBD690069D5B8 /* MinimedKitUI.framework in Frameworks */,
  1439. 3BD9687C2D8DDD4600899469 /* SlideButton in Frameworks */,
  1440. 3B4BA7782D8DBD690069D5B8 /* MinimedKit.framework in Frameworks */,
  1441. 3B4BA7762D8DBD690069D5B8 /* LibreTransmitterUI.framework in Frameworks */,
  1442. 3B4BA7902D8DC0EC0069D5B8 /* TidepoolServiceKitUI.framework in Frameworks */,
  1443. 3B4BA76A2D8DBD690069D5B8 /* CGMBLEKit.framework in Frameworks */,
  1444. 3B4BA77C2D8DBD690069D5B8 /* OmniBLE.framework in Frameworks */,
  1445. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */,
  1446. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */,
  1447. 3B4BA78A2D8DC0EC0069D5B8 /* ShareClient.framework in Frameworks */,
  1448. 3B4BA77E2D8DBD690069D5B8 /* OmniKit.framework in Frameworks */,
  1449. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */,
  1450. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */,
  1451. 3B4BA78E2D8DC0EC0069D5B8 /* TidepoolServiceKit.framework in Frameworks */,
  1452. B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */,
  1453. 3B4BA7702D8DBD690069D5B8 /* G7SensorKit.framework in Frameworks */,
  1454. 3B4BA76C2D8DBD690069D5B8 /* CGMBLEKitUI.framework in Frameworks */,
  1455. CE95BF5B2BA770C300DC3DE3 /* LoopKit.framework in Frameworks */,
  1456. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */,
  1457. 3833B46D26012030003021B3 /* Algorithms in Frameworks */,
  1458. 3B4BA7822D8DBD690069D5B8 /* RileyLinkBLEKit.framework in Frameworks */,
  1459. 3B4BA76E2D8DBD690069D5B8 /* DanaKit.framework in Frameworks */,
  1460. 3B47C6102DA0A28F00B0E5EF /* FirebaseCrashlytics in Frameworks */,
  1461. 3B4BA7862D8DBD690069D5B8 /* RileyLinkKitUI.framework in Frameworks */,
  1462. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */,
  1463. CE95BF5F2BA7715800DC3DE3 /* MockKit.framework in Frameworks */,
  1464. 3BD9687F2D8DDD8800899469 /* CryptoSwift in Frameworks */,
  1465. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */,
  1466. 3B4BA7802D8DBD690069D5B8 /* OmniKitUI.framework in Frameworks */,
  1467. 3B4BA7842D8DBD690069D5B8 /* RileyLinkKit.framework in Frameworks */,
  1468. CE95BF612BA7715900DC3DE3 /* MockKitUI.framework in Frameworks */,
  1469. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */,
  1470. CE95BF5D2BA770C300DC3DE3 /* LoopKitUI.framework in Frameworks */,
  1471. );
  1472. runOnlyForDeploymentPostprocessing = 0;
  1473. };
  1474. 38FCF3EA25E9028E0078B0D1 /* Frameworks */ = {
  1475. isa = PBXFrameworksBuildPhase;
  1476. buildActionMask = 2147483647;
  1477. files = (
  1478. );
  1479. runOnlyForDeploymentPostprocessing = 0;
  1480. };
  1481. 6B1A8D142B14D91500E76752 /* Frameworks */ = {
  1482. isa = PBXFrameworksBuildPhase;
  1483. buildActionMask = 2147483647;
  1484. files = (
  1485. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */,
  1486. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */,
  1487. );
  1488. runOnlyForDeploymentPostprocessing = 0;
  1489. };
  1490. BD8207C02D2B42E50023339D /* Frameworks */ = {
  1491. isa = PBXFrameworksBuildPhase;
  1492. buildActionMask = 2147483647;
  1493. files = (
  1494. BD8207C52D2B42E60023339D /* SwiftUI.framework in Frameworks */,
  1495. BD8207C42D2B42E60023339D /* WidgetKit.framework in Frameworks */,
  1496. );
  1497. runOnlyForDeploymentPostprocessing = 0;
  1498. };
  1499. BDFF79792D25AA870016C40C /* Frameworks */ = {
  1500. isa = PBXFrameworksBuildPhase;
  1501. buildActionMask = 2147483647;
  1502. files = (
  1503. );
  1504. runOnlyForDeploymentPostprocessing = 0;
  1505. };
  1506. BDFF79882D25AA890016C40C /* Frameworks */ = {
  1507. isa = PBXFrameworksBuildPhase;
  1508. buildActionMask = 2147483647;
  1509. files = (
  1510. );
  1511. runOnlyForDeploymentPostprocessing = 0;
  1512. };
  1513. /* End PBXFrameworksBuildPhase section */
  1514. /* Begin PBXGroup section */
  1515. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */ = {
  1516. isa = PBXGroup;
  1517. children = (
  1518. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */,
  1519. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */,
  1520. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */,
  1521. 4E8C7B59F8065047ECE20965 /* View */,
  1522. );
  1523. path = ConfigEditor;
  1524. sourceTree = "<group>";
  1525. };
  1526. 0A67A70F9438DB6586398458 /* View */ = {
  1527. isa = PBXGroup;
  1528. children = (
  1529. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */,
  1530. );
  1531. path = View;
  1532. sourceTree = "<group>";
  1533. };
  1534. 0D76BBC81CEDC1A0050F45EF /* View */ = {
  1535. isa = PBXGroup;
  1536. children = (
  1537. CE3EEF992D46370A001944DD /* CustomCGMOptionsView.swift */,
  1538. 38569352270B5E350002C50D /* CGMRootView.swift */,
  1539. CE7950232997D81700FA576E /* CGMSettingsView.swift */,
  1540. CE7950252998056D00FA576E /* CGMSetupView.swift */,
  1541. );
  1542. path = View;
  1543. sourceTree = "<group>";
  1544. };
  1545. 0EE66DD474AFFD4FD787D5B9 /* View */ = {
  1546. isa = PBXGroup;
  1547. children = (
  1548. BDA7593D2D37CFC000E649A4 /* CarbEntryEditorView.swift */,
  1549. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */,
  1550. );
  1551. path = View;
  1552. sourceTree = "<group>";
  1553. };
  1554. 110AEDE22C5193D100615CC9 /* Bolus */ = {
  1555. isa = PBXGroup;
  1556. children = (
  1557. 110AEDE02C5193D100615CC9 /* BolusIntent.swift */,
  1558. 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */,
  1559. );
  1560. path = Bolus;
  1561. sourceTree = "<group>";
  1562. };
  1563. 110AEDE62C51A0AE00615CC9 /* View */ = {
  1564. isa = PBXGroup;
  1565. children = (
  1566. 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */,
  1567. );
  1568. path = View;
  1569. sourceTree = "<group>";
  1570. };
  1571. 110AEDEA2C51A0AE00615CC9 /* ShortcutsConfig */ = {
  1572. isa = PBXGroup;
  1573. children = (
  1574. 110AEDE62C51A0AE00615CC9 /* View */,
  1575. 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */,
  1576. 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */,
  1577. 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */,
  1578. );
  1579. path = ShortcutsConfig;
  1580. sourceTree = "<group>";
  1581. };
  1582. 118DF7692C5ECBC60067FEB7 /* Override */ = {
  1583. isa = PBXGroup;
  1584. children = (
  1585. 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */,
  1586. 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */,
  1587. 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */,
  1588. 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */,
  1589. );
  1590. path = Override;
  1591. sourceTree = "<group>";
  1592. };
  1593. 18B49BC9587A59E3A347C1CD /* View */ = {
  1594. isa = PBXGroup;
  1595. children = (
  1596. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */,
  1597. );
  1598. path = View;
  1599. sourceTree = "<group>";
  1600. };
  1601. 190EBCC229FF134900BA767D /* UserInterfaceSettings */ = {
  1602. isa = PBXGroup;
  1603. children = (
  1604. 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */,
  1605. 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */,
  1606. 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */,
  1607. 190EBCC929FF13AF00BA767D /* View */,
  1608. );
  1609. path = UserInterfaceSettings;
  1610. sourceTree = "<group>";
  1611. };
  1612. 190EBCC929FF13AF00BA767D /* View */ = {
  1613. isa = PBXGroup;
  1614. children = (
  1615. 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */,
  1616. );
  1617. path = View;
  1618. sourceTree = "<group>";
  1619. };
  1620. 192F0FF5276AC36D0085BE4D /* Recovered References */ = {
  1621. isa = PBXGroup;
  1622. children = (
  1623. 199561C0275E61A50077B976 /* HealthKit.framework */,
  1624. );
  1625. name = "Recovered References";
  1626. sourceTree = "<group>";
  1627. };
  1628. 195D80B22AF696EE00D25097 /* DynamicSettings */ = {
  1629. isa = PBXGroup;
  1630. children = (
  1631. 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */,
  1632. 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */,
  1633. 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */,
  1634. 195D80B52AF6974200D25097 /* View */,
  1635. );
  1636. path = DynamicSettings;
  1637. sourceTree = "<group>";
  1638. };
  1639. 195D80B52AF6974200D25097 /* View */ = {
  1640. isa = PBXGroup;
  1641. children = (
  1642. 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */,
  1643. );
  1644. path = View;
  1645. sourceTree = "<group>";
  1646. };
  1647. 198377CF266BFEDE004DE65E /* Localizations */ = {
  1648. isa = PBXGroup;
  1649. children = (
  1650. 19D440A926B6FEBD008DA6C8 /* Main */,
  1651. );
  1652. path = Localizations;
  1653. sourceTree = "<group>";
  1654. };
  1655. 19D440A926B6FEBD008DA6C8 /* Main */ = {
  1656. isa = PBXGroup;
  1657. children = (
  1658. 8A9134292D63D9A1007F8874 /* Localizable.xcstrings */,
  1659. );
  1660. path = Main;
  1661. sourceTree = "<group>";
  1662. };
  1663. 19D466A129AA2B0A004D5F33 /* MealSettings */ = {
  1664. isa = PBXGroup;
  1665. children = (
  1666. 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */,
  1667. 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */,
  1668. 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */,
  1669. 19D466A829AA306E004D5F33 /* View */,
  1670. );
  1671. path = MealSettings;
  1672. sourceTree = "<group>";
  1673. };
  1674. 19D466A829AA306E004D5F33 /* View */ = {
  1675. isa = PBXGroup;
  1676. children = (
  1677. 19D466A929AA3099004D5F33 /* MealSettingsRootView.swift */,
  1678. );
  1679. path = View;
  1680. sourceTree = "<group>";
  1681. };
  1682. 19E1F7E629D0828B005C8D20 /* IconConfig */ = {
  1683. isa = PBXGroup;
  1684. children = (
  1685. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */,
  1686. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */,
  1687. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */,
  1688. 19E1F7ED29D088C0005C8D20 /* View */,
  1689. );
  1690. path = IconConfig;
  1691. sourceTree = "<group>";
  1692. };
  1693. 19E1F7ED29D088C0005C8D20 /* View */ = {
  1694. isa = PBXGroup;
  1695. children = (
  1696. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */,
  1697. 1967DFC129D053D300759F30 /* IconImage.swift */,
  1698. 1967DFBF29D053AC00759F30 /* IconSelection.swift */,
  1699. );
  1700. path = View;
  1701. sourceTree = "<group>";
  1702. };
  1703. 19F95FF129F10F9C00314DDC /* Stat */ = {
  1704. isa = PBXGroup;
  1705. children = (
  1706. BD249D952D42FCA800412DEB /* StatStateModel+Setup */,
  1707. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */,
  1708. 19F95FF429F10FCF00314DDC /* StatProvider.swift */,
  1709. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */,
  1710. 19F95FF829F10FF600314DDC /* View */,
  1711. );
  1712. path = Stat;
  1713. sourceTree = "<group>";
  1714. };
  1715. 19F95FF829F10FF600314DDC /* View */ = {
  1716. isa = PBXGroup;
  1717. children = (
  1718. BD249D842D42FBD200412DEB /* ViewElements */,
  1719. 19F95FF929F1102A00314DDC /* StatRootView.swift */,
  1720. DD98ACBF2D71013200C0778F /* StatChartUtils.swift */,
  1721. );
  1722. path = View;
  1723. sourceTree = "<group>";
  1724. };
  1725. 29B478DF61BF8D270F7D8954 /* Snooze */ = {
  1726. isa = PBXGroup;
  1727. children = (
  1728. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */,
  1729. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */,
  1730. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */,
  1731. 0A67A70F9438DB6586398458 /* View */,
  1732. );
  1733. path = Snooze;
  1734. sourceTree = "<group>";
  1735. };
  1736. 34CA4DF169B53D67EF18ED8A /* View */ = {
  1737. isa = PBXGroup;
  1738. children = (
  1739. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */,
  1740. );
  1741. path = View;
  1742. sourceTree = "<group>";
  1743. };
  1744. 3811DE0325C9D31700A708ED /* Modules */ = {
  1745. isa = PBXGroup;
  1746. children = (
  1747. DDD163032C4C67B400CD525A /* Adjustments */,
  1748. DD1745382C55BF8B00211FAC /* AlgorithmAdvancedSettings */,
  1749. DD1745422C55C5C400211FAC /* AutosensSettings */,
  1750. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */,
  1751. 3811DE0425C9D32E00A708ED /* Base */,
  1752. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */,
  1753. DD09D4792C5986BA003FEA5D /* CalendarEventSettings */,
  1754. CEE9A64D2BBB411C00EB5194 /* Calibrations */,
  1755. E42231DBF0DBE2B4B92D1B15 /* CarbRatioEditor */,
  1756. F75CB57ED6971B46F8756083 /* CGMSettings */,
  1757. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */,
  1758. E592A3762CEEC038009A472C /* ContactImage */,
  1759. 9E56E3626FAD933385101B76 /* DataTable */,
  1760. 195D80B22AF696EE00D25097 /* DynamicSettings */,
  1761. DD17454C2C55CA0200211FAC /* GeneralSettings */,
  1762. F66B236E00924A05D6A9F9DF /* GlucoseNotificationSettings */,
  1763. F90692CD274B99850037068D /* HealthKit */,
  1764. 3811DE2725C9D49500A708ED /* Home */,
  1765. 19E1F7E629D0828B005C8D20 /* IconConfig */,
  1766. D8F047E14D567F2B5DBEFD96 /* ISFEditor */,
  1767. DDF847DB2C5C28550049BB3B /* LiveActivitySettings */,
  1768. 3811DE1A25C9D48300A708ED /* Main */,
  1769. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */,
  1770. 19D466A129AA2B0A004D5F33 /* MealSettings */,
  1771. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */,
  1772. 99C01B871ACAB3F32CE755C7 /* PumpConfig */,
  1773. DD9ECB6B2CA99FA400AA7C45 /* RemoteControlConfig */,
  1774. 3811DE3825C9D4A100A708ED /* Settings */,
  1775. 110AEDEA2C51A0AE00615CC9 /* ShortcutsConfig */,
  1776. DD17451E2C55520000211FAC /* SMBSettings */,
  1777. 29B478DF61BF8D270F7D8954 /* Snooze */,
  1778. 19F95FF129F10F9C00314DDC /* Stat */,
  1779. DD17452C2C55AE3500211FAC /* TargetBehavoir */,
  1780. 6517011F19F244F64E1FF14B /* TargetsEditor */,
  1781. C2C98283C436DB934D7E7994 /* Treatments */,
  1782. 190EBCC229FF134900BA767D /* UserInterfaceSettings */,
  1783. CE94597C29E9E1CD0047C9C6 /* WatchConfig */,
  1784. );
  1785. path = Modules;
  1786. sourceTree = "<group>";
  1787. };
  1788. 3811DE0425C9D32E00A708ED /* Base */ = {
  1789. isa = PBXGroup;
  1790. children = (
  1791. 3811DE0725C9D32E00A708ED /* BaseView.swift */,
  1792. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */,
  1793. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */,
  1794. );
  1795. path = Base;
  1796. sourceTree = "<group>";
  1797. };
  1798. 3811DE1325C9D39E00A708ED /* Sources */ = {
  1799. isa = PBXGroup;
  1800. children = (
  1801. CE7CA3422A064973004BE681 /* Shortcuts */,
  1802. 3811DEDE25C9E2DD00A708ED /* Application */,
  1803. 3811DF0A25CAAAA500A708ED /* APS */,
  1804. E00EEBFC27368630002FF094 /* Assemblies */,
  1805. 38E98A3225F5300800C0CED0 /* Config */,
  1806. 388E5A5A25B6F05F0019842D /* Helpers */,
  1807. 38DF178A27733E0F00B3528F /* AnimatedBackground */,
  1808. 198377CF266BFEDE004DE65E /* Localizations */,
  1809. 38E98A1A25F52C9300C0CED0 /* Logger */,
  1810. 388E5A5925B6F0250019842D /* Models */,
  1811. 3811DE0325C9D31700A708ED /* Modules */,
  1812. 3811DE1425C9D40400A708ED /* Router */,
  1813. 3811DE9125C9D88200A708ED /* Services */,
  1814. 3883582E25EEAFC000E024B2 /* Views */,
  1815. );
  1816. path = Sources;
  1817. sourceTree = "<group>";
  1818. };
  1819. 3811DE1425C9D40400A708ED /* Router */ = {
  1820. isa = PBXGroup;
  1821. children = (
  1822. 3811DE1525C9D40400A708ED /* Screen.swift */,
  1823. 3811DE1625C9D40400A708ED /* Router.swift */,
  1824. );
  1825. path = Router;
  1826. sourceTree = "<group>";
  1827. };
  1828. 3811DE1A25C9D48300A708ED /* Main */ = {
  1829. isa = PBXGroup;
  1830. children = (
  1831. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */,
  1832. 3811DE1C25C9D48300A708ED /* MainProvider.swift */,
  1833. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */,
  1834. 3811DE1F25C9D48300A708ED /* View */,
  1835. );
  1836. path = Main;
  1837. sourceTree = "<group>";
  1838. };
  1839. 3811DE1F25C9D48300A708ED /* View */ = {
  1840. isa = PBXGroup;
  1841. children = (
  1842. 3BAD36B12D7CDC1400CC298D /* MainLoadingView.swift */,
  1843. 3811DE2025C9D48300A708ED /* MainRootView.swift */,
  1844. );
  1845. path = View;
  1846. sourceTree = "<group>";
  1847. };
  1848. 3811DE2725C9D49500A708ED /* Home */ = {
  1849. isa = PBXGroup;
  1850. children = (
  1851. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */,
  1852. 3811DE2925C9D49500A708ED /* HomeProvider.swift */,
  1853. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */,
  1854. 3B4196DF2D8C4BBB0091DFF7 /* HomeStateModel+CGM.swift */,
  1855. 58645B972CA2D16A008AFCE7 /* HomeStateModel+Setup */,
  1856. 3811DE2C25C9D49500A708ED /* View */,
  1857. );
  1858. path = Home;
  1859. sourceTree = "<group>";
  1860. };
  1861. 3811DE2C25C9D49500A708ED /* View */ = {
  1862. isa = PBXGroup;
  1863. children = (
  1864. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */,
  1865. 3833B51E260264AC003021B3 /* Chart */,
  1866. 3833B51F260264B6003021B3 /* Header */,
  1867. );
  1868. path = View;
  1869. sourceTree = "<group>";
  1870. };
  1871. 3811DE3825C9D4A100A708ED /* Settings */ = {
  1872. isa = PBXGroup;
  1873. children = (
  1874. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */,
  1875. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */,
  1876. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */,
  1877. 3811DE3B25C9D4A100A708ED /* View */,
  1878. BDCAF2372C639F35002DC907 /* SettingItems.swift */,
  1879. );
  1880. path = Settings;
  1881. sourceTree = "<group>";
  1882. };
  1883. 3811DE3B25C9D4A100A708ED /* View */ = {
  1884. isa = PBXGroup;
  1885. children = (
  1886. DD1745112C54168300211FAC /* Subviews */,
  1887. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */,
  1888. CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */,
  1889. 65070A322BFDCB83006F213F /* TidepoolStartView.swift */,
  1890. );
  1891. path = View;
  1892. sourceTree = "<group>";
  1893. };
  1894. 3811DE9125C9D88200A708ED /* Services */ = {
  1895. isa = PBXGroup;
  1896. children = (
  1897. DDA9AC072D67291600E6F1A9 /* AppVersionChecker */,
  1898. BD7DB88C2D2C49FF003D3155 /* BolusCalculator */,
  1899. 3811DE9225C9D88200A708ED /* Appearance */,
  1900. CEB434E128B8F9BC00B70274 /* Bluetooth */,
  1901. 3862CC2C2743F9DC00BF832C /* Calendar */,
  1902. E592A37E2CEEC046009A472C /* ContactImage */,
  1903. F90692A8274B7A980037068D /* HealthKit */,
  1904. 6B1A8D2C2B156EC100E76752 /* LiveActivity */,
  1905. 3811DE9425C9D88200A708ED /* Network */,
  1906. 38B4F3C425E5016800E76A18 /* Notifications */,
  1907. DD9ECB662CA99EFE00AA7C45 /* RemoteControl */,
  1908. 38AEE75025F021F10013F05B /* SettingsManager */,
  1909. 3811DE9825C9D88300A708ED /* Storage */,
  1910. 3811DEA525C9D88300A708ED /* UnlockManager */,
  1911. 38E87406274F9AA500975559 /* UserNotifications */,
  1912. 38E8754D275556E100975559 /* WatchManager */,
  1913. );
  1914. path = Services;
  1915. sourceTree = "<group>";
  1916. };
  1917. 3811DE9225C9D88200A708ED /* Appearance */ = {
  1918. isa = PBXGroup;
  1919. children = (
  1920. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */,
  1921. );
  1922. path = Appearance;
  1923. sourceTree = "<group>";
  1924. };
  1925. 3811DE9425C9D88200A708ED /* Network */ = {
  1926. isa = PBXGroup;
  1927. children = (
  1928. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */,
  1929. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */,
  1930. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */,
  1931. DDC9B9962CFD2332003E7721 /* Nightscout */,
  1932. 38FE826925CC82DB001FF17A /* NetworkService.swift */,
  1933. CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */,
  1934. );
  1935. path = Network;
  1936. sourceTree = "<group>";
  1937. };
  1938. 3811DE9825C9D88300A708ED /* Storage */ = {
  1939. isa = PBXGroup;
  1940. children = (
  1941. 383948D525CD4D8900E91849 /* FileStorage.swift */,
  1942. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */,
  1943. 3811DE9925C9D88300A708ED /* Cache */,
  1944. 38E44529274E40F100EC9A94 /* Disk */,
  1945. 3811DE9D25C9D88300A708ED /* Keychain */,
  1946. );
  1947. path = Storage;
  1948. sourceTree = "<group>";
  1949. };
  1950. 3811DE9925C9D88300A708ED /* Cache */ = {
  1951. isa = PBXGroup;
  1952. children = (
  1953. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */,
  1954. 3811DE9B25C9D88300A708ED /* Cache.swift */,
  1955. );
  1956. path = Cache;
  1957. sourceTree = "<group>";
  1958. };
  1959. 3811DE9D25C9D88300A708ED /* Keychain */ = {
  1960. isa = PBXGroup;
  1961. children = (
  1962. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */,
  1963. 3811DE9F25C9D88300A708ED /* Keychain.swift */,
  1964. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */,
  1965. );
  1966. path = Keychain;
  1967. sourceTree = "<group>";
  1968. };
  1969. 3811DEA525C9D88300A708ED /* UnlockManager */ = {
  1970. isa = PBXGroup;
  1971. children = (
  1972. 3811DEA625C9D88300A708ED /* UnlockManager.swift */,
  1973. );
  1974. path = UnlockManager;
  1975. sourceTree = "<group>";
  1976. };
  1977. 3811DED425C9E1E300A708ED /* Resources */ = {
  1978. isa = PBXGroup;
  1979. children = (
  1980. 388E597125AD9CF10019842D /* json */,
  1981. 388E596E25AD96040019842D /* javascript */,
  1982. 3811DEC725C9DA7300A708ED /* Trio.entitlements */,
  1983. 388E596425AD948E0019842D /* Info.plist */,
  1984. 8A91342B2D63D9A2007F8874 /* InfoPlist.xcstrings */,
  1985. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */,
  1986. );
  1987. path = Resources;
  1988. sourceTree = "<group>";
  1989. };
  1990. 3811DEDE25C9E2DD00A708ED /* Application */ = {
  1991. isa = PBXGroup;
  1992. children = (
  1993. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */,
  1994. 388E595B25AD948C0019842D /* TrioApp.swift */,
  1995. BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */,
  1996. );
  1997. path = Application;
  1998. sourceTree = "<group>";
  1999. };
  2000. 3811DEE325CA063400A708ED /* PropertyWrappers */ = {
  2001. isa = PBXGroup;
  2002. children = (
  2003. 38E44527274E401C00EC9A94 /* Protected.swift */,
  2004. 3811DEE425CA063400A708ED /* Injected.swift */,
  2005. 3811DEE625CA063400A708ED /* SyncAccess.swift */,
  2006. 3811DEE725CA063400A708ED /* PersistedProperty.swift */,
  2007. );
  2008. path = PropertyWrappers;
  2009. sourceTree = "<group>";
  2010. };
  2011. 3811DF0A25CAAAA500A708ED /* APS */ = {
  2012. isa = PBXGroup;
  2013. children = (
  2014. CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */,
  2015. 3811DF0F25CAAAE200A708ED /* APSManager.swift */,
  2016. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */,
  2017. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */,
  2018. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */,
  2019. 3856933F270B57A00002C50D /* CGM */,
  2020. 38A504F625DDA0E200C5B9E8 /* Extensions */,
  2021. 388E5A5825B6F0070019842D /* OpenAPS */,
  2022. 38A0362725ECF05300FCBB52 /* Storage */,
  2023. );
  2024. path = APS;
  2025. sourceTree = "<group>";
  2026. };
  2027. 3818AA44274C229000843DB3 /* Packages */ = {
  2028. isa = PBXGroup;
  2029. children = (
  2030. 3818AA45274C229000843DB3 /* LibreTransmitter */,
  2031. );
  2032. name = Packages;
  2033. sourceTree = "<group>";
  2034. };
  2035. 3818AA48274C267000843DB3 /* Frameworks */ = {
  2036. isa = PBXGroup;
  2037. children = (
  2038. 3B4BA7882D8DC0EC0069D5B8 /* TidepoolServiceKit.framework */,
  2039. 3B4BA7892D8DC0EC0069D5B8 /* TidepoolServiceKitUI.framework */,
  2040. 3B4BA75B2D8DBD690069D5B8 /* CGMBLEKit.framework */,
  2041. 3B4BA75C2D8DBD690069D5B8 /* CGMBLEKitUI.framework */,
  2042. 3B4BA75D2D8DBD690069D5B8 /* DanaKit.framework */,
  2043. 3B4BA75E2D8DBD690069D5B8 /* G7SensorKit.framework */,
  2044. 3B4BA75F2D8DBD690069D5B8 /* G7SensorKitUI.framework */,
  2045. 3B4BA7602D8DBD690069D5B8 /* LibreTransmitter.framework */,
  2046. 3B4BA7612D8DBD690069D5B8 /* LibreTransmitterUI.framework */,
  2047. 3B4BA7622D8DBD690069D5B8 /* MinimedKit.framework */,
  2048. 3B4BA7632D8DBD690069D5B8 /* MinimedKitUI.framework */,
  2049. 3B4BA7642D8DBD690069D5B8 /* OmniBLE.framework */,
  2050. 3B4BA7652D8DBD690069D5B8 /* OmniKit.framework */,
  2051. 3B4BA7662D8DBD690069D5B8 /* OmniKitUI.framework */,
  2052. 3B4BA7672D8DBD690069D5B8 /* RileyLinkBLEKit.framework */,
  2053. 3B4BA7682D8DBD690069D5B8 /* RileyLinkKit.framework */,
  2054. 3B4BA7692D8DBD690069D5B8 /* RileyLinkKitUI.framework */,
  2055. CE95BF492BA5CED700DC3DE3 /* LoopKit.framework */,
  2056. CE95BF4A2BA5CED700DC3DE3 /* LoopKitUI.framework */,
  2057. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */,
  2058. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */,
  2059. CEC751D529D88262006E9D24 /* MinimedKit.framework */,
  2060. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */,
  2061. CEC751D129D88257006E9D24 /* OmniKit.framework */,
  2062. CEC751D329D88257006E9D24 /* OmniKitUI.framework */,
  2063. CE79502D29980E4D00FA576E /* ShareClientUI.framework */,
  2064. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */,
  2065. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */,
  2066. CE398D1A297D69A900DF218F /* ShareClient.framework */,
  2067. CE398D17297C9EE800DF218F /* G7SensorKit.framework */,
  2068. CE398D012977349800DF218F /* CryptoKit.framework */,
  2069. CE6B025628F350FF000C5502 /* HealthKit.framework */,
  2070. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */,
  2071. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */,
  2072. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */,
  2073. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */,
  2074. 38E873FD274F761800975559 /* CoreNFC.framework */,
  2075. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */,
  2076. 3818AA4C274C26A300843DB3 /* LoopKit.framework */,
  2077. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */,
  2078. 3818AA4E274C26A300843DB3 /* MockKit.framework */,
  2079. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */,
  2080. 3818AA51274C26A300843DB3 /* MinimedKit.framework */,
  2081. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */,
  2082. 3818AA53274C26A300843DB3 /* OmniKit.framework */,
  2083. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */,
  2084. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */,
  2085. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */,
  2086. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */,
  2087. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */,
  2088. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */,
  2089. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */,
  2090. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */,
  2091. );
  2092. name = Frameworks;
  2093. sourceTree = "<group>";
  2094. };
  2095. 3833B51E260264AC003021B3 /* Chart */ = {
  2096. isa = PBXGroup;
  2097. children = (
  2098. DDA6E24F2D22187500C2988C /* ChartLegendView.swift */,
  2099. BD3CC0712B0B89D50013189E /* MainChartView.swift */,
  2100. BDDAF9F12D0055CC00B34E7A /* ChartElements */,
  2101. );
  2102. path = Chart;
  2103. sourceTree = "<group>";
  2104. };
  2105. 3833B51F260264B6003021B3 /* Header */ = {
  2106. isa = PBXGroup;
  2107. children = (
  2108. DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */,
  2109. DDA6E2842D2361F800C2988C /* LoopStatusView.swift */,
  2110. 383420D525FFE38C002D46C1 /* LoopView.swift */,
  2111. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */,
  2112. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */,
  2113. );
  2114. path = Header;
  2115. sourceTree = "<group>";
  2116. };
  2117. 3856933F270B57A00002C50D /* CGM */ = {
  2118. isa = PBXGroup;
  2119. children = (
  2120. CEE9A65A2BBB41AD00EB5194 /* Calibrations */,
  2121. F816825F28DB441800054060 /* BluetoothTransmitter.swift */,
  2122. F816825D28DB441200054060 /* HeartBeatManager.swift */,
  2123. 38569346270B5DFB0002C50D /* AppGroupSource.swift */,
  2124. 38569344270B5DFA0002C50D /* CGMType.swift */,
  2125. 38569345270B5DFA0002C50D /* GlucoseSource.swift */,
  2126. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */,
  2127. CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */,
  2128. );
  2129. path = CGM;
  2130. sourceTree = "<group>";
  2131. };
  2132. 3862CC2C2743F9DC00BF832C /* Calendar */ = {
  2133. isa = PBXGroup;
  2134. children = (
  2135. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */,
  2136. );
  2137. path = Calendar;
  2138. sourceTree = "<group>";
  2139. };
  2140. 3883582E25EEAFC000E024B2 /* Views */ = {
  2141. isa = PBXGroup;
  2142. children = (
  2143. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */,
  2144. 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */,
  2145. 383420D825FFEB3F002D46C1 /* Popup.swift */,
  2146. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */,
  2147. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */,
  2148. 38DF1785276A73D400B3528F /* TagCloudView.swift */,
  2149. DD88C8E12C50420800F2D558 /* DefinitionRow.swift */,
  2150. DD1745282C55642100211FAC /* SettingInputSection.swift */,
  2151. DD17452A2C556E8100211FAC /* SettingInputHintView.swift */,
  2152. );
  2153. path = Views;
  2154. sourceTree = "<group>";
  2155. };
  2156. 388E594F25AD948C0019842D = {
  2157. isa = PBXGroup;
  2158. children = (
  2159. DDA9AC0A2D678DAD00E6F1A9 /* blacklisted-versions.json */,
  2160. CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */,
  2161. 38F3783A2613555C009DB701 /* Config.xcconfig */,
  2162. BD1CF8B72C1A4A8400CB930A /* ConfigOverride.xcconfig */,
  2163. 388E595A25AD948C0019842D /* Trio */,
  2164. 587A54C82BCDCE0F009D38E2 /* Model */,
  2165. 38FCF3EE25E9028E0078B0D1 /* TrioTests */,
  2166. 6B1A8D1C2B14D91600E76752 /* LiveActivity */,
  2167. BDFF7AA12D25FAC70016C40C /* Trio Watch App */,
  2168. BDFF7A9C2D25FA730016C40C /* Trio Watch App Extension */,
  2169. BDFF7AA02D25FAA80016C40C /* Trio Watch App Tests */,
  2170. DD09D6492D2B6253000D82C9 /* Trio Watch Complication */,
  2171. 3818AA48274C267000843DB3 /* Frameworks */,
  2172. 3818AA44274C229000843DB3 /* Packages */,
  2173. 388E595925AD948C0019842D /* Products */,
  2174. 192F0FF5276AC36D0085BE4D /* Recovered References */,
  2175. );
  2176. sourceTree = "<group>";
  2177. };
  2178. 388E595925AD948C0019842D /* Products */ = {
  2179. isa = PBXGroup;
  2180. children = (
  2181. 388E595825AD948C0019842D /* Trio.app */,
  2182. 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */,
  2183. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */,
  2184. BDFF797C2D25AA870016C40C /* Trio Watch App.app */,
  2185. BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */,
  2186. BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */,
  2187. );
  2188. name = Products;
  2189. sourceTree = "<group>";
  2190. };
  2191. 388E595A25AD948C0019842D /* Trio */ = {
  2192. isa = PBXGroup;
  2193. children = (
  2194. 3B3B57C82DA07B3400849D16 /* GoogleService-Info.plist */,
  2195. 3811DED425C9E1E300A708ED /* Resources */,
  2196. 3811DE1325C9D39E00A708ED /* Sources */,
  2197. );
  2198. path = Trio;
  2199. sourceTree = "<group>";
  2200. };
  2201. 388E5A5825B6F0070019842D /* OpenAPS */ = {
  2202. isa = PBXGroup;
  2203. children = (
  2204. 388E596B25AD95110019842D /* OpenAPS.swift */,
  2205. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */,
  2206. 384E803725C388640086DB71 /* Script.swift */,
  2207. 3821ED4B25DD18BA00BC42AD /* Constants.swift */,
  2208. );
  2209. path = OpenAPS;
  2210. sourceTree = "<group>";
  2211. };
  2212. 388E5A5925B6F0250019842D /* Models */ = {
  2213. isa = PBXGroup;
  2214. children = (
  2215. DDEBB05B2D89E9050032305D /* TimeInRangeType.swift */,
  2216. 3B2F77852D7E52ED005ED9FA /* TDD.swift */,
  2217. DD4FFF322D458EE600B6CFF9 /* GarminWatchState.swift */,
  2218. DD3078692D42F94000DE0490 /* GarminDevice.swift */,
  2219. DD3078672D42F5CE00DE0490 /* WatchGlucoseObject.swift */,
  2220. BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */,
  2221. BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */,
  2222. BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */,
  2223. BDA25EFC2D261BF200035F34 /* WatchState.swift */,
  2224. 715120D12D3C2B84005D9FB6 /* GlucoseNotificationsOption.swift */,
  2225. DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */,
  2226. DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */,
  2227. 388E5A5F25B6F2310019842D /* Autosens.swift */,
  2228. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */,
  2229. 38D0B3B525EBE24900CB6E88 /* Battery.swift */,
  2230. 382C134A25F14E3700715CE1 /* BGTargets.swift */,
  2231. 3870FF4225EC13F40088248F /* BloodGlucose.swift */,
  2232. 38A9260425F012D8009E3739 /* CarbRatios.swift */,
  2233. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */,
  2234. 3811DF0125CA9FEA00A708ED /* Credentials.swift */,
  2235. E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */,
  2236. 38AEE73C25F0200C0013F05B /* TrioSettings.swift */,
  2237. 383948D925CD64D500E91849 /* Glucose.swift */,
  2238. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */,
  2239. 38887CCD25F5725200944304 /* IOBEntry.swift */,
  2240. DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */,
  2241. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */,
  2242. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */,
  2243. 3895E4C525B9E00D00214B37 /* Preferences.swift */,
  2244. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */,
  2245. 3883583325EEB38000E024B2 /* PumpSettings.swift */,
  2246. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */,
  2247. 38BF021C25E7E3AF00579895 /* Reservoir.swift */,
  2248. 38A0364125ED069400FCBB52 /* TempBasal.swift */,
  2249. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */,
  2250. 3811DE8E25C9D80400A708ED /* User.swift */,
  2251. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */,
  2252. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */,
  2253. CE82E02628E869DF00473A9C /* AlertEntry.swift */,
  2254. 19B0EF2028F6D66200069496 /* Statistics.swift */,
  2255. 19012CDB291D2CB900FB8210 /* LoopStats.swift */,
  2256. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */,
  2257. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */,
  2258. 1967DFBD29D052C200759F30 /* Icons.swift */,
  2259. 19D4E4EA29FC6A9F00351451 /* Charts.swift */,
  2260. 19A910352A24D6D700C8951B /* DateFilter.swift */,
  2261. 193F6CDC2A512C8F001240FD /* Loops.swift */,
  2262. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */,
  2263. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */,
  2264. 583684072BD195A700070A60 /* Determination.swift */,
  2265. BDC2EA462C3045AD00E5BBD0 /* Override.swift */,
  2266. DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */,
  2267. DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */,
  2268. DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */,
  2269. DDD6D4D22CDE90720029439A /* EstimatedA1cDisplayUnit.swift */,
  2270. );
  2271. path = Models;
  2272. sourceTree = "<group>";
  2273. };
  2274. 388E5A5A25B6F05F0019842D /* Helpers */ = {
  2275. isa = PBXGroup;
  2276. children = (
  2277. DDCAE8322D78D49C00B1BB51 /* TherapySettingsUtil.swift */,
  2278. BD249DA62D42FE3800412DEB /* Calendar+GlucoseStatsChart.swift */,
  2279. DD73FA0E2D74F57300D19D1E /* BackgroundTask+Helper.swift */,
  2280. CEF1ED6A2D58FB4600FAF41E /* CGMOptions.swift */,
  2281. C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */,
  2282. DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */,
  2283. 38F37827261260DC009DB701 /* Color+Extensions.swift */,
  2284. 389ECE042601144100D86C4F /* ConcurrentMap.swift */,
  2285. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */,
  2286. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */,
  2287. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */,
  2288. 389487392614928B004DF424 /* DispatchTimer.swift */,
  2289. 3811DE5425C9D4D500A708ED /* Formatters.swift */,
  2290. 38FEF412273B317A00574A46 /* HKUnit.swift */,
  2291. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */,
  2292. 389A571F26079BAA00BC102F /* Interpolation.swift */,
  2293. 388E5A5B25B6F0770019842D /* JSON.swift */,
  2294. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */,
  2295. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */,
  2296. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */,
  2297. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */,
  2298. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */,
  2299. 3811DE5525C9D4D500A708ED /* Publisher.swift */,
  2300. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */,
  2301. 3811DEE325CA063400A708ED /* PropertyWrappers */,
  2302. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */,
  2303. CEB434E428B8FF5D00B70274 /* UIColor.swift */,
  2304. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */,
  2305. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */,
  2306. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */,
  2307. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */,
  2308. BD1661302B82ADAB00256551 /* CustomProgressView.swift */,
  2309. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */,
  2310. DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */,
  2311. DD6B7CB12C7B6F0800B75029 /* Rounding.swift */,
  2312. 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */,
  2313. );
  2314. path = Helpers;
  2315. sourceTree = "<group>";
  2316. };
  2317. 38A0362725ECF05300FCBB52 /* Storage */ = {
  2318. isa = PBXGroup;
  2319. children = (
  2320. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */,
  2321. DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */,
  2322. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */,
  2323. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */,
  2324. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */,
  2325. CE82E02428E867BA00473A9C /* AlertStorage.swift */,
  2326. BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */,
  2327. 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */,
  2328. BD4D73A12D15A4220052227B /* TDDStorage.swift */,
  2329. );
  2330. path = Storage;
  2331. sourceTree = "<group>";
  2332. };
  2333. 38A504F625DDA0E200C5B9E8 /* Extensions */ = {
  2334. isa = PBXGroup;
  2335. children = (
  2336. DDB37CC62D05127500D99BF4 /* FontExtensions.swift */,
  2337. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */,
  2338. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */,
  2339. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */,
  2340. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */,
  2341. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */,
  2342. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */,
  2343. );
  2344. path = Extensions;
  2345. sourceTree = "<group>";
  2346. };
  2347. 38AEE75025F021F10013F05B /* SettingsManager */ = {
  2348. isa = PBXGroup;
  2349. children = (
  2350. 38AEE75125F022080013F05B /* SettingsManager.swift */,
  2351. );
  2352. path = SettingsManager;
  2353. sourceTree = "<group>";
  2354. };
  2355. 38B4F3C425E5016800E76A18 /* Notifications */ = {
  2356. isa = PBXGroup;
  2357. children = (
  2358. 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */,
  2359. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */,
  2360. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */,
  2361. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */,
  2362. );
  2363. path = Notifications;
  2364. sourceTree = "<group>";
  2365. };
  2366. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */ = {
  2367. isa = PBXGroup;
  2368. children = (
  2369. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */,
  2370. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */,
  2371. );
  2372. path = SwiftNotificationCenter;
  2373. sourceTree = "<group>";
  2374. };
  2375. 38DF178A27733E0F00B3528F /* AnimatedBackground */ = {
  2376. isa = PBXGroup;
  2377. children = (
  2378. 38DF178B27733E6800B3528F /* snow.sks */,
  2379. 38DF178C27733E6800B3528F /* Assets.xcassets */,
  2380. 38DF178F27733EAD00B3528F /* SnowScene.swift */,
  2381. );
  2382. path = AnimatedBackground;
  2383. sourceTree = "<group>";
  2384. };
  2385. 38E44529274E40F100EC9A94 /* Disk */ = {
  2386. isa = PBXGroup;
  2387. children = (
  2388. 38E4452C274E411600EC9A94 /* Disk.swift */,
  2389. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */,
  2390. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */,
  2391. 38E44532274E411700EC9A94 /* Disk+Codable.swift */,
  2392. 38E4452B274E411600EC9A94 /* Disk+Data.swift */,
  2393. 38E44533274E411700EC9A94 /* Disk+Errors.swift */,
  2394. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */,
  2395. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */,
  2396. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */,
  2397. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */,
  2398. );
  2399. path = Disk;
  2400. sourceTree = "<group>";
  2401. };
  2402. 38E87406274F9AA500975559 /* UserNotifications */ = {
  2403. isa = PBXGroup;
  2404. children = (
  2405. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */,
  2406. );
  2407. path = UserNotifications;
  2408. sourceTree = "<group>";
  2409. };
  2410. 38E8754D275556E100975559 /* WatchManager */ = {
  2411. isa = PBXGroup;
  2412. children = (
  2413. BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */,
  2414. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */,
  2415. );
  2416. path = WatchManager;
  2417. sourceTree = "<group>";
  2418. };
  2419. 38E98A1A25F52C9300C0CED0 /* Logger */ = {
  2420. isa = PBXGroup;
  2421. children = (
  2422. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */,
  2423. 38E98A1C25F52C9300C0CED0 /* Logger.swift */,
  2424. 38E98A1D25F52C9300C0CED0 /* IssueReporter */,
  2425. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */,
  2426. );
  2427. path = Logger;
  2428. sourceTree = "<group>";
  2429. };
  2430. 38E98A1D25F52C9300C0CED0 /* IssueReporter */ = {
  2431. isa = PBXGroup;
  2432. children = (
  2433. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */,
  2434. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */,
  2435. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */,
  2436. );
  2437. path = IssueReporter;
  2438. sourceTree = "<group>";
  2439. };
  2440. 38E98A3225F5300800C0CED0 /* Config */ = {
  2441. isa = PBXGroup;
  2442. children = (
  2443. 38E98A2F25F52FF700C0CED0 /* Config.swift */,
  2444. );
  2445. path = Config;
  2446. sourceTree = "<group>";
  2447. };
  2448. 38FCF3EE25E9028E0078B0D1 /* TrioTests */ = {
  2449. isa = PBXGroup;
  2450. children = (
  2451. BD8FC05C2D6618BE00B95AED /* BolusCalculatorTests */,
  2452. BD8FC0552D66187700B95AED /* CoreDataTests */,
  2453. 38FCF3F125E9028E0078B0D1 /* Info.plist */,
  2454. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */,
  2455. CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */,
  2456. CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */,
  2457. BD8FC0532D66186000B95AED /* TestError.swift */,
  2458. );
  2459. path = TrioTests;
  2460. sourceTree = "<group>";
  2461. };
  2462. 4E8C7B59F8065047ECE20965 /* View */ = {
  2463. isa = PBXGroup;
  2464. children = (
  2465. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */,
  2466. );
  2467. path = View;
  2468. sourceTree = "<group>";
  2469. };
  2470. 4F4AE4D901E8BA872B207D7F /* View */ = {
  2471. isa = PBXGroup;
  2472. children = (
  2473. DD6B7CB72C7BAC1B00B75029 /* ProfileImport */,
  2474. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */,
  2475. 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */,
  2476. 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */,
  2477. 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */,
  2478. );
  2479. path = View;
  2480. sourceTree = "<group>";
  2481. };
  2482. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */ = {
  2483. isa = PBXGroup;
  2484. children = (
  2485. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */,
  2486. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */,
  2487. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */,
  2488. 84BDC840A57C65A1E6F9F780 /* View */,
  2489. );
  2490. path = ManualTempBasal;
  2491. sourceTree = "<group>";
  2492. };
  2493. 510CCF29FD3216C5BBC49A15 /* View */ = {
  2494. isa = PBXGroup;
  2495. children = (
  2496. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */,
  2497. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */,
  2498. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */,
  2499. );
  2500. path = View;
  2501. sourceTree = "<group>";
  2502. };
  2503. 54946647FDCFE43028F60511 /* View */ = {
  2504. isa = PBXGroup;
  2505. children = (
  2506. D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */,
  2507. );
  2508. path = View;
  2509. sourceTree = "<group>";
  2510. };
  2511. 5825D1622BD405AE00F36E9B /* Helper */ = {
  2512. isa = PBXGroup;
  2513. children = (
  2514. 49B9B57E2D5768D2009C6B59 /* AdjustmentStored+Helper.swift */,
  2515. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */,
  2516. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */,
  2517. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */,
  2518. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */,
  2519. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */,
  2520. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */,
  2521. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */,
  2522. 581AC4382BE22ED10038760C /* JSONConverter.swift */,
  2523. BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */,
  2524. 582FAE422C05102C00D1C13F /* CoreDataError.swift */,
  2525. BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */,
  2526. BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */,
  2527. BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */,
  2528. BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */,
  2529. 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */,
  2530. BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */,
  2531. );
  2532. path = Helper;
  2533. sourceTree = "<group>";
  2534. };
  2535. 58645B972CA2D16A008AFCE7 /* HomeStateModel+Setup */ = {
  2536. isa = PBXGroup;
  2537. children = (
  2538. 3B2F77872D7E5387005ED9FA /* CurrentTDDSetup.swift */,
  2539. BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */,
  2540. BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */,
  2541. BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */,
  2542. 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */,
  2543. 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */,
  2544. 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */,
  2545. 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */,
  2546. 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */,
  2547. 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */,
  2548. 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */,
  2549. 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */,
  2550. );
  2551. path = "HomeStateModel+Setup";
  2552. sourceTree = "<group>";
  2553. };
  2554. 587A54C82BCDCE0F009D38E2 /* Model */ = {
  2555. isa = PBXGroup;
  2556. children = (
  2557. 3BAD36CB2D7D420500CC298D /* CoreDataInitializationCoordinator.swift */,
  2558. BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */,
  2559. BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */,
  2560. DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */,
  2561. DDE179112C9100FA003CDDB7 /* Classes+Properties */,
  2562. 5825D1622BD405AE00F36E9B /* Helper */,
  2563. );
  2564. path = Model;
  2565. sourceTree = "<group>";
  2566. };
  2567. 6517011F19F244F64E1FF14B /* TargetsEditor */ = {
  2568. isa = PBXGroup;
  2569. children = (
  2570. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */,
  2571. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */,
  2572. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */,
  2573. 34CA4DF169B53D67EF18ED8A /* View */,
  2574. );
  2575. path = TargetsEditor;
  2576. sourceTree = "<group>";
  2577. };
  2578. 6B1A8D1C2B14D91600E76752 /* LiveActivity */ = {
  2579. isa = PBXGroup;
  2580. children = (
  2581. DDCEBF412CC1B42500DF4C36 /* Views */,
  2582. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */,
  2583. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */,
  2584. 6B1A8D232B14D91700E76752 /* Assets.xcassets */,
  2585. 6B1A8D252B14D91700E76752 /* Info.plist */,
  2586. DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */,
  2587. );
  2588. path = LiveActivity;
  2589. sourceTree = "<group>";
  2590. };
  2591. 6B1A8D2C2B156EC100E76752 /* LiveActivity */ = {
  2592. isa = PBXGroup;
  2593. children = (
  2594. 6B1A8D2D2B156EEF00E76752 /* LiveActivityManager.swift */,
  2595. 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */,
  2596. BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */,
  2597. BDF34F882C10C65E00D51995 /* Data */,
  2598. );
  2599. path = LiveActivity;
  2600. sourceTree = "<group>";
  2601. };
  2602. 84BDC840A57C65A1E6F9F780 /* View */ = {
  2603. isa = PBXGroup;
  2604. children = (
  2605. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */,
  2606. );
  2607. path = View;
  2608. sourceTree = "<group>";
  2609. };
  2610. 99C01B871ACAB3F32CE755C7 /* PumpConfig */ = {
  2611. isa = PBXGroup;
  2612. children = (
  2613. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */,
  2614. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */,
  2615. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */,
  2616. 510CCF29FD3216C5BBC49A15 /* View */,
  2617. );
  2618. path = PumpConfig;
  2619. sourceTree = "<group>";
  2620. };
  2621. 9E56E3626FAD933385101B76 /* DataTable */ = {
  2622. isa = PBXGroup;
  2623. children = (
  2624. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */,
  2625. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */,
  2626. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */,
  2627. 0EE66DD474AFFD4FD787D5B9 /* View */,
  2628. );
  2629. path = DataTable;
  2630. sourceTree = "<group>";
  2631. };
  2632. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */ = {
  2633. isa = PBXGroup;
  2634. children = (
  2635. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */,
  2636. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */,
  2637. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */,
  2638. 18B49BC9587A59E3A347C1CD /* View */,
  2639. );
  2640. path = BasalProfileEditor;
  2641. sourceTree = "<group>";
  2642. };
  2643. B9488883C59C31550E0B4CEC /* View */ = {
  2644. isa = PBXGroup;
  2645. children = (
  2646. BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */,
  2647. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */,
  2648. BDB899872C564509006F3298 /* ForecastChart.swift */,
  2649. DD07CA5A2CE950B9002D45A9 /* MealPreset */,
  2650. );
  2651. path = View;
  2652. sourceTree = "<group>";
  2653. };
  2654. BD249D842D42FBD200412DEB /* ViewElements */ = {
  2655. isa = PBXGroup;
  2656. children = (
  2657. DDCAE97A2D79F99B00B1BB51 /* Glucose */,
  2658. DDCAE9792D79F99200B1BB51 /* Meal */,
  2659. DDCAE9782D79F98E00B1BB51 /* Insulin */,
  2660. DDCAE9772D79F98600B1BB51 /* Looping */,
  2661. );
  2662. path = ViewElements;
  2663. sourceTree = "<group>";
  2664. };
  2665. BD249D952D42FCA800412DEB /* StatStateModel+Setup */ = {
  2666. isa = PBXGroup;
  2667. children = (
  2668. BD249DA02D42FD1000412DEB /* TDDSetup.swift */,
  2669. BD249D9C2D42FCF300412DEB /* MealStatsSetup.swift */,
  2670. BD249D982D42FCCA00412DEB /* BolusStatsSetup.swift */,
  2671. BD249D962D42FCBD00412DEB /* AreaChartSetup.swift */,
  2672. BD249D9E2D42FD0200412DEB /* StackedChartSetup.swift */,
  2673. BD249D9A2D42FCD800412DEB /* LoopChartSetup.swift */,
  2674. );
  2675. path = "StatStateModel+Setup";
  2676. sourceTree = "<group>";
  2677. };
  2678. BD793CAD2CE7660C00D669AC /* Overrides */ = {
  2679. isa = PBXGroup;
  2680. children = (
  2681. DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */,
  2682. DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */,
  2683. DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */,
  2684. DDD163192C4C695E00CD525A /* EditOverrideForm.swift */,
  2685. );
  2686. path = Overrides;
  2687. sourceTree = "<group>";
  2688. };
  2689. BD793CAE2CE7661D00D669AC /* TempTargets */ = {
  2690. isa = PBXGroup;
  2691. children = (
  2692. DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */,
  2693. 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */,
  2694. 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */,
  2695. DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */,
  2696. );
  2697. path = TempTargets;
  2698. sourceTree = "<group>";
  2699. };
  2700. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */ = {
  2701. isa = PBXGroup;
  2702. children = (
  2703. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */,
  2704. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */,
  2705. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */,
  2706. BD7DA9AA2AE06E9600601B20 /* View */,
  2707. );
  2708. path = BolusCalculatorConfig;
  2709. sourceTree = "<group>";
  2710. };
  2711. BD7DA9AA2AE06E9600601B20 /* View */ = {
  2712. isa = PBXGroup;
  2713. children = (
  2714. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */,
  2715. );
  2716. path = View;
  2717. sourceTree = "<group>";
  2718. };
  2719. BD7DB88C2D2C49FF003D3155 /* BolusCalculator */ = {
  2720. isa = PBXGroup;
  2721. children = (
  2722. BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */,
  2723. );
  2724. path = BolusCalculator;
  2725. sourceTree = "<group>";
  2726. };
  2727. BD8FC0552D66187700B95AED /* CoreDataTests */ = {
  2728. isa = PBXGroup;
  2729. children = (
  2730. BD8FC0562D66188700B95AED /* PumpHistoryStorageTests.swift */,
  2731. BD8FC0582D66189700B95AED /* TestAssembly.swift */,
  2732. BD8FC05A2D6618AF00B95AED /* DeterminationStorageTests.swift */,
  2733. BD8FC05F2D6619DB00B95AED /* CarbsStorageTests.swift */,
  2734. BD8FC0612D6619E600B95AED /* OverrideStorageTests.swift */,
  2735. BD8FC0632D6619EF00B95AED /* TempTargetStorageTests.swift */,
  2736. BD8FC0652D661A0000B95AED /* GlucoseStorageTests.swift */,
  2737. );
  2738. path = CoreDataTests;
  2739. sourceTree = "<group>";
  2740. };
  2741. BD8FC05C2D6618BE00B95AED /* BolusCalculatorTests */ = {
  2742. isa = PBXGroup;
  2743. children = (
  2744. BD8FC05D2D6618CE00B95AED /* BolusCalculatorTests.swift */,
  2745. );
  2746. path = BolusCalculatorTests;
  2747. sourceTree = "<group>";
  2748. };
  2749. BDA25F1A2D26BCE800035F34 /* Views */ = {
  2750. isa = PBXGroup;
  2751. children = (
  2752. DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */,
  2753. BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */,
  2754. DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */,
  2755. BDA25F212D26D62200035F34 /* BolusInputView.swift */,
  2756. BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */,
  2757. BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */,
  2758. DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */,
  2759. BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */,
  2760. BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */,
  2761. DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */,
  2762. BDA25F1B2D26BD0300035F34 /* TrendShape.swift */,
  2763. BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */,
  2764. );
  2765. path = Views;
  2766. sourceTree = "<group>";
  2767. };
  2768. BDDAF9F12D0055CC00B34E7A /* ChartElements */ = {
  2769. isa = PBXGroup;
  2770. children = (
  2771. DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */,
  2772. BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */,
  2773. 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */,
  2774. 582DF9762C8CDBE7001F516D /* InsulinView.swift */,
  2775. 582DF97A2C8CE209001F516D /* CarbView.swift */,
  2776. 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */,
  2777. 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */,
  2778. 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */,
  2779. 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */,
  2780. 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */,
  2781. 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */,
  2782. );
  2783. path = ChartElements;
  2784. sourceTree = "<group>";
  2785. };
  2786. BDF34F882C10C65E00D51995 /* Data */ = {
  2787. isa = PBXGroup;
  2788. children = (
  2789. BDF34F822C10C5B600D51995 /* DataManager.swift */,
  2790. BDF34F842C10C62E00D51995 /* GlucoseData.swift */,
  2791. BDF34F942C10D27300D51995 /* DeterminationData.swift */,
  2792. BDBAACF92C2D439700370AAE /* OverrideData.swift */,
  2793. );
  2794. path = Data;
  2795. sourceTree = "<group>";
  2796. };
  2797. BDFF7A9C2D25FA730016C40C /* Trio Watch App Extension */ = {
  2798. isa = PBXGroup;
  2799. children = (
  2800. BDA25EE52D260D5800035F34 /* WatchState.swift */,
  2801. BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */,
  2802. DD3A3CEC2D29CFBA00AE478E /* Helper */,
  2803. BDA25F1A2D26BCE800035F34 /* Views */,
  2804. BDFF7A9E2D25FA970016C40C /* Preview Content */,
  2805. BDFF7A832D25F97D0016C40C /* Assets.xcassets */,
  2806. BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */,
  2807. );
  2808. path = "Trio Watch App Extension";
  2809. sourceTree = "<group>";
  2810. };
  2811. BDFF7AA02D25FAA80016C40C /* Trio Watch App Tests */ = {
  2812. isa = PBXGroup;
  2813. children = (
  2814. BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */,
  2815. );
  2816. path = "Trio Watch App Tests";
  2817. sourceTree = "<group>";
  2818. };
  2819. BDFF7AA12D25FAC70016C40C /* Trio Watch App */ = {
  2820. isa = PBXGroup;
  2821. children = (
  2822. DD09D6162D2A2E4A000D82C9 /* Assets.xcassets */,
  2823. BDFF7A902D25F97D0016C40C /* Info.plist */,
  2824. BDFF7A912D25F97D0016C40C /* TrioWatchApp.swift */,
  2825. BDFF7A922D25F97D0016C40C /* TrioWatchAppExtension.swift */,
  2826. );
  2827. path = "Trio Watch App";
  2828. sourceTree = "<group>";
  2829. };
  2830. C2C98283C436DB934D7E7994 /* Treatments */ = {
  2831. isa = PBXGroup;
  2832. children = (
  2833. C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.swift */,
  2834. C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */,
  2835. 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */,
  2836. B9488883C59C31550E0B4CEC /* View */,
  2837. );
  2838. path = Treatments;
  2839. sourceTree = "<group>";
  2840. };
  2841. CE1856F32ADC4835007E39C7 /* Carbs */ = {
  2842. isa = PBXGroup;
  2843. children = (
  2844. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */,
  2845. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */,
  2846. );
  2847. path = Carbs;
  2848. sourceTree = "<group>";
  2849. };
  2850. CE7CA3422A064973004BE681 /* Shortcuts */ = {
  2851. isa = PBXGroup;
  2852. children = (
  2853. DD4C57A42D73ADDA001BFF2C /* LiveActivity */,
  2854. 118DF7692C5ECBC60067FEB7 /* Override */,
  2855. 110AEDE22C5193D100615CC9 /* Bolus */,
  2856. CE1856F32ADC4835007E39C7 /* Carbs */,
  2857. CE7CA3432A064973004BE681 /* AppShortcuts.swift */,
  2858. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */,
  2859. CE7CA3452A064973004BE681 /* TempPresets */,
  2860. CE7CA34B2A064973004BE681 /* State */,
  2861. );
  2862. path = Shortcuts;
  2863. sourceTree = "<group>";
  2864. };
  2865. CE7CA3452A064973004BE681 /* TempPresets */ = {
  2866. isa = PBXGroup;
  2867. children = (
  2868. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */,
  2869. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */,
  2870. CE7CA3492A064973004BE681 /* TempPresetIntent.swift */,
  2871. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */,
  2872. );
  2873. path = TempPresets;
  2874. sourceTree = "<group>";
  2875. };
  2876. CE7CA34B2A064973004BE681 /* State */ = {
  2877. isa = PBXGroup;
  2878. children = (
  2879. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */,
  2880. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */,
  2881. CE7CA3572A064E2F004BE681 /* ListStateView.swift */,
  2882. );
  2883. path = State;
  2884. sourceTree = "<group>";
  2885. };
  2886. CE94597C29E9E1CD0047C9C6 /* WatchConfig */ = {
  2887. isa = PBXGroup;
  2888. children = (
  2889. CE94598529E9E3FE0047C9C6 /* View */,
  2890. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */,
  2891. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */,
  2892. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */,
  2893. );
  2894. path = WatchConfig;
  2895. sourceTree = "<group>";
  2896. };
  2897. CE94598529E9E3FE0047C9C6 /* View */ = {
  2898. isa = PBXGroup;
  2899. children = (
  2900. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */,
  2901. DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */,
  2902. DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */,
  2903. );
  2904. path = View;
  2905. sourceTree = "<group>";
  2906. };
  2907. CEB434E128B8F9BC00B70274 /* Bluetooth */ = {
  2908. isa = PBXGroup;
  2909. children = (
  2910. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */,
  2911. );
  2912. path = Bluetooth;
  2913. sourceTree = "<group>";
  2914. };
  2915. CEE9A64D2BBB411C00EB5194 /* Calibrations */ = {
  2916. isa = PBXGroup;
  2917. children = (
  2918. CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */,
  2919. CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */,
  2920. CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */,
  2921. CEE9A6502BBB418300EB5194 /* View */,
  2922. );
  2923. path = Calibrations;
  2924. sourceTree = "<group>";
  2925. };
  2926. CEE9A6502BBB418300EB5194 /* View */ = {
  2927. isa = PBXGroup;
  2928. children = (
  2929. CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */,
  2930. CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */,
  2931. );
  2932. path = View;
  2933. sourceTree = "<group>";
  2934. };
  2935. CEE9A65A2BBB41AD00EB5194 /* Calibrations */ = {
  2936. isa = PBXGroup;
  2937. children = (
  2938. CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */,
  2939. );
  2940. path = Calibrations;
  2941. sourceTree = "<group>";
  2942. };
  2943. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */ = {
  2944. isa = PBXGroup;
  2945. children = (
  2946. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */,
  2947. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */,
  2948. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */,
  2949. 4F4AE4D901E8BA872B207D7F /* View */,
  2950. );
  2951. path = NightscoutConfig;
  2952. sourceTree = "<group>";
  2953. };
  2954. D8F047E14D567F2B5DBEFD96 /* ISFEditor */ = {
  2955. isa = PBXGroup;
  2956. children = (
  2957. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */,
  2958. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */,
  2959. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */,
  2960. EEC747824D6593B5CD87E195 /* View */,
  2961. );
  2962. path = ISFEditor;
  2963. sourceTree = "<group>";
  2964. };
  2965. DD07CA5A2CE950B9002D45A9 /* MealPreset */ = {
  2966. isa = PBXGroup;
  2967. children = (
  2968. BD0B2EF22C5998E600B3298F /* MealPresetView.swift */,
  2969. DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */,
  2970. );
  2971. path = MealPreset;
  2972. sourceTree = "<group>";
  2973. };
  2974. DD09D4792C5986BA003FEA5D /* CalendarEventSettings */ = {
  2975. isa = PBXGroup;
  2976. children = (
  2977. DD09D4802C5986E8003FEA5D /* View */,
  2978. DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */,
  2979. DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */,
  2980. DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */,
  2981. );
  2982. path = CalendarEventSettings;
  2983. sourceTree = "<group>";
  2984. };
  2985. DD09D4802C5986E8003FEA5D /* View */ = {
  2986. isa = PBXGroup;
  2987. children = (
  2988. DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */,
  2989. );
  2990. path = View;
  2991. sourceTree = "<group>";
  2992. };
  2993. DD09D6492D2B6253000D82C9 /* Trio Watch Complication */ = {
  2994. isa = PBXGroup;
  2995. children = (
  2996. DD09D6412D2B553A000D82C9 /* Assets.xcassets */,
  2997. DD09D6422D2B553A000D82C9 /* Info.plist */,
  2998. DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */,
  2999. );
  3000. path = "Trio Watch Complication";
  3001. sourceTree = "<group>";
  3002. };
  3003. DD1745112C54168300211FAC /* Subviews */ = {
  3004. isa = PBXGroup;
  3005. children = (
  3006. DDCE790E2D6F97F7000A4D7A /* SubmodulesView.swift */,
  3007. DD1745122C54169400211FAC /* DevicesView.swift */,
  3008. DD1745142C54388A00211FAC /* TherapySettingsView.swift */,
  3009. DD1745162C54389F00211FAC /* FeatureSettingsView.swift */,
  3010. DD1745182C543B5700211FAC /* NotificationsView.swift */,
  3011. DD17451C2C543C5F00211FAC /* ServicesView.swift */,
  3012. DD1745362C55B74200211FAC /* AlgorithmSettings.swift */,
  3013. );
  3014. path = Subviews;
  3015. sourceTree = "<group>";
  3016. };
  3017. DD17451E2C55520000211FAC /* SMBSettings */ = {
  3018. isa = PBXGroup;
  3019. children = (
  3020. DD1745272C5553C400211FAC /* View */,
  3021. DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */,
  3022. DD1745212C55524800211FAC /* SMBSettingsProvider.swift */,
  3023. DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */,
  3024. );
  3025. path = SMBSettings;
  3026. sourceTree = "<group>";
  3027. };
  3028. DD1745272C5553C400211FAC /* View */ = {
  3029. isa = PBXGroup;
  3030. children = (
  3031. DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */,
  3032. );
  3033. path = View;
  3034. sourceTree = "<group>";
  3035. };
  3036. DD17452C2C55AE3500211FAC /* TargetBehavoir */ = {
  3037. isa = PBXGroup;
  3038. children = (
  3039. DD1745332C55AE6500211FAC /* View */,
  3040. DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */,
  3041. DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */,
  3042. DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */,
  3043. );
  3044. path = TargetBehavoir;
  3045. sourceTree = "<group>";
  3046. };
  3047. DD1745332C55AE6500211FAC /* View */ = {
  3048. isa = PBXGroup;
  3049. children = (
  3050. DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */,
  3051. );
  3052. path = View;
  3053. sourceTree = "<group>";
  3054. };
  3055. DD1745382C55BF8B00211FAC /* AlgorithmAdvancedSettings */ = {
  3056. isa = PBXGroup;
  3057. children = (
  3058. DD1745412C55BFC400211FAC /* View */,
  3059. DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */,
  3060. DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */,
  3061. DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */,
  3062. );
  3063. path = AlgorithmAdvancedSettings;
  3064. sourceTree = "<group>";
  3065. };
  3066. DD1745412C55BFC400211FAC /* View */ = {
  3067. isa = PBXGroup;
  3068. children = (
  3069. DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */,
  3070. );
  3071. path = View;
  3072. sourceTree = "<group>";
  3073. };
  3074. DD1745422C55C5C400211FAC /* AutosensSettings */ = {
  3075. isa = PBXGroup;
  3076. children = (
  3077. DD1745492C55C62000211FAC /* View */,
  3078. DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */,
  3079. DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */,
  3080. DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */,
  3081. );
  3082. path = AutosensSettings;
  3083. sourceTree = "<group>";
  3084. };
  3085. DD1745492C55C62000211FAC /* View */ = {
  3086. isa = PBXGroup;
  3087. children = (
  3088. DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */,
  3089. );
  3090. path = View;
  3091. sourceTree = "<group>";
  3092. };
  3093. DD17454C2C55CA0200211FAC /* GeneralSettings */ = {
  3094. isa = PBXGroup;
  3095. children = (
  3096. DD1745532C55CA6100211FAC /* View */,
  3097. DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */,
  3098. DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */,
  3099. DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */,
  3100. );
  3101. path = GeneralSettings;
  3102. sourceTree = "<group>";
  3103. };
  3104. DD1745532C55CA6100211FAC /* View */ = {
  3105. isa = PBXGroup;
  3106. children = (
  3107. DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */,
  3108. );
  3109. path = View;
  3110. sourceTree = "<group>";
  3111. };
  3112. DD3A3CEC2D29CFBA00AE478E /* Helper */ = {
  3113. isa = PBXGroup;
  3114. children = (
  3115. DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */,
  3116. DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */,
  3117. DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */,
  3118. );
  3119. path = Helper;
  3120. sourceTree = "<group>";
  3121. };
  3122. DD4C57A42D73ADDA001BFF2C /* LiveActivity */ = {
  3123. isa = PBXGroup;
  3124. children = (
  3125. DD4C57A92D73B3D9001BFF2C /* RestartLiveActivityIntentRequest.swift */,
  3126. DD4C57A72D73ADEA001BFF2C /* RestartLiveActivityIntent.swift */,
  3127. );
  3128. path = LiveActivity;
  3129. sourceTree = "<group>";
  3130. };
  3131. DD5DC9EF2CF3D95400AB8703 /* AdjustmentsStateModel+Extensions */ = {
  3132. isa = PBXGroup;
  3133. children = (
  3134. DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */,
  3135. DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */,
  3136. DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */,
  3137. );
  3138. path = "AdjustmentsStateModel+Extensions";
  3139. sourceTree = "<group>";
  3140. };
  3141. DD5DC9F52CF3DA8900AB8703 /* ViewElements */ = {
  3142. isa = PBXGroup;
  3143. children = (
  3144. DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */,
  3145. DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */,
  3146. );
  3147. path = ViewElements;
  3148. sourceTree = "<group>";
  3149. };
  3150. DD6B7CB72C7BAC1B00B75029 /* ProfileImport */ = {
  3151. isa = PBXGroup;
  3152. children = (
  3153. DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */,
  3154. DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */,
  3155. );
  3156. path = ProfileImport;
  3157. sourceTree = "<group>";
  3158. };
  3159. DD9ECB662CA99EFE00AA7C45 /* RemoteControl */ = {
  3160. isa = PBXGroup;
  3161. children = (
  3162. DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */,
  3163. DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */,
  3164. DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */,
  3165. DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */,
  3166. DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */,
  3167. DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */,
  3168. DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */,
  3169. );
  3170. path = RemoteControl;
  3171. sourceTree = "<group>";
  3172. };
  3173. DD9ECB6B2CA99FA400AA7C45 /* RemoteControlConfig */ = {
  3174. isa = PBXGroup;
  3175. children = (
  3176. DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */,
  3177. DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */,
  3178. DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */,
  3179. DD9ECB6C2CA99FAE00AA7C45 /* View */,
  3180. );
  3181. path = RemoteControlConfig;
  3182. sourceTree = "<group>";
  3183. };
  3184. DD9ECB6C2CA99FAE00AA7C45 /* View */ = {
  3185. isa = PBXGroup;
  3186. children = (
  3187. DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */,
  3188. );
  3189. path = View;
  3190. sourceTree = "<group>";
  3191. };
  3192. DDA9AC072D67291600E6F1A9 /* AppVersionChecker */ = {
  3193. isa = PBXGroup;
  3194. children = (
  3195. DDA9AC082D672CEB00E6F1A9 /* AppVersionChecker.swift */,
  3196. );
  3197. path = AppVersionChecker;
  3198. sourceTree = "<group>";
  3199. };
  3200. DDC9B9962CFD2332003E7721 /* Nightscout */ = {
  3201. isa = PBXGroup;
  3202. children = (
  3203. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */,
  3204. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */,
  3205. );
  3206. path = Nightscout;
  3207. sourceTree = "<group>";
  3208. };
  3209. DDCAE9772D79F98600B1BB51 /* Looping */ = {
  3210. isa = PBXGroup;
  3211. children = (
  3212. DD4C581E2D73C43D001BFF2C /* LoopStatsView.swift */,
  3213. BD249D8D2D42FC3600412DEB /* LoopBarChartView.swift */,
  3214. );
  3215. path = Looping;
  3216. sourceTree = "<group>";
  3217. };
  3218. DDCAE9782D79F98E00B1BB51 /* Insulin */ = {
  3219. isa = PBXGroup;
  3220. children = (
  3221. BD249D932D42FC5C00412DEB /* TotalDailyDoseChart.swift */,
  3222. BD249D872D42FBFB00412DEB /* BolusStatsView.swift */,
  3223. );
  3224. path = Insulin;
  3225. sourceTree = "<group>";
  3226. };
  3227. DDCAE9792D79F99200B1BB51 /* Meal */ = {
  3228. isa = PBXGroup;
  3229. children = (
  3230. BD249D8F2D42FC4300412DEB /* MealStatsView.swift */,
  3231. );
  3232. path = Meal;
  3233. sourceTree = "<group>";
  3234. };
  3235. DDCAE97A2D79F99B00B1BB51 /* Glucose */ = {
  3236. isa = PBXGroup;
  3237. children = (
  3238. BD249D912D42FC5000412DEB /* GlucoseSectorChart.swift */,
  3239. BD249D8B2D42FC2500412DEB /* GlucoseDistributionChart.swift */,
  3240. BD249D892D42FC0E00412DEB /* GlucosePercentileChart.swift */,
  3241. BD249D852D42FBE600412DEB /* GlucoseMetricsView.swift */,
  3242. );
  3243. path = Glucose;
  3244. sourceTree = "<group>";
  3245. };
  3246. DDD163032C4C67B400CD525A /* Adjustments */ = {
  3247. isa = PBXGroup;
  3248. children = (
  3249. DD5DC9EF2CF3D95400AB8703 /* AdjustmentsStateModel+Extensions */,
  3250. DDD1630A2C4C67F000CD525A /* View */,
  3251. DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */,
  3252. DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */,
  3253. DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */,
  3254. );
  3255. path = Adjustments;
  3256. sourceTree = "<group>";
  3257. };
  3258. DDD1630A2C4C67F000CD525A /* View */ = {
  3259. isa = PBXGroup;
  3260. children = (
  3261. DD5DC9F52CF3DA8900AB8703 /* ViewElements */,
  3262. DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */,
  3263. BD793CAD2CE7660C00D669AC /* Overrides */,
  3264. BD793CAE2CE7661D00D669AC /* TempTargets */,
  3265. );
  3266. path = View;
  3267. sourceTree = "<group>";
  3268. };
  3269. DDE179112C9100FA003CDDB7 /* Classes+Properties */ = {
  3270. isa = PBXGroup;
  3271. children = (
  3272. BD4D738B2D15A4080052227B /* TDDStored+CoreDataClass.swift */,
  3273. BD4D738C2D15A4080052227B /* TDDStored+CoreDataProperties.swift */,
  3274. DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */,
  3275. DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */,
  3276. DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */,
  3277. DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */,
  3278. DDB37CC22D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataClass.swift */,
  3279. DDB37CC32D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataProperties.swift */,
  3280. DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */,
  3281. DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */,
  3282. DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */,
  3283. DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */,
  3284. DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */,
  3285. DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */,
  3286. DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */,
  3287. DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */,
  3288. DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */,
  3289. DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */,
  3290. DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */,
  3291. DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */,
  3292. DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */,
  3293. DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */,
  3294. DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */,
  3295. DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */,
  3296. DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */,
  3297. DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */,
  3298. DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */,
  3299. DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */,
  3300. DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */,
  3301. DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */,
  3302. DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */,
  3303. DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */,
  3304. 491D6FB92D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift */,
  3305. 491D6FBA2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift */,
  3306. 491D6FBB2D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift */,
  3307. 491D6FBC2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift */,
  3308. );
  3309. path = "Classes+Properties";
  3310. sourceTree = "<group>";
  3311. };
  3312. DDF847DB2C5C28550049BB3B /* LiveActivitySettings */ = {
  3313. isa = PBXGroup;
  3314. children = (
  3315. DDF847E22C5C28830049BB3B /* View */,
  3316. DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */,
  3317. DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */,
  3318. DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */,
  3319. );
  3320. path = LiveActivitySettings;
  3321. sourceTree = "<group>";
  3322. };
  3323. DDF847E22C5C28830049BB3B /* View */ = {
  3324. isa = PBXGroup;
  3325. children = (
  3326. DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */,
  3327. BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */,
  3328. );
  3329. path = View;
  3330. sourceTree = "<group>";
  3331. };
  3332. E00EEBFC27368630002FF094 /* Assemblies */ = {
  3333. isa = PBXGroup;
  3334. children = (
  3335. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */,
  3336. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */,
  3337. E00EEBFF27368630002FF094 /* StorageAssembly.swift */,
  3338. E00EEC0027368630002FF094 /* UIAssembly.swift */,
  3339. E00EEC0127368630002FF094 /* APSAssembly.swift */,
  3340. E00EEC0227368630002FF094 /* NetworkAssembly.swift */,
  3341. );
  3342. path = Assemblies;
  3343. sourceTree = "<group>";
  3344. };
  3345. E42231DBF0DBE2B4B92D1B15 /* CarbRatioEditor */ = {
  3346. isa = PBXGroup;
  3347. children = (
  3348. 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */,
  3349. 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */,
  3350. 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */,
  3351. 54946647FDCFE43028F60511 /* View */,
  3352. );
  3353. path = CarbRatioEditor;
  3354. sourceTree = "<group>";
  3355. };
  3356. E592A3722CEEC038009A472C /* View */ = {
  3357. isa = PBXGroup;
  3358. children = (
  3359. DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */,
  3360. E592A3712CEEC038009A472C /* ContactImageRootView.swift */,
  3361. BDC531112D1060FA00088832 /* ContactImageDetailView.swift */,
  3362. BDC531132D10611D00088832 /* AddContactImageSheet.swift */,
  3363. );
  3364. path = View;
  3365. sourceTree = "<group>";
  3366. };
  3367. E592A3762CEEC038009A472C /* ContactImage */ = {
  3368. isa = PBXGroup;
  3369. children = (
  3370. E592A3722CEEC038009A472C /* View */,
  3371. E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */,
  3372. E592A3742CEEC038009A472C /* ContactImageProvider.swift */,
  3373. E592A3752CEEC038009A472C /* ContactImageStateModel.swift */,
  3374. );
  3375. path = ContactImage;
  3376. sourceTree = "<group>";
  3377. };
  3378. E592A37E2CEEC046009A472C /* ContactImage */ = {
  3379. isa = PBXGroup;
  3380. children = (
  3381. BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */,
  3382. BDC531152D10629000088832 /* ContactPicture.swift */,
  3383. BDC531172D1062F200088832 /* ContactImageState.swift */,
  3384. );
  3385. path = ContactImage;
  3386. sourceTree = "<group>";
  3387. };
  3388. EEC747824D6593B5CD87E195 /* View */ = {
  3389. isa = PBXGroup;
  3390. children = (
  3391. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */,
  3392. );
  3393. path = View;
  3394. sourceTree = "<group>";
  3395. };
  3396. F5DE2E6D7B2133BBD3353DC7 /* View */ = {
  3397. isa = PBXGroup;
  3398. children = (
  3399. 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */,
  3400. );
  3401. path = View;
  3402. sourceTree = "<group>";
  3403. };
  3404. F66B236E00924A05D6A9F9DF /* GlucoseNotificationSettings */ = {
  3405. isa = PBXGroup;
  3406. children = (
  3407. 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */,
  3408. E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.swift */,
  3409. DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */,
  3410. F5DE2E6D7B2133BBD3353DC7 /* View */,
  3411. );
  3412. path = GlucoseNotificationSettings;
  3413. sourceTree = "<group>";
  3414. };
  3415. F75CB57ED6971B46F8756083 /* CGMSettings */ = {
  3416. isa = PBXGroup;
  3417. children = (
  3418. B9B5C0607505A38F256BF99A /* CGMSettingsDataFlow.swift */,
  3419. 38FEF3FD2738083E00574A46 /* CGMSettingsProvider.swift */,
  3420. 5C018D1680307A31C9ED7120 /* CGMSettingsStateModel.swift */,
  3421. 0D76BBC81CEDC1A0050F45EF /* View */,
  3422. );
  3423. path = CGMSettings;
  3424. sourceTree = "<group>";
  3425. };
  3426. F90692A8274B7A980037068D /* HealthKit */ = {
  3427. isa = PBXGroup;
  3428. children = (
  3429. F90692A9274B7AAE0037068D /* HealthKitManager.swift */,
  3430. );
  3431. path = HealthKit;
  3432. sourceTree = "<group>";
  3433. };
  3434. F90692CD274B99850037068D /* HealthKit */ = {
  3435. isa = PBXGroup;
  3436. children = (
  3437. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */,
  3438. F90692D0274B99B60037068D /* HealthKitProvider.swift */,
  3439. F90692D5274B9A450037068D /* HealthKitStateModel.swift */,
  3440. F90692D4274B9A160037068D /* View */,
  3441. );
  3442. path = HealthKit;
  3443. sourceTree = "<group>";
  3444. };
  3445. F90692D4274B9A160037068D /* View */ = {
  3446. isa = PBXGroup;
  3447. children = (
  3448. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */,
  3449. );
  3450. path = View;
  3451. sourceTree = "<group>";
  3452. };
  3453. /* End PBXGroup section */
  3454. /* Begin PBXNativeTarget section */
  3455. 388E595725AD948C0019842D /* Trio */ = {
  3456. isa = PBXNativeTarget;
  3457. buildConfigurationList = 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "Trio" */;
  3458. buildPhases = (
  3459. 3811DEF525CA169200A708ED /* Swiftformat */,
  3460. 388E595425AD948C0019842D /* Sources */,
  3461. 388E595525AD948C0019842D /* Frameworks */,
  3462. 388E595625AD948C0019842D /* Resources */,
  3463. 3821ECD025DC703C00BC42AD /* Embed Frameworks */,
  3464. 38E8753D27554D5900975559 /* Embed Watch Content */,
  3465. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */,
  3466. DD88C8DF2C4D583900F2D558 /* Run Script: Capture Build Details */,
  3467. 3B47C6112DA0A52C00B0E5EF /* Run Script: Copy dSYM to Crashlytics */,
  3468. );
  3469. buildRules = (
  3470. );
  3471. dependencies = (
  3472. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */,
  3473. BDFF799E2D25AA890016C40C /* PBXTargetDependency */,
  3474. );
  3475. name = Trio;
  3476. packageProductDependencies = (
  3477. 3811DE0F25C9D37700A708ED /* Swinject */,
  3478. 38B17B6525DD90E0005CAE3D /* SwiftDate */,
  3479. 3833B46C26012030003021B3 /* Algorithms */,
  3480. 38DF1788276FC8C400B3528F /* SwiftMessages */,
  3481. CEB434FC28B90B7C00B70274 /* SwiftCharts */,
  3482. B958F1B62BA0711600484851 /* MKRingProgressView */,
  3483. 3BD9687B2D8DDD4600899469 /* SlideButton */,
  3484. 3BD9687E2D8DDD8800899469 /* CryptoSwift */,
  3485. 3B47C60F2DA0A28F00B0E5EF /* FirebaseCrashlytics */,
  3486. );
  3487. productName = Trio;
  3488. productReference = 388E595825AD948C0019842D /* Trio.app */;
  3489. productType = "com.apple.product-type.application";
  3490. };
  3491. 38FCF3EC25E9028E0078B0D1 /* TrioTests */ = {
  3492. isa = PBXNativeTarget;
  3493. buildConfigurationList = 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "TrioTests" */;
  3494. buildPhases = (
  3495. 38FCF3E925E9028E0078B0D1 /* Sources */,
  3496. 38FCF3EA25E9028E0078B0D1 /* Frameworks */,
  3497. 38FCF3EB25E9028E0078B0D1 /* Resources */,
  3498. );
  3499. buildRules = (
  3500. );
  3501. dependencies = (
  3502. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */,
  3503. );
  3504. name = TrioTests;
  3505. productName = TrioTests;
  3506. productReference = 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */;
  3507. productType = "com.apple.product-type.bundle.unit-test";
  3508. };
  3509. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */ = {
  3510. isa = PBXNativeTarget;
  3511. buildConfigurationList = 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */;
  3512. buildPhases = (
  3513. 6B1A8D132B14D91500E76752 /* Sources */,
  3514. 6B1A8D142B14D91500E76752 /* Frameworks */,
  3515. 6B1A8D152B14D91500E76752 /* Resources */,
  3516. );
  3517. buildRules = (
  3518. );
  3519. dependencies = (
  3520. );
  3521. fileSystemSynchronizedGroups = (
  3522. DDCEBF412CC1B42500DF4C36 /* Views */,
  3523. );
  3524. name = LiveActivityExtension;
  3525. productName = LiveActivityExtension;
  3526. productReference = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */;
  3527. productType = "com.apple.product-type.app-extension";
  3528. };
  3529. BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */ = {
  3530. isa = PBXNativeTarget;
  3531. buildConfigurationList = BD8207D32D2B42E80023339D /* Build configuration list for PBXNativeTarget "Trio Watch Complication Extension" */;
  3532. buildPhases = (
  3533. BD8207BF2D2B42E50023339D /* Sources */,
  3534. BD8207C02D2B42E50023339D /* Frameworks */,
  3535. BD8207C12D2B42E50023339D /* Resources */,
  3536. );
  3537. buildRules = (
  3538. );
  3539. dependencies = (
  3540. );
  3541. name = "Trio Watch Complication Extension";
  3542. packageProductDependencies = (
  3543. );
  3544. productName = "Trio Watch WidgetExtension";
  3545. productReference = BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */;
  3546. productType = "com.apple.product-type.app-extension";
  3547. };
  3548. BDFF797B2D25AA870016C40C /* Trio Watch App */ = {
  3549. isa = PBXNativeTarget;
  3550. buildConfigurationList = BDFF79A02D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch App" */;
  3551. buildPhases = (
  3552. BDFF79782D25AA870016C40C /* Sources */,
  3553. BDFF79792D25AA870016C40C /* Frameworks */,
  3554. BDFF797A2D25AA870016C40C /* Resources */,
  3555. BD8207CF2D2B42E80023339D /* Embed Foundation Extensions */,
  3556. );
  3557. buildRules = (
  3558. );
  3559. dependencies = (
  3560. BD8207CD2D2B42E70023339D /* PBXTargetDependency */,
  3561. );
  3562. fileSystemSynchronizedGroups = (
  3563. BDFF7A9E2D25FA970016C40C /* Preview Content */,
  3564. );
  3565. name = "Trio Watch App";
  3566. packageProductDependencies = (
  3567. );
  3568. productName = "TrioWatch Watch App";
  3569. productReference = BDFF797C2D25AA870016C40C /* Trio Watch App.app */;
  3570. productType = "com.apple.product-type.application";
  3571. };
  3572. BDFF798A2D25AA890016C40C /* Trio Watch AppTests */ = {
  3573. isa = PBXNativeTarget;
  3574. buildConfigurationList = BDFF79A32D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch AppTests" */;
  3575. buildPhases = (
  3576. BDFF79872D25AA890016C40C /* Sources */,
  3577. BDFF79882D25AA890016C40C /* Frameworks */,
  3578. BDFF79892D25AA890016C40C /* Resources */,
  3579. );
  3580. buildRules = (
  3581. );
  3582. dependencies = (
  3583. BDFF798D2D25AA890016C40C /* PBXTargetDependency */,
  3584. );
  3585. name = "Trio Watch AppTests";
  3586. packageProductDependencies = (
  3587. );
  3588. productName = "TrioWatch Watch AppTests";
  3589. productReference = BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */;
  3590. productType = "com.apple.product-type.bundle.unit-test";
  3591. };
  3592. /* End PBXNativeTarget section */
  3593. /* Begin PBXProject section */
  3594. 388E595025AD948C0019842D /* Project object */ = {
  3595. isa = PBXProject;
  3596. attributes = {
  3597. BuildIndependentTargetsInParallel = YES;
  3598. LastSwiftUpdateCheck = 1620;
  3599. LastUpgradeCheck = 1620;
  3600. TargetAttributes = {
  3601. 388E595725AD948C0019842D = {
  3602. CreatedOnToolsVersion = 12.3;
  3603. };
  3604. 38FCF3EC25E9028E0078B0D1 = {
  3605. CreatedOnToolsVersion = 12.4;
  3606. TestTargetID = 388E595725AD948C0019842D;
  3607. };
  3608. BD8207C22D2B42E50023339D = {
  3609. CreatedOnToolsVersion = 16.2;
  3610. };
  3611. BDFF797B2D25AA870016C40C = {
  3612. CreatedOnToolsVersion = 16.2;
  3613. };
  3614. BDFF798A2D25AA890016C40C = {
  3615. CreatedOnToolsVersion = 16.2;
  3616. TestTargetID = BDFF797B2D25AA870016C40C;
  3617. };
  3618. };
  3619. };
  3620. buildConfigurationList = 388E595325AD948C0019842D /* Build configuration list for PBXProject "Trio" */;
  3621. compatibilityVersion = "Xcode 9.3";
  3622. developmentRegion = en;
  3623. hasScannedForEncodings = 0;
  3624. knownRegions = (
  3625. en,
  3626. Base,
  3627. ar,
  3628. ca,
  3629. "zh-Hans",
  3630. da,
  3631. nl,
  3632. fr,
  3633. de,
  3634. he,
  3635. it,
  3636. nb,
  3637. pl,
  3638. ru,
  3639. es,
  3640. sv,
  3641. tr,
  3642. uk,
  3643. fi,
  3644. "pt-PT",
  3645. "pt-BR",
  3646. sk,
  3647. hu,
  3648. vi,
  3649. );
  3650. mainGroup = 388E594F25AD948C0019842D;
  3651. packageReferences = (
  3652. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */,
  3653. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */,
  3654. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */,
  3655. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */,
  3656. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */,
  3657. B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */,
  3658. 3BD9687A2D8DDD4600899469 /* XCRemoteSwiftPackageReference "SlideButton" */,
  3659. 3BD9687D2D8DDD8800899469 /* XCRemoteSwiftPackageReference "CryptoSwift" */,
  3660. 3B47C60E2DA0A28F00B0E5EF /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */,
  3661. );
  3662. productRefGroup = 388E595925AD948C0019842D /* Products */;
  3663. projectDirPath = "";
  3664. projectRoot = "";
  3665. targets = (
  3666. 388E595725AD948C0019842D /* Trio */,
  3667. 38FCF3EC25E9028E0078B0D1 /* TrioTests */,
  3668. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */,
  3669. BDFF797B2D25AA870016C40C /* Trio Watch App */,
  3670. BDFF798A2D25AA890016C40C /* Trio Watch AppTests */,
  3671. BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */,
  3672. );
  3673. };
  3674. /* End PBXProject section */
  3675. /* Begin PBXResourcesBuildPhase section */
  3676. 388E595625AD948C0019842D /* Resources */ = {
  3677. isa = PBXResourcesBuildPhase;
  3678. buildActionMask = 2147483647;
  3679. files = (
  3680. 8A91342C2D63D9A2007F8874 /* InfoPlist.xcstrings in Resources */,
  3681. CE1F6DE72BAF1A180064EB8D /* BuildDetails.plist in Resources */,
  3682. 3B3B57C92DA07B3400849D16 /* GoogleService-Info.plist in Resources */,
  3683. 38DF178D27733E6800B3528F /* snow.sks in Resources */,
  3684. 388E597225AD9CF10019842D /* json in Resources */,
  3685. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */,
  3686. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */,
  3687. 8A91342A2D63D9A1007F8874 /* Localizable.xcstrings in Resources */,
  3688. 388E596F25AD96040019842D /* javascript in Resources */,
  3689. );
  3690. runOnlyForDeploymentPostprocessing = 0;
  3691. };
  3692. 38FCF3EB25E9028E0078B0D1 /* Resources */ = {
  3693. isa = PBXResourcesBuildPhase;
  3694. buildActionMask = 2147483647;
  3695. files = (
  3696. );
  3697. runOnlyForDeploymentPostprocessing = 0;
  3698. };
  3699. 6B1A8D152B14D91500E76752 /* Resources */ = {
  3700. isa = PBXResourcesBuildPhase;
  3701. buildActionMask = 2147483647;
  3702. files = (
  3703. DD498F2B2D692BEA00AAEA30 /* Localizable.xcstrings in Resources */,
  3704. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */,
  3705. );
  3706. runOnlyForDeploymentPostprocessing = 0;
  3707. };
  3708. BD8207C12D2B42E50023339D /* Resources */ = {
  3709. isa = PBXResourcesBuildPhase;
  3710. buildActionMask = 2147483647;
  3711. files = (
  3712. DD498F2D2D692BEA00AAEA30 /* Localizable.xcstrings in Resources */,
  3713. DD09D6442D2B553A000D82C9 /* Assets.xcassets in Resources */,
  3714. );
  3715. runOnlyForDeploymentPostprocessing = 0;
  3716. };
  3717. BDFF797A2D25AA870016C40C /* Resources */ = {
  3718. isa = PBXResourcesBuildPhase;
  3719. buildActionMask = 2147483647;
  3720. files = (
  3721. BDFF7A872D25F97D0016C40C /* Assets.xcassets in Resources */,
  3722. DD498F2C2D692BEA00AAEA30 /* Localizable.xcstrings in Resources */,
  3723. );
  3724. runOnlyForDeploymentPostprocessing = 0;
  3725. };
  3726. BDFF79892D25AA890016C40C /* Resources */ = {
  3727. isa = PBXResourcesBuildPhase;
  3728. buildActionMask = 2147483647;
  3729. files = (
  3730. );
  3731. runOnlyForDeploymentPostprocessing = 0;
  3732. };
  3733. /* End PBXResourcesBuildPhase section */
  3734. /* Begin PBXShellScriptBuildPhase section */
  3735. 3811DEF525CA169200A708ED /* Swiftformat */ = {
  3736. isa = PBXShellScriptBuildPhase;
  3737. alwaysOutOfDate = 1;
  3738. buildActionMask = 12;
  3739. files = (
  3740. );
  3741. inputFileListPaths = (
  3742. );
  3743. inputPaths = (
  3744. );
  3745. name = Swiftformat;
  3746. outputFileListPaths = (
  3747. );
  3748. outputPaths = (
  3749. );
  3750. runOnlyForDeploymentPostprocessing = 0;
  3751. shellPath = /bin/sh;
  3752. shellScript = "source \"${SRCROOT}\"/scripts/swiftformat.sh\n\n";
  3753. };
  3754. 3B47C6112DA0A52C00B0E5EF /* Run Script: Copy dSYM to Crashlytics */ = {
  3755. isa = PBXShellScriptBuildPhase;
  3756. buildActionMask = 2147483647;
  3757. files = (
  3758. );
  3759. inputFileListPaths = (
  3760. );
  3761. inputPaths = (
  3762. "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}",
  3763. "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${PRODUCT_NAME}",
  3764. "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist",
  3765. "$(TARGET_BUILD_DIR)/$(UNLOCALIZED_RESOURCES_FOLDER_PATH)/GoogleService-Info.plist",
  3766. "$(TARGET_BUILD_DIR)/$(EXECUTABLE_PATH)",
  3767. );
  3768. name = "Run Script: Copy dSYM to Crashlytics";
  3769. outputFileListPaths = (
  3770. );
  3771. outputPaths = (
  3772. );
  3773. runOnlyForDeploymentPostprocessing = 0;
  3774. shellPath = /bin/sh;
  3775. shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n\"${BUILD_DIR%/Build/*}/SourcePackages/checkouts/firebase-ios-sdk/Crashlytics/run\"\n";
  3776. };
  3777. DD88C8DF2C4D583900F2D558 /* Run Script: Capture Build Details */ = {
  3778. isa = PBXShellScriptBuildPhase;
  3779. alwaysOutOfDate = 1;
  3780. buildActionMask = 2147483647;
  3781. files = (
  3782. );
  3783. inputFileListPaths = (
  3784. );
  3785. inputPaths = (
  3786. );
  3787. name = "Run Script: Capture Build Details";
  3788. outputFileListPaths = (
  3789. );
  3790. outputPaths = (
  3791. );
  3792. runOnlyForDeploymentPostprocessing = 0;
  3793. shellPath = /bin/sh;
  3794. shellScript = "\"${SRCROOT}/scripts/capture-build-details.sh\"\n";
  3795. };
  3796. /* End PBXShellScriptBuildPhase section */
  3797. /* Begin PBXSourcesBuildPhase section */
  3798. 388E595425AD948C0019842D /* Sources */ = {
  3799. isa = PBXSourcesBuildPhase;
  3800. buildActionMask = 2147483647;
  3801. files = (
  3802. DD5DC9F12CF3D97C00AB8703 /* AdjustmentsStateModel+Overrides.swift in Sources */,
  3803. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */,
  3804. C2A0A42F2CE03131003B98E8 /* ConstantValues.swift in Sources */,
  3805. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */,
  3806. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */,
  3807. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */,
  3808. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */,
  3809. DD9ECB6A2CA99F6C00AA7C45 /* PushMessage.swift in Sources */,
  3810. 3811DE8F25C9D80400A708ED /* User.swift in Sources */,
  3811. 5825A1BE2C97335C0046467E /* EditTempTargetForm.swift in Sources */,
  3812. 19D466A329AA2B80004D5F33 /* MealSettingsDataFlow.swift in Sources */,
  3813. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */,
  3814. 38AEE73D25F0200C0013F05B /* TrioSettings.swift in Sources */,
  3815. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */,
  3816. 58645BA72CA2D390008AFCE7 /* ChartAxisSetup.swift in Sources */,
  3817. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */,
  3818. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */,
  3819. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */,
  3820. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */,
  3821. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */,
  3822. 195D80B72AF697B800D25097 /* DynamicSettingsDataFlow.swift in Sources */,
  3823. DD98ACC02D71013200C0778F /* StatChartUtils.swift in Sources */,
  3824. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */,
  3825. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */,
  3826. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */,
  3827. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */,
  3828. 58D08B322C8DF88900AA37D3 /* DummyCharts.swift in Sources */,
  3829. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */,
  3830. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */,
  3831. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */,
  3832. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */,
  3833. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */,
  3834. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */,
  3835. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */,
  3836. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */,
  3837. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */,
  3838. DD6B7CB92C7BAC6900B75029 /* NightscoutImportResultView.swift in Sources */,
  3839. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */,
  3840. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */,
  3841. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */,
  3842. DD4C57AA2D73B3E2001BFF2C /* RestartLiveActivityIntentRequest.swift in Sources */,
  3843. DD1745402C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift in Sources */,
  3844. 58645BA52CA2D347008AFCE7 /* ForecastSetup.swift in Sources */,
  3845. 110AEDEE2C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift in Sources */,
  3846. DD9ECB722CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift in Sources */,
  3847. DD1745262C55526F00211FAC /* SMBSettingsRootView.swift in Sources */,
  3848. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */,
  3849. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */,
  3850. 118DF76E2C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift in Sources */,
  3851. CEE9A6552BBB418300EB5194 /* CalibrationsProvider.swift in Sources */,
  3852. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */,
  3853. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */,
  3854. 5A2325542BFCBF66003518CA /* NightscoutFetchView.swift in Sources */,
  3855. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */,
  3856. DDF847E82C5DABA30049BB3B /* WatchConfigAppleWatchView.swift in Sources */,
  3857. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */,
  3858. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */,
  3859. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */,
  3860. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */,
  3861. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */,
  3862. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */,
  3863. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */,
  3864. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */,
  3865. DD1745552C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift in Sources */,
  3866. 384E803825C388640086DB71 /* Script.swift in Sources */,
  3867. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */,
  3868. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */,
  3869. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */,
  3870. DDD1631C2C4C697400CD525A /* AddOverrideForm.swift in Sources */,
  3871. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */,
  3872. DD17453E2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift in Sources */,
  3873. CE95BF572BA5F5FE00DC3DE3 /* PluginManager.swift in Sources */,
  3874. 3BAD36B22D7CDC1A00CC298D /* MainLoadingView.swift in Sources */,
  3875. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */,
  3876. 19D466A529AA2BD4004D5F33 /* MealSettingsProvider.swift in Sources */,
  3877. DD5DC9F72CF3DA9300AB8703 /* TargetPicker.swift in Sources */,
  3878. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */,
  3879. CEE9A6572BBB418300EB5194 /* CalibrationsChart.swift in Sources */,
  3880. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */,
  3881. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */,
  3882. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */,
  3883. 3BAD36CC2D7D420E00CC298D /* CoreDataInitializationCoordinator.swift in Sources */,
  3884. 388E595C25AD948C0019842D /* TrioApp.swift in Sources */,
  3885. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */,
  3886. DD1745352C55AE7E00211FAC /* TargetBehavoirRootView.swift in Sources */,
  3887. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */,
  3888. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */,
  3889. CEE9A6582BBB418300EB5194 /* CalibrationsStateModel.swift in Sources */,
  3890. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */,
  3891. BDC2EA452C3043B000E5BBD0 /* OverrideStorage.swift in Sources */,
  3892. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */,
  3893. CEE9A6562BBB418300EB5194 /* CalibrationsRootView.swift in Sources */,
  3894. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */,
  3895. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */,
  3896. DD1745322C55AE6000211FAC /* TargetBehavoirStateModel.swift in Sources */,
  3897. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */,
  3898. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */,
  3899. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */,
  3900. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */,
  3901. BD249D862D42FBEC00412DEB /* GlucoseMetricsView.swift in Sources */,
  3902. 58645BA32CA2D325008AFCE7 /* BatterySetup.swift in Sources */,
  3903. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */,
  3904. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */,
  3905. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */,
  3906. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */,
  3907. DD9ECB702CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift in Sources */,
  3908. BD249D942D42FC5E00412DEB /* TotalDailyDoseChart.swift in Sources */,
  3909. BD249D902D42FC4500412DEB /* MealStatsView.swift in Sources */,
  3910. DD32CF9A2CC8247B003686D6 /* TrioRemoteControl+Meal.swift in Sources */,
  3911. BDF34F832C10C5B600D51995 /* DataManager.swift in Sources */,
  3912. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */,
  3913. 19D466A729AA2C22004D5F33 /* MealSettingsStateModel.swift in Sources */,
  3914. DD17452B2C556E8100211FAC /* SettingInputHintView.swift in Sources */,
  3915. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */,
  3916. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */,
  3917. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */,
  3918. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */,
  3919. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */,
  3920. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */,
  3921. 3811DE1825C9D40400A708ED /* Router.swift in Sources */,
  3922. BD249DA12D42FD1200412DEB /* TDDSetup.swift in Sources */,
  3923. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */,
  3924. 582FAE432C05102C00D1C13F /* CoreDataError.swift in Sources */,
  3925. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */,
  3926. 65070A332BFDCB83006F213F /* TidepoolStartView.swift in Sources */,
  3927. 190EBCC629FF138000BA767D /* UserInterfaceSettingsProvider.swift in Sources */,
  3928. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */,
  3929. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */,
  3930. 3811DEE825CA063400A708ED /* Injected.swift in Sources */,
  3931. DD1745152C54388A00211FAC /* TherapySettingsView.swift in Sources */,
  3932. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */,
  3933. DDAA29832D2D1D93006546A1 /* AdjustmentsRootView+Overrides.swift in Sources */,
  3934. DDD1631F2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld in Sources */,
  3935. DD1745482C55C61D00211FAC /* AutosensSettingsStateModel.swift in Sources */,
  3936. DD1745462C55C61500211FAC /* AutosensSettingsProvider.swift in Sources */,
  3937. DDA6E2852D2361F800C2988C /* LoopStatusView.swift in Sources */,
  3938. DDA6E3202D258E0500C2988C /* OverrideHelpView.swift in Sources */,
  3939. DDA6E2502D22187500C2988C /* ChartLegendView.swift in Sources */,
  3940. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */,
  3941. DDD6D4D32CDE90720029439A /* EstimatedA1cDisplayUnit.swift in Sources */,
  3942. DDA6E3572D25988500C2988C /* ContactImageHelpView.swift in Sources */,
  3943. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */,
  3944. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */,
  3945. DDA9AC092D672CF100E6F1A9 /* AppVersionChecker.swift in Sources */,
  3946. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */,
  3947. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */,
  3948. DD32CFA22CC824E2003686D6 /* TrioRemoteControl+Helpers.swift in Sources */,
  3949. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */,
  3950. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */,
  3951. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */,
  3952. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */,
  3953. CE1F6DE92BAF37C90064EB8D /* TidepoolConfigView.swift in Sources */,
  3954. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */,
  3955. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */,
  3956. BD249D8A2D42FC1200412DEB /* GlucosePercentileChart.swift in Sources */,
  3957. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */,
  3958. 58D08B222C8DAA8E00AA37D3 /* OverrideView.swift in Sources */,
  3959. BD0B2EF32C5998E600B3298F /* MealPresetView.swift in Sources */,
  3960. E592A3702CEEC01E009A472C /* ContactTrickEntry.swift in Sources */,
  3961. DD6D67E42C9C253500660C9B /* ColorSchemeOption.swift in Sources */,
  3962. 582DF9752C8CDB92001F516D /* GlucoseChartView.swift in Sources */,
  3963. BD432CA12D2F4E3600D1EB79 /* WatchMessageKeys.swift in Sources */,
  3964. DD4C581F2D73C43D001BFF2C /* LoopStatsView.swift in Sources */,
  3965. 58A3D53A2C96D4DE003F90FC /* AddTempTargetForm.swift in Sources */,
  3966. DD1745302C55AE5300211FAC /* TargetBehaviorProvider.swift in Sources */,
  3967. 58D08B382C8DFB6000AA37D3 /* BasalChart.swift in Sources */,
  3968. 118DF76D2C5ECBC60067FEB7 /* OverridePresetEntity.swift in Sources */,
  3969. 58645B9F2CA2D2BE008AFCE7 /* PumpHistorySetup.swift in Sources */,
  3970. DD17454E2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift in Sources */,
  3971. DDF847E62C5D66490049BB3B /* AddMealPresetView.swift in Sources */,
  3972. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */,
  3973. BDA6CC882CAF219B00F942F9 /* TempTargetSetup.swift in Sources */,
  3974. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */,
  3975. DD1745192C543B5700211FAC /* NotificationsView.swift in Sources */,
  3976. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */,
  3977. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */,
  3978. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */,
  3979. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */,
  3980. 582DF97B2C8CE209001F516D /* CarbView.swift in Sources */,
  3981. DD940BAA2CA7585D000830A5 /* GlucoseColorScheme.swift in Sources */,
  3982. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */,
  3983. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */,
  3984. CE95BF5A2BA62E4A00DC3DE3 /* PluginSource.swift in Sources */,
  3985. DD21FCB52C6952AD00AF2C25 /* DecimalPickerSettings.swift in Sources */,
  3986. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */,
  3987. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */,
  3988. CEE9A6592BBB418300EB5194 /* CalibrationsDataFlow.swift in Sources */,
  3989. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */,
  3990. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */,
  3991. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */,
  3992. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */,
  3993. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */,
  3994. BD793CB22CE8033500D669AC /* TempTargetRunStored.swift in Sources */,
  3995. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */,
  3996. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */,
  3997. 190EBCCB29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift in Sources */,
  3998. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */,
  3999. BD249D8E2D42FC3900412DEB /* LoopBarChartView.swift in Sources */,
  4000. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */,
  4001. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */,
  4002. BD793CB02CE7C61500D669AC /* OverrideRunStored+helper.swift in Sources */,
  4003. 3B4196E02D8C4BC00091DFF7 /* HomeStateModel+CGM.swift in Sources */,
  4004. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */,
  4005. DD32CF9C2CC82499003686D6 /* TrioRemoteControl+TempTarget.swift in Sources */,
  4006. BD249D882D42FC0000412DEB /* BolusStatsView.swift in Sources */,
  4007. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */,
  4008. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */,
  4009. DDD163142C4C68D300CD525A /* AdjustmentsProvider.swift in Sources */,
  4010. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */,
  4011. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */,
  4012. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */,
  4013. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */,
  4014. BD249D8C2D42FC2C00412DEB /* GlucoseDistributionChart.swift in Sources */,
  4015. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */,
  4016. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */,
  4017. DD1745372C55B74200211FAC /* AlgorithmSettings.swift in Sources */,
  4018. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */,
  4019. DDF847E12C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift in Sources */,
  4020. 583684082BD195A700070A60 /* Determination.swift in Sources */,
  4021. DD17451D2C543C5F00211FAC /* ServicesView.swift in Sources */,
  4022. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */,
  4023. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */,
  4024. 190EBCC829FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift in Sources */,
  4025. DDF847EA2C5DABAC0049BB3B /* WatchConfigGarminView.swift in Sources */,
  4026. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */,
  4027. BD4E1A7A2D3681B700D21626 /* GlucoseTargetSetup.swift in Sources */,
  4028. BDB3C1192C03DD1000CEEAA1 /* UserDefaultsExtension.swift in Sources */,
  4029. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */,
  4030. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */,
  4031. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */,
  4032. DD940BAC2CA75889000830A5 /* DynamicGlucoseColor.swift in Sources */,
  4033. 3883581C25EE79BB00E024B2 /* TextFieldWithToolBar.swift in Sources */,
  4034. 58D08B302C8DEA7500AA37D3 /* ForecastView.swift in Sources */,
  4035. 6B1A8D2E2B156EEF00E76752 /* LiveActivityManager.swift in Sources */,
  4036. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */,
  4037. DD4FFF332D458EE600B6CFF9 /* GarminWatchState.swift in Sources */,
  4038. DD6B7CB22C7B6F0800B75029 /* Rounding.swift in Sources */,
  4039. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */,
  4040. BDB8998A2C565D0C006F3298 /* CarbsGlucose+helper.swift in Sources */,
  4041. BD7DB88E2D2C4A17003D3155 /* BolusCalculationManager.swift in Sources */,
  4042. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */,
  4043. BDCD47AF2C1F3F1700F8BCD5 /* OverrideStored+helper.swift in Sources */,
  4044. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */,
  4045. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */,
  4046. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */,
  4047. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */,
  4048. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */,
  4049. BDFD165A2AE40438007F0DDA /* TreatmentsRootView.swift in Sources */,
  4050. BD54A9732D281ABC00F9C1EE /* TempTargetPresetWatch.swift in Sources */,
  4051. DD3078682D42F5CE00DE0490 /* WatchGlucoseObject.swift in Sources */,
  4052. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */,
  4053. DD1745522C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift in Sources */,
  4054. DD2CC85C2D25DA1000445446 /* GlucoseTargetsView.swift in Sources */,
  4055. 190EBCC429FF136900BA767D /* UserInterfaceSettingsDataFlow.swift in Sources */,
  4056. CE3EEF9A2D463717001944DD /* CustomCGMOptionsView.swift in Sources */,
  4057. 5A2325582BFCC168003518CA /* NightscoutConnectView.swift in Sources */,
  4058. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */,
  4059. 110AEDE42C5193D200615CC9 /* BolusIntentRequest.swift in Sources */,
  4060. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */,
  4061. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */,
  4062. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */,
  4063. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */,
  4064. 110AEDEB2C51A0AE00615CC9 /* ShortcutsConfigView.swift in Sources */,
  4065. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */,
  4066. DD1DB7CC2BECCA1F0048B367 /* BuildDetails.swift in Sources */,
  4067. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */,
  4068. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */,
  4069. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */,
  4070. DD73FA0F2D74F58E00D19D1E /* BackgroundTask+Helper.swift in Sources */,
  4071. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */,
  4072. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */,
  4073. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */,
  4074. DD32CFA02CC824D6003686D6 /* TrioRemoteControl+APNS.swift in Sources */,
  4075. CE7CA3532A064973004BE681 /* TempPresetIntent.swift in Sources */,
  4076. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */,
  4077. DD6B7CBB2C7FBBFA00B75029 /* ReviewInsulinActionView.swift in Sources */,
  4078. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */,
  4079. BDB899882C564509006F3298 /* ForecastChart.swift in Sources */,
  4080. 110AEDE32C5193D200615CC9 /* BolusIntent.swift in Sources */,
  4081. 58645BA12CA2D2F8008AFCE7 /* OverrideSetup.swift in Sources */,
  4082. DDD1631A2C4C695E00CD525A /* EditOverrideForm.swift in Sources */,
  4083. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */,
  4084. CE1F6DDB2BAE08B60064EB8D /* TidepoolManager.swift in Sources */,
  4085. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */,
  4086. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */,
  4087. DDA6E3222D25901100C2988C /* TempTargetHelpView.swift in Sources */,
  4088. 58645B9D2CA2D275008AFCE7 /* DeterminationSetup.swift in Sources */,
  4089. 491D6FBD2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift in Sources */,
  4090. 491D6FBE2D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift in Sources */,
  4091. 491D6FBF2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift in Sources */,
  4092. 491D6FC02D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift in Sources */,
  4093. DD1745442C55C60E00211FAC /* AutosensSettingsDataFlow.swift in Sources */,
  4094. BD249DA72D42FE4600412DEB /* Calendar+GlucoseStatsChart.swift in Sources */,
  4095. BDCAF2382C639F35002DC907 /* SettingItems.swift in Sources */,
  4096. 58D08B342C8DF9A700AA37D3 /* CobIobChart.swift in Sources */,
  4097. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */,
  4098. BD249D9B2D42FCDB00412DEB /* LoopChartSetup.swift in Sources */,
  4099. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */,
  4100. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */,
  4101. DD17452E2C55AE4800211FAC /* TargetBehavoirDataFlow.swift in Sources */,
  4102. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */,
  4103. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */,
  4104. 19D466AA29AA3099004D5F33 /* MealSettingsRootView.swift in Sources */,
  4105. CEF1ED6B2D58FB5800FAF41E /* CGMOptions.swift in Sources */,
  4106. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */,
  4107. DD1745502C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift in Sources */,
  4108. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */,
  4109. BD4064D12C4ED26900582F43 /* CoreDataObserver.swift in Sources */,
  4110. 58645B9B2CA2D24F008AFCE7 /* CarbSetup.swift in Sources */,
  4111. 38E44536274E411700EC9A94 /* Disk.swift in Sources */,
  4112. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */,
  4113. 582DF9792C8CE1E5001F516D /* MainChartHelper.swift in Sources */,
  4114. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */,
  4115. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */,
  4116. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */,
  4117. 38FEF3FE2738083E00574A46 /* CGMSettingsProvider.swift in Sources */,
  4118. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */,
  4119. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */,
  4120. DD1745242C55526000211FAC /* SMBSettingsStateModel.swift in Sources */,
  4121. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */,
  4122. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */,
  4123. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */,
  4124. 195D80B42AF6973A00D25097 /* DynamicSettingsRootView.swift in Sources */,
  4125. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */,
  4126. DD09D47F2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift in Sources */,
  4127. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */,
  4128. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */,
  4129. DD1745172C54389F00211FAC /* FeatureSettingsView.swift in Sources */,
  4130. DD9ECB712CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift in Sources */,
  4131. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */,
  4132. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */,
  4133. DDCAE8332D78D4A800B1BB51 /* TherapySettingsUtil.swift in Sources */,
  4134. BDA25EFD2D261C0000035F34 /* WatchState.swift in Sources */,
  4135. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */,
  4136. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */,
  4137. DD17453C2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift in Sources */,
  4138. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */,
  4139. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */,
  4140. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */,
  4141. DD1E53592D273F26008F32A4 /* LoopStatusHelpView.swift in Sources */,
  4142. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */,
  4143. 195D80BB2AF6980B00D25097 /* DynamicSettingsStateModel.swift in Sources */,
  4144. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */,
  4145. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */,
  4146. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */,
  4147. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */,
  4148. DD17454B2C55C62800211FAC /* AutosensSettingsRootView.swift in Sources */,
  4149. DDF847DF2C5C28780049BB3B /* LiveActivitySettingsProvider.swift in Sources */,
  4150. DDB37CC52D05048F00D99BF4 /* ContactImageStorage.swift in Sources */,
  4151. BD54A95B2D28087C00F9C1EE /* OverridePresetWatch.swift in Sources */,
  4152. 3B2F77882D7E5387005ED9FA /* CurrentTDDSetup.swift in Sources */,
  4153. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */,
  4154. BDF34EBE2C0A31D100D51995 /* CustomNotification.swift in Sources */,
  4155. BDC2EA472C3045AD00E5BBD0 /* Override.swift in Sources */,
  4156. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */,
  4157. DDB37CC72D05127500D99BF4 /* FontExtensions.swift in Sources */,
  4158. 582DF9772C8CDBE7001F516D /* InsulinView.swift in Sources */,
  4159. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */,
  4160. DD68889D2C386E17006E3C44 /* NightscoutExercise.swift in Sources */,
  4161. 5864E8592C42CFAE00294306 /* DeterminationStorage.swift in Sources */,
  4162. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */,
  4163. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */,
  4164. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */,
  4165. BD249D9D2D42FCF500412DEB /* MealStatsSetup.swift in Sources */,
  4166. BD6EB2D62C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift in Sources */,
  4167. DD32CF982CC82463003686D6 /* TrioRemoteControl+Bolus.swift in Sources */,
  4168. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */,
  4169. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */,
  4170. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */,
  4171. A33352ED40476125EBAC6EE0 /* CarbRatioEditorDataFlow.swift in Sources */,
  4172. 17A9D0899046B45E87834820 /* CarbRatioEditorProvider.swift in Sources */,
  4173. 69B9A368029F7EB39F525422 /* CarbRatioEditorStateModel.swift in Sources */,
  4174. 118DF76B2C5ECBC60067FEB7 /* CancelOverrideIntent.swift in Sources */,
  4175. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */,
  4176. 98641AF4F92123DA668AB931 /* CarbRatioEditorRootView.swift in Sources */,
  4177. BDF34F902C10CF8C00D51995 /* CoreDataStack.swift in Sources */,
  4178. CEE9A65C2BBB41C800EB5194 /* CalibrationService.swift in Sources */,
  4179. 110AEDED2C51A0AE00615CC9 /* ShortcutsConfigProvider.swift in Sources */,
  4180. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */,
  4181. 58D08B3A2C8DFECD00AA37D3 /* TempTargets.swift in Sources */,
  4182. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */,
  4183. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */,
  4184. 58A3D5442C96DE11003F90FC /* TempTargetStored+Helper.swift in Sources */,
  4185. DD6B7CB42C7B71F700B75029 /* ForecastDisplayType.swift in Sources */,
  4186. DDEBB05C2D89E9050032305D /* TimeInRangeType.swift in Sources */,
  4187. DD5DC9F32CF3D9DD00AB8703 /* AdjustmentsStateModel+TempTargets.swift in Sources */,
  4188. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */,
  4189. DD17453A2C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift in Sources */,
  4190. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */,
  4191. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */,
  4192. BD249D992D42FCCD00412DEB /* BolusStatsSetup.swift in Sources */,
  4193. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */,
  4194. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */,
  4195. DDD163182C4C694000CD525A /* AdjustmentsRootView.swift in Sources */,
  4196. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */,
  4197. 110AEDEC2C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift in Sources */,
  4198. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */,
  4199. DD4C57A82D73ADEA001BFF2C /* RestartLiveActivityIntent.swift in Sources */,
  4200. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */,
  4201. DD09D4822C5986F6003FEA5D /* CalendarEventSettingsRootView.swift in Sources */,
  4202. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */,
  4203. DD5DC9F92CF3DAA900AB8703 /* RadioButton.swift in Sources */,
  4204. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */,
  4205. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */,
  4206. E592A3772CEEC038009A472C /* ContactImageStateModel.swift in Sources */,
  4207. E592A3782CEEC038009A472C /* ContactImageDataFlow.swift in Sources */,
  4208. DDAA29852D2D1D9E006546A1 /* AdjustmentsRootView+TempTargets.swift in Sources */,
  4209. E592A3792CEEC038009A472C /* ContactImageRootView.swift in Sources */,
  4210. BDC531182D1062F200088832 /* ContactImageState.swift in Sources */,
  4211. BD249D9F2D42FD0600412DEB /* StackedChartSetup.swift in Sources */,
  4212. E592A37A2CEEC038009A472C /* ContactImageProvider.swift in Sources */,
  4213. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */,
  4214. DD30786A2D42F94000DE0490 /* GarminDevice.swift in Sources */,
  4215. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */,
  4216. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */,
  4217. DDD163162C4C690300CD525A /* AdjustmentsDataFlow.swift in Sources */,
  4218. BDF34F932C10D0E100D51995 /* LiveActivityAttributes+Helper.swift in Sources */,
  4219. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */,
  4220. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */,
  4221. 041D1E995A6AE92E9289DC49 /* TreatmentsDataFlow.swift in Sources */,
  4222. DD32CF9E2CC824C5003686D6 /* TrioRemoteControl+Override.swift in Sources */,
  4223. BD249D922D42FC5300412DEB /* GlucoseSectorChart.swift in Sources */,
  4224. 23888883D4EA091C88480FF2 /* TreatmentsProvider.swift in Sources */,
  4225. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */,
  4226. 715120D22D3C2BB4005D9FB6 /* GlucoseNotificationsOption.swift in Sources */,
  4227. BDBAACFA2C2D439700370AAE /* OverrideData.swift in Sources */,
  4228. DD9ECB682CA99F4500AA7C45 /* TrioRemoteControl.swift in Sources */,
  4229. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */,
  4230. 69A31254F2451C20361D172F /* TreatmentsStateModel.swift in Sources */,
  4231. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */,
  4232. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */,
  4233. BDC531162D10629000088832 /* ContactPicture.swift in Sources */,
  4234. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */,
  4235. BD4E1A7C2D3686D900D21626 /* StartEndMarkerSetup.swift in Sources */,
  4236. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */,
  4237. BDF34F852C10C62E00D51995 /* GlucoseData.swift in Sources */,
  4238. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */,
  4239. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */,
  4240. DD1745222C55524800211FAC /* SMBSettingsProvider.swift in Sources */,
  4241. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */,
  4242. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */,
  4243. 49B9B57F2D5768D2009C6B59 /* AdjustmentStored+Helper.swift in Sources */,
  4244. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */,
  4245. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */,
  4246. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */,
  4247. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */,
  4248. BDA7593E2D37CFC400E649A4 /* CarbEntryEditorView.swift in Sources */,
  4249. 118DF76A2C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift in Sources */,
  4250. 58645B992CA2D1A4008AFCE7 /* GlucoseSetup.swift in Sources */,
  4251. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */,
  4252. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */,
  4253. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */,
  4254. DDD163122C4C689900CD525A /* AdjustmentsStateModel.swift in Sources */,
  4255. 3B2F77862D7E52ED005ED9FA /* TDD.swift in Sources */,
  4256. DD1745132C54169400211FAC /* DevicesView.swift in Sources */,
  4257. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */,
  4258. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */,
  4259. DDCE790F2D6F97FC000A4D7A /* SubmodulesView.swift in Sources */,
  4260. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */,
  4261. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */,
  4262. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  4263. 195D80B92AF697F700D25097 /* DynamicSettingsProvider.swift in Sources */,
  4264. DD09D47D2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift in Sources */,
  4265. DD09D47B2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift in Sources */,
  4266. DD1745202C55523E00211FAC /* SMBSettingsDataFlow.swift in Sources */,
  4267. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */,
  4268. DD1745292C55642100211FAC /* SettingInputSection.swift in Sources */,
  4269. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */,
  4270. F5CA3DB1F9DC8B05792BBFAA /* CGMSettingsDataFlow.swift in Sources */,
  4271. BDF34F952C10D27300D51995 /* DeterminationData.swift in Sources */,
  4272. BA00D96F7B2FF169A06FB530 /* CGMSettingsStateModel.swift in Sources */,
  4273. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */,
  4274. 6EADD581738D64431902AC0A /* (null) in Sources */,
  4275. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
  4276. DD5DC9FB2CF3E1B100AB8703 /* AdjustmentsStateModel+Helpers.swift in Sources */,
  4277. BD249D972D42FCBF00412DEB /* AreaChartSetup.swift in Sources */,
  4278. DDF847E42C5C288F0049BB3B /* LiveActivitySettingsRootView.swift in Sources */,
  4279. DD88C8E22C50420800F2D558 /* DefinitionRow.swift in Sources */,
  4280. B7C465E9472624D8A2BE2A6A /* (null) in Sources */,
  4281. 71D44AAB2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift in Sources */,
  4282. 320D030F724170A637F06D50 /* (null) in Sources */,
  4283. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */,
  4284. 5A2325522BFCBF55003518CA /* NightscoutUploadView.swift in Sources */,
  4285. E3A08AAE59538BC8A8ABE477 /* GlucoseNotificationSettingsDataFlow.swift in Sources */,
  4286. 0F7A65FBD2CD8D6477ED4539 /* GlucoseNotificationSettingsProvider.swift in Sources */,
  4287. 3171D2818C7C72CD1584BB5E /* GlucoseNotificationSettingsStateModel.swift in Sources */,
  4288. DDE179522C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift in Sources */,
  4289. DDE179532C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift in Sources */,
  4290. DDE179542C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift in Sources */,
  4291. BDC530FF2D0F6BE300088832 /* ContactImageManager.swift in Sources */,
  4292. BDC531122D1060FA00088832 /* ContactImageDetailView.swift in Sources */,
  4293. DDE179552C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift in Sources */,
  4294. DDE179562C910127003CDDB7 /* BolusStored+CoreDataClass.swift in Sources */,
  4295. DDE179572C910127003CDDB7 /* BolusStored+CoreDataProperties.swift in Sources */,
  4296. BD4D738D2D15A4080052227B /* TDDStored+CoreDataClass.swift in Sources */,
  4297. BD4D738E2D15A4080052227B /* TDDStored+CoreDataProperties.swift in Sources */,
  4298. DDE179582C910127003CDDB7 /* ForecastValue+CoreDataClass.swift in Sources */,
  4299. DDE179592C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift in Sources */,
  4300. DDE1795A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift in Sources */,
  4301. DDE1795B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift in Sources */,
  4302. DDE1795E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift in Sources */,
  4303. BDDAF9EF2D00554500B34E7A /* SelectionPopoverView.swift in Sources */,
  4304. DDE1795F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift in Sources */,
  4305. DDE179602C910127003CDDB7 /* StatsData+CoreDataClass.swift in Sources */,
  4306. DDE179612C910127003CDDB7 /* StatsData+CoreDataProperties.swift in Sources */,
  4307. DDE179622C910127003CDDB7 /* Forecast+CoreDataClass.swift in Sources */,
  4308. DDE179632C910127003CDDB7 /* Forecast+CoreDataProperties.swift in Sources */,
  4309. DDE179642C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift in Sources */,
  4310. DDE179652C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift in Sources */,
  4311. BDC531142D10611D00088832 /* AddContactImageSheet.swift in Sources */,
  4312. DDE179662C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift in Sources */,
  4313. DDE179672C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift in Sources */,
  4314. DDE179682C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift in Sources */,
  4315. DDE179692C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift in Sources */,
  4316. BD4D73A22D15A42A0052227B /* TDDStorage.swift in Sources */,
  4317. DDE1796C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift in Sources */,
  4318. DDE1796D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift in Sources */,
  4319. DDE1796E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift in Sources */,
  4320. DDE1796F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift in Sources */,
  4321. DDE179702C910127003CDDB7 /* OverrideStored+CoreDataClass.swift in Sources */,
  4322. DD9ECB742CA9A0C300AA7C45 /* RemoteControlConfig.swift in Sources */,
  4323. DDE179712C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift in Sources */,
  4324. CD78BB94E43B249D60CC1A1B /* GlucoseNotificationSettingsRootView.swift in Sources */,
  4325. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */,
  4326. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */,
  4327. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */,
  4328. BD4ED4FD2CF9D5E8000EDC9C /* AppState.swift in Sources */,
  4329. DDF847DD2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift in Sources */,
  4330. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */,
  4331. BDA25EE42D260CD500035F34 /* AppleWatchManager.swift in Sources */,
  4332. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */,
  4333. );
  4334. runOnlyForDeploymentPostprocessing = 0;
  4335. };
  4336. 38FCF3E925E9028E0078B0D1 /* Sources */ = {
  4337. isa = PBXSourcesBuildPhase;
  4338. buildActionMask = 2147483647;
  4339. files = (
  4340. BD8FC0572D66188700B95AED /* PumpHistoryStorageTests.swift in Sources */,
  4341. BD8FC0642D6619EF00B95AED /* TempTargetStorageTests.swift in Sources */,
  4342. BD8FC0542D66186000B95AED /* TestError.swift in Sources */,
  4343. CEE9A65E2BBC9F6500EB5194 /* CalibrationsTests.swift in Sources */,
  4344. BD8FC0622D6619E600B95AED /* OverrideStorageTests.swift in Sources */,
  4345. BD8FC0592D66189700B95AED /* TestAssembly.swift in Sources */,
  4346. BD8FC0662D661A0000B95AED /* GlucoseStorageTests.swift in Sources */,
  4347. BD8FC05B2D6618AF00B95AED /* DeterminationStorageTests.swift in Sources */,
  4348. CE1F6DD92BADF4620064EB8D /* PluginManagerTests.swift in Sources */,
  4349. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */,
  4350. BD8FC0602D6619DB00B95AED /* CarbsStorageTests.swift in Sources */,
  4351. BD8FC05E2D6618CE00B95AED /* BolusCalculatorTests.swift in Sources */,
  4352. );
  4353. runOnlyForDeploymentPostprocessing = 0;
  4354. };
  4355. 6B1A8D132B14D91500E76752 /* Sources */ = {
  4356. isa = PBXSourcesBuildPhase;
  4357. buildActionMask = 2147483647;
  4358. files = (
  4359. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  4360. DDCEBF5B2CC1B76400DF4C36 /* LiveActivity+Helper.swift in Sources */,
  4361. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */,
  4362. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */,
  4363. );
  4364. runOnlyForDeploymentPostprocessing = 0;
  4365. };
  4366. BD8207BF2D2B42E50023339D /* Sources */ = {
  4367. isa = PBXSourcesBuildPhase;
  4368. buildActionMask = 2147483647;
  4369. files = (
  4370. DD09D6462D2B553A000D82C9 /* TrioWatchComplication.swift in Sources */,
  4371. );
  4372. runOnlyForDeploymentPostprocessing = 0;
  4373. };
  4374. BDFF79782D25AA870016C40C /* Sources */ = {
  4375. isa = PBXSourcesBuildPhase;
  4376. buildActionMask = 2147483647;
  4377. files = (
  4378. BDA25F222D26D62800035F34 /* BolusInputView.swift in Sources */,
  4379. BDFF7A882D25F97D0016C40C /* TrioMainWatchView.swift in Sources */,
  4380. BDA25F202D26D5FE00035F34 /* CarbsInputView.swift in Sources */,
  4381. BDA25F1C2D26BD0700035F34 /* TrendShape.swift in Sources */,
  4382. BDFF7A892D25F97D0016C40C /* TrioWatchApp.swift in Sources */,
  4383. DD09D5C72D29EB2F000D82C9 /* Helper+Enums.swift in Sources */,
  4384. BD54A9742D281AEF00F9C1EE /* TempTargetPresetWatch.swift in Sources */,
  4385. BD54A95C2D2808A300F9C1EE /* OverridePresetWatch.swift in Sources */,
  4386. BD54A9592D27FB7800F9C1EE /* OverridePresetsView.swift in Sources */,
  4387. BDA25F1E2D26D5DD00035F34 /* GlucoseChartView.swift in Sources */,
  4388. DD6F63CC2D27F615007D94CF /* TreatmentMenuView.swift in Sources */,
  4389. DD3A3CE72D29C93F00AE478E /* Helper+Extensions.swift in Sources */,
  4390. DD246F062D2836AA0027DDE0 /* GlucoseTrendView.swift in Sources */,
  4391. BD432CA22D2F4E4000D1EB79 /* WatchMessageKeys.swift in Sources */,
  4392. DD8262CB2D289297009F6F62 /* BolusConfirmationView.swift in Sources */,
  4393. BD54A9712D281A8100F9C1EE /* TempTargetPresetsView.swift in Sources */,
  4394. DD3A3CE92D29C97800AE478E /* Helper+ButtonStyles.swift in Sources */,
  4395. BDAE40002D372BAD009C12B1 /* WatchState+Requests.swift in Sources */,
  4396. BDA25EE62D260D5E00035F34 /* WatchState.swift in Sources */,
  4397. BD04ECCE2D29952A008C5FEB /* BolusProgressOverlay.swift in Sources */,
  4398. DD09D5C92D29F3D0000D82C9 /* AcknowledgementPendingView.swift in Sources */,
  4399. );
  4400. runOnlyForDeploymentPostprocessing = 0;
  4401. };
  4402. BDFF79872D25AA890016C40C /* Sources */ = {
  4403. isa = PBXSourcesBuildPhase;
  4404. buildActionMask = 2147483647;
  4405. files = (
  4406. BDFF7A8B2D25F97D0016C40C /* Unit Tests.swift in Sources */,
  4407. );
  4408. runOnlyForDeploymentPostprocessing = 0;
  4409. };
  4410. /* End PBXSourcesBuildPhase section */
  4411. /* Begin PBXTargetDependency section */
  4412. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */ = {
  4413. isa = PBXTargetDependency;
  4414. target = 388E595725AD948C0019842D /* Trio */;
  4415. targetProxy = 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */;
  4416. };
  4417. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */ = {
  4418. isa = PBXTargetDependency;
  4419. target = 6B1A8D162B14D91500E76752 /* LiveActivityExtension */;
  4420. targetProxy = 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */;
  4421. };
  4422. BD8207CD2D2B42E70023339D /* PBXTargetDependency */ = {
  4423. isa = PBXTargetDependency;
  4424. target = BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */;
  4425. targetProxy = BD8207CC2D2B42E70023339D /* PBXContainerItemProxy */;
  4426. };
  4427. BDFF798D2D25AA890016C40C /* PBXTargetDependency */ = {
  4428. isa = PBXTargetDependency;
  4429. target = BDFF797B2D25AA870016C40C /* Trio Watch App */;
  4430. targetProxy = BDFF798C2D25AA890016C40C /* PBXContainerItemProxy */;
  4431. };
  4432. BDFF799E2D25AA890016C40C /* PBXTargetDependency */ = {
  4433. isa = PBXTargetDependency;
  4434. target = BDFF797B2D25AA870016C40C /* Trio Watch App */;
  4435. targetProxy = BDFF799D2D25AA890016C40C /* PBXContainerItemProxy */;
  4436. };
  4437. /* End PBXTargetDependency section */
  4438. /* Begin XCBuildConfiguration section */
  4439. 388E596525AD948E0019842D /* Debug */ = {
  4440. isa = XCBuildConfiguration;
  4441. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  4442. buildSettings = {
  4443. ALWAYS_SEARCH_USER_PATHS = NO;
  4444. APP_GROUP_ID = "group.$(BUNDLE_IDENTIFIER).trio-app-group";
  4445. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4446. CLANG_ANALYZER_NONNULL = YES;
  4447. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4448. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4449. CLANG_CXX_LIBRARY = "libc++";
  4450. CLANG_ENABLE_MODULES = YES;
  4451. CLANG_ENABLE_OBJC_ARC = YES;
  4452. CLANG_ENABLE_OBJC_WEAK = YES;
  4453. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4454. CLANG_WARN_BOOL_CONVERSION = YES;
  4455. CLANG_WARN_COMMA = YES;
  4456. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4457. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4458. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4459. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4460. CLANG_WARN_EMPTY_BODY = YES;
  4461. CLANG_WARN_ENUM_CONVERSION = YES;
  4462. CLANG_WARN_INFINITE_RECURSION = YES;
  4463. CLANG_WARN_INT_CONVERSION = YES;
  4464. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4465. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4466. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4467. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4468. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4469. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4470. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4471. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4472. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4473. CLANG_WARN_UNREACHABLE_CODE = YES;
  4474. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4475. COPY_PHASE_STRIP = NO;
  4476. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  4477. DEBUG_INFORMATION_FORMAT = dwarf;
  4478. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4479. ENABLE_TESTABILITY = YES;
  4480. GCC_C_LANGUAGE_STANDARD = gnu11;
  4481. GCC_DYNAMIC_NO_PIC = NO;
  4482. GCC_NO_COMMON_BLOCKS = YES;
  4483. GCC_OPTIMIZATION_LEVEL = 0;
  4484. GCC_PREPROCESSOR_DEFINITIONS = (
  4485. "DEBUG=1",
  4486. "$(inherited)",
  4487. );
  4488. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4489. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4490. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4491. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4492. GCC_WARN_UNUSED_FUNCTION = YES;
  4493. GCC_WARN_UNUSED_VARIABLE = YES;
  4494. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4495. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4496. MARKETING_VERSION = "$(APP_VERSION)";
  4497. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4498. MTL_FAST_MATH = YES;
  4499. ONLY_ACTIVE_ARCH = YES;
  4500. SDKROOT = iphoneos;
  4501. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4502. SWIFT_EMIT_LOC_STRINGS = YES;
  4503. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4504. };
  4505. name = Debug;
  4506. };
  4507. 388E596625AD948E0019842D /* Release */ = {
  4508. isa = XCBuildConfiguration;
  4509. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  4510. buildSettings = {
  4511. ALWAYS_SEARCH_USER_PATHS = NO;
  4512. APP_GROUP_ID = "group.$(BUNDLE_IDENTIFIER).trio-app-group";
  4513. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4514. CLANG_ANALYZER_NONNULL = YES;
  4515. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4516. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4517. CLANG_CXX_LIBRARY = "libc++";
  4518. CLANG_ENABLE_MODULES = YES;
  4519. CLANG_ENABLE_OBJC_ARC = YES;
  4520. CLANG_ENABLE_OBJC_WEAK = YES;
  4521. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4522. CLANG_WARN_BOOL_CONVERSION = YES;
  4523. CLANG_WARN_COMMA = YES;
  4524. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4525. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4526. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4527. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4528. CLANG_WARN_EMPTY_BODY = YES;
  4529. CLANG_WARN_ENUM_CONVERSION = YES;
  4530. CLANG_WARN_INFINITE_RECURSION = YES;
  4531. CLANG_WARN_INT_CONVERSION = YES;
  4532. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4533. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4534. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4535. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4536. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4537. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4538. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4539. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4540. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4541. CLANG_WARN_UNREACHABLE_CODE = YES;
  4542. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4543. COPY_PHASE_STRIP = NO;
  4544. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  4545. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4546. ENABLE_NS_ASSERTIONS = NO;
  4547. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4548. GCC_C_LANGUAGE_STANDARD = gnu11;
  4549. GCC_NO_COMMON_BLOCKS = YES;
  4550. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4551. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4552. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4553. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4554. GCC_WARN_UNUSED_FUNCTION = YES;
  4555. GCC_WARN_UNUSED_VARIABLE = YES;
  4556. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4557. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4558. MARKETING_VERSION = "$(APP_VERSION)";
  4559. MTL_ENABLE_DEBUG_INFO = NO;
  4560. MTL_FAST_MATH = YES;
  4561. SDKROOT = iphoneos;
  4562. SWIFT_COMPILATION_MODE = wholemodule;
  4563. SWIFT_EMIT_LOC_STRINGS = YES;
  4564. SWIFT_OPTIMIZATION_LEVEL = "-O";
  4565. VALIDATE_PRODUCT = YES;
  4566. };
  4567. name = Release;
  4568. };
  4569. 388E596825AD948E0019842D /* Debug */ = {
  4570. isa = XCBuildConfiguration;
  4571. buildSettings = {
  4572. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  4573. APP_GROUP_ID = "$(APP_GROUP_ID)";
  4574. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  4575. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4576. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  4577. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4578. CODE_SIGN_ENTITLEMENTS = Trio/Resources/Trio.entitlements;
  4579. CODE_SIGN_IDENTITY = "Apple Development";
  4580. CODE_SIGN_STYLE = Automatic;
  4581. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  4582. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4583. DEVELOPER_TEAM = "$(DEVELOPER_TEAM)";
  4584. DEVELOPMENT_ASSET_PATHS = "";
  4585. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4586. ENABLE_PREVIEWS = YES;
  4587. INFOPLIST_FILE = Trio/Resources/Info.plist;
  4588. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4589. LD_RUNPATH_SEARCH_PATHS = (
  4590. "$(inherited)",
  4591. "@executable_path/Frameworks",
  4592. );
  4593. LIBRARY_SEARCH_PATHS = (
  4594. "$(inherited)",
  4595. "$(SDKROOT)/usr/lib/swift",
  4596. );
  4597. MARKETING_VERSION = "$(APP_VERSION)";
  4598. OTHER_LDFLAGS = (
  4599. "-weak_framework",
  4600. CoreNFC,
  4601. "-ObjC",
  4602. );
  4603. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4604. PRODUCT_NAME = "$(TARGET_NAME)";
  4605. PROVISIONING_PROFILE_SPECIFIER = "";
  4606. SWIFT_VERSION = 5.0;
  4607. TARGETED_DEVICE_FAMILY = "1,2";
  4608. };
  4609. name = Debug;
  4610. };
  4611. 388E596925AD948E0019842D /* Release */ = {
  4612. isa = XCBuildConfiguration;
  4613. buildSettings = {
  4614. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  4615. APP_GROUP_ID = "$(APP_GROUP_ID)";
  4616. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  4617. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4618. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  4619. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4620. CODE_SIGN_ENTITLEMENTS = Trio/Resources/Trio.entitlements;
  4621. CODE_SIGN_IDENTITY = "Apple Development";
  4622. CODE_SIGN_STYLE = Automatic;
  4623. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  4624. DEVELOPER_TEAM = "$(DEVELOPER_TEAM)";
  4625. DEVELOPMENT_ASSET_PATHS = "";
  4626. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4627. ENABLE_PREVIEWS = YES;
  4628. INFOPLIST_FILE = Trio/Resources/Info.plist;
  4629. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4630. LD_RUNPATH_SEARCH_PATHS = (
  4631. "$(inherited)",
  4632. "@executable_path/Frameworks",
  4633. );
  4634. LIBRARY_SEARCH_PATHS = (
  4635. "$(inherited)",
  4636. "$(SDKROOT)/usr/lib/swift",
  4637. );
  4638. MARKETING_VERSION = "$(APP_VERSION)";
  4639. OTHER_LDFLAGS = (
  4640. "-weak_framework",
  4641. CoreNFC,
  4642. "-ObjC",
  4643. );
  4644. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4645. PRODUCT_NAME = "$(TARGET_NAME)";
  4646. PROVISIONING_PROFILE_SPECIFIER = "";
  4647. SWIFT_VERSION = 5.0;
  4648. TARGETED_DEVICE_FAMILY = "1,2";
  4649. };
  4650. name = Release;
  4651. };
  4652. 38FCF3F525E9028E0078B0D1 /* Debug */ = {
  4653. isa = XCBuildConfiguration;
  4654. buildSettings = {
  4655. BUNDLE_LOADER = "$(TEST_HOST)";
  4656. CODE_SIGN_STYLE = Automatic;
  4657. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4658. INFOPLIST_FILE = TrioTests/Info.plist;
  4659. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4660. LD_RUNPATH_SEARCH_PATHS = (
  4661. "$(inherited)",
  4662. "@executable_path/Frameworks",
  4663. "@loader_path/Frameworks",
  4664. );
  4665. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioTests";
  4666. PRODUCT_NAME = "$(TARGET_NAME)";
  4667. SWIFT_VERSION = 5.0;
  4668. TARGETED_DEVICE_FAMILY = "1,2";
  4669. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio.app/Trio";
  4670. };
  4671. name = Debug;
  4672. };
  4673. 38FCF3F625E9028E0078B0D1 /* Release */ = {
  4674. isa = XCBuildConfiguration;
  4675. buildSettings = {
  4676. BUNDLE_LOADER = "$(TEST_HOST)";
  4677. CODE_SIGN_STYLE = Automatic;
  4678. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4679. INFOPLIST_FILE = TrioTests/Info.plist;
  4680. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4681. LD_RUNPATH_SEARCH_PATHS = (
  4682. "$(inherited)",
  4683. "@executable_path/Frameworks",
  4684. "@loader_path/Frameworks",
  4685. );
  4686. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioTests";
  4687. PRODUCT_NAME = "$(TARGET_NAME)";
  4688. SWIFT_VERSION = 5.0;
  4689. TARGETED_DEVICE_FAMILY = "1,2";
  4690. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio.app/Trio";
  4691. };
  4692. name = Release;
  4693. };
  4694. 6B1A8D2A2B14D91800E76752 /* Debug */ = {
  4695. isa = XCBuildConfiguration;
  4696. buildSettings = {
  4697. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4698. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4699. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4700. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4701. CODE_SIGN_STYLE = Automatic;
  4702. CURRENT_PROJECT_VERSION = 1;
  4703. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4704. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4705. GCC_C_LANGUAGE_STANDARD = gnu17;
  4706. GENERATE_INFOPLIST_FILE = YES;
  4707. INFOPLIST_FILE = LiveActivity/Info.plist;
  4708. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  4709. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4710. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4711. LD_RUNPATH_SEARCH_PATHS = (
  4712. "$(inherited)",
  4713. "@executable_path/Frameworks",
  4714. "@executable_path/../../Frameworks",
  4715. );
  4716. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4717. MARKETING_VERSION = 1.0;
  4718. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  4719. PRODUCT_NAME = "$(TARGET_NAME)";
  4720. SKIP_INSTALL = YES;
  4721. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4722. SWIFT_EMIT_LOC_STRINGS = YES;
  4723. SWIFT_VERSION = 5.0;
  4724. TARGETED_DEVICE_FAMILY = "1,2";
  4725. };
  4726. name = Debug;
  4727. };
  4728. 6B1A8D2B2B14D91800E76752 /* Release */ = {
  4729. isa = XCBuildConfiguration;
  4730. buildSettings = {
  4731. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4732. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4733. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4734. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4735. CODE_SIGN_STYLE = Automatic;
  4736. CURRENT_PROJECT_VERSION = 1;
  4737. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4738. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4739. GCC_C_LANGUAGE_STANDARD = gnu17;
  4740. GENERATE_INFOPLIST_FILE = YES;
  4741. INFOPLIST_FILE = LiveActivity/Info.plist;
  4742. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  4743. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4744. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4745. LD_RUNPATH_SEARCH_PATHS = (
  4746. "$(inherited)",
  4747. "@executable_path/Frameworks",
  4748. "@executable_path/../../Frameworks",
  4749. );
  4750. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4751. MARKETING_VERSION = 1.0;
  4752. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  4753. PRODUCT_NAME = "$(TARGET_NAME)";
  4754. SKIP_INSTALL = YES;
  4755. SWIFT_EMIT_LOC_STRINGS = YES;
  4756. SWIFT_VERSION = 5.0;
  4757. TARGETED_DEVICE_FAMILY = "1,2";
  4758. };
  4759. name = Release;
  4760. };
  4761. BD8207D02D2B42E80023339D /* Debug */ = {
  4762. isa = XCBuildConfiguration;
  4763. buildSettings = {
  4764. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4765. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4766. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4767. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4768. CODE_SIGN_IDENTITY = "Apple Development";
  4769. CODE_SIGN_STYLE = Automatic;
  4770. CURRENT_PROJECT_VERSION = 1;
  4771. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4772. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4773. GCC_C_LANGUAGE_STANDARD = gnu17;
  4774. GENERATE_INFOPLIST_FILE = YES;
  4775. INFOPLIST_FILE = "Trio Watch Complication/Info.plist";
  4776. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4777. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4778. LD_RUNPATH_SEARCH_PATHS = (
  4779. "$(inherited)",
  4780. "@executable_path/Frameworks",
  4781. "@executable_path/../../Frameworks",
  4782. "@executable_path/../../../../Frameworks",
  4783. );
  4784. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4785. MARKETING_VERSION = 1.0;
  4786. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.TrioWatchComplication";
  4787. PRODUCT_NAME = "$(TARGET_NAME)";
  4788. SDKROOT = watchos;
  4789. SKIP_INSTALL = YES;
  4790. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4791. SWIFT_EMIT_LOC_STRINGS = YES;
  4792. SWIFT_VERSION = 5.0;
  4793. TARGETED_DEVICE_FAMILY = 4;
  4794. WATCHOS_DEPLOYMENT_TARGET = 10;
  4795. };
  4796. name = Debug;
  4797. };
  4798. BD8207D12D2B42E80023339D /* Release */ = {
  4799. isa = XCBuildConfiguration;
  4800. buildSettings = {
  4801. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4802. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4803. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4804. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4805. CODE_SIGN_IDENTITY = "Apple Development";
  4806. CODE_SIGN_STYLE = Automatic;
  4807. CURRENT_PROJECT_VERSION = 1;
  4808. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4809. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4810. GCC_C_LANGUAGE_STANDARD = gnu17;
  4811. GENERATE_INFOPLIST_FILE = YES;
  4812. INFOPLIST_FILE = "Trio Watch Complication/Info.plist";
  4813. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4814. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4815. LD_RUNPATH_SEARCH_PATHS = (
  4816. "$(inherited)",
  4817. "@executable_path/Frameworks",
  4818. "@executable_path/../../Frameworks",
  4819. "@executable_path/../../../../Frameworks",
  4820. );
  4821. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4822. MARKETING_VERSION = 1.0;
  4823. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.TrioWatchComplication";
  4824. PRODUCT_NAME = "$(TARGET_NAME)";
  4825. SDKROOT = watchos;
  4826. SKIP_INSTALL = YES;
  4827. SWIFT_EMIT_LOC_STRINGS = YES;
  4828. SWIFT_VERSION = 5.0;
  4829. TARGETED_DEVICE_FAMILY = 4;
  4830. WATCHOS_DEPLOYMENT_TARGET = 10;
  4831. };
  4832. name = Release;
  4833. };
  4834. BDFF79A12D25AA890016C40C /* Debug */ = {
  4835. isa = XCBuildConfiguration;
  4836. buildSettings = {
  4837. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4838. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4839. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4840. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4841. CODE_SIGN_IDENTITY = "Apple Development";
  4842. CODE_SIGN_STYLE = Automatic;
  4843. CURRENT_PROJECT_VERSION = 1;
  4844. DEVELOPMENT_ASSET_PATHS = "\"Trio Watch App Extension/Preview Content\"";
  4845. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4846. ENABLE_PREVIEWS = YES;
  4847. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4848. GCC_C_LANGUAGE_STANDARD = gnu17;
  4849. GENERATE_INFOPLIST_FILE = YES;
  4850. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4851. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  4852. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  4853. LD_RUNPATH_SEARCH_PATHS = (
  4854. "$(inherited)",
  4855. "@executable_path/Frameworks",
  4856. );
  4857. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4858. MARKETING_VERSION = 1.0;
  4859. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  4860. PRODUCT_NAME = "$(TARGET_NAME)";
  4861. SDKROOT = watchos;
  4862. SKIP_INSTALL = YES;
  4863. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4864. SWIFT_EMIT_LOC_STRINGS = YES;
  4865. SWIFT_VERSION = 5.0;
  4866. TARGETED_DEVICE_FAMILY = 4;
  4867. WATCHOS_DEPLOYMENT_TARGET = 10;
  4868. };
  4869. name = Debug;
  4870. };
  4871. BDFF79A22D25AA890016C40C /* Release */ = {
  4872. isa = XCBuildConfiguration;
  4873. buildSettings = {
  4874. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4875. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4876. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4877. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4878. CODE_SIGN_IDENTITY = "Apple Development";
  4879. CODE_SIGN_STYLE = Automatic;
  4880. CURRENT_PROJECT_VERSION = 1;
  4881. DEVELOPMENT_ASSET_PATHS = "\"Trio Watch App Extension/Preview Content\"";
  4882. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4883. ENABLE_PREVIEWS = YES;
  4884. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4885. GCC_C_LANGUAGE_STANDARD = gnu17;
  4886. GENERATE_INFOPLIST_FILE = YES;
  4887. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4888. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  4889. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  4890. LD_RUNPATH_SEARCH_PATHS = (
  4891. "$(inherited)",
  4892. "@executable_path/Frameworks",
  4893. );
  4894. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4895. MARKETING_VERSION = 1.0;
  4896. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  4897. PRODUCT_NAME = "$(TARGET_NAME)";
  4898. SDKROOT = watchos;
  4899. SKIP_INSTALL = YES;
  4900. SWIFT_EMIT_LOC_STRINGS = YES;
  4901. SWIFT_VERSION = 5.0;
  4902. TARGETED_DEVICE_FAMILY = 4;
  4903. WATCHOS_DEPLOYMENT_TARGET = 10;
  4904. };
  4905. name = Release;
  4906. };
  4907. BDFF79A42D25AA890016C40C /* Debug */ = {
  4908. isa = XCBuildConfiguration;
  4909. buildSettings = {
  4910. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4911. BUNDLE_LOADER = "$(TEST_HOST)";
  4912. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4913. CODE_SIGN_STYLE = Automatic;
  4914. CURRENT_PROJECT_VERSION = 1;
  4915. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4916. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4917. GCC_C_LANGUAGE_STANDARD = gnu17;
  4918. GENERATE_INFOPLIST_FILE = YES;
  4919. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4920. MARKETING_VERSION = 1.0;
  4921. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioWatchAppTests";
  4922. PRODUCT_NAME = "$(TARGET_NAME)";
  4923. SDKROOT = watchos;
  4924. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4925. SWIFT_EMIT_LOC_STRINGS = NO;
  4926. SWIFT_VERSION = 5.0;
  4927. TARGETED_DEVICE_FAMILY = 4;
  4928. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Trio Watch App";
  4929. WATCHOS_DEPLOYMENT_TARGET = 10;
  4930. };
  4931. name = Debug;
  4932. };
  4933. BDFF79A52D25AA890016C40C /* Release */ = {
  4934. isa = XCBuildConfiguration;
  4935. buildSettings = {
  4936. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4937. BUNDLE_LOADER = "$(TEST_HOST)";
  4938. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4939. CODE_SIGN_STYLE = Automatic;
  4940. CURRENT_PROJECT_VERSION = 1;
  4941. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4942. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4943. GCC_C_LANGUAGE_STANDARD = gnu17;
  4944. GENERATE_INFOPLIST_FILE = YES;
  4945. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4946. MARKETING_VERSION = 1.0;
  4947. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioWatchAppTests";
  4948. PRODUCT_NAME = "$(TARGET_NAME)";
  4949. SDKROOT = watchos;
  4950. SWIFT_EMIT_LOC_STRINGS = NO;
  4951. SWIFT_VERSION = 5.0;
  4952. TARGETED_DEVICE_FAMILY = 4;
  4953. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Trio Watch App";
  4954. WATCHOS_DEPLOYMENT_TARGET = 10;
  4955. };
  4956. name = Release;
  4957. };
  4958. /* End XCBuildConfiguration section */
  4959. /* Begin XCConfigurationList section */
  4960. 388E595325AD948C0019842D /* Build configuration list for PBXProject "Trio" */ = {
  4961. isa = XCConfigurationList;
  4962. buildConfigurations = (
  4963. 388E596525AD948E0019842D /* Debug */,
  4964. 388E596625AD948E0019842D /* Release */,
  4965. );
  4966. defaultConfigurationIsVisible = 0;
  4967. defaultConfigurationName = Debug;
  4968. };
  4969. 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "Trio" */ = {
  4970. isa = XCConfigurationList;
  4971. buildConfigurations = (
  4972. 388E596825AD948E0019842D /* Debug */,
  4973. 388E596925AD948E0019842D /* Release */,
  4974. );
  4975. defaultConfigurationIsVisible = 0;
  4976. defaultConfigurationName = Debug;
  4977. };
  4978. 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "TrioTests" */ = {
  4979. isa = XCConfigurationList;
  4980. buildConfigurations = (
  4981. 38FCF3F525E9028E0078B0D1 /* Debug */,
  4982. 38FCF3F625E9028E0078B0D1 /* Release */,
  4983. );
  4984. defaultConfigurationIsVisible = 0;
  4985. defaultConfigurationName = Debug;
  4986. };
  4987. 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */ = {
  4988. isa = XCConfigurationList;
  4989. buildConfigurations = (
  4990. 6B1A8D2A2B14D91800E76752 /* Debug */,
  4991. 6B1A8D2B2B14D91800E76752 /* Release */,
  4992. );
  4993. defaultConfigurationIsVisible = 0;
  4994. defaultConfigurationName = Debug;
  4995. };
  4996. BD8207D32D2B42E80023339D /* Build configuration list for PBXNativeTarget "Trio Watch Complication Extension" */ = {
  4997. isa = XCConfigurationList;
  4998. buildConfigurations = (
  4999. BD8207D02D2B42E80023339D /* Debug */,
  5000. BD8207D12D2B42E80023339D /* Release */,
  5001. );
  5002. defaultConfigurationIsVisible = 0;
  5003. defaultConfigurationName = Debug;
  5004. };
  5005. BDFF79A02D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch App" */ = {
  5006. isa = XCConfigurationList;
  5007. buildConfigurations = (
  5008. BDFF79A12D25AA890016C40C /* Debug */,
  5009. BDFF79A22D25AA890016C40C /* Release */,
  5010. );
  5011. defaultConfigurationIsVisible = 0;
  5012. defaultConfigurationName = Debug;
  5013. };
  5014. BDFF79A32D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch AppTests" */ = {
  5015. isa = XCConfigurationList;
  5016. buildConfigurations = (
  5017. BDFF79A42D25AA890016C40C /* Debug */,
  5018. BDFF79A52D25AA890016C40C /* Release */,
  5019. );
  5020. defaultConfigurationIsVisible = 0;
  5021. defaultConfigurationName = Debug;
  5022. };
  5023. /* End XCConfigurationList section */
  5024. /* Begin XCRemoteSwiftPackageReference section */
  5025. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */ = {
  5026. isa = XCRemoteSwiftPackageReference;
  5027. repositoryURL = "https://github.com/Swinject/Swinject";
  5028. requirement = {
  5029. kind = upToNextMajorVersion;
  5030. minimumVersion = 2.7.1;
  5031. };
  5032. };
  5033. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */ = {
  5034. isa = XCRemoteSwiftPackageReference;
  5035. repositoryURL = "https://github.com/apple/swift-algorithms";
  5036. requirement = {
  5037. kind = upToNextMajorVersion;
  5038. minimumVersion = 0.0.3;
  5039. };
  5040. };
  5041. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */ = {
  5042. isa = XCRemoteSwiftPackageReference;
  5043. repositoryURL = "https://github.com/malcommac/SwiftDate";
  5044. requirement = {
  5045. kind = upToNextMajorVersion;
  5046. minimumVersion = 6.3.1;
  5047. };
  5048. };
  5049. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */ = {
  5050. isa = XCRemoteSwiftPackageReference;
  5051. repositoryURL = "https://github.com/SwiftKickMobile/SwiftMessages";
  5052. requirement = {
  5053. kind = upToNextMajorVersion;
  5054. minimumVersion = 9.0.0;
  5055. };
  5056. };
  5057. 3B47C60E2DA0A28F00B0E5EF /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */ = {
  5058. isa = XCRemoteSwiftPackageReference;
  5059. repositoryURL = "https://github.com/firebase/firebase-ios-sdk.git";
  5060. requirement = {
  5061. kind = upToNextMajorVersion;
  5062. minimumVersion = 11.11.0;
  5063. };
  5064. };
  5065. 3BD9687A2D8DDD4600899469 /* XCRemoteSwiftPackageReference "SlideButton" */ = {
  5066. isa = XCRemoteSwiftPackageReference;
  5067. repositoryURL = "https://github.com/no-comment/SlideButton";
  5068. requirement = {
  5069. branch = main;
  5070. kind = branch;
  5071. };
  5072. };
  5073. 3BD9687D2D8DDD8800899469 /* XCRemoteSwiftPackageReference "CryptoSwift" */ = {
  5074. isa = XCRemoteSwiftPackageReference;
  5075. repositoryURL = "https://github.com/krzyzanowskim/CryptoSwift";
  5076. requirement = {
  5077. kind = upToNextMajorVersion;
  5078. minimumVersion = 1.8.2;
  5079. };
  5080. };
  5081. B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */ = {
  5082. isa = XCRemoteSwiftPackageReference;
  5083. repositoryURL = "https://github.com/maxkonovalov/MKRingProgressView.git";
  5084. requirement = {
  5085. branch = master;
  5086. kind = branch;
  5087. };
  5088. };
  5089. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */ = {
  5090. isa = XCRemoteSwiftPackageReference;
  5091. repositoryURL = "https://github.com/ivanschuetz/SwiftCharts.git";
  5092. requirement = {
  5093. branch = master;
  5094. kind = branch;
  5095. };
  5096. };
  5097. /* End XCRemoteSwiftPackageReference section */
  5098. /* Begin XCSwiftPackageProductDependency section */
  5099. 3811DE0F25C9D37700A708ED /* Swinject */ = {
  5100. isa = XCSwiftPackageProductDependency;
  5101. package = 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */;
  5102. productName = Swinject;
  5103. };
  5104. 3833B46C26012030003021B3 /* Algorithms */ = {
  5105. isa = XCSwiftPackageProductDependency;
  5106. package = 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */;
  5107. productName = Algorithms;
  5108. };
  5109. 38B17B6525DD90E0005CAE3D /* SwiftDate */ = {
  5110. isa = XCSwiftPackageProductDependency;
  5111. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  5112. productName = SwiftDate;
  5113. };
  5114. 38DF1788276FC8C400B3528F /* SwiftMessages */ = {
  5115. isa = XCSwiftPackageProductDependency;
  5116. package = 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */;
  5117. productName = SwiftMessages;
  5118. };
  5119. 3B47C60F2DA0A28F00B0E5EF /* FirebaseCrashlytics */ = {
  5120. isa = XCSwiftPackageProductDependency;
  5121. package = 3B47C60E2DA0A28F00B0E5EF /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
  5122. productName = FirebaseCrashlytics;
  5123. };
  5124. 3BD9687B2D8DDD4600899469 /* SlideButton */ = {
  5125. isa = XCSwiftPackageProductDependency;
  5126. package = 3BD9687A2D8DDD4600899469 /* XCRemoteSwiftPackageReference "SlideButton" */;
  5127. productName = SlideButton;
  5128. };
  5129. 3BD9687E2D8DDD8800899469 /* CryptoSwift */ = {
  5130. isa = XCSwiftPackageProductDependency;
  5131. package = 3BD9687D2D8DDD8800899469 /* XCRemoteSwiftPackageReference "CryptoSwift" */;
  5132. productName = CryptoSwift;
  5133. };
  5134. B958F1B62BA0711600484851 /* MKRingProgressView */ = {
  5135. isa = XCSwiftPackageProductDependency;
  5136. package = B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */;
  5137. productName = MKRingProgressView;
  5138. };
  5139. CEB434FC28B90B7C00B70274 /* SwiftCharts */ = {
  5140. isa = XCSwiftPackageProductDependency;
  5141. package = CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */;
  5142. productName = SwiftCharts;
  5143. };
  5144. /* End XCSwiftPackageProductDependency section */
  5145. /* Begin XCVersionGroup section */
  5146. DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */ = {
  5147. isa = XCVersionGroup;
  5148. children = (
  5149. DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */,
  5150. );
  5151. currentVersion = DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */;
  5152. path = TrioCoreDataPersistentContainer.xcdatamodeld;
  5153. sourceTree = "<group>";
  5154. versionGroupType = wrapper.xcdatamodel;
  5155. };
  5156. /* End XCVersionGroup section */
  5157. };
  5158. rootObject = 388E595025AD948C0019842D /* Project object */;
  5159. }