├── .assets └── screenshots.png ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .gitmodules ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── Gemfile ├── Gemfile.lock ├── InternalPackages ├── CloudSync │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── LICENSE │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ └── Sources │ │ └── CloudSync │ │ ├── CloudSync+Configuration.swift │ │ ├── CloudSync+Constants.swift │ │ ├── CloudSync+Fetch.swift │ │ ├── CloudSync+Modify.swift │ │ ├── CloudSync+Notifications.swift │ │ ├── CloudSync+Setup.swift │ │ ├── CloudSync+State.swift │ │ ├── CloudSync+Termination.swift │ │ ├── CloudSync.swift │ │ └── Extensions │ │ ├── CKContainer+AccountStatus.swift │ │ ├── CKRecord+SystemFields.swift │ │ └── Error+CloudSync.swift └── CryptoUtils │ ├── .gitignore │ ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── CryptoUtils │ │ ├── AES.swift │ │ └── Hash.swift │ └── Tests │ ├── CryptoUtilsTests │ ├── CryptoUtilsTests.swift │ └── XCTestManifests.swift │ └── LinuxMain.swift ├── LICENSE ├── OneTimePasswordProvider ├── ActionViewController.swift ├── Info.plist ├── Media.xcassets │ ├── AppExtensionIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon.png │ │ ├── icon_120px.png │ │ ├── icon_152px.png │ │ ├── icon_167px.png │ │ ├── icon_180px.png │ │ ├── icon_20px.png │ │ ├── icon_29px.png │ │ ├── icon_40px.png │ │ ├── icon_58px.png │ │ ├── icon_60px.png │ │ ├── icon_76px.png │ │ ├── icon_80px.png │ │ └── icon_87px.png │ └── Contents.json ├── ProviderMainFlowController.swift ├── ProviderRootFlowController.swift └── Resources │ ├── OneTimePasswordProvider.entitlements │ └── Preprocessing.js ├── PrivacyPolicy.txt ├── README.md ├── TwoFAuth.xcodeproj ├── project.pbxproj └── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ ├── TwoFAuth.xcscheme │ └── TwoFAuthScreenshots.xcscheme ├── TwoFAuth ├── AppDelegate.swift ├── AppRootFlowController.swift ├── Resources │ ├── 2FAuth.entitlements │ ├── Acknowledgements.txt │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── icon_120px.png │ │ │ ├── icon_152px.png │ │ │ ├── icon_167px.png │ │ │ ├── icon_180px.png │ │ │ ├── icon_20px.png │ │ │ ├── icon_29px.png │ │ │ ├── icon_40px.png │ │ │ ├── icon_58px.png │ │ │ ├── icon_60px.png │ │ │ ├── icon_76px.png │ │ │ ├── icon_80px.png │ │ │ └── icon_87px.png │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── SharedAssets.xcassets │ │ ├── Colors │ │ │ ├── BackgroundColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── DividerColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── LabelColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── LightTextColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── OTPCodeColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── RedColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── SecondaryLabelColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── SecondaryTintColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── SegmentedControlBackgroundColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── SelectedSegmentTintColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── ShadowColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── TertiaryBackground.colorset │ │ │ │ └── Contents.json │ │ │ └── TintColor.colorset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Images │ │ │ ├── Contents.json │ │ │ ├── icon-cloud-no-account.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-cloud-no-account.png │ │ │ ├── icon-cloud-no-account@2x.png │ │ │ └── icon-cloud-no-account@3x.png │ │ │ ├── icon-cloud.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-cloud.png │ │ │ ├── icon-cloud@2x.png │ │ │ └── icon-cloud@3x.png │ │ │ ├── icon-face-id.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-face-id.png │ │ │ ├── icon-face-id@2x.png │ │ │ └── icon-face-id@3x.png │ │ │ ├── icon-lock-shield.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-lock-shield.png │ │ │ ├── icon-lock-shield@2x.png │ │ │ └── icon-lock-shield@3x.png │ │ │ ├── icon-lock.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-lock.png │ │ │ ├── icon-lock@2x.png │ │ │ └── icon-lock@3x.png │ │ │ ├── icon-refresh.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-refresh.png │ │ │ ├── icon-refresh@2x.png │ │ │ └── icon-refresh@3x.png │ │ │ ├── icon-settings.imageset │ │ │ ├── Contents.json │ │ │ ├── icons8-settings-24.png │ │ │ ├── icons8-settings-48.png │ │ │ └── icons8-settings-72.png │ │ │ ├── icon-touch-id.imageset │ │ │ ├── Contents.json │ │ │ ├── icons8-touch-id-30.png │ │ │ ├── icons8-touch-id-60.png │ │ │ └── icons8-touch-id-90.png │ │ │ └── issuer-placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── issuer-placeholder.png │ │ │ ├── issuer-placeholder@2x.png │ │ │ └── issuer-placeholder@3x.png │ ├── WebsitesData │ │ ├── TFASites.sqlite │ │ └── WebsiteIcons │ │ │ ├── 002fe6e002e08d9d2f86fa076655e25bd98266760b1249c3e91d52f6c47226f9.png │ │ │ ├── 0068362152be66a412a779cfcfdaea61b2bbdbbf1a4ed74df4b11f037182063b.png │ │ │ ├── 0076239daea4a54168d8e77b0d57cdd1373eb16af34550d3c1bfa30bc70555dc.png │ │ │ ├── 00f82ffa24a18dbd0324dd926fe374ff1be1814f9fa0078aa3ff255f0dbd437e.png │ │ │ ├── 0143f5c35df065d0bb04f1c2f07e6bb4b34412c73178c86cfa0c197a5a53a1b9.png │ │ │ ├── 027b9d033853d78891badf8301290214a45aa8b0658b6eb41c3976cec66d5aef.png │ │ │ ├── 0355abce7090ec4eecc33360c3ae968916dca5bca5632de1ad9e9d22664f5e06.png │ │ │ ├── 03700e84eeadca65d71ac1b14a054a09e04835b7a0d8c1fdbce1d02d08f073c6.png │ │ │ ├── 041c7363a74e7a5f806792e07407caf92a53b48e78e5a63e52120be5d54c1bdc.png │ │ │ ├── 049c9061c9da3ce6c0ad264126cb8a78e20b61e539ba6298bef229d47e9ad11c.png │ │ │ ├── 04e275b25050c8f7111fa85d6f5ce4d6f2bc89c3bb5106ead19d334f308e8f8e.png │ │ │ ├── 05046f26c83e8c88b3ddab2eab63d0d16224ac1e564535fc75cdceee47a0938d.png │ │ │ ├── 0572a5323de3b4e7559f688e90984e8a3c644742f56d0b768dd4ef5b4a9f77d7.png │ │ │ ├── 05e830c536e66c127f39d5fd473408a551dac279ee8ea0c8553bed30f3dd1b4f.png │ │ │ ├── 076221ee686cd7f4bc673aaaaa045c59351ae3c13c15e4dba1a9583d993c01d0.png │ │ │ ├── 07a0337e75f968afbd534f6a40edcf44d450d211f24bbe5e63c073b41b1cea27.png │ │ │ ├── 07cb03db328290073c4225d732db18d2ddc0b971dc644dbeabd90556ff51f8fa.png │ │ │ ├── 080ef4133a2332d3aae539d3ff1baca3c9b0491816fb152a0e91b9fa886e5df8.png │ │ │ ├── 082bf5647b9c67b4021f5acdb80f6e7485d1f4bd9f6849d165a42943340ca1ed.png │ │ │ ├── 0867753f348437ae1a6a99418546826294034212869b564e6c0a85021a640e97.png │ │ │ ├── 08a819a4b4c855ad19c2e6b3fba1240b3f4d78ae3a665f340a1ace5fc4f1e58a.png │ │ │ ├── 08f30333481002a324ded1bd5b4ef72b59a21efafefedbd1d8964d0d475351a4.png │ │ │ ├── 08f9dfe579563c4fa4d25d4141fcf8fd10b76a499e1909cacd1b907e1d97ced0.png │ │ │ ├── 09f0bcc910663e4fceab37f816712a3b2285e3ddd3b19711397aac87b213c3f8.png │ │ │ ├── 0a3fc46c52d5d4647ffa50f26fa959614461ec7a6cee79e8124c6aa0d3c12125.png │ │ │ ├── 0af26ef850f05c30ff784e2a786689103e5050036a48451aa4a572e4810e77b1.png │ │ │ ├── 0b06c62559dff916463f17d220f0fd8a845504aaa74596e37be4c7e94898c2c8.png │ │ │ ├── 0cf1bc7c54320b5010eac9636f64d4363876d2307739cc8d0fa8e7bbc69703ae.png │ │ │ ├── 0d0fb10e31c5bfc2a21283dd4131b994e9b74fce18ea23aaf93cb282eedd6afb.png │ │ │ ├── 0d3e379517270838f61181e4510abbfca0fd592c84cfefaad7d883b46df0432c.png │ │ │ ├── 0d49f67e268a77de9809df75acccf78a121457c93910af5dd122cfcd3b76e1ab.png │ │ │ ├── 0d717e18f337c458a62739a0defa6ac6cbcf10ecfa9f2c1261c0f21a6776ab00.png │ │ │ ├── 0d71ca58dd69f955a1f2df55a08ce5150a38e4e8a689a1e40823dafa91ebacb8.png │ │ │ ├── 0e8783540b4b14890475939d960e30284d4e6ddcea5e90b189727df367078819.png │ │ │ ├── 0f00dd016934a37924464bb5e917e11df323daea404ba3c524996ddb5f3805b6.png │ │ │ ├── 0f11aa831fd2375abdcc7804a73b7ade782b32da415b7c0643313c44bd907bb6.png │ │ │ ├── 0f315d7cbc846184e7acf0c6d0760ec534585e80238773edd28029e9c0fcd097.png │ │ │ ├── 102d076d20c54122c6399a1fee14534625de207962bab3fdcd625876167bd2f3.png │ │ │ ├── 103cb9f16981c943357e380fff201cd5583d3a6190b1cf4ad8764e8f8f6adea3.png │ │ │ ├── 104136923b71c6b762fdc369dc174608902a3ee28e5ceddc414495b5dac4b99c.png │ │ │ ├── 105802657f758fabb027a6bf66ef316455bb223b5e412069862db1dba341d0ee.png │ │ │ ├── 106408ce08110a8e03aaae7c9b17788d49e8e39874f1d0a0cee8d2171b417ba9.png │ │ │ ├── 106e40609400fceeec15e806ee12f03eae200d7b927700f9cfb16d51b567d16b.png │ │ │ ├── 107f9f9dfc1cb921852b22325bacbdc652bc2916b09c69ea4d8a850a4be164e2.png │ │ │ ├── 109148658b5184b18ce15634b2ab70f98c7aae65f40655bc37b1d043b18d7556.png │ │ │ ├── 116683a0c8773df03f00b01826120154ef1525233e233b56fab24b707a42802c.png │ │ │ ├── 11e9de90eccd7cd1fa3aa43f4bb2f6bc735e926243af9b75503c886f5ca5d48b.png │ │ │ ├── 12029127792e4f78121a2171a9a9a7c9481c921b98cb9204b4941ca613b42bbf.png │ │ │ ├── 12743b921297b77f1135e41fdedd4a846afe82e1f36932a9912f3b0d8dfb7d0e.png │ │ │ ├── 12fc2f13c7b709157eedfb23172f67a1fb19ceaf39551812785ebbacabe70698.png │ │ │ ├── 1357ad5a7048e8257a2467ecab6ad2e54c977096a6c271517f72168e693291f4.png │ │ │ ├── 1395ec37e46aac778d63860448e797212900f9ddeaceb3123c01887c539cc3c3.png │ │ │ ├── 145d73a51b241ab03df729617e48ac19fbb02d0568282c8a272eb560ad6e1271.png │ │ │ ├── 14830d0f42257f54aa3dbc91213a9a57837642a70d0987e8bb8f0677ecb5cc4b.png │ │ │ ├── 1507a36ef992eb7bd0a53efcf058c5f4ff2425dc135d9764ff1e438b0f3993b1.png │ │ │ ├── 1512a9498c6c4c389541cac518a9f63368e11b18dd69646cef97bddaf899a82c.png │ │ │ ├── 151b105d5e2989de22d9b83335f386fa6afe8e4a20e8d6db420f8bb2f7dd885c.png │ │ │ ├── 153406d2a71d9f8d876f103fb3c41eff41a4bb3e52076482c4db8b66701a736b.png │ │ │ ├── 160009ce604a8113ecab4c652be8b145389a1653a2e068cf8a3f013d06931b25.png │ │ │ ├── 16b6999f9eeed09c2aca06cf89fbb634d58ca014b57ed93d5f6bb2242b7023cd.png │ │ │ ├── 16da9849a9bd0708c86da14ed30dd3cf9847f53ec567c9fac1e05c88ce5fbd50.png │ │ │ ├── 1753544250b12746fe696e034b64f23f2bba3542c6aea2d084c3dc88a3a8e24b.png │ │ │ ├── 17b08e36caa23c47380703735fd20e135e83891bbb45ebabe32a805afca24b0f.png │ │ │ ├── 17bf2e60b355dacb4cd651be4968a33decc35ecd24b19ee8541014686af9fa6e.png │ │ │ ├── 18a3ab83de5a0701791faf15bd172bc5d21defbdaa6c1ace760330c8bfae79c8.png │ │ │ ├── 18f5661975decd13d67805c16ffd82a9ea01ea26000fac380cca233d6cc5ae97.png │ │ │ ├── 192d9bad0ce417183110e10775b5c004e3c230ec542209ebb825ff55d2c37102.png │ │ │ ├── 19c6f76b360c68027218941c7dd7c1d0bd5ba051638cbbae4aa6db32e6e9b83f.png │ │ │ ├── 1a19a9ab243d9ae690a8308e71b8efd89aee3f9bf55c61bea0ce72ba69123e1f.png │ │ │ ├── 1aec1f6636b92bddd4ea6ae126fbf01a3d2bf3901cb565892a929665b4837a4c.png │ │ │ ├── 1b1074dae2739cbc87cf416584dc8eecac601bd87a52cde984391979c29c6c94.png │ │ │ ├── 1b64c65487588540a62dedccfc5dab15a2ce9b66e3ea7306e1ff1958c9afecda.png │ │ │ ├── 1b810c2a8b022631bfe66f2f2de9a7d073c712b38d7037fc622c04b326353792.png │ │ │ ├── 1bbd41a7b06070f33cec4d546fd706de67bbe2ccf5e603e824446a6e6dfd9d02.png │ │ │ ├── 1c15cf22d38f8ef1584432e7ea3507207f88cf2820050fe57386475f2209e2a1.png │ │ │ ├── 1db0347a2162a58ba810adcd6c1533aeeeba8c6c37fd6cd48f377f73ae5e285d.png │ │ │ ├── 1e20fdab6dbdc3fcc2b431079079a2d21317ec8f5a0a72ca0ac73c49162cc584.png │ │ │ ├── 1f1c5c92763970d6bbe7e4f6a46b5a5aa12e353f16279a146b2dd508b05c0eb7.png │ │ │ ├── 209b3949abf26e9ba67cb3ca17ccfbc41a2d198a3f5fb0efd8c64220c45bb274.png │ │ │ ├── 20a17c1d76cd56a79b00cdbdfe118e6e0026d9773a97afc5420b5ef19feccaa7.png │ │ │ ├── 20f7f4ff492453ee7a09033217b85566904a02eff4a4bdef4974e0d22b81dda1.png │ │ │ ├── 2218f783120680fbfb084a723c047719d730e83c3c2e34a041c446f38722a75e.png │ │ │ ├── 237c23bb8fd004f310d227c9fe4afb3f0048850c6f941f0fbe18e5147b663445.png │ │ │ ├── 23c7898f8bd428f31f74e925ff06ce780f4a1ac8050789454ce6dfa02b85149d.png │ │ │ ├── 23f98da2fb26e5288e1fa6fea6ec6ce0eaf5b33bbaa97c1c4223002e5a78b157.png │ │ │ ├── 2454e3a4eaab0fbf5f4b3dd33d89bbff6ae6b8e1208422833dc9b061d8ce218b.png │ │ │ ├── 2468ab06967f1a06f6f565e60e36f3797a55d550fe7839f24024bfb53f74fdc2.png │ │ │ ├── 249364e7f24103ae5ce99fba10e3b95d94c7b40fa1f125998d2c44909108d0dd.png │ │ │ ├── 252206fd518135851ba102d75753bd31d373376979f2ec7ce3206f9f20392875.png │ │ │ ├── 253ddaf69e798a8ec931d2b5b7b8c02dbb5c2aacb8bbb798159cfcbf1b8d8eac.png │ │ │ ├── 2594bebe4b0e8cbc47d72f4bb5d57c046d74d3d6e931f7125d4f35b117b0dd45.png │ │ │ ├── 25c25d74b2ec3b1d6ae6a34cef1e7cdcac0a70500f5d43a8905cbd5d9c9a300a.png │ │ │ ├── 2628a1730e5d2396e9525d2aedcf258e47e442c7168123331516aa679471a66b.png │ │ │ ├── 266155b30f641e70ee630fb010cd909aa2d49dd900c854d74fdb438345967f4c.png │ │ │ ├── 26bc0b1d0d9c93dce56b475a79a4e26fb4d668cb3c8194a0d46a4d9ac0fd3772.png │ │ │ ├── 275c0e852859c11ed45faf1b9fed9148dc704857187a0fca2b3174fa547c8c20.png │ │ │ ├── 27d5316a7bd893041cc6e3e20ce3b46e8d557e956746f39be0f349b980e3aadb.png │ │ │ ├── 27e6061808a2e39a95c772e4646db90df7e31f7a2e864f5e212f9ee176def70f.png │ │ │ ├── 2821de593a6c9c6e5dc8538bfbb9615ed2a221c13a060aa2c41caef6d5fb1456.png │ │ │ ├── 2823d6a74c0f7d37f6951330467c19e205e6872e63723dad93339f8d06d9dffa.png │ │ │ ├── 287f4dc9eb9b92e4de17928f4244d6f3751f51a6bb46e080e52bf77b91b6bd16.png │ │ │ ├── 28c661ea177818ed8c52f4758f2a5b8a32e4637d222197b468674891f2ee9002.png │ │ │ ├── 29928d7e51be098bcca8103a03f69509a863634262c0a5e9518508b424a7f055.png │ │ │ ├── 2995080fd7fd8b4285c9330099927ec37abadca79112cd2de217528cf1f498d4.png │ │ │ ├── 2a0641853d13a391672af1846d15725786d38a02cc249f08c8f0484a665a20b1.png │ │ │ ├── 2adabe7884f0edf6a0af45e544af005f6575aca6e982b51efbf6deef17261447.png │ │ │ ├── 2af448ca442fd47f03b4ab16d38066895294bb46486832d001853a74816a8905.png │ │ │ ├── 2b18bc8f5bd0b208586d7185f38281b5ab6ed401801eeb604b7ae18bc0135e9e.png │ │ │ ├── 2b252db1ad0ac8f9d1ee256e5fed85cfcc752f1997c9ebada2b0619aa61135ee.png │ │ │ ├── 2bf6b2513231ca50d5a6b3c778dfc3a5007b31406194246558cff029dacbf339.png │ │ │ ├── 2c564e42a0c849f81ea6fa33dd601b1a6187d2d96fbd72e506a98cef0361c6ca.png │ │ │ ├── 2c56eaa37ac4e002803c28bb73ebc388c1801c636a5459206fa05f4d562f83a5.png │ │ │ ├── 2cb9a3a19d62faefa4c62ae9dc4c4b1ec2781ffe6a16eede3418475b7fe718b2.png │ │ │ ├── 2e5daff17e06209c0aa7dc2b7d5f5cc4f644bf3e33990205f8a4f3959ef9d334.png │ │ │ ├── 2ee368c4c6d3f17b2a7d525e4141134b50d3649cf2f9fe71119127a9cb6c1778.png │ │ │ ├── 2f18e1ef0b81199344adba41fb9889e379a366ef5438fa237a63542773373016.png │ │ │ ├── 2f4a2e335f089497445b44c8adb3dae64ebe3fb803c0c25ea3e84146f0805610.png │ │ │ ├── 2f55b68433264b3eeabbf3e117993323e1fd36b6e29f928974616b2ca4cd18f0.png │ │ │ ├── 300a409179c02fa1b0f631190208b8f4f289f8f0b883fa790d268e45724e415d.png │ │ │ ├── 302fd5b4492a07b9febb30e73269eca501205ccfe0c20bf7b472fa2d31e21e63.png │ │ │ ├── 30725fc3a01231ea363fa103e62e15886c0ed9c438780a8b6ee8d1e3996ddce9.png │ │ │ ├── 30dc70700f1a8bfd46583b5b0a2858967a68dc1740f731083b6fe932da813019.png │ │ │ ├── 30ea742edbdb63b8216fe363ede586f16c76200f3cbe6d83056a816a377e9ad3.png │ │ │ ├── 30f6cf231f2ca38240fbb3e7ba43675eb4dd2a2469d0ff61fca551476a1bb2df.png │ │ │ ├── 31b4f9689cdebbfb08aa7db841323670c367a3b28aab242257e370cc62782b3d.png │ │ │ ├── 31d11f63e3c14cb861c52a1e531b81bf681b9aa79fbca7c61557c8319b51ec5f.png │ │ │ ├── 31d898f3246eefc555d88939ad4239d0292dae8e5994f4945739592fba446ac1.png │ │ │ ├── 32912b0daddffec986874c8e12d7970af78141a6f8301de3cd1cfb9fb4c61a90.png │ │ │ ├── 32a3b4d983ec607c83543bf2827da006179599c23eee4277e41feb9d9e5efd75.png │ │ │ ├── 331300fc0e99a8745ae2bf6d2399a0a6b8f2de454042c18e5ed0ddaaf5d7d551.png │ │ │ ├── 33e3f94ec5c8c902e7e0660f1ee9dabaabe88066eef794422a34bff042b24c28.png │ │ │ ├── 340c0b3d18504d0d101571f9af391b84ca255336b08988aeba7e03c30ef337ab.png │ │ │ ├── 345718df5293420053ee268cd599fced364c726d057ed8bb5cf6852b9f40f621.png │ │ │ ├── 34782d67dc2b771ee040e1af67c64042a0108f6d48d387d12a53b29b5a316dfc.png │ │ │ ├── 351b0fa09d7af16885e1d9f61e6bdde52670fa797176325397739ac21d827417.png │ │ │ ├── 35396f7936383af9fd2e6658e73983075a8bf8522ed186b28d1dbd3e007c30a1.png │ │ │ ├── 3557d729eb5ff7aa1c6d28835e405a1b1dc40f4bff71d00fd461c0c0b2b29080.png │ │ │ ├── 35b1dbac81cb10637ee5a717af1f451c56bff10b0a2d011b40fc0b0b928b5382.png │ │ │ ├── 35e3def18b9ba5d5e4cccb68575d527f7b1b129b108e49c2937e4463e24672b7.png │ │ │ ├── 366a6c90f2be3442ba13692fa97f626794d7a01ef01e824017f714e5c140f765.png │ │ │ ├── 36ee6ee981a9bc1a3968e7a6909e0d5cd0c2c94ba68cd45693cc0751cb7fae60.png │ │ │ ├── 37a9f398aea2f1fe6ca0f4b1ea8f7845210132ed5a8d10e50a1e66505e86d4db.png │ │ │ ├── 37d15622f2c4af2aa3b2159b69f4148b040d4010b5099e872834b111bd1a71d7.png │ │ │ ├── 38a79d33a35924a0fd745bea1424db3b409d8f5766964a2dc40ce6e4194b5dda.png │ │ │ ├── 38addb6c65281123c8467faca3a8933ec7a9bd1f021760638a3b3e740fdbecbb.png │ │ │ ├── 390a61c65d00e528c358297f924ae5489131399ad4f0980905c43da71f39ca24.png │ │ │ ├── 399f1c951f7294deb9f1126dac6645317590a67b2723e2940a0727b8ad682566.png │ │ │ ├── 39d5fb06b8f995079ebef227f053abad4dea86a049c063192123877e2396b0bd.png │ │ │ ├── 3acb90292c4f242ac414a5beae7b277b95ecbee7c569a7d08aceb7a34d00ed3d.png │ │ │ ├── 3b6a6f3b718d78a574be67020480c787773685f29eec2faeff970acb36d9968d.png │ │ │ ├── 3bf1cd6b40bdb588eeea7ce6a730fd62a53df858442aae348a9031d465a66542.png │ │ │ ├── 3cc7539762ff93ec63ba14f82e92fe4b93327810a7d06bf658dc937e9db25e12.png │ │ │ ├── 3cf7da3ccaa8ebd68ad6059a7f8fec6c523725c4015b45db03cf5f9eff417d12.png │ │ │ ├── 3ddb8ae6e1903e03bbaf75e4cdb285f5b698a700da3684b643890f240e80b54a.png │ │ │ ├── 3e6a6f1f2763e4b36c9977849e267019c8d2031bab9a3447d2aef59aa82b23b3.png │ │ │ ├── 3e8ee6d461bced46887c035990af2a1e0e03d1428225e469dd1703e376d78d69.png │ │ │ ├── 3fc5b960d97b002cb9f8ab762beb3c2999d01c69cb263d2d79ea99de8b693c62.png │ │ │ ├── 404081690841ed2fdc71ea632a6d15b96a82bc4460d9943d39f1ae95c55dce99.png │ │ │ ├── 4118d1147351a7dbebbe396f757fc70890dabcb96b079170408e91122909b179.png │ │ │ ├── 41d0145cab9895a4e36583b148f72d0475b3934299839f7a4b8d6b292485ab3d.png │ │ │ ├── 4205986f1e168ab4b06a7089b3dfb7e5d91adc25a7347d890d9a32cf6bf3d82c.png │ │ │ ├── 42229516077eea9b3e9eb48f29bbd44251e6e37c86b3203b35af5f4de82b3a67.png │ │ │ ├── 42336646d446a4b82e65f9222d45008b63835380c18a4c24f025e77a9e311a15.png │ │ │ ├── 42350bc2b1b012520810cda136be769131a3c7b628e2ddc7b85a3b12fea3b971.png │ │ │ ├── 42b3d51c5e1014ead2aa2c711ab18ba5d57e8aa0f862dfbc7c28bc99e03b0f4e.png │ │ │ ├── 441c5ca40bf9e36b092638f58b659982f4b543b738583bb70e4aba0cee757a97.png │ │ │ ├── 455b259fe7eedeb624a264fc0db41b1e901e3ce9f72fd1b81874a9929f07bb31.png │ │ │ ├── 4648ed35946e9e0bb5c34d0669bc03a390261067a8f43a92b559459ef001ae55.png │ │ │ ├── 465e21badd280de0c78d1a1d07e5d0c951bbf15984657a2784e5d49ed2d5aafa.png │ │ │ ├── 4665d447d1fc77783381dbf1ee9878534cf068ba82a7ec487b60ebfdafcb83c7.png │ │ │ ├── 46d3148901737de83ab344b3e550b85f46b62a08efd82a3336c317bb05873a41.png │ │ │ ├── 46d5be193a0bf74e130dd7d15187b2e9fb27982c770a982f18dddb14be2e4174.png │ │ │ ├── 473e42ea7bc43a32bc9f2f2f6a5c537563e771f1402f29e902090127ba7c1ede.png │ │ │ ├── 476b6854f6203c3ae92782f50a4596fae50ac47a265430e27c109c6aafce3d43.png │ │ │ ├── 4791ed9f5d296eab595b63e2478d3db2b4fd684f431986f6b52e03e5f4b0781f.png │ │ │ ├── 486bcac2f85f0370bb6a645450f49b4899ae9f6145164feafe13660b9af41234.png │ │ │ ├── 4871f698fc7ace402e9b510c19e95e726c0775d4076fe12aaa727a6b2ba1d816.png │ │ │ ├── 48a41d55ab8e01dceb32b3cdde784be0a95ffd6bf6cd402a8f09849506a57379.png │ │ │ ├── 48fb245751b27392306b8fc7cc78586493fa549074d0e164d67d6e72d1617922.png │ │ │ ├── 4962e99e4c4d8a9312c627404545e8a4a03510fc8946c888e301e0021feae55d.png │ │ │ ├── 4996a6af1a40718fb801efc27e767ffaa722d1a21a8fbd60fd8545960ac9188c.png │ │ │ ├── 4a43a82f60acc483c4fac9bb27ab013f8af904a13d317abdd017a8d9af9a5681.png │ │ │ ├── 4aa377c0c346e44f693e22317917d8666976a78901a042b574a382ae4ed28257.png │ │ │ ├── 4bd3809e53dd3564de74779371d914bedd5922bb930ff53de29324a7b19545d2.png │ │ │ ├── 4c393334419ca8bb1e613616685db235f2469d6e0f1fd0033c1635ea398cb751.png │ │ │ ├── 4ccf7aa33f2e0f6d91289dfa3396ea766fd8d861d214611297158dd4c454a89a.png │ │ │ ├── 4d7769adaca519fb8166f84ff8acf41cb297554b3d3a5bf489afc658dcd88db8.png │ │ │ ├── 4d8746bb36fa1f785fa02a5abcb5108c4f0f6328233ad08db6da201854c24521.png │ │ │ ├── 4ddbf4512f07ae5730b3508d6a05b6a8f9ac473a3bfbbcf77b35aa0263fdcd1c.png │ │ │ ├── 4f76b535ef87c3d12fcbdc2dd710a140d0371de1dce196073ef8d70f829a27f9.png │ │ │ ├── 4f8b366bd88be09d72c8eea9cac3d211f0b61d74cdb96cfb8d3316628edc1e20.png │ │ │ ├── 505b5ddb139719dc3ce90150e7bd284a97c836ab1f6fc3b84a97677c111adda2.png │ │ │ ├── 50a27fac061c7a46de1adbaf5f346518c0c75bacf5c4df79f7ee45dc43a47429.png │ │ │ ├── 50c44e3073f64be0f5be3556971fc4f2be99b3b64eb485d53340fa021dc3e21a.png │ │ │ ├── 529c8bf2a6519f2133a9ab21141328e1f70be4c6d58bfdcaae89249d2c9bfd8d.png │ │ │ ├── 52a9b0088119cdf089fbb2b340f9696b358b7048cc6e683065db3369ee55e789.png │ │ │ ├── 540838f43f2e3540ada51a47a60605f8d1b034b255ecf8499d3ce217e9aa0847.png │ │ │ ├── 5465dcc28b2c8162bea47663f8dbae4d7952836b4ce75a8cd29e3778ea13fb45.png │ │ │ ├── 55b15286b1cf6a594198048d15dd617d23a82b2fbb9029e62712c546b7aa4ee2.png │ │ │ ├── 56a8b3bfb470ac7bb31e5a68750f19614b711ca30182bd8b6192138aef6061e5.png │ │ │ ├── 574bcd1de6d94bbc74f88ee2f943311d80b9149fa2df36a9dcbc2fc17a706752.png │ │ │ ├── 57690a6a9aa16ece2a97fa8a0703994e09af69549d392544d6d2b090dc509247.png │ │ │ ├── 579376d16b514608478b517a4c6522715b3248f00ab288340c7a07e0a0baf7aa.png │ │ │ ├── 57e23029c0f5e5b44e2375c90c95a6849366586f90b2569be4b9600af6be7451.png │ │ │ ├── 57fe6329eb38b2e4fa9745326d47db8a825456db4c5cdda4ad06c610fb355781.png │ │ │ ├── 583816bda2af7ea0661cae023e935e14b7de5370b3bcb0b05b255120689e4a4e.png │ │ │ ├── 587e5e0b60bb243ff03dc3b6fa4889e6e6ed823d36663986e4748977b7a3ef14.png │ │ │ ├── 58d046c1d166c4fa0907206d4e2d5937f34712a4e1160b5de9227a95b6628b4d.png │ │ │ ├── 58dc7032161a1cfa69be629cea5812569b3297415e3eabece9956b8288b0093c.png │ │ │ ├── 593555431f2c825f87614918682eed265012d9270175a6ae39afefbe3f24bedb.png │ │ │ ├── 5a87e1213a0a20446854ec42f259f724241e8f27a46e21ac8b7b00db548dd725.png │ │ │ ├── 5af3c045e0fed6f5a3fe6f5b7dc9ef2d46df0e7910dcb97b9c04f31dd444cd5c.png │ │ │ ├── 5b138a03b16a1d3d59e7fa8f527fba5a45d938783a9c6e5ebbcad4e29312761e.png │ │ │ ├── 5b17c5a7bb8ba0e9bcdd4edb92c2c631ef6c5376d46f92efead3c0972a7f65e3.png │ │ │ ├── 5b19dc5a859a027ef762e03ba3f8682c519cac5ca47ef52362f79a2d043e5201.png │ │ │ ├── 5b4bc5ea1dc71b6b55cab04a4ac1767032a15f6862847406d2d10fd924dffa4d.png │ │ │ ├── 5b67ed042727be6ed19b8990aa3f001b75dd2d684c02cde5ce428b4b19d85854.png │ │ │ ├── 5b9b7653038bd21365b6d975607cc38e803a684ea3c3eb735e09d1d6ea2f9311.png │ │ │ ├── 5ba157357b9b874227f9e232457c9bc9a87eb43c0a2fb7669a42ad8f68285920.png │ │ │ ├── 5c85b0fed80595747dc54e7fd5922fa33472f49b119a3e2005d9d7dfcaa78cbc.png │ │ │ ├── 5cbf7f1f08824f1c635b787d4130dd16ba227efc42d463010ae7dd7828b22345.png │ │ │ ├── 5cd3d775cf9355a648c7757b8401a59aad2100d67dc2770a9093928039421f2d.png │ │ │ ├── 5deac757d4354347e26296cc7a5aa35a0441bd555a05c44c71f3db7c6b502760.png │ │ │ ├── 5e7c83cd07176407c9b7775ca7540c28a89baa27f872529e9244a401826d36f5.png │ │ │ ├── 5eebc1909f7e4568b12b94e0c6ef5285f65a240bb01f5fe5f5474ac3594f30bb.png │ │ │ ├── 5fc49f339d99369473cb58d976ce6932f16f1efa4f310f044acf0d4333f5bb07.png │ │ │ ├── 6004ee36145a115acff132e4f93e214ab9c1eb8d36a45eb0239be18a251c84d5.png │ │ │ ├── 620fa6d664f5af3f09965721a819b49ec02ffcd101588acd96834d268acd1572.png │ │ │ ├── 623a31201d1a9dee32681688df572282aa2febdf473361d6412737d59a952fbc.png │ │ │ ├── 63ecb22b03941ff8baf8a8619360ad6cf498227dfc8ad32757bbbc16c589c6d9.png │ │ │ ├── 63f3453e75491fe5ea4ca5378e55450775e5044d49ab016183dccbe0aec591a3.png │ │ │ ├── 6421f31a904b52762e952c66d1b8b7cd57c84a9af09c0e5dc9d226d51aadca21.png │ │ │ ├── 6441a9e6bd3f8855721b970fbb684571d1170ba5ff16dcbf6314ef8c5257ab55.png │ │ │ ├── 64a65acaa27d6da0e6d477cd2cc5361e21a7039edb4c30cef4dd0ebd008e79e6.png │ │ │ ├── 64c516f9aaec952dfe0912d7b244cd525d7149ee8c0100f5157ff551a0a1af8c.png │ │ │ ├── 652f3f1feace56a989c8e256eb3f1ee0ad436c4af689f0ec00a460002b06ce75.png │ │ │ ├── 6542df1b88ebe79774ed1992a8c4bd8ca73781be575830c3bebe3350dea5df91.png │ │ │ ├── 657ce9ed7014a5d26b354a0825129f1c5dbbd180d216552d4e3ef3c44110aad8.png │ │ │ ├── 65f4d1c96c9efab61a469d907e5cad4a53bed072a8b7c266d5f757769b1af6a1.png │ │ │ ├── 66880c3f622a903b8db8d0c59d10aab415f5f154f9b0eec6a9e2e410ac1559bd.png │ │ │ ├── 68201915d74cb42af5b3cc5c95b9553e3e3a83b4d2a93b45fbadaa8469ff8e6e.png │ │ │ ├── 683d7d251af10770eb5696c83be5d89a1ff13266e3d6443164667648be7b84cb.png │ │ │ ├── 68c3a9fd131681fb49142df658f70c8caf9d991dab872d5f183847b35500ce02.png │ │ │ ├── 68de56324fb9c52fe3b23c7d2e2eef7cf1f4b5d98892a2474b2a5b536fe5e677.png │ │ │ ├── 68de68b4bf6810708c37ab6803870b47c5ba1e6a9d32d41bd74f727db444d828.png │ │ │ ├── 68fedf64924894e13bb99abb21c12be64ecfb0387bc39c7acd2c64cd5949932f.png │ │ │ ├── 6915fc160493d2d04915b97bbbfa0ff7bcdbb2365ff72641304ba75a0e661eaa.png │ │ │ ├── 69a86eb2050c357cb27d9f2c4722fa81f3339645bf241fde4f59958e7b31165d.png │ │ │ ├── 6b4e1c366526544c7e7f11ea85d714e00c0689c39b73e75ff922a000628e1fef.png │ │ │ ├── 6c86db9d126b453ec444f9dcd674d97b9a8924b31cf9543e117a2b4bc78568a2.png │ │ │ ├── 6c87460d576d544725382096e907a41a2b55ab739df819439f06d01611662bf6.png │ │ │ ├── 6cfaa1cbe93ecc101c48644968208ffa71049a4b2e71ad6c58c2a71da0476927.png │ │ │ ├── 6cfc31db93c007a49116daec04f0a0320a1fb615d51d8e7fdadda7be1bbbd807.png │ │ │ ├── 6e073da81a2bbc6d608105eacb0505401324ba05e42164c85bbdb3b9b0e3a2ed.png │ │ │ ├── 6e43fffa85af2a1d3eb60b0677c82f0a818a13815d870fc4cc30ad5b74feacbb.png │ │ │ ├── 6ed26f1690d81df041e4e91fd819c666ed2186a6722c1877a8977e7294b4f1a5.png │ │ │ ├── 6f072199826d98dc3bf721ee1370e86feb35702699a4dd32161b6797c77f7598.png │ │ │ ├── 70e9d1eeb99255f7205a4a6a07f01130b319aa607a3d7cfa369151929aa3db75.png │ │ │ ├── 71216ea7e98991af2c7f6226d581d2ba513e14cc585f8e8d0f6cf04bf112f755.png │ │ │ ├── 71a334c22698b7a7ea963abd6fb62e4ee67985bda18e5330ec544f5dd929a9cb.png │ │ │ ├── 71d48cdfbee4c25fce6cc03b85038ea52d6bebb08ebe60fcc6fb5b9dfe0d4d9d.png │ │ │ ├── 723b9d89f009286d7932c46572a63d514aec17bc9bd2c53f830e3bb4ce4f366b.png │ │ │ ├── 7263628741190579514c91205ca4818fe5fce378fafb9f78ed2c2338da23c844.png │ │ │ ├── 728254f45857cec8f4525bee482ab125bdfafc7507dd14bb9493e3718b38c855.png │ │ │ ├── 7292d666d261031f824259c309ce7f9390e737c26b6416d530169701320ca2a7.png │ │ │ ├── 731c7f45507301dcf5334e87b1025053d084471c939ec041d96c63f02011841f.png │ │ │ ├── 73932df26ceaacc429e3ae026ad6ae4cde9f9def97c5fd3eda9de393f1379743.png │ │ │ ├── 73bd7773c77aa1f852ad2dd9871b6bec16d1ac63b1157832f4dfb56803fe5f0c.png │ │ │ ├── 74415ce7365d76d0daa96830de5542fa9f47d3ff081a0f7ac23bc0a2414161e1.png │ │ │ ├── 74665900a4fa47cf3ea01c92c715afc9d22d198cac479b91d188bba86e15be63.png │ │ │ ├── 75028075f91c90544e4f7384e3df6dd2342c06b8420457fb27a809c64e477458.png │ │ │ ├── 763f1cc49413d145aafd3e7418740cfba5333feae1ec200df8af0b05ebcc1395.png │ │ │ ├── 7641c8702d00eb83a947511c424c28854d52a97a1476b677c263c922636d6f59.png │ │ │ ├── 7649029a07ae2625cf28b4da77d9e70bbaa5d444d267734ec8af08350c85753e.png │ │ │ ├── 766eb3d731389b6cc4e5aaecd28c437fc5cf08fd45293d97f464bfafed3dce83.png │ │ │ ├── 767975daf38a742cfce1545e809632750027fab7d7a57f346c0cf307ab39d3dc.png │ │ │ ├── 76c14ac2c2697cef9637ccc065974c9e2a9ea587d8cdd9143c7129eb9d155055.png │ │ │ ├── 7753c15d3c9470f1f18fe2ad5c68033575590dd72a29f9399c8dd60113611339.png │ │ │ ├── 781967cc79ed669cd06f3776ff22e990c5fc34e887a007c4ceb88a4d17999623.png │ │ │ ├── 78ac0420ea38dbfb262372288f0ba84232a3e508c29674c3d1de6ca7e6e3b6ce.png │ │ │ ├── 78b8e808d928276f9ffdb3c33d073cdb811400a5b295a2d2b2a7d0eb78325b7c.png │ │ │ ├── 7954efc4adb46a17417e889a890621569a72383e948d686568ba0bd86e603851.png │ │ │ ├── 797f925c9890a7d4d17067371b8a8ea9df1eea672cb9ad83731735b21460ce32.png │ │ │ ├── 79b72854e9b65ac7287394e8d36cea44720d2e66eb2d604fa5b846a84395c4d7.png │ │ │ ├── 7a824baea5fe29a1b61f4822bcca4cb164b09334e31d32a26efb39a4a8b1cfbd.png │ │ │ ├── 7aa4bb129f2b2421edda96d9da6a695e5a820edd09ca5d64cbe6266d1fcd7af4.png │ │ │ ├── 7acbbe0fddc5b2ff47d7f150a3f3a465a0947b85c0eb9602ae3a2ac9554177d4.png │ │ │ ├── 7b43abf16a44ad455ac671728202b8c3a91a00d3d36d0d20be83e378954af602.png │ │ │ ├── 7b91c46b13bbd603ea0076e2c6f0a06a73c78e2ed578aa0ae62cd6193a2d82b1.png │ │ │ ├── 7c1a42b1f54618fc6be496163aaf9a0e7e72f77494cd3403004892dd06920965.png │ │ │ ├── 7d44aa6fe75eb7db31140f87b64f52a46cf0b70ce865b6308b57d476548350ff.png │ │ │ ├── 7d8df6742856d2dabc8660a93fdfb0308b13061110cac155e3e345acdd32f03a.png │ │ │ ├── 7f0bb95fde05c435df2e9074bc9603517930ad047011c9d474b6da546f6c1d49.png │ │ │ ├── 7f3872709b04e25d9186c07cc7582e50381e21a9dd5a5eba63c3b72087e3e04e.png │ │ │ ├── 7ffae740fb841af02386f27b33e4526b862b42aab72b9f9f13da591ed7697152.png │ │ │ ├── 80613190dd855e14dedbc8e1b0f5bc831b0fadb4b1f1d89ba11cfe32a5b751a9.png │ │ │ ├── 8069ceea63be4eeddda4287904ef7b119c2ec05a5ef1cd0afb7b5376b2bab788.png │ │ │ ├── 825857f1d08fae16a4bec0e84104bbcb068972b69c4c67ad80016aeac16075f1.png │ │ │ ├── 82621f44b0ca3be3e86ecc4dc9d11fcc143ac4ddd9ebb045e5b05f6e91556357.png │ │ │ ├── 831083e28ada9ded9f41173cc9656a627dd07893d4b6ad5db342255543388ce3.png │ │ │ ├── 8326bf11c1ae27626d00bc0643e92da0a805e986019565ebd924e921ca93ac4e.png │ │ │ ├── 837887bb8b31e226be979ef820beb240296c446c5d823cc0ce66be0dbb651bf1.png │ │ │ ├── 8413c18356631b409ecafd119e446b5ff731a72cefca57e3019cf24f8a4df95f.png │ │ │ ├── 8434e1e6489f527fddb8fbb206acc6a9f841825f96ecaef103af63bf8061be07.png │ │ │ ├── 852286ee10dd7e556e4869df2a1db03be8bf06b8bc994e8194973751329ecdd0.png │ │ │ ├── 8566f090db7fe38401576f574dc05cc92651725695b52dd447c232d95f2275d1.png │ │ │ ├── 858381ec1b3c075b3886b5b7a5aa2e30d5fd3d4bec269a7d40bacd3174b5f64c.png │ │ │ ├── 859b1dcb1fddd1d72d4913c3c5460fda49655648a3874f3d29c5531bfc9acbd9.png │ │ │ ├── 86978d69deabb9161add4439e615db682fa94aaef031426e44fde0f5dbe0560e.png │ │ │ ├── 87242bb4486aac8c6047d0b7c778ec10df0fde26fea4dde804123bf5d556d4d3.png │ │ │ ├── 87fde556fcc0843f9f281ae549eca2011eeee275e48af5a4303d435cd6814b75.png │ │ │ ├── 882170b6bf6db20c577444b63bb32c637ae03b5a8c939e24c3e93f62b3c79c8d.png │ │ │ ├── 884091d7aaedf2cd9f8e823e85e27c719cb0cfd8bfb8c59fc0c36f59f00c8401.png │ │ │ ├── 887188777632fbfc7c7390f82967604e5b303ecfeff760bd55416cf98a316fe1.png │ │ │ ├── 88e50e6928fd8edb811a2c5f0f528e0554f5366afc0d0297ea6614bf4410f3ef.png │ │ │ ├── 8a0b0da107b4764b21bb523637156f63dde90ed8d6626f9367bf97cfd5edb153.png │ │ │ ├── 8a7af00bc040b800408d95e879f7e81bda5c1af634306ea5a0a069a2cfcc46dd.png │ │ │ ├── 8b21b5ecc5d1566ba8c5d3a17848dd1d8b4b41386c7450e3bb139e745c45a621.png │ │ │ ├── 8c6e4f64400a37cd975bdf4cd83ba643e15d3425ad64a1cdb7c33d72a7d44f3b.png │ │ │ ├── 8d76f67a66ab0f2c47d0bd1b2faec373d8dc94259b5572b85f53e69afa4dd583.png │ │ │ ├── 8faf6931159eb7ca8a66f3d3b3971dd5561ca0b5c57aa476c512bd92f9ef4633.png │ │ │ ├── 8fc9b17bbb595f72c585fb97938e2338abcffd85159124a219a4da813a787556.png │ │ │ ├── 9131d9971e88fd539075220c41ade538bf5b9adfb2ba33f81dd8657b3b4a52ea.png │ │ │ ├── 91aef3781cf3ef2d158c263f6c3fc4c8fcbe809b4804199f3faeecf4d6bb0a37.png │ │ │ ├── 92130869aab493f48f7eca21b51f5ee592c4540e71f88bc707983cd5889fd0aa.png │ │ │ ├── 92e7bc59ecfb463a2ccae87004a1255c7549bfe1e36af66651032f41f51f033b.png │ │ │ ├── 93629226db58af10754e94acc48a7f9997bbd180f72d7ff5d1456b449f0d1804.png │ │ │ ├── 93a281c70a105ef5d0ff9fdcc1196ba4693f3f67ce8be6c8d15c6fb8f5e5d119.png │ │ │ ├── 960529ee002934f0f31e148a1fa028904bfa60cd0382f71ec8a770e886a5af89.png │ │ │ ├── 96a3d3d26ce659ea21f351902075f6e52a7b4e0971b2d5d212aacdbc9f30be7a.png │ │ │ ├── 96ac0e089d295a91d8af1a805d3e6641065f8dd711ea8fcc8b4685a510c35eb2.png │ │ │ ├── 9781c90b808b0d460a9e35a99e927c1fbe06f0e255d95c3fde0d6443bc835501.png │ │ │ ├── 98024e21f1f95892a4893270129a9184833a409f7c5ceab7eefdb8e8b1fcb105.png │ │ │ ├── 98880d8763f6849da01f18df0dac509b2f275bdde2c364231fc26b6d668c936a.png │ │ │ ├── 98a7c346a0547b70956114a86872e41e962eb1a1eec8ae7b60d77feed4bf63b1.png │ │ │ ├── 98a83df906e8a914a0e2f86681c02dea81f321561731920491ae0d2cc93b7658.png │ │ │ ├── 98d87d724bac2bde555904737091ba5f45b4061c3cd9039cc1fef75f17a2b018.png │ │ │ ├── 9912110b49aec17ddb5e7911461f17053e2926a95c74720fc3d795b3a337b6af.png │ │ │ ├── 996e1f714b08e971ec79e3bea686287e66441f043177999a13dbc546d8fe402a.png │ │ │ ├── 99a9822675d587df0063dca6e0cf8174e4476aa8d880d4e01302df1fef2e1775.png │ │ │ ├── 9a9d50ec8631eafde241ce5b6991ebb9ba74c8543397179e1b589e700bedefd4.png │ │ │ ├── 9c0394f7bc1c7e31b0c1d59f3488acca1862d9c3b266f5bc94f33e5555ab3a77.png │ │ │ ├── 9cdb0c2d9aca55786282fd13c3e5acbe5629225c51a6b9a278cb240506e20921.png │ │ │ ├── 9cf3765523e2f99dd004b65f2216b89a2326eebe9bdbb763b93fc6234909dd6e.png │ │ │ ├── 9cf6b11e7d6c7040617819b884b52f3027468c01af288d4c288f129c347290f6.png │ │ │ ├── 9d8b50f9c6c46290e186383a1020bdd0106da33d1712750beeccb14aa1922bcb.png │ │ │ ├── 9d90bc3b2e6ab224d1b6ee30055a55f4a3556a427e1555dd287972c3d321498a.png │ │ │ ├── a00ab2f4cbbaad4c8ec3ce5560fb316b9a6910f490fe2569ea84ff4281fcd729.png │ │ │ ├── a0277f3e8c3bccbf4dc8954b6b61345931c30cb30120602c78f09bc20bed49fc.png │ │ │ ├── a0ca7088356910d8a6cc708e619a66f391d040d89077785ddc524903b1393f56.png │ │ │ ├── a139c140ea2e6e77def9e03b195158dda4bc519e7b1d9fe696a93525fd6d6213.png │ │ │ ├── a13afd67f8896c8ff8c44b8db04f20eb1efe55957c400071fcb92d4cf1774f37.png │ │ │ ├── a1b2209b0f84f7ff8d160ddcaea373c8512155482e7d6f9b52b0d529f4d54170.png │ │ │ ├── a2475dce53a3a3506f353ccd06a5bb8aec6c953f4fc400a7a046114c9940838a.png │ │ │ ├── a300de1f825fe211c211dcf76124a539ad6cac20709299da32efcbe8c5aabf0a.png │ │ │ ├── a38122e743b3952b74c936b76e54fbaa58022f23c80625df54230ae32fef1499.png │ │ │ ├── a38ffc9628a9ea6e11a22b69dd3266d855a825624d106efbb7b273ed4c630c70.png │ │ │ ├── a4269b1196905ce42d03a9e2aee49c0d78b29316fe552bc6ef0c8be873097d15.png │ │ │ ├── a4a799586ba38acf8158acb05e3dd3dfb96bbace54a96c19356a951af1d1a814.png │ │ │ ├── a539d38ff8b8b8fd2ef4524af0c10284839712bc34c874ae2963a35a168fdc15.png │ │ │ ├── a57073733c2bf154bb742b579b59b5914709a05db88a27ee616f7edebd1c3005.png │ │ │ ├── a5ce5552791e41b44c4e04c5e888b241594799114325df26fb07ce3e188ad250.png │ │ │ ├── a5e33df76123c10e194484305351c5a0e7fab9f95090f831fe3eee9e6c6616a2.png │ │ │ ├── a5f7216b0f13a8ae669faf6826c84650cf6fe889475350adf4ccbfa401bd89bc.png │ │ │ ├── a6b1939c39d5a538d1528dd5a07d8c7bc4edb0c03c9c8385a3f89e9d9fe0742b.png │ │ │ ├── a708f80a478d12c7e0f697f128556f10d0fb2696e502eb0bd82d9d3dcdc8633e.png │ │ │ ├── a72551848dc772d499dbc0742623dfbbedd0c823e1c3780f0b3e567f2165ad7f.png │ │ │ ├── a795bd79673142d6c4add9e9ec954f593a93a4ca28d0f7182770120a3b5236dd.png │ │ │ ├── a7a26c54c39b33f047c62a0854e1e51c1b8171ed00eb467a5cb984cce2303964.png │ │ │ ├── a8a71bee8c040302364a525e7eca9611be66cff341ebab848546a7c382d23010.png │ │ │ ├── a940cd1fa7a6714ccca3e4c0c81aa56e03d0e4101cda5c2adf4d5e80618e1736.png │ │ │ ├── a9adad8cb76e8e36baba9efde4850fddf6c361ed3579845ba564aa9d88099a71.png │ │ │ ├── aa2ee94b92fdbc511bca5c23c83c96124396f392565ab9211eca0a1287e02eb5.png │ │ │ ├── aaf24e91fb9fc50a5b27b3958cbee3bf344729c5d009dfecb5d038375643d3b6.png │ │ │ ├── aaf7cc905b5e36c6f4632140ba45a16457b1af3602415b5d9eafb1bee0190d23.png │ │ │ ├── aaf9ac15a3c32cc5992ca0843182bc4e69d438a15d32010df0209efca978efc9.png │ │ │ ├── ab250ede3d9d54c79b2bb7afbe8b62cd2a5a2028ac90b39732ef608a88a21e38.png │ │ │ ├── ab515ba0ea14ab04425de3700e7dc72403b1a8e212dc8726bf42ddd9eb0481a1.png │ │ │ ├── abd115f5aca5273119325e6ef1d15efff6ad2f8bde965a28db75eae5e2532dc6.png │ │ │ ├── abef047f833d96e0d09bf05347cf6dcd4dc8c107305a1ead76cd96939e859e7e.png │ │ │ ├── ac4b9a62d8d6297f60b19e5115b3e0c2875a778a8c2b254e11c63f40a84ad1ce.png │ │ │ ├── ac58d4f52fcfdd174184c16a5e10865964549953f575c5119e1a984c4bfdec9a.png │ │ │ ├── ac6111605869180e8ce43081834a625afc22cb01a4e199f3dfa81a4ed2d655c6.png │ │ │ ├── ac993cece625621b892f7db57752c0a7d8170cc3ddf1971ec4b3ec48b8c26f0a.png │ │ │ ├── ad15a08400e98d9e4edd88b5e649e07fadf509e2b0929c65fa5c7fe2cc0c5752.png │ │ │ ├── ad880ef16dcb47b964feb0048c7b57412633a84954cece715dfe25dbe674713c.png │ │ │ ├── ae445fe4c6fcb82aff0b6dbbab7105cdf0509a16ed5fa68d59ce25f30f3d6fcd.png │ │ │ ├── afb9a6729cf463194ab4d1da16204718b76a80994eee518116eef8f66d6a0f48.png │ │ │ ├── afefcb60fa6a8b9c102697bbc77357d71a2545da6e65dd82e08db9252caac0a0.png │ │ │ ├── b08023c0630c6084415b654bdd6e41ad0597c297511d1be843245c0586799eef.png │ │ │ ├── b12431aed510bfb8aeae88080e2d3962638d718f34831fd186dd4b0ccdca84b2.png │ │ │ ├── b12bdab4713b37afcfc0df8fdebde8d6d81385d3cfcbb753157f51493954c605.png │ │ │ ├── b131289f1c5b5e7c8ed1db1bcabce47153bc346f607affc9b9d73c212a8f65cf.png │ │ │ ├── b18d1612510d788eab76ccbddbf5132ffc1efadc7e43a891608ff007b79f2bc1.png │ │ │ ├── b34621b7c5638284eeb8e8e1a4c44c670076f0d91d494c2f18397d9378314f23.png │ │ │ ├── b4e9b84be3ac5f57d7dee1031d3c1304c840c54cfa0a255996cc6083815e3a7d.png │ │ │ ├── b749c1861831bd7c365a43cf45dc9d5a481d0f9fa4a46ecc368b8f26ea6c09ff.png │ │ │ ├── b7c94112d052217c88f6b415ba4fbb53b44c662e3059d53671e021f6673947d8.png │ │ │ ├── b80d2e6261b398f4e40f5f73fe0ebb751b200d6fc55a2458081b4f16834bf981.png │ │ │ ├── b90b7e75461bbc0c0d359e829b828d407bc64213c7773ea989b6c2f3a826312f.png │ │ │ ├── b91c89a043815706a49e57702f6982523e00c9db1b7f5cfb9304fb7bd529dd62.png │ │ │ ├── ba53daf07a9635cd65ca8fa48703651b1a93fc14a77786e41dd2a304ceb76c74.png │ │ │ ├── ba7434d8dd3527efc41de8b6e3b91c09f21e3a564840ec9865926cb013f52bbb.png │ │ │ ├── baa1798f1f60e6ef99e23365bd224dbcb2d4f28af9d26faa44d52c1bfc272841.png │ │ │ ├── baa4fca3087b3fbbd32032fc745fc496389b4b99b2df0031824fd2be7a14e7b1.png │ │ │ ├── bc4c3559e165983e1af1b1c973f4b30d8b7f93a44c226b56a6b9b6e38dd68cb5.png │ │ │ ├── bc6d34098cccad814ab99fd5843d5cb32f438895ed48648b53769f1ee6c55d68.png │ │ │ ├── bce46638a020a5a2002431b14c42833cce8459f68595cc58904e4895c3cea9ca.png │ │ │ ├── bd9649c6f85e95fbc59f8b5849fe5567b45d59992f0ed44546085bb184061402.png │ │ │ ├── be1aa95129ade023711dc222178218c39deb78a28a6268500dd3aabdbd5c2e04.png │ │ │ ├── be3c83620dabedbcf07c59d13c3f8ca2c4432a09034c3e28f2ca7724cfac1a1f.png │ │ │ ├── be3e498bce926c4bf5b066f65711a32a4760d4c5c1337cb79b8fd30bd3a07933.png │ │ │ ├── be60e4be476731e3fdc7a159c102437c0304363c2c4884d5141065a70ee9f0e5.png │ │ │ ├── be701b83b61a267c89a5e13442b378e623ec1e6a34c8fb77dce28907a7ee8bdc.png │ │ │ ├── bec28744e5d9ade2515505f6839960e62ed08992556e99015669664ead53e989.png │ │ │ ├── bf599da35cf8337b9c8591c54891c129f0fe0f276650a25f03826a6b2590b64b.png │ │ │ ├── bf5a26a8fa82bf407a8ffcb28ae90cb87ff5352136cb541e842433b15648ec39.png │ │ │ ├── bf5fd04f09bf3074b6ae9c05a1b4e13e781132011bf0f3c408f1f3b586b84cb0.png │ │ │ ├── bf943d308b250e2217146187cce0db80a2be1f9142a7e2641651b76dcb41267b.png │ │ │ ├── bf96e87d758e70c21179a6a39d06ea574e13c2d8a729b3415a67c913aeccda8a.png │ │ │ ├── bfc328c769d020b3b0aec8066f7f8cbf3d328c9ea4e67733094d4e3fcc45df9f.png │ │ │ ├── c025f3d3d3dbb8bff56786a8b46416c2d67f32787d07b7da046cb6d3703ebe9c.png │ │ │ ├── c02c8f5494ce986c4c31acca6bf8a71eea3425a3b02d10d04893dd448159814d.png │ │ │ ├── c048d0872629afdbddfc4967aed0d9b11b4ecda05690f900a10a4246dcd85d6a.png │ │ │ ├── c170f52f3e1cc35c14997a058cf47d0b207320fe23cc1f07d03bfae3593574e1.png │ │ │ ├── c24db30f88ee57e6574af8286c16e2358534ea9d26bccbcb0b8915807dd1946f.png │ │ │ ├── c383645a159267f2bd50d6eac752e6c6e7d337ae4011f41d1ef3cb8fe7fe1e55.png │ │ │ ├── c3837b4dcab8b16840422711217770519a72c239d8fbaa5ba20b27e84f8164ae.png │ │ │ ├── c3c2fa44e4791e86bf332aff76fa22995e16d27651d46c4fbb9fff24b91b4485.png │ │ │ ├── c3c8e6139d0372472649fa9b49b22a7fe742620588564e7c58716482b951dc8f.png │ │ │ ├── c4534fcf4edb323f925312965b0d89f000b0598f043de009f83eee69efab6a70.png │ │ │ ├── c47171d8b2cc7dac8fae13d2d7ea9d30aa3636c23b7f43735617d3b5e2ec8779.png │ │ │ ├── c4a67c42e7b1443ec859aeaed60bb0327071af4871a9c7a500987732ea0beff9.png │ │ │ ├── c4d152d96629e58e5ad5283b5f3172315de5145245409980c224afae98db2323.png │ │ │ ├── c53066ad20b661ce8056c28cfff0ea3e2a1f1fe7e2e456cd40adc21eb3e5a666.png │ │ │ ├── c54944ac30ee3982ff793b0d26c1aa4a246da27def49487e4a9c90888a9d9001.png │ │ │ ├── c581ede5934d2c9807d6babadfe28b52bea901a189cd2fc84eaf6ee200ed0c2c.png │ │ │ ├── c61137761077820ee17aff12f9686b16f3da2a64086b735cc7fdff4b38dc55a5.png │ │ │ ├── c62b055c83fc77b835710ebdfe43a992c37b3dc6da4d852a05dd592d6d47f2d8.png │ │ │ ├── c66fe2aa14fbba13f1098ac37070d58333d6d65d7781661b0e01a8b1b6540230.png │ │ │ ├── c79ac16c564a32b1cdde90df213e77c5c1abe76770b3a78e3d3d498138b95332.png │ │ │ ├── c7e9c9fa2b4a758ce1da8870e6dc994eff6ddcf5a2fdecce1a55d4403ea46c34.png │ │ │ ├── c8498a6c41a670449aba839feb08531d4d85b15735abf62508ac78750025ad08.png │ │ │ ├── c8bf723ad9e8215f5c52ddfe5f35caf0f6622e17f6049f5e8beadaa8defd96db.png │ │ │ ├── c8e9e0eec76b41faf10020f061dbdb6a48c3030f99c2fc1771a7f8eb5d93fa42.png │ │ │ ├── c9dc7ef8deeeab8b973174d2d6bf6bf83978abab2e2b5eee0328427d495502f4.png │ │ │ ├── cad9ec2c13070c6ac936bca6770a1501a3ef65c1d0c985a22502383887ed464b.png │ │ │ ├── cae67533738f4f8fc081e8cdd7f57bfc8cefd2e18d3f9d4f4971f3fb6ba23a06.png │ │ │ ├── cbfc6298b6dca2eba2a0320b796c99d43cff483200fd8ca0025f9fcfbe30cf7c.png │ │ │ ├── cc436564e03582d783e18edf8497930d0eee9cf228437526dc57de3f3a37945e.png │ │ │ ├── cc8cb0609a8bb2192697b2b3ddc98f056139dda697de00f6bc7d29802cc0cf6d.png │ │ │ ├── ccc5acc2c61cb820b9f0e517bbbe33d5c8ef248007739faa57f84b94eba5216a.png │ │ │ ├── ccc80b78a34b9e649d3c20bb6b719ccde013853c5d91400d6438ed381d54d946.png │ │ │ ├── cd18e30b02828b726f8dfa752f064fc68b828aca42058fbc8ce2278785b5b52c.png │ │ │ ├── cd2141c3cb8e3e8fa234be374bb362f02c38813a6f5965669bd0c43739fd1e7d.png │ │ │ ├── cdb4d30507c4e18df72a78e403716594710d8812ec681103f69efa09cab93617.png │ │ │ ├── cdc8820722f5739483d3c0ba3e95376a4aa269b539973f4158955098e8fc91cd.png │ │ │ ├── cde0445668dfdc190d6adaee0e6101090eb00f7a85157abf4dd52d11ff7d041f.png │ │ │ ├── cdea8154cd18d0d30319f5a7781ee8ebba81e96a23e6edfee263466af874a974.png │ │ │ ├── cdee2479f82e68c6d760283a34c1850802c2e2969373484c04682f8c6a977f9c.png │ │ │ ├── ce03faf414eee5d9564747ac16e5df9fc744b0fd4f0f17e1cc582023e6949026.png │ │ │ ├── cebedb6f2901ace4cee923e9ee775ebea6263764fa60fa785d94b7d2609ddbff.png │ │ │ ├── cf1b78ee19b1f0b8f79816a9c3b7c42f270f6de42fbeb65987c4cb0db043d8a2.png │ │ │ ├── cf39bc9027d062aef924cd8cba853a065a6fe1d2f24575023b22840ea4c2f6d7.png │ │ │ ├── cf682e26b5fad722afa4244996595beabb18698ea0b71d1381880b919aa76a26.png │ │ │ ├── d106b7726fd87b5dbb289a7e4f1cba5f11df303fbfc92d384a118de3cf220b41.png │ │ │ ├── d237c8d501902ac0d681cb144da5216c911ccfd9b2a62921a438e43c77cb3b0d.png │ │ │ ├── d371a6a40fdb7ed8c563ccc8ced4f48c9c134a89c2ebd77df2b42739af827ba7.png │ │ │ ├── d382b0237d16725bec7ca5ed3a8edb423286c74b505a1e54da7be5b4f168c0dc.png │ │ │ ├── d51f8f8f915d8736be6291854e758f72a4c71e71ebcdd57377f3f1f450427374.png │ │ │ ├── d610e82c7b69dd8ece37f90953dbf35248921df4c83e933b0b551004a4ffb5a3.png │ │ │ ├── d6f971073437021c6498e6742e64bcad322980ae0519376c9cb03e840b60df0d.png │ │ │ ├── d7468d9c501ddf7d0f0679b9f8a9e89e800440ab691da2156e5070e2e3893fda.png │ │ │ ├── d763d26e028c138abc693d6267b7e1748dad6902ca357a215d23bbee7f99e95c.png │ │ │ ├── d76f999e8c5a0c9eb3b3d3abc6cc98cf029e34e4202891d53c45b68c5cbc646b.png │ │ │ ├── d77650e8b3f3724e565222a5e2a8bc1c82f637c9b7b326c0a983fb86c485e593.png │ │ │ ├── d7a27c0fd75b842bb66cfc37fe8d6a8d39c7318e0694bcc2f655eb0a38fbc0e1.png │ │ │ ├── d7f48fe0a6e1a313061cdfc1c5ac03a5ee846f83b44a2ef77d6e9349459e11de.png │ │ │ ├── d8155ed7875ceb3c12b1f5adc38f3e413cb359253d63942c85123c7df6498aa2.png │ │ │ ├── d837420636a918a2d9be425fed339173d746e95586b643c77e189f12f11eefde.png │ │ │ ├── d83ab36bfdace0482d8e3e69d2522438e0150e5110263d8ba2ab96370590eef9.png │ │ │ ├── d87fea278a64d572168b0269e4fad800caad01e6a0c701919744d3f832ca2232.png │ │ │ ├── d90cd7304a1a1d364ce6a8eafa0f0d055092cf91a820e324598bc7e77220eefe.png │ │ │ ├── d9739e3353c2eea0cdc8767351396117d89b96854df0c4899315a29535274aaf.png │ │ │ ├── db03322fa7387157436c78f08f5cf1ae17136e5630cc74d5a8f6497076aa1229.png │ │ │ ├── db121561d3d3bc7c5b2a07aaafc22d6778d4ab4295e3fa2bbc05a6de6bc166df.png │ │ │ ├── db2ed4b791af6abbdf17b328ab1cd4d9d9dbae93461d332d40d256c4a2d6345c.png │ │ │ ├── db68e0b911a795a15aaf4038eb120ec661d6794fb3709446a10532808d1899cd.png │ │ │ ├── dbae2d0204aa489e234eb2f903a0127b17c712386428cab12b86c5f68aa75867.png │ │ │ ├── dbbaea8eb57f330940dbeba66d3acae2aa6b726969fd37b70d80105faeb71030.png │ │ │ ├── dc5900f0467e08db4208ffc3e52c13e47add6814ec81159d1fcddc54ef8f092f.png │ │ │ ├── dc97498bb1fd5f0926b67b51539350dbc498726bd9a0431b76df697855b5856c.png │ │ │ ├── dd5c5991269ee74ba8e8391678608e90142d3cc365b215a39b91b4912b2bd52c.png │ │ │ ├── de139ee57851f522bc12bdf01bb6f462affe7a5c3c68a719f2e961d55728f86a.png │ │ │ ├── de46a4c51ffd876ec29554ab5a4af8dee76c90509b40721ab3f9407d77ec6aa4.png │ │ │ ├── df2fe13aa8aafc163fea138fd44240042c03b40900557cd8f948094d5f35e8b0.png │ │ │ ├── df7c8565ca13d03eb1f868801fd1d1dec807860ff5e6df410a9bdb8fc31211bc.png │ │ │ ├── dfe0f069d806d6df7ac200d584d41a6dcb1f15afa42446981c99ad5e0b6fb37a.png │ │ │ ├── e07ef22dee352b71c0c93e04d505477c20bb0dcac2de81d4f02541667ba3ae29.png │ │ │ ├── e0a95e1ffb78921352b323f05147837612177c137225d1d403227873544f6f5c.png │ │ │ ├── e0d1c008d7e041ad90a87a731fddf524a4b300dd04fbe2387432833eb802dddf.png │ │ │ ├── e100f44c9cdb88af25359c975b18d47d52efbbaa864a96e8b170764929e95bf0.png │ │ │ ├── e1012c840256d991cf88f59883fc47c48658684382e4654f2e84460b59f706d7.png │ │ │ ├── e1f89f01e016d154b35f9d71a48221bcaad5163220278b0d225546c58e2bb28c.png │ │ │ ├── e20d92e880e89b6a39caf95132106b0ddf6a8e7a5a301bfdc2c5d2aa61051a01.png │ │ │ ├── e24b65bf244cd7384341b84da951453aa829b9fc8048335eeaa58cead498682b.png │ │ │ ├── e24e8d7d1a433475f97fd3eb38e04a476eb8529b1ccdddea769fdec77695f5b4.png │ │ │ ├── e3056e390f19ff3d44083bb3921dcbd33fe8ff809f0b72b6adf31e6508073620.png │ │ │ ├── e3076328f38675cc1f801c2fa261fe092526ee1daa66721f7118b7bfc87cda6d.png │ │ │ ├── e422ead6860bf6cbaee9dd8a19775dfd3a3843de61d7d7e57d53b6ffedf07592.png │ │ │ ├── e44112a1417480f6398f19d90edaa33247bd77aaf545cef98f93a3293c8c4cc0.png │ │ │ ├── e48bb8b5fa37eed9cd43cd6940ff8ba04edf214ac1a59fd749979cb4579784f1.png │ │ │ ├── e52c6db9c3ce1d2ae5524aa01f3275df05ec3cd98b4fb3db74487f9fa7db3472.png │ │ │ ├── e57a2020acf41e1678892fa299eb19f2fbdcabb05cb45dba1fd224e49eb304b5.png │ │ │ ├── e58af60a0d5afc4479c372761f2c82d84c3df0e6a6d573beaa6ed532ad83ae45.png │ │ │ ├── e5925f28a55eb6d4f759896ef301e690fcaf22b76fc5d6798889bbe80b504d74.png │ │ │ ├── e5d304c1d5d0fd195f815dfd03c1dcc52db5640c8f4d5e118bdb6a8529f7d77d.png │ │ │ ├── e68020e424598d6b4e21b74601003b539657af8854822a2ffc58d5aa23ca99be.png │ │ │ ├── e6ea726bd4e1371e3375bc721bba6e735fc9beca6751ae0858f75d2e6d695ab7.png │ │ │ ├── e76d46c2ac505715c1f1683b29078c2ffa9cab2aff790959d3787fe0bba80925.png │ │ │ ├── e77f21c05f21dd8734147190e24be4aa5d2e78910034b5b2349d867897a39724.png │ │ │ ├── e7be96a51bd0192a72840d2e5909f72ba82a2fe93faa624f03396b30e494c804.png │ │ │ ├── e85966da87272e65cc594148861f3492745c08ed824647ba83f3c43fe6bb71f8.png │ │ │ ├── e8c201396a61ed240038c980772bd86e38ea5bf1279e683edc3d617de438c685.png │ │ │ ├── e8e70f7d66ce50eacc06b920e190c4d6e1685c97f3693d354977dc7840bfcee9.png │ │ │ ├── e92155a80089e84481831519f1b7971ab10be5750c8b5f201f573ff5b6fd66bc.png │ │ │ ├── e929779a263a988d8515cc7acf3e8bbd5d5c99a1e93d03ce5c714ed4cfbdfe3b.png │ │ │ ├── e96aefa4ecb53f57b64658dd4e5e22c2363f9136087c581a1b396f9e398b6ed0.png │ │ │ ├── e98f73bdd9e1a65ace4dafe1d00ae44a6f919f53bc3f336577edf393a437e165.png │ │ │ ├── ea27efc5322c904cf1ceee0b04c7df6938c7f46631e466daea4e04806d79a1d2.png │ │ │ ├── ea618cbc079a954b1dcdd0fc590a8a3b67c0db5a9c605945c5385a32f7d7d929.png │ │ │ ├── ecda64fa45dbecfe215ef0b6db0abc477ad9de92c6bc0f620a2acba3f8129969.png │ │ │ ├── ecfcb33d0af32c75b6b8c88a83d404a7700b68c95ed7cee3ac71d65078468a14.png │ │ │ ├── ed17a4b44bc48a9cd4db11b23b8e4ba91d4cd5f8fb90ff6daaf6af32711de7c6.png │ │ │ ├── ed30ad56dd602b1f8abdd971baf784dc3b92d51c834380bacae9c6a7eca94592.png │ │ │ ├── ee22468390458598f416588dffdb16f09f7510ec35971c50c24ddab6acb36a33.png │ │ │ ├── ee23dc498dadd9b2bf2e0576c0d01ece37c0e1cd7b9464abafbc228669df510d.png │ │ │ ├── ee37e4eabf3a303e02efa3fc244d5f1b7ef30ff310938e0cf72b8dd99c079ea7.png │ │ │ ├── ee83e94e946775706d52999948b4bdbf103a18cac835c9f33b3ba3abc1842351.png │ │ │ ├── f10c195760ffb3423fba107e3daa576a8ed7cef6d43a181bcf5fdee96433d941.png │ │ │ ├── f15fe8fdaeb91b4bb853490e9ccab0be3cdfb3d6922fbc0853a30c31547b2d8e.png │ │ │ ├── f1aefa36623c14bae001e21e1fe83812cde810b2fe344b7df00f53cbf3ace6b2.png │ │ │ ├── f20d61534a323cf4d9135d739c939bcb1b31024ec844556d9a2a7aa8dc6227df.png │ │ │ ├── f2800b1f335795a4be586ce2c9e6cb134ead1d0956bd61c6d6549b695766cdaa.png │ │ │ ├── f2834a6163cc8902dc46bd642b69a94106a78d377cc9d835e1c5277075acec16.png │ │ │ ├── f34b261449b718f1e3bc43c106c0aa778eb356deb4434e28c75803f9644bb4f8.png │ │ │ ├── f3e57dc69a267b95b412c9de909042c68742c25591038c6bd7e03e75b8b91052.png │ │ │ ├── f4d9088730f73b1c26c3702fd3b1849c90608578219c32bb9e0fb940344b833b.png │ │ │ ├── f62b96d4649acfd6342ccce07c6423bab43336bdaa7cfaf0bd8ee3bf1a59ef0e.png │ │ │ ├── f75b627c63a86c6b8bd2e7450a8da4d6e8de4c20472b2e18761e0dd8a90633c6.png │ │ │ ├── f79c3bf4770a5ff19f52ded53cd641709873e37b932851145b0b690311df7728.png │ │ │ ├── f81fe87582964d5f8b47f817a311e9e93182f4015d95ed84e5a990ca3b023a02.png │ │ │ ├── f88b1f26676462c3a922ff471eb8d3c3ad526328890a0352a507bf9da13d91b6.png │ │ │ ├── fa503619c6050a58d7d2156ef00605398a99dcc005cdac5916c24d35172f124a.png │ │ │ ├── fafacd9b24577436f38c8df20d4cf2ce56e166dcd2da2af03de2480e37048146.png │ │ │ ├── fb0266bc868745bf5667b051c1403d66affe048c2caa96d7443939ee443de21b.png │ │ │ ├── fb6d7a47a9a44142067dea31149a4e58abc0bf292f72334d6ce525a2062a676c.png │ │ │ ├── fbafa718672045287fc4a67f1326fd68ac19f9c441b5864d14354fdd28fab0e6.png │ │ │ ├── fbf7dd0013eeb20851b056475ffd0e791a3062e6d614a42dfc9d4acecef1b0c7.png │ │ │ ├── fc0acb0c2eb27a36652501924da61cd8d077efc4ef08e039eb54a178fc782f87.png │ │ │ ├── fe2164d88ad718796d2ef34376abeffbb9cda47487d771f9dc5fdfa1a2df77a4.png │ │ │ └── fffc201fb1663de26f87a0ceda55858196943762964a7ca6ce075666d1d6ff31.png │ └── en.lproj │ │ └── Localizable.stringsdict ├── RootFlowController.swift ├── RootWindow.swift ├── Services │ ├── AppServices.swift │ ├── Authentication │ │ ├── AuthenticationManager+UI.swift │ │ └── AuthenticationManager.swift │ ├── Constants.swift │ ├── FavIconFetcher │ │ ├── FavIconFetcher.swift │ │ ├── ImageCache.swift │ │ ├── ImageEffects │ │ │ ├── TFAImageEffects.h │ │ │ └── TFAImageEffects.m │ │ ├── String+SHA256.swift │ │ └── Website Catalog │ │ │ ├── TFASites.xcdatamodeld │ │ │ └── TFASites.xcdatamodel │ │ │ │ └── contents │ │ │ ├── WebsiteCatalog.swift │ │ │ ├── WebsiteEntity+CoreDataClass.swift │ │ │ └── WebsiteEntity+CoreDataProperties.swift │ ├── Misc │ │ ├── Debouncer.swift │ │ └── UserDefaults+Settings.swift │ ├── Pin │ │ ├── Pin.swift │ │ ├── PinFailedAttempt.swift │ │ ├── PinKeychain.swift │ │ ├── PinManager.swift │ │ ├── PinManagerImpl.swift │ │ └── SecureTime.swift │ ├── Scanner │ │ ├── OTPCodeProcessor.swift │ │ ├── QRCodeProcessor.swift │ │ └── QRScanner.swift │ ├── Services.swift │ ├── Storage │ │ ├── App │ │ │ ├── AppStorage.swift │ │ │ ├── SyncableStorage.swift │ │ │ └── TokenOrder.swift │ │ ├── DateTime.swift │ │ ├── KeychainStorage.swift │ │ ├── PersistentToken+Diff.swift │ │ ├── PersistentToken+Update.swift │ │ ├── Storage.swift │ │ └── UserDefaults+Storage.swift │ └── iCloud Sync │ │ ├── CloudProbe.swift │ │ ├── Crypter.swift │ │ ├── Error+CKErrorUserDescription.swift │ │ ├── PersistentToken+CloudKit.swift │ │ └── TokenOrder+CloudKit.swift ├── TwoFAuth-Bridging-Header.h ├── UI │ ├── Add │ │ ├── AddOTPNavigationController.swift │ │ ├── AddOTPViewController.swift │ │ ├── Camera │ │ │ ├── AddOTPCameraViewController.swift │ │ │ ├── CameraView.swift │ │ │ ├── CameraViewController.swift │ │ │ ├── ScannerView.swift │ │ │ └── ScannerViewController.swift │ │ └── Manual │ │ │ └── AddOTPManualViewController.swift │ ├── Common │ │ ├── Controllers │ │ │ └── ContainerViewController.swift │ │ ├── DevicesCompatibility.swift │ │ ├── Extensions │ │ │ ├── UIAlertController+Error.swift │ │ │ ├── UIApplication+TopmostController.swift │ │ │ ├── UITableViewCell+Margins.swift │ │ │ ├── UIView+Animations.swift │ │ │ ├── UIView+Autolayout.swift │ │ │ ├── UIView+Containment.swift │ │ │ ├── UIView+FindConstraint.swift │ │ │ ├── UIViewController+ChildTransitions.swift │ │ │ ├── UIViewController+Containment.swift │ │ │ ├── UIViewController+DisplayError.swift │ │ │ └── UIViewController+Keyboard.swift │ │ ├── Forms │ │ │ ├── FormCellModel.swift │ │ │ ├── FormSectionModel.swift │ │ │ ├── FormTableViewController.swift │ │ │ ├── GroupedFormTableViewController.swift │ │ │ ├── Segmented │ │ │ │ ├── SegmentedFormCellModel.swift │ │ │ │ ├── SegmentedFormTableViewCell.swift │ │ │ │ └── TransparentSegmentedFormTableViewCell.swift │ │ │ ├── Selector │ │ │ │ ├── GroupedSelectorFormTableViewCell.swift │ │ │ │ ├── SelectorFormCellModel.swift │ │ │ │ ├── SelectorFormTableViewCell.swift │ │ │ │ ├── TitledFormCellModel.swift │ │ │ │ └── TransparentSelectorFormTableViewCell.swift │ │ │ ├── Switcher │ │ │ │ ├── GroupedSwitcherFormTableViewCell.swift │ │ │ │ ├── SwitcherFormCellModel.swift │ │ │ │ └── SwitcherFormTableViewCell.swift │ │ │ ├── TextField │ │ │ │ ├── TextFieldFormCellModel.swift │ │ │ │ ├── TextFieldFormTableViewCell.swift │ │ │ │ └── TransparentTextFieldFormTableViewCell.swift │ │ │ └── TransparentFormTableViewController.swift │ │ ├── LocalizedStrings.swift │ │ ├── Styles.swift │ │ ├── TextInputTraits.swift │ │ └── Views │ │ │ ├── AnimatableShapeLayer.swift │ │ │ ├── DynamicTypeButton.swift │ │ │ ├── InsetsTextField.swift │ │ │ ├── ProgressView.swift │ │ │ └── SmoothingCornersView.swift │ ├── LockScreen │ │ ├── LockScreenInputViewController.swift │ │ ├── LockScreenViewController.swift │ │ └── Views │ │ │ ├── AudioFeedbackInputView.swift │ │ │ ├── PinCodeKeyboardButton.swift │ │ │ └── PinCodeKeyboardView.swift │ ├── Main │ │ ├── AddOneTimePasswordDelegate.swift │ │ ├── AppMainFlowController.swift │ │ ├── AppPasswordListViewController.swift │ │ ├── Cell │ │ │ └── OneTimePasswordCell.swift │ │ ├── EmptyPasswordsViewController.swift │ │ ├── MainFlowController.swift │ │ ├── Models │ │ │ ├── AppMainModel.swift │ │ │ ├── MainDataSource.swift │ │ │ ├── MainModel.swift │ │ │ ├── NSMutableAttributedString+HighlightQuery.swift │ │ │ ├── OneTimePassword+Diff.swift │ │ │ ├── OneTimePassword+FormattedTitle.swift │ │ │ ├── OneTimePassword.swift │ │ │ └── String+OneTimePassword.swift │ │ ├── PasswordListViewController.swift │ │ └── Views │ │ │ ├── NavigationTitleView.swift │ │ │ └── PasswordListHeaderView.swift │ ├── Pin │ │ ├── PinController.swift │ │ ├── PinLockDown+UserMessage.swift │ │ ├── PinLockdownViewController.swift │ │ └── Views │ │ │ ├── NumericPinField.swift │ │ │ └── PinInputView.swift │ └── Settings │ │ ├── About │ │ └── AboutViewController.swift │ │ ├── Base │ │ ├── FormHeaderViewController.swift │ │ └── ImageDescriptionView.swift │ │ ├── Manage │ │ ├── Cells │ │ │ └── PasswordManagerTableViewCell.swift │ │ ├── PasswordManagerFlowController.swift │ │ ├── PasswordManagerViewController.swift │ │ └── PasswordManaging.swift │ │ ├── Passcode │ │ ├── ChildControllers │ │ │ ├── BasePinViewController.swift │ │ │ ├── PinSettingsViewController.swift │ │ │ ├── RequestPinInputViewController.swift │ │ │ ├── RequestPinViewController.swift │ │ │ └── SetupPinViewController.swift │ │ ├── PasscodeSettingsFlowController.swift │ │ └── Views │ │ │ ├── PinLabelStyle.swift │ │ │ ├── PinLabelView.swift │ │ │ └── PinView.swift │ │ ├── SettingsFlowController.swift │ │ ├── SettingsViewController.swift │ │ ├── TextViewer │ │ └── TextViewController.swift │ │ └── iCloud │ │ ├── CloudManager.swift │ │ ├── CloudSettingsViewController.swift │ │ └── CloudSetup │ │ ├── CloudAccountProblemViewController.swift │ │ ├── CloudSetupFlowController.swift │ │ ├── CloudSetupInfoViewController.swift │ │ └── CloudStatusViewController.swift └── Utils │ ├── Array+Generating.swift │ ├── Bundle+AppBundle.swift │ ├── DataConvertible.swift │ └── DemoMode.swift ├── TwoFAuthFavIconExporter ├── .swiftformat ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Checkouts │ │ └── FavIcon │ │ ├── .gitignore │ │ ├── .swift-version │ │ ├── .swiftlint.yml │ │ ├── .travis.yml │ │ ├── Example │ │ ├── Example.xcodeproj │ │ │ └── project.pbxproj │ │ └── Example │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── FavIcon.podspec │ │ ├── FavIcon.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── FavIcon-iOS.xcscheme │ │ │ ├── FavIcon-iOSTests.xcscheme │ │ │ ├── FavIcon-macOS.xcscheme │ │ │ ├── FavIcon-macOSTests.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── FavIcon.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── Sources │ │ ├── FavIcon.xcconfig │ │ ├── FavIcon │ │ │ ├── ContentTypes.swift │ │ │ ├── Detection.swift │ │ │ ├── Download.swift │ │ │ ├── FavIcon.h │ │ │ ├── FavIcon.swift │ │ │ ├── HTML.swift │ │ │ ├── Icon.swift │ │ │ ├── IconType.swift │ │ │ └── XML.swift │ │ ├── Info.plist │ │ └── Modules │ │ │ ├── libxml2-favicon.h │ │ │ └── module.modulemap │ │ └── Tests │ │ ├── FavIconTests │ │ ├── BrowserConfig.xml │ │ ├── DetectionTests.swift │ │ ├── DownloadTests.swift │ │ ├── FavIconTests.swift │ │ ├── HTML.html │ │ ├── HTMLTests.swift │ │ └── Manifest.json │ │ └── Info.plist ├── TwoFAuthFavIconExporter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ └── xcschemes │ │ └── TwoFAuthFavIconExporter.xcscheme └── TwoFAuthFavIconExporter │ ├── Cleanup.swift │ ├── DownloadIcons.swift │ ├── Fetch.swift │ ├── HardcodedWebsites.swift │ ├── NSImage+Utils.swift │ ├── PostProcessing.swift │ ├── SaveData.swift │ ├── Types.swift │ └── main.swift ├── TwoFAuthScreenshots ├── Info.plist ├── TwoFAuthScreenshots.swift └── qr_scanner_placeholder.png ├── TwoFAuthTests ├── Info.plist ├── PinFailedAttemptTests.swift ├── PinKeychainTest.swift ├── PinManagerImplTests.swift ├── PinTests.swift └── StylesTest.swift └── fastlane ├── Appfile ├── Fastfile ├── Gymfile ├── README.md ├── Snapfile └── SnapshotHelper.swift /.assets/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/.assets/screenshots.png -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /InternalPackages/CloudSync/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /InternalPackages/CloudSync/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InternalPackages/CloudSync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/LICENSE -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Package.resolved -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Package.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/README.md -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Configuration.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Constants.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Fetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Fetch.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Modify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Modify.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Notifications.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Setup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Setup.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync+State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync+State.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Termination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync+Termination.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/CloudSync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/CloudSync.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/Extensions/CKContainer+AccountStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/Extensions/CKContainer+AccountStatus.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/Extensions/CKRecord+SystemFields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/Extensions/CKRecord+SystemFields.swift -------------------------------------------------------------------------------- /InternalPackages/CloudSync/Sources/CloudSync/Extensions/Error+CloudSync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CloudSync/Sources/CloudSync/Extensions/Error+CloudSync.swift -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CryptoUtils/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CryptoUtils/Package.swift -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CryptoUtils/README.md -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/Sources/CryptoUtils/AES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CryptoUtils/Sources/CryptoUtils/AES.swift -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/Sources/CryptoUtils/Hash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CryptoUtils/Sources/CryptoUtils/Hash.swift -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/Tests/CryptoUtilsTests/CryptoUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CryptoUtils/Tests/CryptoUtilsTests/CryptoUtilsTests.swift -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/Tests/CryptoUtilsTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CryptoUtils/Tests/CryptoUtilsTests/XCTestManifests.swift -------------------------------------------------------------------------------- /InternalPackages/CryptoUtils/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/InternalPackages/CryptoUtils/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /OneTimePasswordProvider/ActionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/ActionViewController.swift -------------------------------------------------------------------------------- /OneTimePasswordProvider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Info.plist -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_120px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_152px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_167px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_180px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_180px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_20px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_29px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_29px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_40px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_58px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_58px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_60px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_60px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_76px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_76px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_80px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_87px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/AppExtensionIcon.appiconset/icon_87px.png -------------------------------------------------------------------------------- /OneTimePasswordProvider/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /OneTimePasswordProvider/ProviderMainFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/ProviderMainFlowController.swift -------------------------------------------------------------------------------- /OneTimePasswordProvider/ProviderRootFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/ProviderRootFlowController.swift -------------------------------------------------------------------------------- /OneTimePasswordProvider/Resources/OneTimePasswordProvider.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Resources/OneTimePasswordProvider.entitlements -------------------------------------------------------------------------------- /OneTimePasswordProvider/Resources/Preprocessing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/OneTimePasswordProvider/Resources/Preprocessing.js -------------------------------------------------------------------------------- /PrivacyPolicy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/PrivacyPolicy.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/README.md -------------------------------------------------------------------------------- /TwoFAuth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TwoFAuth.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /TwoFAuth.xcodeproj/xcshareddata/xcschemes/TwoFAuth.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth.xcodeproj/xcshareddata/xcschemes/TwoFAuth.xcscheme -------------------------------------------------------------------------------- /TwoFAuth.xcodeproj/xcshareddata/xcschemes/TwoFAuthScreenshots.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth.xcodeproj/xcshareddata/xcschemes/TwoFAuthScreenshots.xcscheme -------------------------------------------------------------------------------- /TwoFAuth/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/AppDelegate.swift -------------------------------------------------------------------------------- /TwoFAuth/AppRootFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/AppRootFlowController.swift -------------------------------------------------------------------------------- /TwoFAuth/Resources/2FAuth.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/2FAuth.entitlements -------------------------------------------------------------------------------- /TwoFAuth/Resources/Acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Acknowledgements.txt -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_120px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_152px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_167px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_180px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_180px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_20px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_29px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_29px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_40px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_58px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_58px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_60px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_60px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_76px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_76px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_80px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_87px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/AppIcon.appiconset/icon_87px.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TwoFAuth/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/Info.plist -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/BackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/BackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/DividerColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/DividerColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/LabelColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/LabelColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/LightTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/LightTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/OTPCodeColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/OTPCodeColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/RedColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/RedColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/SecondaryLabelColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/SecondaryLabelColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/SecondaryTintColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/SecondaryTintColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/SegmentedControlBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/SegmentedControlBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/SelectedSegmentTintColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/SelectedSegmentTintColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/ShadowColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/ShadowColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/TertiaryBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/TertiaryBackground.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Colors/TintColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Colors/TintColor.colorset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud-no-account.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud-no-account.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud-no-account.imageset/icon-cloud-no-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud-no-account.imageset/icon-cloud-no-account.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud-no-account.imageset/icon-cloud-no-account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud-no-account.imageset/icon-cloud-no-account@2x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud-no-account.imageset/icon-cloud-no-account@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud-no-account.imageset/icon-cloud-no-account@3x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud.imageset/icon-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud.imageset/icon-cloud.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud.imageset/icon-cloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud.imageset/icon-cloud@2x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud.imageset/icon-cloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-cloud.imageset/icon-cloud@3x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-face-id.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-face-id.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-face-id.imageset/icon-face-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-face-id.imageset/icon-face-id.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-face-id.imageset/icon-face-id@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-face-id.imageset/icon-face-id@2x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-face-id.imageset/icon-face-id@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-face-id.imageset/icon-face-id@3x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock-shield.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock-shield.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock-shield.imageset/icon-lock-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock-shield.imageset/icon-lock-shield.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock-shield.imageset/icon-lock-shield@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock-shield.imageset/icon-lock-shield@2x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock-shield.imageset/icon-lock-shield@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock-shield.imageset/icon-lock-shield@3x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock.imageset/icon-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock.imageset/icon-lock.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock.imageset/icon-lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock.imageset/icon-lock@2x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock.imageset/icon-lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-lock.imageset/icon-lock@3x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-refresh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-refresh.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-refresh.imageset/icon-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-refresh.imageset/icon-refresh.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-refresh.imageset/icon-refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-refresh.imageset/icon-refresh@2x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-refresh.imageset/icon-refresh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-refresh.imageset/icon-refresh@3x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-settings.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-settings.imageset/icons8-settings-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-settings.imageset/icons8-settings-24.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-settings.imageset/icons8-settings-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-settings.imageset/icons8-settings-48.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-settings.imageset/icons8-settings-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-settings.imageset/icons8-settings-72.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-touch-id.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-touch-id.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-touch-id.imageset/icons8-touch-id-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-touch-id.imageset/icons8-touch-id-30.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-touch-id.imageset/icons8-touch-id-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-touch-id.imageset/icons8-touch-id-60.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-touch-id.imageset/icons8-touch-id-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/icon-touch-id.imageset/icons8-touch-id-90.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/issuer-placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/issuer-placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/issuer-placeholder.imageset/issuer-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/issuer-placeholder.imageset/issuer-placeholder.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/issuer-placeholder.imageset/issuer-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/issuer-placeholder.imageset/issuer-placeholder@2x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/SharedAssets.xcassets/Images/issuer-placeholder.imageset/issuer-placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/SharedAssets.xcassets/Images/issuer-placeholder.imageset/issuer-placeholder@3x.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/TFASites.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/TFASites.sqlite -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/002fe6e002e08d9d2f86fa076655e25bd98266760b1249c3e91d52f6c47226f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/002fe6e002e08d9d2f86fa076655e25bd98266760b1249c3e91d52f6c47226f9.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0068362152be66a412a779cfcfdaea61b2bbdbbf1a4ed74df4b11f037182063b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0068362152be66a412a779cfcfdaea61b2bbdbbf1a4ed74df4b11f037182063b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0076239daea4a54168d8e77b0d57cdd1373eb16af34550d3c1bfa30bc70555dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0076239daea4a54168d8e77b0d57cdd1373eb16af34550d3c1bfa30bc70555dc.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/00f82ffa24a18dbd0324dd926fe374ff1be1814f9fa0078aa3ff255f0dbd437e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/00f82ffa24a18dbd0324dd926fe374ff1be1814f9fa0078aa3ff255f0dbd437e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0143f5c35df065d0bb04f1c2f07e6bb4b34412c73178c86cfa0c197a5a53a1b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0143f5c35df065d0bb04f1c2f07e6bb4b34412c73178c86cfa0c197a5a53a1b9.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/027b9d033853d78891badf8301290214a45aa8b0658b6eb41c3976cec66d5aef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/027b9d033853d78891badf8301290214a45aa8b0658b6eb41c3976cec66d5aef.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0355abce7090ec4eecc33360c3ae968916dca5bca5632de1ad9e9d22664f5e06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0355abce7090ec4eecc33360c3ae968916dca5bca5632de1ad9e9d22664f5e06.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/03700e84eeadca65d71ac1b14a054a09e04835b7a0d8c1fdbce1d02d08f073c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/03700e84eeadca65d71ac1b14a054a09e04835b7a0d8c1fdbce1d02d08f073c6.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/041c7363a74e7a5f806792e07407caf92a53b48e78e5a63e52120be5d54c1bdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/041c7363a74e7a5f806792e07407caf92a53b48e78e5a63e52120be5d54c1bdc.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/049c9061c9da3ce6c0ad264126cb8a78e20b61e539ba6298bef229d47e9ad11c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/049c9061c9da3ce6c0ad264126cb8a78e20b61e539ba6298bef229d47e9ad11c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/04e275b25050c8f7111fa85d6f5ce4d6f2bc89c3bb5106ead19d334f308e8f8e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/04e275b25050c8f7111fa85d6f5ce4d6f2bc89c3bb5106ead19d334f308e8f8e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/05046f26c83e8c88b3ddab2eab63d0d16224ac1e564535fc75cdceee47a0938d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/05046f26c83e8c88b3ddab2eab63d0d16224ac1e564535fc75cdceee47a0938d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0572a5323de3b4e7559f688e90984e8a3c644742f56d0b768dd4ef5b4a9f77d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0572a5323de3b4e7559f688e90984e8a3c644742f56d0b768dd4ef5b4a9f77d7.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/05e830c536e66c127f39d5fd473408a551dac279ee8ea0c8553bed30f3dd1b4f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/05e830c536e66c127f39d5fd473408a551dac279ee8ea0c8553bed30f3dd1b4f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/076221ee686cd7f4bc673aaaaa045c59351ae3c13c15e4dba1a9583d993c01d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/076221ee686cd7f4bc673aaaaa045c59351ae3c13c15e4dba1a9583d993c01d0.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/07a0337e75f968afbd534f6a40edcf44d450d211f24bbe5e63c073b41b1cea27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/07a0337e75f968afbd534f6a40edcf44d450d211f24bbe5e63c073b41b1cea27.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/07cb03db328290073c4225d732db18d2ddc0b971dc644dbeabd90556ff51f8fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/07cb03db328290073c4225d732db18d2ddc0b971dc644dbeabd90556ff51f8fa.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/080ef4133a2332d3aae539d3ff1baca3c9b0491816fb152a0e91b9fa886e5df8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/080ef4133a2332d3aae539d3ff1baca3c9b0491816fb152a0e91b9fa886e5df8.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/082bf5647b9c67b4021f5acdb80f6e7485d1f4bd9f6849d165a42943340ca1ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/082bf5647b9c67b4021f5acdb80f6e7485d1f4bd9f6849d165a42943340ca1ed.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0867753f348437ae1a6a99418546826294034212869b564e6c0a85021a640e97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0867753f348437ae1a6a99418546826294034212869b564e6c0a85021a640e97.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/08a819a4b4c855ad19c2e6b3fba1240b3f4d78ae3a665f340a1ace5fc4f1e58a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/08a819a4b4c855ad19c2e6b3fba1240b3f4d78ae3a665f340a1ace5fc4f1e58a.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/08f30333481002a324ded1bd5b4ef72b59a21efafefedbd1d8964d0d475351a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/08f30333481002a324ded1bd5b4ef72b59a21efafefedbd1d8964d0d475351a4.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/08f9dfe579563c4fa4d25d4141fcf8fd10b76a499e1909cacd1b907e1d97ced0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/08f9dfe579563c4fa4d25d4141fcf8fd10b76a499e1909cacd1b907e1d97ced0.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/09f0bcc910663e4fceab37f816712a3b2285e3ddd3b19711397aac87b213c3f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/09f0bcc910663e4fceab37f816712a3b2285e3ddd3b19711397aac87b213c3f8.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0a3fc46c52d5d4647ffa50f26fa959614461ec7a6cee79e8124c6aa0d3c12125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0a3fc46c52d5d4647ffa50f26fa959614461ec7a6cee79e8124c6aa0d3c12125.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0af26ef850f05c30ff784e2a786689103e5050036a48451aa4a572e4810e77b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0af26ef850f05c30ff784e2a786689103e5050036a48451aa4a572e4810e77b1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0b06c62559dff916463f17d220f0fd8a845504aaa74596e37be4c7e94898c2c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0b06c62559dff916463f17d220f0fd8a845504aaa74596e37be4c7e94898c2c8.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0cf1bc7c54320b5010eac9636f64d4363876d2307739cc8d0fa8e7bbc69703ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0cf1bc7c54320b5010eac9636f64d4363876d2307739cc8d0fa8e7bbc69703ae.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d0fb10e31c5bfc2a21283dd4131b994e9b74fce18ea23aaf93cb282eedd6afb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d0fb10e31c5bfc2a21283dd4131b994e9b74fce18ea23aaf93cb282eedd6afb.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d3e379517270838f61181e4510abbfca0fd592c84cfefaad7d883b46df0432c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d3e379517270838f61181e4510abbfca0fd592c84cfefaad7d883b46df0432c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d49f67e268a77de9809df75acccf78a121457c93910af5dd122cfcd3b76e1ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d49f67e268a77de9809df75acccf78a121457c93910af5dd122cfcd3b76e1ab.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d717e18f337c458a62739a0defa6ac6cbcf10ecfa9f2c1261c0f21a6776ab00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d717e18f337c458a62739a0defa6ac6cbcf10ecfa9f2c1261c0f21a6776ab00.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d71ca58dd69f955a1f2df55a08ce5150a38e4e8a689a1e40823dafa91ebacb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0d71ca58dd69f955a1f2df55a08ce5150a38e4e8a689a1e40823dafa91ebacb8.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0e8783540b4b14890475939d960e30284d4e6ddcea5e90b189727df367078819.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0e8783540b4b14890475939d960e30284d4e6ddcea5e90b189727df367078819.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0f00dd016934a37924464bb5e917e11df323daea404ba3c524996ddb5f3805b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0f00dd016934a37924464bb5e917e11df323daea404ba3c524996ddb5f3805b6.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0f11aa831fd2375abdcc7804a73b7ade782b32da415b7c0643313c44bd907bb6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0f11aa831fd2375abdcc7804a73b7ade782b32da415b7c0643313c44bd907bb6.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/0f315d7cbc846184e7acf0c6d0760ec534585e80238773edd28029e9c0fcd097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/0f315d7cbc846184e7acf0c6d0760ec534585e80238773edd28029e9c0fcd097.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/102d076d20c54122c6399a1fee14534625de207962bab3fdcd625876167bd2f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/102d076d20c54122c6399a1fee14534625de207962bab3fdcd625876167bd2f3.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/103cb9f16981c943357e380fff201cd5583d3a6190b1cf4ad8764e8f8f6adea3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/103cb9f16981c943357e380fff201cd5583d3a6190b1cf4ad8764e8f8f6adea3.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/104136923b71c6b762fdc369dc174608902a3ee28e5ceddc414495b5dac4b99c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/104136923b71c6b762fdc369dc174608902a3ee28e5ceddc414495b5dac4b99c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/105802657f758fabb027a6bf66ef316455bb223b5e412069862db1dba341d0ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/105802657f758fabb027a6bf66ef316455bb223b5e412069862db1dba341d0ee.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/106408ce08110a8e03aaae7c9b17788d49e8e39874f1d0a0cee8d2171b417ba9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/106408ce08110a8e03aaae7c9b17788d49e8e39874f1d0a0cee8d2171b417ba9.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/106e40609400fceeec15e806ee12f03eae200d7b927700f9cfb16d51b567d16b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/106e40609400fceeec15e806ee12f03eae200d7b927700f9cfb16d51b567d16b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/107f9f9dfc1cb921852b22325bacbdc652bc2916b09c69ea4d8a850a4be164e2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/107f9f9dfc1cb921852b22325bacbdc652bc2916b09c69ea4d8a850a4be164e2.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/109148658b5184b18ce15634b2ab70f98c7aae65f40655bc37b1d043b18d7556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/109148658b5184b18ce15634b2ab70f98c7aae65f40655bc37b1d043b18d7556.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/116683a0c8773df03f00b01826120154ef1525233e233b56fab24b707a42802c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/116683a0c8773df03f00b01826120154ef1525233e233b56fab24b707a42802c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/11e9de90eccd7cd1fa3aa43f4bb2f6bc735e926243af9b75503c886f5ca5d48b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/11e9de90eccd7cd1fa3aa43f4bb2f6bc735e926243af9b75503c886f5ca5d48b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/12029127792e4f78121a2171a9a9a7c9481c921b98cb9204b4941ca613b42bbf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/12029127792e4f78121a2171a9a9a7c9481c921b98cb9204b4941ca613b42bbf.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/12743b921297b77f1135e41fdedd4a846afe82e1f36932a9912f3b0d8dfb7d0e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/12743b921297b77f1135e41fdedd4a846afe82e1f36932a9912f3b0d8dfb7d0e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/12fc2f13c7b709157eedfb23172f67a1fb19ceaf39551812785ebbacabe70698.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/12fc2f13c7b709157eedfb23172f67a1fb19ceaf39551812785ebbacabe70698.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1357ad5a7048e8257a2467ecab6ad2e54c977096a6c271517f72168e693291f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1357ad5a7048e8257a2467ecab6ad2e54c977096a6c271517f72168e693291f4.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1395ec37e46aac778d63860448e797212900f9ddeaceb3123c01887c539cc3c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1395ec37e46aac778d63860448e797212900f9ddeaceb3123c01887c539cc3c3.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/145d73a51b241ab03df729617e48ac19fbb02d0568282c8a272eb560ad6e1271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/145d73a51b241ab03df729617e48ac19fbb02d0568282c8a272eb560ad6e1271.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/14830d0f42257f54aa3dbc91213a9a57837642a70d0987e8bb8f0677ecb5cc4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/14830d0f42257f54aa3dbc91213a9a57837642a70d0987e8bb8f0677ecb5cc4b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1507a36ef992eb7bd0a53efcf058c5f4ff2425dc135d9764ff1e438b0f3993b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1507a36ef992eb7bd0a53efcf058c5f4ff2425dc135d9764ff1e438b0f3993b1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1512a9498c6c4c389541cac518a9f63368e11b18dd69646cef97bddaf899a82c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1512a9498c6c4c389541cac518a9f63368e11b18dd69646cef97bddaf899a82c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/151b105d5e2989de22d9b83335f386fa6afe8e4a20e8d6db420f8bb2f7dd885c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/151b105d5e2989de22d9b83335f386fa6afe8e4a20e8d6db420f8bb2f7dd885c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/153406d2a71d9f8d876f103fb3c41eff41a4bb3e52076482c4db8b66701a736b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/153406d2a71d9f8d876f103fb3c41eff41a4bb3e52076482c4db8b66701a736b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/160009ce604a8113ecab4c652be8b145389a1653a2e068cf8a3f013d06931b25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/160009ce604a8113ecab4c652be8b145389a1653a2e068cf8a3f013d06931b25.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/16b6999f9eeed09c2aca06cf89fbb634d58ca014b57ed93d5f6bb2242b7023cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/16b6999f9eeed09c2aca06cf89fbb634d58ca014b57ed93d5f6bb2242b7023cd.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/16da9849a9bd0708c86da14ed30dd3cf9847f53ec567c9fac1e05c88ce5fbd50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/16da9849a9bd0708c86da14ed30dd3cf9847f53ec567c9fac1e05c88ce5fbd50.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1753544250b12746fe696e034b64f23f2bba3542c6aea2d084c3dc88a3a8e24b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1753544250b12746fe696e034b64f23f2bba3542c6aea2d084c3dc88a3a8e24b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/17b08e36caa23c47380703735fd20e135e83891bbb45ebabe32a805afca24b0f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/17b08e36caa23c47380703735fd20e135e83891bbb45ebabe32a805afca24b0f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/17bf2e60b355dacb4cd651be4968a33decc35ecd24b19ee8541014686af9fa6e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/17bf2e60b355dacb4cd651be4968a33decc35ecd24b19ee8541014686af9fa6e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/18a3ab83de5a0701791faf15bd172bc5d21defbdaa6c1ace760330c8bfae79c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/18a3ab83de5a0701791faf15bd172bc5d21defbdaa6c1ace760330c8bfae79c8.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/18f5661975decd13d67805c16ffd82a9ea01ea26000fac380cca233d6cc5ae97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/18f5661975decd13d67805c16ffd82a9ea01ea26000fac380cca233d6cc5ae97.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/192d9bad0ce417183110e10775b5c004e3c230ec542209ebb825ff55d2c37102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/192d9bad0ce417183110e10775b5c004e3c230ec542209ebb825ff55d2c37102.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/19c6f76b360c68027218941c7dd7c1d0bd5ba051638cbbae4aa6db32e6e9b83f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/19c6f76b360c68027218941c7dd7c1d0bd5ba051638cbbae4aa6db32e6e9b83f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1a19a9ab243d9ae690a8308e71b8efd89aee3f9bf55c61bea0ce72ba69123e1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1a19a9ab243d9ae690a8308e71b8efd89aee3f9bf55c61bea0ce72ba69123e1f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1aec1f6636b92bddd4ea6ae126fbf01a3d2bf3901cb565892a929665b4837a4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1aec1f6636b92bddd4ea6ae126fbf01a3d2bf3901cb565892a929665b4837a4c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1b1074dae2739cbc87cf416584dc8eecac601bd87a52cde984391979c29c6c94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1b1074dae2739cbc87cf416584dc8eecac601bd87a52cde984391979c29c6c94.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1b64c65487588540a62dedccfc5dab15a2ce9b66e3ea7306e1ff1958c9afecda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1b64c65487588540a62dedccfc5dab15a2ce9b66e3ea7306e1ff1958c9afecda.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1b810c2a8b022631bfe66f2f2de9a7d073c712b38d7037fc622c04b326353792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1b810c2a8b022631bfe66f2f2de9a7d073c712b38d7037fc622c04b326353792.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1bbd41a7b06070f33cec4d546fd706de67bbe2ccf5e603e824446a6e6dfd9d02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1bbd41a7b06070f33cec4d546fd706de67bbe2ccf5e603e824446a6e6dfd9d02.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1c15cf22d38f8ef1584432e7ea3507207f88cf2820050fe57386475f2209e2a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1c15cf22d38f8ef1584432e7ea3507207f88cf2820050fe57386475f2209e2a1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1db0347a2162a58ba810adcd6c1533aeeeba8c6c37fd6cd48f377f73ae5e285d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1db0347a2162a58ba810adcd6c1533aeeeba8c6c37fd6cd48f377f73ae5e285d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1e20fdab6dbdc3fcc2b431079079a2d21317ec8f5a0a72ca0ac73c49162cc584.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1e20fdab6dbdc3fcc2b431079079a2d21317ec8f5a0a72ca0ac73c49162cc584.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/1f1c5c92763970d6bbe7e4f6a46b5a5aa12e353f16279a146b2dd508b05c0eb7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/1f1c5c92763970d6bbe7e4f6a46b5a5aa12e353f16279a146b2dd508b05c0eb7.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/209b3949abf26e9ba67cb3ca17ccfbc41a2d198a3f5fb0efd8c64220c45bb274.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/209b3949abf26e9ba67cb3ca17ccfbc41a2d198a3f5fb0efd8c64220c45bb274.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/20a17c1d76cd56a79b00cdbdfe118e6e0026d9773a97afc5420b5ef19feccaa7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/20a17c1d76cd56a79b00cdbdfe118e6e0026d9773a97afc5420b5ef19feccaa7.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/20f7f4ff492453ee7a09033217b85566904a02eff4a4bdef4974e0d22b81dda1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/20f7f4ff492453ee7a09033217b85566904a02eff4a4bdef4974e0d22b81dda1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2218f783120680fbfb084a723c047719d730e83c3c2e34a041c446f38722a75e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2218f783120680fbfb084a723c047719d730e83c3c2e34a041c446f38722a75e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/237c23bb8fd004f310d227c9fe4afb3f0048850c6f941f0fbe18e5147b663445.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/237c23bb8fd004f310d227c9fe4afb3f0048850c6f941f0fbe18e5147b663445.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/23c7898f8bd428f31f74e925ff06ce780f4a1ac8050789454ce6dfa02b85149d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/23c7898f8bd428f31f74e925ff06ce780f4a1ac8050789454ce6dfa02b85149d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/23f98da2fb26e5288e1fa6fea6ec6ce0eaf5b33bbaa97c1c4223002e5a78b157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/23f98da2fb26e5288e1fa6fea6ec6ce0eaf5b33bbaa97c1c4223002e5a78b157.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2454e3a4eaab0fbf5f4b3dd33d89bbff6ae6b8e1208422833dc9b061d8ce218b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2454e3a4eaab0fbf5f4b3dd33d89bbff6ae6b8e1208422833dc9b061d8ce218b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2468ab06967f1a06f6f565e60e36f3797a55d550fe7839f24024bfb53f74fdc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2468ab06967f1a06f6f565e60e36f3797a55d550fe7839f24024bfb53f74fdc2.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/249364e7f24103ae5ce99fba10e3b95d94c7b40fa1f125998d2c44909108d0dd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/249364e7f24103ae5ce99fba10e3b95d94c7b40fa1f125998d2c44909108d0dd.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/252206fd518135851ba102d75753bd31d373376979f2ec7ce3206f9f20392875.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/252206fd518135851ba102d75753bd31d373376979f2ec7ce3206f9f20392875.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/253ddaf69e798a8ec931d2b5b7b8c02dbb5c2aacb8bbb798159cfcbf1b8d8eac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/253ddaf69e798a8ec931d2b5b7b8c02dbb5c2aacb8bbb798159cfcbf1b8d8eac.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2594bebe4b0e8cbc47d72f4bb5d57c046d74d3d6e931f7125d4f35b117b0dd45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2594bebe4b0e8cbc47d72f4bb5d57c046d74d3d6e931f7125d4f35b117b0dd45.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/25c25d74b2ec3b1d6ae6a34cef1e7cdcac0a70500f5d43a8905cbd5d9c9a300a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/25c25d74b2ec3b1d6ae6a34cef1e7cdcac0a70500f5d43a8905cbd5d9c9a300a.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2628a1730e5d2396e9525d2aedcf258e47e442c7168123331516aa679471a66b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2628a1730e5d2396e9525d2aedcf258e47e442c7168123331516aa679471a66b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/266155b30f641e70ee630fb010cd909aa2d49dd900c854d74fdb438345967f4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/266155b30f641e70ee630fb010cd909aa2d49dd900c854d74fdb438345967f4c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/26bc0b1d0d9c93dce56b475a79a4e26fb4d668cb3c8194a0d46a4d9ac0fd3772.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/26bc0b1d0d9c93dce56b475a79a4e26fb4d668cb3c8194a0d46a4d9ac0fd3772.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/275c0e852859c11ed45faf1b9fed9148dc704857187a0fca2b3174fa547c8c20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/275c0e852859c11ed45faf1b9fed9148dc704857187a0fca2b3174fa547c8c20.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/27d5316a7bd893041cc6e3e20ce3b46e8d557e956746f39be0f349b980e3aadb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/27d5316a7bd893041cc6e3e20ce3b46e8d557e956746f39be0f349b980e3aadb.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/27e6061808a2e39a95c772e4646db90df7e31f7a2e864f5e212f9ee176def70f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/27e6061808a2e39a95c772e4646db90df7e31f7a2e864f5e212f9ee176def70f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2821de593a6c9c6e5dc8538bfbb9615ed2a221c13a060aa2c41caef6d5fb1456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2821de593a6c9c6e5dc8538bfbb9615ed2a221c13a060aa2c41caef6d5fb1456.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2823d6a74c0f7d37f6951330467c19e205e6872e63723dad93339f8d06d9dffa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2823d6a74c0f7d37f6951330467c19e205e6872e63723dad93339f8d06d9dffa.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/287f4dc9eb9b92e4de17928f4244d6f3751f51a6bb46e080e52bf77b91b6bd16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/287f4dc9eb9b92e4de17928f4244d6f3751f51a6bb46e080e52bf77b91b6bd16.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/28c661ea177818ed8c52f4758f2a5b8a32e4637d222197b468674891f2ee9002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/28c661ea177818ed8c52f4758f2a5b8a32e4637d222197b468674891f2ee9002.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/29928d7e51be098bcca8103a03f69509a863634262c0a5e9518508b424a7f055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/29928d7e51be098bcca8103a03f69509a863634262c0a5e9518508b424a7f055.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2995080fd7fd8b4285c9330099927ec37abadca79112cd2de217528cf1f498d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2995080fd7fd8b4285c9330099927ec37abadca79112cd2de217528cf1f498d4.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2a0641853d13a391672af1846d15725786d38a02cc249f08c8f0484a665a20b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2a0641853d13a391672af1846d15725786d38a02cc249f08c8f0484a665a20b1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2adabe7884f0edf6a0af45e544af005f6575aca6e982b51efbf6deef17261447.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2adabe7884f0edf6a0af45e544af005f6575aca6e982b51efbf6deef17261447.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2af448ca442fd47f03b4ab16d38066895294bb46486832d001853a74816a8905.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2af448ca442fd47f03b4ab16d38066895294bb46486832d001853a74816a8905.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2b18bc8f5bd0b208586d7185f38281b5ab6ed401801eeb604b7ae18bc0135e9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2b18bc8f5bd0b208586d7185f38281b5ab6ed401801eeb604b7ae18bc0135e9e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2b252db1ad0ac8f9d1ee256e5fed85cfcc752f1997c9ebada2b0619aa61135ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2b252db1ad0ac8f9d1ee256e5fed85cfcc752f1997c9ebada2b0619aa61135ee.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2bf6b2513231ca50d5a6b3c778dfc3a5007b31406194246558cff029dacbf339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2bf6b2513231ca50d5a6b3c778dfc3a5007b31406194246558cff029dacbf339.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2c564e42a0c849f81ea6fa33dd601b1a6187d2d96fbd72e506a98cef0361c6ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2c564e42a0c849f81ea6fa33dd601b1a6187d2d96fbd72e506a98cef0361c6ca.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2c56eaa37ac4e002803c28bb73ebc388c1801c636a5459206fa05f4d562f83a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2c56eaa37ac4e002803c28bb73ebc388c1801c636a5459206fa05f4d562f83a5.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2cb9a3a19d62faefa4c62ae9dc4c4b1ec2781ffe6a16eede3418475b7fe718b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2cb9a3a19d62faefa4c62ae9dc4c4b1ec2781ffe6a16eede3418475b7fe718b2.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2e5daff17e06209c0aa7dc2b7d5f5cc4f644bf3e33990205f8a4f3959ef9d334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2e5daff17e06209c0aa7dc2b7d5f5cc4f644bf3e33990205f8a4f3959ef9d334.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2ee368c4c6d3f17b2a7d525e4141134b50d3649cf2f9fe71119127a9cb6c1778.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2ee368c4c6d3f17b2a7d525e4141134b50d3649cf2f9fe71119127a9cb6c1778.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2f18e1ef0b81199344adba41fb9889e379a366ef5438fa237a63542773373016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2f18e1ef0b81199344adba41fb9889e379a366ef5438fa237a63542773373016.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2f4a2e335f089497445b44c8adb3dae64ebe3fb803c0c25ea3e84146f0805610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2f4a2e335f089497445b44c8adb3dae64ebe3fb803c0c25ea3e84146f0805610.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/2f55b68433264b3eeabbf3e117993323e1fd36b6e29f928974616b2ca4cd18f0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/2f55b68433264b3eeabbf3e117993323e1fd36b6e29f928974616b2ca4cd18f0.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/300a409179c02fa1b0f631190208b8f4f289f8f0b883fa790d268e45724e415d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/300a409179c02fa1b0f631190208b8f4f289f8f0b883fa790d268e45724e415d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/302fd5b4492a07b9febb30e73269eca501205ccfe0c20bf7b472fa2d31e21e63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/302fd5b4492a07b9febb30e73269eca501205ccfe0c20bf7b472fa2d31e21e63.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/30725fc3a01231ea363fa103e62e15886c0ed9c438780a8b6ee8d1e3996ddce9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/30725fc3a01231ea363fa103e62e15886c0ed9c438780a8b6ee8d1e3996ddce9.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/30dc70700f1a8bfd46583b5b0a2858967a68dc1740f731083b6fe932da813019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/30dc70700f1a8bfd46583b5b0a2858967a68dc1740f731083b6fe932da813019.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/30ea742edbdb63b8216fe363ede586f16c76200f3cbe6d83056a816a377e9ad3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/30ea742edbdb63b8216fe363ede586f16c76200f3cbe6d83056a816a377e9ad3.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/30f6cf231f2ca38240fbb3e7ba43675eb4dd2a2469d0ff61fca551476a1bb2df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/30f6cf231f2ca38240fbb3e7ba43675eb4dd2a2469d0ff61fca551476a1bb2df.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/31b4f9689cdebbfb08aa7db841323670c367a3b28aab242257e370cc62782b3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/31b4f9689cdebbfb08aa7db841323670c367a3b28aab242257e370cc62782b3d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/31d11f63e3c14cb861c52a1e531b81bf681b9aa79fbca7c61557c8319b51ec5f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/31d11f63e3c14cb861c52a1e531b81bf681b9aa79fbca7c61557c8319b51ec5f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/31d898f3246eefc555d88939ad4239d0292dae8e5994f4945739592fba446ac1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/31d898f3246eefc555d88939ad4239d0292dae8e5994f4945739592fba446ac1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/32912b0daddffec986874c8e12d7970af78141a6f8301de3cd1cfb9fb4c61a90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/32912b0daddffec986874c8e12d7970af78141a6f8301de3cd1cfb9fb4c61a90.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/32a3b4d983ec607c83543bf2827da006179599c23eee4277e41feb9d9e5efd75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/32a3b4d983ec607c83543bf2827da006179599c23eee4277e41feb9d9e5efd75.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/331300fc0e99a8745ae2bf6d2399a0a6b8f2de454042c18e5ed0ddaaf5d7d551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/331300fc0e99a8745ae2bf6d2399a0a6b8f2de454042c18e5ed0ddaaf5d7d551.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/33e3f94ec5c8c902e7e0660f1ee9dabaabe88066eef794422a34bff042b24c28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/33e3f94ec5c8c902e7e0660f1ee9dabaabe88066eef794422a34bff042b24c28.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/340c0b3d18504d0d101571f9af391b84ca255336b08988aeba7e03c30ef337ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/340c0b3d18504d0d101571f9af391b84ca255336b08988aeba7e03c30ef337ab.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/345718df5293420053ee268cd599fced364c726d057ed8bb5cf6852b9f40f621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/345718df5293420053ee268cd599fced364c726d057ed8bb5cf6852b9f40f621.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/34782d67dc2b771ee040e1af67c64042a0108f6d48d387d12a53b29b5a316dfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/34782d67dc2b771ee040e1af67c64042a0108f6d48d387d12a53b29b5a316dfc.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/351b0fa09d7af16885e1d9f61e6bdde52670fa797176325397739ac21d827417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/351b0fa09d7af16885e1d9f61e6bdde52670fa797176325397739ac21d827417.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/35396f7936383af9fd2e6658e73983075a8bf8522ed186b28d1dbd3e007c30a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/35396f7936383af9fd2e6658e73983075a8bf8522ed186b28d1dbd3e007c30a1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3557d729eb5ff7aa1c6d28835e405a1b1dc40f4bff71d00fd461c0c0b2b29080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3557d729eb5ff7aa1c6d28835e405a1b1dc40f4bff71d00fd461c0c0b2b29080.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/35b1dbac81cb10637ee5a717af1f451c56bff10b0a2d011b40fc0b0b928b5382.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/35b1dbac81cb10637ee5a717af1f451c56bff10b0a2d011b40fc0b0b928b5382.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/35e3def18b9ba5d5e4cccb68575d527f7b1b129b108e49c2937e4463e24672b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/35e3def18b9ba5d5e4cccb68575d527f7b1b129b108e49c2937e4463e24672b7.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/366a6c90f2be3442ba13692fa97f626794d7a01ef01e824017f714e5c140f765.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/366a6c90f2be3442ba13692fa97f626794d7a01ef01e824017f714e5c140f765.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/36ee6ee981a9bc1a3968e7a6909e0d5cd0c2c94ba68cd45693cc0751cb7fae60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/36ee6ee981a9bc1a3968e7a6909e0d5cd0c2c94ba68cd45693cc0751cb7fae60.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/37a9f398aea2f1fe6ca0f4b1ea8f7845210132ed5a8d10e50a1e66505e86d4db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/37a9f398aea2f1fe6ca0f4b1ea8f7845210132ed5a8d10e50a1e66505e86d4db.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/37d15622f2c4af2aa3b2159b69f4148b040d4010b5099e872834b111bd1a71d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/37d15622f2c4af2aa3b2159b69f4148b040d4010b5099e872834b111bd1a71d7.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/38a79d33a35924a0fd745bea1424db3b409d8f5766964a2dc40ce6e4194b5dda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/38a79d33a35924a0fd745bea1424db3b409d8f5766964a2dc40ce6e4194b5dda.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/38addb6c65281123c8467faca3a8933ec7a9bd1f021760638a3b3e740fdbecbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/38addb6c65281123c8467faca3a8933ec7a9bd1f021760638a3b3e740fdbecbb.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/390a61c65d00e528c358297f924ae5489131399ad4f0980905c43da71f39ca24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/390a61c65d00e528c358297f924ae5489131399ad4f0980905c43da71f39ca24.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/399f1c951f7294deb9f1126dac6645317590a67b2723e2940a0727b8ad682566.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/399f1c951f7294deb9f1126dac6645317590a67b2723e2940a0727b8ad682566.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/39d5fb06b8f995079ebef227f053abad4dea86a049c063192123877e2396b0bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/39d5fb06b8f995079ebef227f053abad4dea86a049c063192123877e2396b0bd.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3acb90292c4f242ac414a5beae7b277b95ecbee7c569a7d08aceb7a34d00ed3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3acb90292c4f242ac414a5beae7b277b95ecbee7c569a7d08aceb7a34d00ed3d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3b6a6f3b718d78a574be67020480c787773685f29eec2faeff970acb36d9968d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3b6a6f3b718d78a574be67020480c787773685f29eec2faeff970acb36d9968d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3bf1cd6b40bdb588eeea7ce6a730fd62a53df858442aae348a9031d465a66542.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3bf1cd6b40bdb588eeea7ce6a730fd62a53df858442aae348a9031d465a66542.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3cc7539762ff93ec63ba14f82e92fe4b93327810a7d06bf658dc937e9db25e12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3cc7539762ff93ec63ba14f82e92fe4b93327810a7d06bf658dc937e9db25e12.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3cf7da3ccaa8ebd68ad6059a7f8fec6c523725c4015b45db03cf5f9eff417d12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3cf7da3ccaa8ebd68ad6059a7f8fec6c523725c4015b45db03cf5f9eff417d12.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3ddb8ae6e1903e03bbaf75e4cdb285f5b698a700da3684b643890f240e80b54a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3ddb8ae6e1903e03bbaf75e4cdb285f5b698a700da3684b643890f240e80b54a.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3e6a6f1f2763e4b36c9977849e267019c8d2031bab9a3447d2aef59aa82b23b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3e6a6f1f2763e4b36c9977849e267019c8d2031bab9a3447d2aef59aa82b23b3.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3e8ee6d461bced46887c035990af2a1e0e03d1428225e469dd1703e376d78d69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3e8ee6d461bced46887c035990af2a1e0e03d1428225e469dd1703e376d78d69.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/3fc5b960d97b002cb9f8ab762beb3c2999d01c69cb263d2d79ea99de8b693c62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/3fc5b960d97b002cb9f8ab762beb3c2999d01c69cb263d2d79ea99de8b693c62.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/404081690841ed2fdc71ea632a6d15b96a82bc4460d9943d39f1ae95c55dce99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/404081690841ed2fdc71ea632a6d15b96a82bc4460d9943d39f1ae95c55dce99.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4118d1147351a7dbebbe396f757fc70890dabcb96b079170408e91122909b179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4118d1147351a7dbebbe396f757fc70890dabcb96b079170408e91122909b179.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/41d0145cab9895a4e36583b148f72d0475b3934299839f7a4b8d6b292485ab3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/41d0145cab9895a4e36583b148f72d0475b3934299839f7a4b8d6b292485ab3d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4205986f1e168ab4b06a7089b3dfb7e5d91adc25a7347d890d9a32cf6bf3d82c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4205986f1e168ab4b06a7089b3dfb7e5d91adc25a7347d890d9a32cf6bf3d82c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/42229516077eea9b3e9eb48f29bbd44251e6e37c86b3203b35af5f4de82b3a67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/42229516077eea9b3e9eb48f29bbd44251e6e37c86b3203b35af5f4de82b3a67.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/42336646d446a4b82e65f9222d45008b63835380c18a4c24f025e77a9e311a15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/42336646d446a4b82e65f9222d45008b63835380c18a4c24f025e77a9e311a15.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/42350bc2b1b012520810cda136be769131a3c7b628e2ddc7b85a3b12fea3b971.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/42350bc2b1b012520810cda136be769131a3c7b628e2ddc7b85a3b12fea3b971.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/42b3d51c5e1014ead2aa2c711ab18ba5d57e8aa0f862dfbc7c28bc99e03b0f4e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/42b3d51c5e1014ead2aa2c711ab18ba5d57e8aa0f862dfbc7c28bc99e03b0f4e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/441c5ca40bf9e36b092638f58b659982f4b543b738583bb70e4aba0cee757a97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/441c5ca40bf9e36b092638f58b659982f4b543b738583bb70e4aba0cee757a97.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/455b259fe7eedeb624a264fc0db41b1e901e3ce9f72fd1b81874a9929f07bb31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/455b259fe7eedeb624a264fc0db41b1e901e3ce9f72fd1b81874a9929f07bb31.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4648ed35946e9e0bb5c34d0669bc03a390261067a8f43a92b559459ef001ae55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4648ed35946e9e0bb5c34d0669bc03a390261067a8f43a92b559459ef001ae55.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/465e21badd280de0c78d1a1d07e5d0c951bbf15984657a2784e5d49ed2d5aafa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/465e21badd280de0c78d1a1d07e5d0c951bbf15984657a2784e5d49ed2d5aafa.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4665d447d1fc77783381dbf1ee9878534cf068ba82a7ec487b60ebfdafcb83c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4665d447d1fc77783381dbf1ee9878534cf068ba82a7ec487b60ebfdafcb83c7.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/46d3148901737de83ab344b3e550b85f46b62a08efd82a3336c317bb05873a41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/46d3148901737de83ab344b3e550b85f46b62a08efd82a3336c317bb05873a41.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/46d5be193a0bf74e130dd7d15187b2e9fb27982c770a982f18dddb14be2e4174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/46d5be193a0bf74e130dd7d15187b2e9fb27982c770a982f18dddb14be2e4174.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/473e42ea7bc43a32bc9f2f2f6a5c537563e771f1402f29e902090127ba7c1ede.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/473e42ea7bc43a32bc9f2f2f6a5c537563e771f1402f29e902090127ba7c1ede.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/476b6854f6203c3ae92782f50a4596fae50ac47a265430e27c109c6aafce3d43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/476b6854f6203c3ae92782f50a4596fae50ac47a265430e27c109c6aafce3d43.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4791ed9f5d296eab595b63e2478d3db2b4fd684f431986f6b52e03e5f4b0781f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4791ed9f5d296eab595b63e2478d3db2b4fd684f431986f6b52e03e5f4b0781f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/486bcac2f85f0370bb6a645450f49b4899ae9f6145164feafe13660b9af41234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/486bcac2f85f0370bb6a645450f49b4899ae9f6145164feafe13660b9af41234.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4871f698fc7ace402e9b510c19e95e726c0775d4076fe12aaa727a6b2ba1d816.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4871f698fc7ace402e9b510c19e95e726c0775d4076fe12aaa727a6b2ba1d816.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/48a41d55ab8e01dceb32b3cdde784be0a95ffd6bf6cd402a8f09849506a57379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/48a41d55ab8e01dceb32b3cdde784be0a95ffd6bf6cd402a8f09849506a57379.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/48fb245751b27392306b8fc7cc78586493fa549074d0e164d67d6e72d1617922.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/48fb245751b27392306b8fc7cc78586493fa549074d0e164d67d6e72d1617922.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4962e99e4c4d8a9312c627404545e8a4a03510fc8946c888e301e0021feae55d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4962e99e4c4d8a9312c627404545e8a4a03510fc8946c888e301e0021feae55d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4996a6af1a40718fb801efc27e767ffaa722d1a21a8fbd60fd8545960ac9188c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4996a6af1a40718fb801efc27e767ffaa722d1a21a8fbd60fd8545960ac9188c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4a43a82f60acc483c4fac9bb27ab013f8af904a13d317abdd017a8d9af9a5681.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4a43a82f60acc483c4fac9bb27ab013f8af904a13d317abdd017a8d9af9a5681.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4aa377c0c346e44f693e22317917d8666976a78901a042b574a382ae4ed28257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4aa377c0c346e44f693e22317917d8666976a78901a042b574a382ae4ed28257.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4bd3809e53dd3564de74779371d914bedd5922bb930ff53de29324a7b19545d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4bd3809e53dd3564de74779371d914bedd5922bb930ff53de29324a7b19545d2.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4c393334419ca8bb1e613616685db235f2469d6e0f1fd0033c1635ea398cb751.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4c393334419ca8bb1e613616685db235f2469d6e0f1fd0033c1635ea398cb751.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4ccf7aa33f2e0f6d91289dfa3396ea766fd8d861d214611297158dd4c454a89a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4ccf7aa33f2e0f6d91289dfa3396ea766fd8d861d214611297158dd4c454a89a.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4d7769adaca519fb8166f84ff8acf41cb297554b3d3a5bf489afc658dcd88db8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4d7769adaca519fb8166f84ff8acf41cb297554b3d3a5bf489afc658dcd88db8.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4d8746bb36fa1f785fa02a5abcb5108c4f0f6328233ad08db6da201854c24521.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4d8746bb36fa1f785fa02a5abcb5108c4f0f6328233ad08db6da201854c24521.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4ddbf4512f07ae5730b3508d6a05b6a8f9ac473a3bfbbcf77b35aa0263fdcd1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4ddbf4512f07ae5730b3508d6a05b6a8f9ac473a3bfbbcf77b35aa0263fdcd1c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4f76b535ef87c3d12fcbdc2dd710a140d0371de1dce196073ef8d70f829a27f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4f76b535ef87c3d12fcbdc2dd710a140d0371de1dce196073ef8d70f829a27f9.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/4f8b366bd88be09d72c8eea9cac3d211f0b61d74cdb96cfb8d3316628edc1e20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/4f8b366bd88be09d72c8eea9cac3d211f0b61d74cdb96cfb8d3316628edc1e20.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/505b5ddb139719dc3ce90150e7bd284a97c836ab1f6fc3b84a97677c111adda2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/505b5ddb139719dc3ce90150e7bd284a97c836ab1f6fc3b84a97677c111adda2.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/50a27fac061c7a46de1adbaf5f346518c0c75bacf5c4df79f7ee45dc43a47429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/50a27fac061c7a46de1adbaf5f346518c0c75bacf5c4df79f7ee45dc43a47429.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/50c44e3073f64be0f5be3556971fc4f2be99b3b64eb485d53340fa021dc3e21a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/50c44e3073f64be0f5be3556971fc4f2be99b3b64eb485d53340fa021dc3e21a.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/529c8bf2a6519f2133a9ab21141328e1f70be4c6d58bfdcaae89249d2c9bfd8d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/529c8bf2a6519f2133a9ab21141328e1f70be4c6d58bfdcaae89249d2c9bfd8d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/52a9b0088119cdf089fbb2b340f9696b358b7048cc6e683065db3369ee55e789.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/52a9b0088119cdf089fbb2b340f9696b358b7048cc6e683065db3369ee55e789.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/540838f43f2e3540ada51a47a60605f8d1b034b255ecf8499d3ce217e9aa0847.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/540838f43f2e3540ada51a47a60605f8d1b034b255ecf8499d3ce217e9aa0847.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5465dcc28b2c8162bea47663f8dbae4d7952836b4ce75a8cd29e3778ea13fb45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5465dcc28b2c8162bea47663f8dbae4d7952836b4ce75a8cd29e3778ea13fb45.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/55b15286b1cf6a594198048d15dd617d23a82b2fbb9029e62712c546b7aa4ee2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/55b15286b1cf6a594198048d15dd617d23a82b2fbb9029e62712c546b7aa4ee2.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/56a8b3bfb470ac7bb31e5a68750f19614b711ca30182bd8b6192138aef6061e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/56a8b3bfb470ac7bb31e5a68750f19614b711ca30182bd8b6192138aef6061e5.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/574bcd1de6d94bbc74f88ee2f943311d80b9149fa2df36a9dcbc2fc17a706752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/574bcd1de6d94bbc74f88ee2f943311d80b9149fa2df36a9dcbc2fc17a706752.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/57690a6a9aa16ece2a97fa8a0703994e09af69549d392544d6d2b090dc509247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/57690a6a9aa16ece2a97fa8a0703994e09af69549d392544d6d2b090dc509247.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/579376d16b514608478b517a4c6522715b3248f00ab288340c7a07e0a0baf7aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/579376d16b514608478b517a4c6522715b3248f00ab288340c7a07e0a0baf7aa.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/57e23029c0f5e5b44e2375c90c95a6849366586f90b2569be4b9600af6be7451.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/57e23029c0f5e5b44e2375c90c95a6849366586f90b2569be4b9600af6be7451.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/57fe6329eb38b2e4fa9745326d47db8a825456db4c5cdda4ad06c610fb355781.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/57fe6329eb38b2e4fa9745326d47db8a825456db4c5cdda4ad06c610fb355781.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/583816bda2af7ea0661cae023e935e14b7de5370b3bcb0b05b255120689e4a4e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/583816bda2af7ea0661cae023e935e14b7de5370b3bcb0b05b255120689e4a4e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/587e5e0b60bb243ff03dc3b6fa4889e6e6ed823d36663986e4748977b7a3ef14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/587e5e0b60bb243ff03dc3b6fa4889e6e6ed823d36663986e4748977b7a3ef14.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/58d046c1d166c4fa0907206d4e2d5937f34712a4e1160b5de9227a95b6628b4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/58d046c1d166c4fa0907206d4e2d5937f34712a4e1160b5de9227a95b6628b4d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/58dc7032161a1cfa69be629cea5812569b3297415e3eabece9956b8288b0093c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/58dc7032161a1cfa69be629cea5812569b3297415e3eabece9956b8288b0093c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/593555431f2c825f87614918682eed265012d9270175a6ae39afefbe3f24bedb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/593555431f2c825f87614918682eed265012d9270175a6ae39afefbe3f24bedb.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5a87e1213a0a20446854ec42f259f724241e8f27a46e21ac8b7b00db548dd725.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5a87e1213a0a20446854ec42f259f724241e8f27a46e21ac8b7b00db548dd725.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5af3c045e0fed6f5a3fe6f5b7dc9ef2d46df0e7910dcb97b9c04f31dd444cd5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5af3c045e0fed6f5a3fe6f5b7dc9ef2d46df0e7910dcb97b9c04f31dd444cd5c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b138a03b16a1d3d59e7fa8f527fba5a45d938783a9c6e5ebbcad4e29312761e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b138a03b16a1d3d59e7fa8f527fba5a45d938783a9c6e5ebbcad4e29312761e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b17c5a7bb8ba0e9bcdd4edb92c2c631ef6c5376d46f92efead3c0972a7f65e3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b17c5a7bb8ba0e9bcdd4edb92c2c631ef6c5376d46f92efead3c0972a7f65e3.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b19dc5a859a027ef762e03ba3f8682c519cac5ca47ef52362f79a2d043e5201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b19dc5a859a027ef762e03ba3f8682c519cac5ca47ef52362f79a2d043e5201.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b4bc5ea1dc71b6b55cab04a4ac1767032a15f6862847406d2d10fd924dffa4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b4bc5ea1dc71b6b55cab04a4ac1767032a15f6862847406d2d10fd924dffa4d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b67ed042727be6ed19b8990aa3f001b75dd2d684c02cde5ce428b4b19d85854.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b67ed042727be6ed19b8990aa3f001b75dd2d684c02cde5ce428b4b19d85854.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b9b7653038bd21365b6d975607cc38e803a684ea3c3eb735e09d1d6ea2f9311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5b9b7653038bd21365b6d975607cc38e803a684ea3c3eb735e09d1d6ea2f9311.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5ba157357b9b874227f9e232457c9bc9a87eb43c0a2fb7669a42ad8f68285920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5ba157357b9b874227f9e232457c9bc9a87eb43c0a2fb7669a42ad8f68285920.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5c85b0fed80595747dc54e7fd5922fa33472f49b119a3e2005d9d7dfcaa78cbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5c85b0fed80595747dc54e7fd5922fa33472f49b119a3e2005d9d7dfcaa78cbc.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5cbf7f1f08824f1c635b787d4130dd16ba227efc42d463010ae7dd7828b22345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5cbf7f1f08824f1c635b787d4130dd16ba227efc42d463010ae7dd7828b22345.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5cd3d775cf9355a648c7757b8401a59aad2100d67dc2770a9093928039421f2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5cd3d775cf9355a648c7757b8401a59aad2100d67dc2770a9093928039421f2d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5deac757d4354347e26296cc7a5aa35a0441bd555a05c44c71f3db7c6b502760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5deac757d4354347e26296cc7a5aa35a0441bd555a05c44c71f3db7c6b502760.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5e7c83cd07176407c9b7775ca7540c28a89baa27f872529e9244a401826d36f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5e7c83cd07176407c9b7775ca7540c28a89baa27f872529e9244a401826d36f5.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5eebc1909f7e4568b12b94e0c6ef5285f65a240bb01f5fe5f5474ac3594f30bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5eebc1909f7e4568b12b94e0c6ef5285f65a240bb01f5fe5f5474ac3594f30bb.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/5fc49f339d99369473cb58d976ce6932f16f1efa4f310f044acf0d4333f5bb07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/5fc49f339d99369473cb58d976ce6932f16f1efa4f310f044acf0d4333f5bb07.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6004ee36145a115acff132e4f93e214ab9c1eb8d36a45eb0239be18a251c84d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6004ee36145a115acff132e4f93e214ab9c1eb8d36a45eb0239be18a251c84d5.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/620fa6d664f5af3f09965721a819b49ec02ffcd101588acd96834d268acd1572.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/620fa6d664f5af3f09965721a819b49ec02ffcd101588acd96834d268acd1572.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/623a31201d1a9dee32681688df572282aa2febdf473361d6412737d59a952fbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/623a31201d1a9dee32681688df572282aa2febdf473361d6412737d59a952fbc.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/63ecb22b03941ff8baf8a8619360ad6cf498227dfc8ad32757bbbc16c589c6d9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/63ecb22b03941ff8baf8a8619360ad6cf498227dfc8ad32757bbbc16c589c6d9.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/63f3453e75491fe5ea4ca5378e55450775e5044d49ab016183dccbe0aec591a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/63f3453e75491fe5ea4ca5378e55450775e5044d49ab016183dccbe0aec591a3.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6421f31a904b52762e952c66d1b8b7cd57c84a9af09c0e5dc9d226d51aadca21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6421f31a904b52762e952c66d1b8b7cd57c84a9af09c0e5dc9d226d51aadca21.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6441a9e6bd3f8855721b970fbb684571d1170ba5ff16dcbf6314ef8c5257ab55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6441a9e6bd3f8855721b970fbb684571d1170ba5ff16dcbf6314ef8c5257ab55.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/64a65acaa27d6da0e6d477cd2cc5361e21a7039edb4c30cef4dd0ebd008e79e6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/64a65acaa27d6da0e6d477cd2cc5361e21a7039edb4c30cef4dd0ebd008e79e6.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/64c516f9aaec952dfe0912d7b244cd525d7149ee8c0100f5157ff551a0a1af8c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/64c516f9aaec952dfe0912d7b244cd525d7149ee8c0100f5157ff551a0a1af8c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/652f3f1feace56a989c8e256eb3f1ee0ad436c4af689f0ec00a460002b06ce75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/652f3f1feace56a989c8e256eb3f1ee0ad436c4af689f0ec00a460002b06ce75.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6542df1b88ebe79774ed1992a8c4bd8ca73781be575830c3bebe3350dea5df91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6542df1b88ebe79774ed1992a8c4bd8ca73781be575830c3bebe3350dea5df91.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/657ce9ed7014a5d26b354a0825129f1c5dbbd180d216552d4e3ef3c44110aad8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/657ce9ed7014a5d26b354a0825129f1c5dbbd180d216552d4e3ef3c44110aad8.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/65f4d1c96c9efab61a469d907e5cad4a53bed072a8b7c266d5f757769b1af6a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/65f4d1c96c9efab61a469d907e5cad4a53bed072a8b7c266d5f757769b1af6a1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/66880c3f622a903b8db8d0c59d10aab415f5f154f9b0eec6a9e2e410ac1559bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/66880c3f622a903b8db8d0c59d10aab415f5f154f9b0eec6a9e2e410ac1559bd.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/68201915d74cb42af5b3cc5c95b9553e3e3a83b4d2a93b45fbadaa8469ff8e6e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/68201915d74cb42af5b3cc5c95b9553e3e3a83b4d2a93b45fbadaa8469ff8e6e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/683d7d251af10770eb5696c83be5d89a1ff13266e3d6443164667648be7b84cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/683d7d251af10770eb5696c83be5d89a1ff13266e3d6443164667648be7b84cb.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/68c3a9fd131681fb49142df658f70c8caf9d991dab872d5f183847b35500ce02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/68c3a9fd131681fb49142df658f70c8caf9d991dab872d5f183847b35500ce02.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/68de56324fb9c52fe3b23c7d2e2eef7cf1f4b5d98892a2474b2a5b536fe5e677.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/68de56324fb9c52fe3b23c7d2e2eef7cf1f4b5d98892a2474b2a5b536fe5e677.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/68de68b4bf6810708c37ab6803870b47c5ba1e6a9d32d41bd74f727db444d828.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/68de68b4bf6810708c37ab6803870b47c5ba1e6a9d32d41bd74f727db444d828.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/68fedf64924894e13bb99abb21c12be64ecfb0387bc39c7acd2c64cd5949932f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/68fedf64924894e13bb99abb21c12be64ecfb0387bc39c7acd2c64cd5949932f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6915fc160493d2d04915b97bbbfa0ff7bcdbb2365ff72641304ba75a0e661eaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6915fc160493d2d04915b97bbbfa0ff7bcdbb2365ff72641304ba75a0e661eaa.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/69a86eb2050c357cb27d9f2c4722fa81f3339645bf241fde4f59958e7b31165d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/69a86eb2050c357cb27d9f2c4722fa81f3339645bf241fde4f59958e7b31165d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6b4e1c366526544c7e7f11ea85d714e00c0689c39b73e75ff922a000628e1fef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6b4e1c366526544c7e7f11ea85d714e00c0689c39b73e75ff922a000628e1fef.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6c86db9d126b453ec444f9dcd674d97b9a8924b31cf9543e117a2b4bc78568a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6c86db9d126b453ec444f9dcd674d97b9a8924b31cf9543e117a2b4bc78568a2.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6c87460d576d544725382096e907a41a2b55ab739df819439f06d01611662bf6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6c87460d576d544725382096e907a41a2b55ab739df819439f06d01611662bf6.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6cfaa1cbe93ecc101c48644968208ffa71049a4b2e71ad6c58c2a71da0476927.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6cfaa1cbe93ecc101c48644968208ffa71049a4b2e71ad6c58c2a71da0476927.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6cfc31db93c007a49116daec04f0a0320a1fb615d51d8e7fdadda7be1bbbd807.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6cfc31db93c007a49116daec04f0a0320a1fb615d51d8e7fdadda7be1bbbd807.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6e073da81a2bbc6d608105eacb0505401324ba05e42164c85bbdb3b9b0e3a2ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6e073da81a2bbc6d608105eacb0505401324ba05e42164c85bbdb3b9b0e3a2ed.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6e43fffa85af2a1d3eb60b0677c82f0a818a13815d870fc4cc30ad5b74feacbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6e43fffa85af2a1d3eb60b0677c82f0a818a13815d870fc4cc30ad5b74feacbb.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6ed26f1690d81df041e4e91fd819c666ed2186a6722c1877a8977e7294b4f1a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6ed26f1690d81df041e4e91fd819c666ed2186a6722c1877a8977e7294b4f1a5.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/6f072199826d98dc3bf721ee1370e86feb35702699a4dd32161b6797c77f7598.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/6f072199826d98dc3bf721ee1370e86feb35702699a4dd32161b6797c77f7598.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/70e9d1eeb99255f7205a4a6a07f01130b319aa607a3d7cfa369151929aa3db75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/70e9d1eeb99255f7205a4a6a07f01130b319aa607a3d7cfa369151929aa3db75.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/71216ea7e98991af2c7f6226d581d2ba513e14cc585f8e8d0f6cf04bf112f755.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/71216ea7e98991af2c7f6226d581d2ba513e14cc585f8e8d0f6cf04bf112f755.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/71a334c22698b7a7ea963abd6fb62e4ee67985bda18e5330ec544f5dd929a9cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/71a334c22698b7a7ea963abd6fb62e4ee67985bda18e5330ec544f5dd929a9cb.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/71d48cdfbee4c25fce6cc03b85038ea52d6bebb08ebe60fcc6fb5b9dfe0d4d9d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/71d48cdfbee4c25fce6cc03b85038ea52d6bebb08ebe60fcc6fb5b9dfe0d4d9d.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/723b9d89f009286d7932c46572a63d514aec17bc9bd2c53f830e3bb4ce4f366b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/723b9d89f009286d7932c46572a63d514aec17bc9bd2c53f830e3bb4ce4f366b.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/7263628741190579514c91205ca4818fe5fce378fafb9f78ed2c2338da23c844.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/7263628741190579514c91205ca4818fe5fce378fafb9f78ed2c2338da23c844.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/728254f45857cec8f4525bee482ab125bdfafc7507dd14bb9493e3718b38c855.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/728254f45857cec8f4525bee482ab125bdfafc7507dd14bb9493e3718b38c855.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/7292d666d261031f824259c309ce7f9390e737c26b6416d530169701320ca2a7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/7292d666d261031f824259c309ce7f9390e737c26b6416d530169701320ca2a7.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/731c7f45507301dcf5334e87b1025053d084471c939ec041d96c63f02011841f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/731c7f45507301dcf5334e87b1025053d084471c939ec041d96c63f02011841f.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/73932df26ceaacc429e3ae026ad6ae4cde9f9def97c5fd3eda9de393f1379743.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/73932df26ceaacc429e3ae026ad6ae4cde9f9def97c5fd3eda9de393f1379743.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/73bd7773c77aa1f852ad2dd9871b6bec16d1ac63b1157832f4dfb56803fe5f0c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/73bd7773c77aa1f852ad2dd9871b6bec16d1ac63b1157832f4dfb56803fe5f0c.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/74415ce7365d76d0daa96830de5542fa9f47d3ff081a0f7ac23bc0a2414161e1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/74415ce7365d76d0daa96830de5542fa9f47d3ff081a0f7ac23bc0a2414161e1.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/74665900a4fa47cf3ea01c92c715afc9d22d198cac479b91d188bba86e15be63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/74665900a4fa47cf3ea01c92c715afc9d22d198cac479b91d188bba86e15be63.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/75028075f91c90544e4f7384e3df6dd2342c06b8420457fb27a809c64e477458.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/75028075f91c90544e4f7384e3df6dd2342c06b8420457fb27a809c64e477458.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/763f1cc49413d145aafd3e7418740cfba5333feae1ec200df8af0b05ebcc1395.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/763f1cc49413d145aafd3e7418740cfba5333feae1ec200df8af0b05ebcc1395.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/7641c8702d00eb83a947511c424c28854d52a97a1476b677c263c922636d6f59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/7641c8702d00eb83a947511c424c28854d52a97a1476b677c263c922636d6f59.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/7649029a07ae2625cf28b4da77d9e70bbaa5d444d267734ec8af08350c85753e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/7649029a07ae2625cf28b4da77d9e70bbaa5d444d267734ec8af08350c85753e.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/766eb3d731389b6cc4e5aaecd28c437fc5cf08fd45293d97f464bfafed3dce83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/766eb3d731389b6cc4e5aaecd28c437fc5cf08fd45293d97f464bfafed3dce83.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/767975daf38a742cfce1545e809632750027fab7d7a57f346c0cf307ab39d3dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/767975daf38a742cfce1545e809632750027fab7d7a57f346c0cf307ab39d3dc.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/76c14ac2c2697cef9637ccc065974c9e2a9ea587d8cdd9143c7129eb9d155055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/76c14ac2c2697cef9637ccc065974c9e2a9ea587d8cdd9143c7129eb9d155055.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/WebsitesData/WebsiteIcons/7753c15d3c9470f1f18fe2ad5c68033575590dd72a29f9399c8dd60113611339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/WebsitesData/WebsiteIcons/7753c15d3c9470f1f18fe2ad5c68033575590dd72a29f9399c8dd60113611339.png -------------------------------------------------------------------------------- /TwoFAuth/Resources/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Resources/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /TwoFAuth/RootFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/RootFlowController.swift -------------------------------------------------------------------------------- /TwoFAuth/RootWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/RootWindow.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/AppServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/AppServices.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Authentication/AuthenticationManager+UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Authentication/AuthenticationManager+UI.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Authentication/AuthenticationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Authentication/AuthenticationManager.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Constants.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/FavIconFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/FavIconFetcher.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/ImageCache.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/ImageEffects/TFAImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/ImageEffects/TFAImageEffects.h -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/ImageEffects/TFAImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/ImageEffects/TFAImageEffects.m -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/String+SHA256.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/String+SHA256.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/Website Catalog/TFASites.xcdatamodeld/TFASites.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/Website Catalog/TFASites.xcdatamodeld/TFASites.xcdatamodel/contents -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/Website Catalog/WebsiteCatalog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/Website Catalog/WebsiteCatalog.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/Website Catalog/WebsiteEntity+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/Website Catalog/WebsiteEntity+CoreDataClass.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/FavIconFetcher/Website Catalog/WebsiteEntity+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/FavIconFetcher/Website Catalog/WebsiteEntity+CoreDataProperties.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Misc/Debouncer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Misc/Debouncer.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Misc/UserDefaults+Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Misc/UserDefaults+Settings.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Pin/Pin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Pin/Pin.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Pin/PinFailedAttempt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Pin/PinFailedAttempt.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Pin/PinKeychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Pin/PinKeychain.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Pin/PinManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Pin/PinManager.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Pin/PinManagerImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Pin/PinManagerImpl.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Pin/SecureTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Pin/SecureTime.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Scanner/OTPCodeProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Scanner/OTPCodeProcessor.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Scanner/QRCodeProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Scanner/QRCodeProcessor.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Scanner/QRScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Scanner/QRScanner.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Services.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Services.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/App/AppStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/App/AppStorage.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/App/SyncableStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/App/SyncableStorage.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/App/TokenOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/App/TokenOrder.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/DateTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/DateTime.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/KeychainStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/KeychainStorage.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/PersistentToken+Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/PersistentToken+Diff.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/PersistentToken+Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/PersistentToken+Update.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/Storage.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/Storage/UserDefaults+Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/Storage/UserDefaults+Storage.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/iCloud Sync/CloudProbe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/iCloud Sync/CloudProbe.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/iCloud Sync/Crypter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/iCloud Sync/Crypter.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/iCloud Sync/Error+CKErrorUserDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/iCloud Sync/Error+CKErrorUserDescription.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/iCloud Sync/PersistentToken+CloudKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/iCloud Sync/PersistentToken+CloudKit.swift -------------------------------------------------------------------------------- /TwoFAuth/Services/iCloud Sync/TokenOrder+CloudKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Services/iCloud Sync/TokenOrder+CloudKit.swift -------------------------------------------------------------------------------- /TwoFAuth/TwoFAuth-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/TwoFAuth-Bridging-Header.h -------------------------------------------------------------------------------- /TwoFAuth/UI/Add/AddOTPNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Add/AddOTPNavigationController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Add/AddOTPViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Add/AddOTPViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Add/Camera/AddOTPCameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Add/Camera/AddOTPCameraViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Add/Camera/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Add/Camera/CameraView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Add/Camera/CameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Add/Camera/CameraViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Add/Camera/ScannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Add/Camera/ScannerView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Add/Camera/ScannerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Add/Camera/ScannerViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Add/Manual/AddOTPManualViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Add/Manual/AddOTPManualViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Controllers/ContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Controllers/ContainerViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/DevicesCompatibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/DevicesCompatibility.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIAlertController+Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIAlertController+Error.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIApplication+TopmostController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIApplication+TopmostController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UITableViewCell+Margins.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UITableViewCell+Margins.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIView+Animations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIView+Animations.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIView+Autolayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIView+Autolayout.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIView+Containment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIView+Containment.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIView+FindConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIView+FindConstraint.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIViewController+ChildTransitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIViewController+ChildTransitions.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIViewController+Containment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIViewController+Containment.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIViewController+DisplayError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIViewController+DisplayError.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Extensions/UIViewController+Keyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Extensions/UIViewController+Keyboard.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/FormCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/FormCellModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/FormSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/FormSectionModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/FormTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/FormTableViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/GroupedFormTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/GroupedFormTableViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Segmented/SegmentedFormCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Segmented/SegmentedFormCellModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Segmented/SegmentedFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Segmented/SegmentedFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Segmented/TransparentSegmentedFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Segmented/TransparentSegmentedFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Selector/GroupedSelectorFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Selector/GroupedSelectorFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Selector/SelectorFormCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Selector/SelectorFormCellModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Selector/SelectorFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Selector/SelectorFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Selector/TitledFormCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Selector/TitledFormCellModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Selector/TransparentSelectorFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Selector/TransparentSelectorFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Switcher/GroupedSwitcherFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Switcher/GroupedSwitcherFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Switcher/SwitcherFormCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Switcher/SwitcherFormCellModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/Switcher/SwitcherFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/Switcher/SwitcherFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/TextField/TextFieldFormCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/TextField/TextFieldFormCellModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/TextField/TextFieldFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/TextField/TextFieldFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/TextField/TransparentTextFieldFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/TextField/TransparentTextFieldFormTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Forms/TransparentFormTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Forms/TransparentFormTableViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/LocalizedStrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/LocalizedStrings.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Styles.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/TextInputTraits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/TextInputTraits.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Views/AnimatableShapeLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Views/AnimatableShapeLayer.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Views/DynamicTypeButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Views/DynamicTypeButton.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Views/InsetsTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Views/InsetsTextField.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Views/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Views/ProgressView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Common/Views/SmoothingCornersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Common/Views/SmoothingCornersView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/LockScreen/LockScreenInputViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/LockScreen/LockScreenInputViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/LockScreen/LockScreenViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/LockScreen/LockScreenViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/LockScreen/Views/AudioFeedbackInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/LockScreen/Views/AudioFeedbackInputView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/LockScreen/Views/PinCodeKeyboardButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/LockScreen/Views/PinCodeKeyboardButton.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/LockScreen/Views/PinCodeKeyboardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/LockScreen/Views/PinCodeKeyboardView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/AddOneTimePasswordDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/AddOneTimePasswordDelegate.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/AppMainFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/AppMainFlowController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/AppPasswordListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/AppPasswordListViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Cell/OneTimePasswordCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Cell/OneTimePasswordCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/EmptyPasswordsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/EmptyPasswordsViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/MainFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/MainFlowController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Models/AppMainModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Models/AppMainModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Models/MainDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Models/MainDataSource.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Models/MainModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Models/MainModel.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Models/NSMutableAttributedString+HighlightQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Models/NSMutableAttributedString+HighlightQuery.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Models/OneTimePassword+Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Models/OneTimePassword+Diff.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Models/OneTimePassword+FormattedTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Models/OneTimePassword+FormattedTitle.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Models/OneTimePassword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Models/OneTimePassword.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Models/String+OneTimePassword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Models/String+OneTimePassword.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/PasswordListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/PasswordListViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Views/NavigationTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Views/NavigationTitleView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Main/Views/PasswordListHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Main/Views/PasswordListHeaderView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Pin/PinController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Pin/PinController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Pin/PinLockDown+UserMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Pin/PinLockDown+UserMessage.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Pin/PinLockdownViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Pin/PinLockdownViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Pin/Views/NumericPinField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Pin/Views/NumericPinField.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Pin/Views/PinInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Pin/Views/PinInputView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/About/AboutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/About/AboutViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Base/FormHeaderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Base/FormHeaderViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Base/ImageDescriptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Base/ImageDescriptionView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Manage/Cells/PasswordManagerTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Manage/Cells/PasswordManagerTableViewCell.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Manage/PasswordManagerFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Manage/PasswordManagerFlowController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Manage/PasswordManagerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Manage/PasswordManagerViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Manage/PasswordManaging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Manage/PasswordManaging.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/ChildControllers/BasePinViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/ChildControllers/BasePinViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/ChildControllers/PinSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/ChildControllers/PinSettingsViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/ChildControllers/RequestPinInputViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/ChildControllers/RequestPinInputViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/ChildControllers/RequestPinViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/ChildControllers/RequestPinViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/ChildControllers/SetupPinViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/ChildControllers/SetupPinViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/PasscodeSettingsFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/PasscodeSettingsFlowController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/Views/PinLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/Views/PinLabelStyle.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/Views/PinLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/Views/PinLabelView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/Passcode/Views/PinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/Passcode/Views/PinView.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/SettingsFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/SettingsFlowController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/TextViewer/TextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/TextViewer/TextViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/iCloud/CloudManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/iCloud/CloudManager.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/iCloud/CloudSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/iCloud/CloudSettingsViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/iCloud/CloudSetup/CloudAccountProblemViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/iCloud/CloudSetup/CloudAccountProblemViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/iCloud/CloudSetup/CloudSetupFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/iCloud/CloudSetup/CloudSetupFlowController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/iCloud/CloudSetup/CloudSetupInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/iCloud/CloudSetup/CloudSetupInfoViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/UI/Settings/iCloud/CloudSetup/CloudStatusViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/UI/Settings/iCloud/CloudSetup/CloudStatusViewController.swift -------------------------------------------------------------------------------- /TwoFAuth/Utils/Array+Generating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Utils/Array+Generating.swift -------------------------------------------------------------------------------- /TwoFAuth/Utils/Bundle+AppBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Utils/Bundle+AppBundle.swift -------------------------------------------------------------------------------- /TwoFAuth/Utils/DataConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Utils/DataConvertible.swift -------------------------------------------------------------------------------- /TwoFAuth/Utils/DemoMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuth/Utils/DemoMode.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/.swiftformat: -------------------------------------------------------------------------------- 1 | ../.swiftformat -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Cartfile: -------------------------------------------------------------------------------- 1 | github "leonbreedt/FavIcon" ~> 3.0.0 2 | -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "leonbreedt/FavIcon" "3.0.6" 2 | -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/.gitignore -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/.swiftlint.yml -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/.travis.yml -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/Info.plist -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.podspec -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.xcodeproj/xcshareddata/xcschemes/FavIcon-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.xcodeproj/xcshareddata/xcschemes/FavIcon-iOS.xcscheme -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/FavIcon.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/LICENSE -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Makefile -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/README.md -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon.xcconfig: -------------------------------------------------------------------------------- 1 | LIBXML2_INCLUDE_DIR = /usr/include/libxml2 2 | -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/ContentTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/ContentTypes.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/Detection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/Detection.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/Download.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/FavIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/FavIcon.h -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/FavIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/FavIcon.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/HTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/HTML.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/Icon.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/IconType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/IconType.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/XML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/FavIcon/XML.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/Info.plist -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/Modules/libxml2-favicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/Modules/libxml2-favicon.h -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Sources/Modules/module.modulemap -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/BrowserConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/BrowserConfig.xml -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/DetectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/DetectionTests.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/DownloadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/DownloadTests.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/FavIconTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/FavIconTests.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/HTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/HTML.html -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/HTMLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/HTMLTests.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/FavIconTests/Manifest.json -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/Carthage/Checkouts/FavIcon/Tests/Info.plist -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/Cleanup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/Cleanup.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/DownloadIcons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/DownloadIcons.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/Fetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/Fetch.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/HardcodedWebsites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/HardcodedWebsites.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/NSImage+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/NSImage+Utils.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/PostProcessing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/PostProcessing.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/SaveData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/SaveData.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/Types.swift -------------------------------------------------------------------------------- /TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthFavIconExporter/TwoFAuthFavIconExporter/main.swift -------------------------------------------------------------------------------- /TwoFAuthScreenshots/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthScreenshots/Info.plist -------------------------------------------------------------------------------- /TwoFAuthScreenshots/TwoFAuthScreenshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthScreenshots/TwoFAuthScreenshots.swift -------------------------------------------------------------------------------- /TwoFAuthScreenshots/qr_scanner_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthScreenshots/qr_scanner_placeholder.png -------------------------------------------------------------------------------- /TwoFAuthTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthTests/Info.plist -------------------------------------------------------------------------------- /TwoFAuthTests/PinFailedAttemptTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthTests/PinFailedAttemptTests.swift -------------------------------------------------------------------------------- /TwoFAuthTests/PinKeychainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthTests/PinKeychainTest.swift -------------------------------------------------------------------------------- /TwoFAuthTests/PinManagerImplTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthTests/PinManagerImplTests.swift -------------------------------------------------------------------------------- /TwoFAuthTests/PinTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthTests/PinTests.swift -------------------------------------------------------------------------------- /TwoFAuthTests/StylesTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/TwoFAuthTests/StylesTest.swift -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | app_identifier "app.2fauth" 2 | itc_team_name "Andrey Podkovyrin" -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Gymfile: -------------------------------------------------------------------------------- 1 | scheme "TwoFAuth" 2 | clean true 3 | export_options( 4 | method: "app-store" 5 | ) 6 | -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2FAuth/2FAuth-iOS/HEAD/fastlane/SnapshotHelper.swift --------------------------------------------------------------------------------