gitextract_qpqfygjk/ ├── .gitignore ├── .gitmodules ├── .root ├── LICENSE ├── MyYearWithGit/ │ ├── App/ │ │ ├── App.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── badge.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── bitbucket.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── git.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── github.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── gitlab.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── qrcode.imageset/ │ │ │ │ └── Contents.json │ │ │ └── sfexp/ │ │ │ ├── Contents.json │ │ │ ├── custom.aqi.high.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.aqi.low.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.aqi.medium.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.circle.fill.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.bolt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.bolt.rain.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.drizzle.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.fog.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.hail.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.heavyrain.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.moon.bolt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.moon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.moon.rain.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.rain.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.sleet.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.snow.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.sun.bolt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.sun.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.cloud.sun.rain.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.humidity.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.hurricane.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.moon.circle.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.moon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.moon.stars.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.smoke.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.snowflake.circle.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.snowflake.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sparkles.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sun.and.horizon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sun.dust.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sun.haze.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sun.max.circle.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sun.max.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sun.min.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sunrise.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.sunset.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.thermometer.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.thermometer.snowflake.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.thermometer.sun.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.tornado.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.tropicalstorm.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── custom.wind.imageset/ │ │ │ │ └── Contents.json │ │ │ └── custom.wind.snow.imageset/ │ │ │ └── Contents.json │ │ ├── Hooker.m │ │ ├── InfoPlist.xcstrings │ │ ├── Localizable.xcstrings │ │ └── main.swift │ ├── Data/ │ │ ├── Analyser/ │ │ │ ├── CommitFilter.swift │ │ │ ├── DictionaryBuilder.swift │ │ │ ├── GitDiff.swift │ │ │ ├── GitLog.swift │ │ │ ├── GitRepoResult.swift │ │ │ └── RepoAnalyser.swift │ │ ├── Api/ │ │ │ ├── ApiProtocol.swift │ │ │ ├── BitbucketApi.swift │ │ │ ├── GitHubApi.swift │ │ │ └── GitLabApi.swift │ │ ├── Generic/ │ │ │ ├── AuxiliaryExecute.swift │ │ │ ├── Exts.swift │ │ │ ├── SourceLanguage.swift │ │ │ ├── SourcePackage.swift.swift │ │ │ ├── SourceRegister.swift │ │ │ ├── User.swift │ │ │ └── UserDefault.swift.swift │ │ └── ResultPackage/ │ │ ├── DicCounter.swift │ │ ├── RS0.swift │ │ ├── RS1.swift │ │ ├── RS2.swift │ │ ├── RS3.swift │ │ ├── RS4.swift │ │ ├── RS5.swift │ │ ├── RS6.swift │ │ ├── RS7.swift │ │ ├── RS8.swift │ │ ├── RS9.swift │ │ ├── RSProtocol.swift.swift │ │ └── ResultPackage.swift │ ├── Entitlements.entitlements │ ├── Info.plist │ └── View/ │ ├── Configuration/ │ │ ├── BitbucketSheet.swift │ │ ├── CommitFilterSheet.swift │ │ ├── ConfigEmailSheet.swift │ │ ├── GitHubRepoSheet.swift │ │ ├── GitLabRepoSheet.swift │ │ ├── LocalRepoSheet.swift │ │ ├── MainSheet.swift │ │ └── PickSourceSheet.swift │ ├── Generic/ │ │ ├── AnalysisView.swift │ │ ├── MainView.swift │ │ ├── ResultView.swift │ │ └── ThanksView.swift │ ├── Helper/ │ │ ├── CodeTiles.swift │ │ ├── SheetTemplate.swift │ │ ├── TextIncrementEffectView.swift │ │ ├── TextTypeEffectView.swift │ │ └── sha256sum.swift │ └── NavigatorView.swift ├── MyYearWithGit.xcodeproj/ │ └── project.pbxproj ├── MyYearWithGit.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── IDEWorkspaceChecks.plist │ └── swiftpm/ │ └── Package.resolved ├── README.md └── Resources/ ├── MyYearWithGit.xd └── i18n/ └── en/ └── README.md