gitextract_yi781vpn/ ├── .gitignore ├── Design/ │ └── heart-control.sketch ├── Heart Control/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Heart Control.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Heart Control.entitlements │ ├── Info.plist │ └── ViewController.swift ├── Heart Control WatchKit App/ │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Interface.storyboard │ └── Info.plist ├── Heart Control WatchKit Extension/ │ ├── Assets.xcassets/ │ │ └── Complication.complicationset/ │ │ ├── Circular.imageset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Modular.imageset/ │ │ │ └── Contents.json │ │ └── Utilitarian.imageset/ │ │ └── Contents.json │ ├── AuthorizationManger.swift │ ├── ExtensionDelegate.swift │ ├── HKUnit+BeatsPerMinute.swift │ ├── Heart Control WatchKit Extension.entitlements │ ├── HeartRate.swift │ ├── HeartRateManager.swift │ ├── Info.plist │ ├── InterfaceController.swift │ └── WorkoutManager.swift ├── Heart Control.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata └── README.md