├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ └── make-suggestion.md └── workflows │ └── test.yml ├── .gitignore ├── Code.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── Code Dev.xcscheme │ ├── Code.xcscheme │ ├── CodeLokalise.xcscheme │ └── CodeTests.xcscheme ├── Code ├── Actors │ └── CronActor.swift ├── AppContainer.swift ├── AppDelegate.swift ├── Code.entitlements ├── Codes │ ├── Code.Payload.swift │ └── Code.swift ├── Controllers │ ├── Abacus.swift │ ├── AccountContainer.swift │ ├── AccountManager.swift │ ├── BetaFlags.swift │ ├── Biometrics.swift │ ├── ContentController.swift │ ├── DeepLinkController.swift │ ├── Exchange.swift │ ├── FlowController.swift │ ├── GiftCardVault.swift │ ├── HistoryController.swift │ ├── MessageController.swift │ ├── NotificationController.swift │ ├── Preferences.swift │ ├── PushController.swift │ ├── Reachability.swift │ ├── Session.swift │ ├── SessionAuthenticator.swift │ ├── StatusController.swift │ ├── TipController.swift │ └── Transactions │ │ ├── ReceiveTransaction.swift │ │ └── SendTransaction.swift ├── Extensions │ ├── Array+Keyed.swift │ ├── Data+Bytes.swift │ ├── String+Decimal.swift │ ├── UIApplication+Root.swift │ └── URL+Links.swift ├── Extraction │ ├── Code.Payload+Encoding.swift │ ├── Code.Payload.swift │ ├── Code.swift │ ├── CodeExtractor.swift │ └── RedundancyContainer.swift ├── Guards.swift ├── Keychain │ ├── Defaults.swift │ └── Secure.swift ├── Modals │ ├── ModalCashReceived.swift │ ├── ModalInsufficientFunds.swift │ ├── ModalLoginConfirmation.swift │ ├── ModalPaymentConfirmation.swift │ └── ModalTipConfirmation.swift ├── Models │ ├── BillState.swift │ ├── DeepLinkRequest.swift │ ├── Route.swift │ └── Stopwatch.swift ├── Modifiers │ ├── Banner.swift │ └── BannerController.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Screens │ ├── Accessory │ │ └── PermissionScreen.swift │ ├── Balance │ │ ├── BalanceScreen.swift │ │ ├── ChatScreen.swift │ │ ├── ChatsScreen.swift │ │ ├── ConversationScreen.swift │ │ ├── DepositUSDCScreen.swift │ │ ├── EnterUsernameScreen.swift │ │ └── MessageList.swift │ ├── BiometricsAuthScreen.swift │ ├── ContainerScreen.swift │ ├── Get Kin │ │ ├── BuyKinScreen.swift │ │ ├── ConnectXScreen.swift │ │ ├── EnterTipScreen.swift │ │ ├── GetKinScreen.swift │ │ └── Kado.swift │ ├── Login │ │ ├── AccessKeyScreen.swift │ │ ├── AccountSelectionScreen.swift │ │ ├── IntroScreen.swift │ │ ├── IntroViewModel.swift │ │ ├── LoginScreen.swift │ │ ├── MigrationScreen.swift │ │ ├── Phone Verification │ │ │ ├── ConfirmPhoneScreen.swift │ │ │ ├── RegionSelectionScreen.swift │ │ │ ├── VerifyPhoneScreen.swift │ │ │ └── VerifyPhoneViewModel.swift │ │ └── Snapshot.swift │ ├── Main │ │ ├── BillCanvas.swift │ │ ├── BucketScreen.swift │ │ ├── CurrencySelectionScreen.swift │ │ ├── DownloadScreen.swift │ │ ├── FAQScreen.swift │ │ ├── GetFriendStartedScreen.swift │ │ ├── GiveKinScreen.swift │ │ ├── RequestKinScreen.swift │ │ ├── SavedLoginScreen.swift │ │ ├── ScanScreen.swift │ │ └── ViewModel │ │ │ ├── CurrencySelectionViewModel.swift │ │ │ └── TooltipViewModel.swift │ └── Settings │ │ ├── BackupScreen.swift │ │ ├── BetaFlagsScreen.swift │ │ ├── BuyVideosScreen.swift │ │ ├── Delete │ │ ├── ConfirmDeleteScreen.swift │ │ ├── DeleteAccountScreen.swift │ │ └── DeleteAccountViewModel.swift │ │ ├── DepositScreen.swift │ │ ├── LinkPhoneScreen.swift │ │ ├── RestrictedScreen.swift │ │ ├── SettingsScreen.swift │ │ ├── UpgradeScreen.swift │ │ └── Withdraw │ │ ├── WithdrawAddressScreen.swift │ │ ├── WithdrawAmountScreen.swift │ │ ├── WithdrawSummaryScreen.swift │ │ └── WithdrawViewModel.swift ├── Share │ ├── ShareCashItem.swift │ └── ShareSheet.swift ├── Supporting Files │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120-1.png │ │ │ ├── Icon120.png │ │ │ ├── Icon180.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ │ ├── AppIcon.beta.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024 Beta.png │ │ │ ├── Icon120 Beta-1.png │ │ │ ├── Icon120 Beta.png │ │ │ ├── Icon180 Beta.png │ │ │ ├── Icon40 Beta.png │ │ │ ├── Icon58 Beta.png │ │ │ ├── Icon60 Beta.png │ │ │ ├── Icon80 Beta.png │ │ │ └── Icon87 Beta.png │ │ ├── Contents.json │ │ └── codeLogo.imageset │ │ │ ├── Contents.json │ │ │ └── codeLogo.pdf │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── apple-app-site-association └── Utilities │ ├── Analytics.swift │ ├── Environment.swift │ ├── ErrorReporting.swift │ ├── Events.swift │ ├── InfoPlist.swift │ └── PhotoLibrary.swift ├── CodeAPI ├── .gitignore ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ └── xcschemes │ │ └── CodeAPI.xcscheme ├── Package.swift ├── README.md ├── Sources │ └── CodeAPI │ │ ├── Generated │ │ ├── account_v1_account_service.grpc.swift │ │ ├── account_v1_account_service.pb.swift │ │ ├── badge_v1_badge_service.grpc.swift │ │ ├── badge_v1_badge_service.pb.swift │ │ ├── chat_v1_chat_service.grpc.swift │ │ ├── chat_v1_chat_service.pb.swift │ │ ├── common_v1_model.pb.swift │ │ ├── contact_v1_contact_list_service.grpc.swift │ │ ├── contact_v1_contact_list_service.pb.swift │ │ ├── currency_v1_currency_service.grpc.swift │ │ ├── currency_v1_currency_service.pb.swift │ │ ├── device_v1_device_service.grpc.swift │ │ ├── device_v1_device_service.pb.swift │ │ ├── invite_v2_invite_service.grpc.swift │ │ ├── invite_v2_invite_service.pb.swift │ │ ├── messaging_v1_messaging_service.grpc.swift │ │ ├── messaging_v1_messaging_service.pb.swift │ │ ├── micropayment_v1_micro_payment_service.grpc.swift │ │ ├── micropayment_v1_micro_payment_service.pb.swift │ │ ├── phone_v1_phone_verification_service.grpc.swift │ │ ├── phone_v1_phone_verification_service.pb.swift │ │ ├── push_v1_push_service.grpc.swift │ │ ├── push_v1_push_service.pb.swift │ │ ├── transaction_v2_transaction_service.grpc.swift │ │ ├── transaction_v2_transaction_service.pb.swift │ │ ├── user_v1_identity_service.grpc.swift │ │ ├── user_v1_identity_service.pb.swift │ │ └── validate_validate.pb.swift │ │ ├── proto │ │ ├── account │ │ │ └── v1 │ │ │ │ └── account_service.proto │ │ ├── badge │ │ │ └── v1 │ │ │ │ └── badge_service.proto │ │ ├── chat │ │ │ └── v1 │ │ │ │ └── chat_service.proto │ │ ├── common │ │ │ └── v1 │ │ │ │ └── model.proto │ │ ├── contact │ │ │ └── v1 │ │ │ │ └── contact_list_service.proto │ │ ├── currency │ │ │ └── v1 │ │ │ │ └── currency_service.proto │ │ ├── device │ │ │ └── v1 │ │ │ │ └── device_service.proto │ │ ├── invite │ │ │ └── v2 │ │ │ │ └── invite_service.proto │ │ ├── messaging │ │ │ └── v1 │ │ │ │ └── messaging_service.proto │ │ ├── micropayment │ │ │ └── v1 │ │ │ │ └── micro_payment_service.proto │ │ ├── phone │ │ │ └── v1 │ │ │ │ └── phone_verification_service.proto │ │ ├── push │ │ │ └── v1 │ │ │ │ └── push_service.proto │ │ ├── transaction │ │ │ └── v2 │ │ │ │ └── transaction_service.proto │ │ ├── user │ │ │ └── v1 │ │ │ │ └── identity_service.proto │ │ └── validate │ │ │ └── validate.proto │ │ └── proto_deps │ │ └── validate │ │ └── validate.proto └── Tests │ └── CodeAPITests │ └── CodeAPITests.swift ├── CodeGrind ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── CodeGrind.entitlements ├── CodeGrindApp.swift ├── ContentView.swift ├── Grinder.swift └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── CodePushExtension ├── Info.plist └── NotificationService.swift ├── CodeScanner ├── CodeScanner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── CodeScanner.xcscheme ├── CodeScanner │ ├── Code.h │ ├── Code.mm │ ├── CodeScanner.h │ ├── Info.plist │ └── src │ │ ├── kikcode_constants.h │ │ ├── kikcode_encoding.cpp │ │ ├── kikcode_encoding.h │ │ ├── kikcode_encoding_jni.cpp │ │ ├── kikcode_encoding_jni.h │ │ ├── kikcode_scan.cpp │ │ ├── kikcode_scan.h │ │ ├── kikcode_scan_jni.cpp │ │ ├── kikcode_scan_jni.h │ │ ├── kikcodes.cpp │ │ ├── kikcodes.h │ │ ├── scanner.cpp │ │ ├── scanner.h │ │ └── zxing │ │ ├── Exception.cpp │ │ ├── Exception.h │ │ ├── IllegalStateException.h │ │ ├── ReaderException.h │ │ ├── ZXing.h │ │ └── common │ │ ├── Array.h │ │ ├── Counted.h │ │ ├── IllegalArgumentException.cpp │ │ ├── IllegalArgumentException.h │ │ └── reedsolomon │ │ ├── GenericGF.cpp │ │ ├── GenericGF.h │ │ ├── GenericGFPoly.cpp │ │ ├── GenericGFPoly.h │ │ ├── ReedSolomonDecoder.cpp │ │ ├── ReedSolomonDecoder.h │ │ ├── ReedSolomonEncoder.cpp │ │ ├── ReedSolomonEncoder.h │ │ ├── ReedSolomonException.cpp │ │ └── ReedSolomonException.h ├── CodeScannerTests │ ├── CodeScannerTests.swift │ └── Info.plist └── Frameworks │ └── opencv2.framework │ ├── Headers │ ├── Resources │ ├── Versions │ ├── A │ │ ├── Headers │ │ │ ├── calib3d.hpp │ │ │ ├── calib3d │ │ │ │ └── calib3d.hpp │ │ │ ├── contrib │ │ │ │ ├── contrib.hpp │ │ │ │ ├── detection_based_tracker.hpp │ │ │ │ ├── hybridtracker.hpp │ │ │ │ ├── openfabmap.hpp │ │ │ │ └── retina.hpp │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ │ ├── affine.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core_c.h │ │ │ │ ├── cuda_devptrs.hpp │ │ │ │ ├── devmem2d.hpp │ │ │ │ ├── eigen.hpp │ │ │ │ ├── gpumat.hpp │ │ │ │ ├── internal.hpp │ │ │ │ ├── mat.hpp │ │ │ │ ├── opengl_interop.hpp │ │ │ │ ├── opengl_interop_deprecated.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── types_c.h │ │ │ │ ├── version.hpp │ │ │ │ └── wimage.hpp │ │ │ ├── features2d.hpp │ │ │ ├── features2d │ │ │ │ └── features2d.hpp │ │ │ ├── flann.hpp │ │ │ ├── flann │ │ │ │ ├── all_indices.h │ │ │ │ ├── allocator.h │ │ │ │ ├── any.h │ │ │ │ ├── autotuned_index.h │ │ │ │ ├── composite_index.h │ │ │ │ ├── config.h │ │ │ │ ├── defines.h │ │ │ │ ├── dist.h │ │ │ │ ├── dummy.h │ │ │ │ ├── dynamic_bitset.h │ │ │ │ ├── flann.hpp │ │ │ │ ├── flann_base.hpp │ │ │ │ ├── general.h │ │ │ │ ├── ground_truth.h │ │ │ │ ├── hdf5.h │ │ │ │ ├── heap.h │ │ │ │ ├── hierarchical_clustering_index.h │ │ │ │ ├── index_testing.h │ │ │ │ ├── kdtree_index.h │ │ │ │ ├── kdtree_single_index.h │ │ │ │ ├── kmeans_index.h │ │ │ │ ├── linear_index.h │ │ │ │ ├── logger.h │ │ │ │ ├── lsh_index.h │ │ │ │ ├── lsh_table.h │ │ │ │ ├── matrix.h │ │ │ │ ├── miniflann.hpp │ │ │ │ ├── nn_index.h │ │ │ │ ├── object_factory.h │ │ │ │ ├── params.h │ │ │ │ ├── random.h │ │ │ │ ├── result_set.h │ │ │ │ ├── sampling.h │ │ │ │ ├── saving.h │ │ │ │ ├── simplex_downhill.h │ │ │ │ └── timer.h │ │ │ ├── highgui.hpp │ │ │ ├── highgui │ │ │ │ ├── cap_ios.h │ │ │ │ ├── highgui.hpp │ │ │ │ ├── highgui_c.h │ │ │ │ └── ios.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── imgproc_c.h │ │ │ │ └── types_c.h │ │ │ ├── legacy │ │ │ │ ├── blobtrack.hpp │ │ │ │ ├── compat.hpp │ │ │ │ ├── legacy.hpp │ │ │ │ └── streams.hpp │ │ │ ├── ml.hpp │ │ │ ├── ml │ │ │ │ └── ml.hpp │ │ │ ├── nonfree │ │ │ │ ├── features2d.hpp │ │ │ │ ├── gpu.hpp │ │ │ │ ├── nonfree.hpp │ │ │ │ └── ocl.hpp │ │ │ ├── objdetect.hpp │ │ │ ├── objdetect │ │ │ │ └── objdetect.hpp │ │ │ ├── opencv.hpp │ │ │ ├── opencv_modules.hpp │ │ │ ├── photo.hpp │ │ │ ├── photo │ │ │ │ ├── photo.hpp │ │ │ │ └── photo_c.h │ │ │ ├── stitching.hpp │ │ │ ├── stitching │ │ │ │ ├── detail │ │ │ │ │ ├── autocalib.hpp │ │ │ │ │ ├── blenders.hpp │ │ │ │ │ ├── camera.hpp │ │ │ │ │ ├── exposure_compensate.hpp │ │ │ │ │ ├── matchers.hpp │ │ │ │ │ ├── motion_estimators.hpp │ │ │ │ │ ├── seam_finders.hpp │ │ │ │ │ ├── util.hpp │ │ │ │ │ ├── util_inl.hpp │ │ │ │ │ ├── warpers.hpp │ │ │ │ │ └── warpers_inl.hpp │ │ │ │ ├── stitcher.hpp │ │ │ │ └── warpers.hpp │ │ │ ├── video.hpp │ │ │ ├── video │ │ │ │ ├── background_segm.hpp │ │ │ │ ├── tracking.hpp │ │ │ │ └── video.hpp │ │ │ ├── videostab.hpp │ │ │ ├── videostab │ │ │ │ ├── deblurring.hpp │ │ │ │ ├── fast_marching.hpp │ │ │ │ ├── fast_marching_inl.hpp │ │ │ │ ├── frame_source.hpp │ │ │ │ ├── global_motion.hpp │ │ │ │ ├── inpainting.hpp │ │ │ │ ├── log.hpp │ │ │ │ ├── motion_stabilizing.hpp │ │ │ │ ├── optical_flow.hpp │ │ │ │ ├── stabilizer.hpp │ │ │ │ └── videostab.hpp │ │ │ └── world │ │ │ │ └── world.hpp │ │ ├── Resources │ │ │ └── Info.plist │ │ └── opencv2 │ └── Current │ └── opencv2 ├── CodeServices ├── .gitignore ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── CodeServiceGen.xcscheme │ │ ├── CodeServices.xcscheme │ │ └── CodeServicesTests.xcscheme ├── Package.resolved ├── Package.swift ├── README.md ├── Sources │ ├── CodeServices │ │ ├── API │ │ │ ├── Client+Account.swift │ │ │ ├── Client+Badge.swift │ │ │ ├── Client+Chat.swift │ │ │ ├── Client+Currency.swift │ │ │ ├── Client+Device.swift │ │ │ ├── Client+Identity.swift │ │ │ ├── Client+Messaging.swift │ │ │ ├── Client+Phone.swift │ │ │ ├── Client+Push.swift │ │ │ ├── Client+Transaction.swift │ │ │ ├── Client.swift │ │ │ └── Services │ │ │ │ ├── AccountService.swift │ │ │ │ ├── BadgeService.swift │ │ │ │ ├── ChatService.swift │ │ │ │ ├── CodeService.swift │ │ │ │ ├── CurrencyService.swift │ │ │ │ ├── DeviceService.swift │ │ │ │ ├── Extensions │ │ │ │ ├── ClientConnection+Default.swift │ │ │ │ ├── Protobuf+Model.swift │ │ │ │ └── UnaryCall+Extensions.swift │ │ │ │ ├── IdentityService.swift │ │ │ │ ├── Interceptors │ │ │ │ ├── InterceptorFactory.swift │ │ │ │ └── UserAgentInterceptor.swift │ │ │ │ ├── MessagingService.swift │ │ │ │ ├── PhoneService.swift │ │ │ │ ├── PushService.swift │ │ │ │ ├── TransactionService+Swap.swift │ │ │ │ ├── TransactionService.swift │ │ │ │ └── Utilities │ │ │ │ ├── ConnectionPool.swift │ │ │ │ └── StreamReference.swift │ │ ├── Extensions │ │ │ ├── Byte+Data.swift │ │ │ ├── Data+Hex.swift │ │ │ ├── Data+PrettyPrinted.swift │ │ │ ├── Data+Slice.swift │ │ │ ├── Decimal+Double.swift │ │ │ ├── FixedWidthInteger+Bytes.swift │ │ │ ├── KeyPair+Rendezvous.swift │ │ │ └── Task+Delay.swift │ │ ├── Formatters │ │ │ ├── CurrencyFormatter.swift │ │ │ └── DateFormatter.swift │ │ ├── Hashes │ │ │ ├── HMAC.swift │ │ │ ├── HashType.swift │ │ │ ├── PBKDF.swift │ │ │ ├── SHA224.swift │ │ │ ├── SHA256.swift │ │ │ └── SHA512.swift │ │ ├── Logging │ │ │ └── Trace.swift │ │ ├── Models │ │ │ ├── AccountInfo.swift │ │ │ ├── AirdropType.swift │ │ │ ├── Chat.swift │ │ │ ├── CurrencyCode.swift │ │ │ ├── DateRange.swift │ │ │ ├── Domain.swift │ │ │ ├── Events │ │ │ │ └── IntentStatusEvent.swift │ │ │ ├── FAQ.swift │ │ │ ├── Fiat.swift │ │ │ ├── ID.swift │ │ │ ├── IntentMetadata.swift │ │ │ ├── Intents │ │ │ │ ├── Actions │ │ │ │ │ ├── ActionCloseEmptyAccount.swift │ │ │ │ │ ├── ActionFeePayment.swift │ │ │ │ │ ├── ActionOpenAccount.swift │ │ │ │ │ ├── ActionPrivacyUpgrade.swift │ │ │ │ │ ├── ActionTransfer.swift │ │ │ │ │ ├── ActionType.swift │ │ │ │ │ └── ActionWithdraw.swift │ │ │ │ ├── IntentCreateAccounts.swift │ │ │ │ ├── IntentDeposit.swift │ │ │ │ ├── IntentEstablishRelationship.swift │ │ │ │ ├── IntentMigratePrivacy.swift │ │ │ │ ├── IntentPrivateTransfer.swift │ │ │ │ ├── IntentPublicTransfer.swift │ │ │ │ ├── IntentReceive.swift │ │ │ │ ├── IntentRemoteReceive.swift │ │ │ │ ├── IntentRemoteSend.swift │ │ │ │ ├── IntentType.swift │ │ │ │ ├── IntentUpgradePrivacy.swift │ │ │ │ ├── ServerParameter.swift │ │ │ │ ├── SwapConfigParameters.swift │ │ │ │ └── SwapIntent.swift │ │ │ ├── Kin.swift │ │ │ ├── KinAmount.swift │ │ │ ├── Limits.swift │ │ │ ├── Network.swift │ │ │ ├── PaymentRequest.swift │ │ │ ├── Phone.swift │ │ │ ├── PhoneLink.swift │ │ │ ├── Rate.swift │ │ │ ├── Region.swift │ │ │ ├── SendDestination.swift │ │ │ ├── Time.swift │ │ │ ├── TipAccount.swift │ │ │ ├── TwitterUser.swift │ │ │ ├── UpgradeableIntent.swift │ │ │ ├── UpgradeablePrivateAction.swift │ │ │ ├── User+Codable.swift │ │ │ └── User.swift │ │ ├── Solana │ │ │ ├── AccountMeta.swift │ │ │ ├── AgoraMemo.swift │ │ │ ├── Builder │ │ │ │ └── TransactionBuilder.swift │ │ │ ├── Instruction.swift │ │ │ ├── Instructions │ │ │ │ ├── InstructionType.swift │ │ │ │ └── Programs │ │ │ │ │ ├── AssociatedTokenProgram.CreateAccount.swift │ │ │ │ │ ├── AssociatedTokenProgram.swift │ │ │ │ │ ├── ComputeBudgetProgram.RequestUnits.swift │ │ │ │ │ ├── ComputeBudgetProgram.SetComputeUnitLimit.swift │ │ │ │ │ ├── ComputeBudgetProgram.SetComputeUnitPrice.swift │ │ │ │ │ ├── ComputeBudgetProgram.swift │ │ │ │ │ ├── MemoProgram.Memo.swift │ │ │ │ │ ├── MemoProgram.swift │ │ │ │ │ ├── PublicKey+Definitions.swift │ │ │ │ │ ├── SplitterProgram.swift │ │ │ │ │ ├── SwapValidatorProgram.PostSwap.swift │ │ │ │ │ ├── SwapValidatorProgram.PreSwap.swift │ │ │ │ │ ├── SwapValidatorProgram.swift │ │ │ │ │ ├── SysVar.swift │ │ │ │ │ ├── SystemProgram.AdvanceNonce.swift │ │ │ │ │ ├── SystemProgram.CreateAccount.swift │ │ │ │ │ ├── SystemProgram.swift │ │ │ │ │ ├── TimelockProgram.BurnDustWithAuthority.swift │ │ │ │ │ ├── TimelockProgram.CloseAccounts.swift │ │ │ │ │ ├── TimelockProgram.DeactivateLock.swift │ │ │ │ │ ├── TimelockProgram.Initialize.swift │ │ │ │ │ ├── TimelockProgram.RevokeLockWithAuthority.swift │ │ │ │ │ ├── TimelockProgram.TransferWithAuthority.swift │ │ │ │ │ ├── TimelockProgram.Withdraw.swift │ │ │ │ │ ├── TimelockProgram.swift │ │ │ │ │ ├── TokenProgram.CloseAccount.swift │ │ │ │ │ ├── TokenProgram.InitializeAccount.swift │ │ │ │ │ ├── TokenProgram.SetAuthority.swift │ │ │ │ │ ├── TokenProgram.Transfer.swift │ │ │ │ │ └── TokenProgram.swift │ │ │ ├── Keys │ │ │ │ ├── Derive.Path.swift │ │ │ │ ├── Derive.swift │ │ │ │ ├── DerivedKey.swift │ │ │ │ ├── Key+Base64.swift │ │ │ │ ├── Key+Generate.swift │ │ │ │ ├── Key+Mnemonic.swift │ │ │ │ ├── Key.swift │ │ │ │ ├── KeyAccount+Codable.swift │ │ │ │ ├── KeyAccount.swift │ │ │ │ ├── KeyPair.swift │ │ │ │ ├── Language.swift │ │ │ │ ├── MerkleProof.swift │ │ │ │ ├── Mnemonic.swift │ │ │ │ ├── MnemonicPhrase.swift │ │ │ │ ├── ProgramDerivedAccount.swift │ │ │ │ ├── Sodium.swift │ │ │ │ └── Types.swift │ │ │ ├── Message.Header.swift │ │ │ ├── Message.swift │ │ │ ├── Organizer │ │ │ │ ├── AccountCluster.swift │ │ │ │ ├── AccountType.swift │ │ │ │ ├── GiftCardAccount.swift │ │ │ │ ├── Organizer.swift │ │ │ │ ├── PartialAccount.swift │ │ │ │ ├── Relationship.swift │ │ │ │ ├── RelationshipBox.swift │ │ │ │ ├── Slot.swift │ │ │ │ └── Tray.swift │ │ │ ├── ShortVec.swift │ │ │ └── SolanaTransaction.swift │ │ ├── Utilities │ │ │ ├── Cache.swift │ │ │ ├── Keychain.swift │ │ │ ├── Poller.swift │ │ │ └── Queue.swift │ │ └── Vendor │ │ │ └── Base58.swift │ └── ed25519 │ │ ├── add_scalar.c │ │ ├── ed25519.h │ │ ├── fe.c │ │ ├── fe.h │ │ ├── fixedint.h │ │ ├── ge.c │ │ ├── ge.h │ │ ├── include │ │ └── ed25519.h │ │ ├── key_exchange.c │ │ ├── keypair.c │ │ ├── precomp_data.h │ │ ├── sc.c │ │ ├── sc.h │ │ ├── seed.c │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── sign.c │ │ └── verify.c └── Tests │ └── CodeServicesTests │ ├── Extensions │ └── DataSliceTests.swift │ ├── Hashes │ └── HMAC+Tests.swift │ ├── Mocks │ └── SolanaTransaction+Mock.swift │ ├── Models │ ├── DomainTests.swift │ ├── Intents │ │ ├── Actions │ │ │ └── ActionTests.swift │ │ ├── IntentDepositTests.swift │ │ ├── IntentPublicTransferTests.swift │ │ ├── IntentReceiveTests.swift │ │ └── IntentTransferTests.swift │ ├── KinTests.swift │ ├── RegionTests.swift │ ├── SodiumTests.swift │ └── UUIDTests.swift │ ├── Solana │ ├── Builder │ │ └── TransactionBuilderTests.swift │ ├── Encoding │ │ ├── AgoraMemoTests.swift │ │ ├── MessageTests.swift │ │ ├── ProgramTests.swift │ │ ├── ShortVecTests.swift │ │ └── TransactionEncodingTests.swift │ ├── Instructions │ │ └── Programs │ │ │ ├── SwapValidatorProgramTests.swift │ │ │ ├── TimelockProgram.BurnDustWithAuthorityTests.swift │ │ │ ├── TimelockProgram.CloseAccountsTests.swift │ │ │ ├── TimelockProgram.DeactivateLockTests.swift │ │ │ ├── TimelockProgram.InitializeTests.swift │ │ │ ├── TimelockProgram.RevokeLockWithAuthorityTests.swift │ │ │ ├── TimelockProgram.TransferWithAuthorityTests.swift │ │ │ └── TimelockProgram.WithdrawTests.swift │ ├── Keys │ │ ├── Derive.PathTests.swift │ │ ├── DeriveTests.swift │ │ ├── KeyAccountCodableTests.swift │ │ ├── KeyBIP39Tests.swift │ │ ├── KeyTests.swift │ │ ├── MerkleProofTests.swift │ │ ├── MnemonicPhraseTests.swift │ │ ├── MnemonicTests.swift │ │ └── ProgramDerivedAccountTests.swift │ ├── Organizer │ │ ├── OrganizerTests.swift │ │ ├── RelationshipBoxTests.swift │ │ ├── RelationshipTests.swift │ │ ├── SlotTests.swift │ │ └── TrayTests.swift │ └── SolanaTransactionTests.swift │ ├── Utilities │ ├── QueueTests.swift │ └── XCTestCase+Expect.swift │ └── Vendor │ └── Base58Tests.swift ├── CodeTests ├── Controllers │ ├── DeepLinkControllerTests.swift │ └── NotificationExtensionTests.swift ├── Extensions │ └── String+PaddingTests.swift ├── Extraction │ ├── Code.Payload+EncodingTests.swift │ ├── EncodingTests.swift │ └── RedundancyContainerTests.swift ├── Info.plist ├── Models │ ├── DeepLinkPaymentRequestTests.swift │ ├── RouteTests.swift │ └── StopwatchTests.swift └── Screens │ └── MessageList+Tests.swift ├── CodeUI ├── .gitignore ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ └── xcschemes │ │ └── CodeUI.xcscheme ├── Package.swift ├── README.md ├── Sources │ └── CodeUI │ │ ├── Assets │ │ ├── Fonts │ │ │ ├── Avenir │ │ │ │ ├── AvenirNextLTPro-Demi.otf │ │ │ │ ├── AvenirNextLTPro-Medium.otf │ │ │ │ └── AvenirNextLTPro-Regular.otf │ │ │ ├── Manrope │ │ │ │ ├── Manrope-Bold.ttf │ │ │ │ ├── Manrope-ExtraBold.ttf │ │ │ │ ├── Manrope-ExtraLight.ttf │ │ │ │ ├── Manrope-Light.ttf │ │ │ │ ├── Manrope-Medium.ttf │ │ │ │ ├── Manrope-Regular.ttf │ │ │ │ └── Manrope-SemiBold.ttf │ │ │ └── Roboto │ │ │ │ └── RobotoMono-Regular.ttf │ │ └── UI.xcassets │ │ │ ├── Contents.json │ │ │ ├── bill │ │ │ ├── Contents.json │ │ │ ├── globe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── globe.pdf │ │ │ ├── grid.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── grid.pdf │ │ │ ├── hexagons.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hexagons.pdf │ │ │ ├── securityStrip.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── securityStrip.pdf │ │ │ └── waves.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── waves.pdf │ │ │ ├── brand │ │ │ ├── Contents.json │ │ │ ├── bell.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bell.pdf │ │ │ ├── codeBrand.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── codeBrand.pdf │ │ │ ├── codeLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── codeLogo.pdf │ │ │ ├── deleteBubble.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── deleteBubble.pdf │ │ │ ├── graphicCameraAccess.imageset │ │ │ │ ├── Bill-Phone.png │ │ │ │ ├── Bill-Phone@2x.png │ │ │ │ ├── Bill-Phone@3x.png │ │ │ │ └── Contents.json │ │ │ ├── graphicPushPermission.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── graphicPushPermission.png │ │ │ │ ├── graphicPushPermission@2x.png │ │ │ │ └── graphicPushPermission@3x.png │ │ │ ├── graphicWallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── graphicWallet.pdf │ │ │ ├── inviteLetter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── inviteLetter.pdf │ │ │ ├── kado.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kado.pdf │ │ │ ├── logoAndroid.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logoAndroid.pdf │ │ │ ├── logoApple.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logoApple.pdf │ │ │ ├── telephoneFilled.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── telephoneFilled.pdf │ │ │ ├── telephoneOutline.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── telephoneOutline.pdf │ │ │ ├── twitter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── twitter.pdf │ │ │ ├── twitterBlue.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── twitterBlue.pdf │ │ │ ├── twitterGold.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── twitterGold.pdf │ │ │ ├── twitterGrey.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── twitterGrey.pdf │ │ │ ├── videoBuyKin.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── videoBuyKin@2x.jpg │ │ │ │ └── videoBuyKin@3x.jpg │ │ │ └── videoSellKin.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── videoSellKin@2x.jpg │ │ │ │ └── videoSellKin@3x.jpg │ │ │ ├── buttons │ │ │ ├── Contents.json │ │ │ ├── chat.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat.pdf │ │ │ ├── close.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── close.pdf │ │ │ ├── google.button.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── google.button.pdf │ │ │ ├── hex.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hex.pdf │ │ │ ├── history.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── history.pdf │ │ │ ├── invites.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── invites.pdf │ │ │ ├── invites.new.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── invites.new.pdf │ │ │ ├── kin.button.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kin.button.pdf │ │ │ ├── kin.button.large.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kin.button.large.pdf │ │ │ ├── tipcard.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tipcard.pdf │ │ │ └── wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wallet.pdf │ │ │ ├── flags (currency) │ │ │ ├── Contents.json │ │ │ ├── KIN.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── KIN.pdf │ │ │ ├── XAF.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── XAF.pdf │ │ │ └── XOF.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── XOF.pdf │ │ │ ├── flags (region) │ │ │ ├── Contents.json │ │ │ ├── ad.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ad.pdf │ │ │ ├── ae.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ae.pdf │ │ │ ├── af.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── af.pdf │ │ │ ├── ag.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ag.pdf │ │ │ ├── ai.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ai.pdf │ │ │ ├── al.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── al.pdf │ │ │ ├── am.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── am.pdf │ │ │ ├── an.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── an.pdf │ │ │ ├── ao.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ao.pdf │ │ │ ├── aq.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aq.pdf │ │ │ ├── ar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ar.pdf │ │ │ ├── as.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── as.pdf │ │ │ ├── at.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── at.pdf │ │ │ ├── au.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── au.pdf │ │ │ ├── aw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aw.pdf │ │ │ ├── ax.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ax.pdf │ │ │ ├── az.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── az.pdf │ │ │ ├── ba.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ba.pdf │ │ │ ├── bb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bb.pdf │ │ │ ├── bd.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bd.pdf │ │ │ ├── be.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── be.pdf │ │ │ ├── bf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bf.pdf │ │ │ ├── bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bg.pdf │ │ │ ├── bh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bh.pdf │ │ │ ├── bi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bi.pdf │ │ │ ├── bj.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bj.pdf │ │ │ ├── bl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bl.pdf │ │ │ ├── bm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bm.pdf │ │ │ ├── bn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bn.pdf │ │ │ ├── bo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bo.pdf │ │ │ ├── bq.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bq.pdf │ │ │ ├── br.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── br.pdf │ │ │ ├── bs.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bs.pdf │ │ │ ├── bt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bt.pdf │ │ │ ├── bv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bv.pdf │ │ │ ├── bw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bw.pdf │ │ │ ├── by.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── by.pdf │ │ │ ├── bz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bz.pdf │ │ │ ├── ca.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ca.pdf │ │ │ ├── cc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cc.pdf │ │ │ ├── cd.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cd.pdf │ │ │ ├── cf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cf.pdf │ │ │ ├── cg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cg.pdf │ │ │ ├── ch.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ch.pdf │ │ │ ├── ci.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ci.pdf │ │ │ ├── ck.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ck.pdf │ │ │ ├── cl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cl.pdf │ │ │ ├── cm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cm.pdf │ │ │ ├── cn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cn.pdf │ │ │ ├── co.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── co.pdf │ │ │ ├── cr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cr.pdf │ │ │ ├── cu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cu.pdf │ │ │ ├── cv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cv.pdf │ │ │ ├── cw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cw.pdf │ │ │ ├── cx.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cx.pdf │ │ │ ├── cy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cy.pdf │ │ │ ├── cz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cz.pdf │ │ │ ├── de.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── de.pdf │ │ │ ├── dj.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dj.pdf │ │ │ ├── dk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dk.pdf │ │ │ ├── dm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dm.pdf │ │ │ ├── do.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── do.pdf │ │ │ ├── dz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dz.pdf │ │ │ ├── ec.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ec.pdf │ │ │ ├── ee.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ee.pdf │ │ │ ├── eg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eg.pdf │ │ │ ├── eh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eh.pdf │ │ │ ├── eo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eo.pdf │ │ │ ├── er.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── er.pdf │ │ │ ├── es.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── es.pdf │ │ │ ├── et.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── et.pdf │ │ │ ├── eu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eu.pdf │ │ │ ├── fi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fi.pdf │ │ │ ├── fj.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fj.pdf │ │ │ ├── fk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fk.pdf │ │ │ ├── fm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fm.pdf │ │ │ ├── fo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fo.pdf │ │ │ ├── fr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fr.pdf │ │ │ ├── ga.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ga.pdf │ │ │ ├── gb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gb.pdf │ │ │ ├── gd.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gd.pdf │ │ │ ├── ge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ge.pdf │ │ │ ├── gf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gf.pdf │ │ │ ├── gg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gg.pdf │ │ │ ├── gh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gh.pdf │ │ │ ├── gi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gi.pdf │ │ │ ├── gl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gl.pdf │ │ │ ├── gm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gm.pdf │ │ │ ├── gn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gn.pdf │ │ │ ├── gp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gp.pdf │ │ │ ├── gq.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gq.pdf │ │ │ ├── gr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gr.pdf │ │ │ ├── gs.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gs.pdf │ │ │ ├── gt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gt.pdf │ │ │ ├── gu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gu.pdf │ │ │ ├── gw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gw.pdf │ │ │ ├── gy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gy.pdf │ │ │ ├── hk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hk.pdf │ │ │ ├── hm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hm.pdf │ │ │ ├── hn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hn.pdf │ │ │ ├── hr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hr.pdf │ │ │ ├── ht.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ht.pdf │ │ │ ├── hu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hu.pdf │ │ │ ├── id.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── id.pdf │ │ │ ├── ie.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ie.pdf │ │ │ ├── il.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── il.pdf │ │ │ ├── im.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── im.pdf │ │ │ ├── in.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── in.pdf │ │ │ ├── io.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── io.pdf │ │ │ ├── iq.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iq.pdf │ │ │ ├── ir.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ir.pdf │ │ │ ├── is.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── is.pdf │ │ │ ├── it.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── it.pdf │ │ │ ├── je.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── je.pdf │ │ │ ├── jm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jm.pdf │ │ │ ├── jo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jo.pdf │ │ │ ├── jp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jp.pdf │ │ │ ├── ke.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ke.pdf │ │ │ ├── kg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kg.pdf │ │ │ ├── kh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kh.pdf │ │ │ ├── ki.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ki.pdf │ │ │ ├── km.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── km.pdf │ │ │ ├── kn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kn.pdf │ │ │ ├── kp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kp.pdf │ │ │ ├── kr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kr.pdf │ │ │ ├── kw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kw.pdf │ │ │ ├── ky.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ky.pdf │ │ │ ├── kz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kz.pdf │ │ │ ├── la.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── la.pdf │ │ │ ├── lb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lb.pdf │ │ │ ├── lc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lc.pdf │ │ │ ├── li.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── li.pdf │ │ │ ├── lk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lk.pdf │ │ │ ├── lr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lr.pdf │ │ │ ├── ls.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ls.pdf │ │ │ ├── lt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lt.pdf │ │ │ ├── lu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lu.pdf │ │ │ ├── lv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lv.pdf │ │ │ ├── ly.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ly.pdf │ │ │ ├── ma.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ma.pdf │ │ │ ├── mc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mc.pdf │ │ │ ├── md.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── md.pdf │ │ │ ├── me.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── me.pdf │ │ │ ├── mf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mf.pdf │ │ │ ├── mg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mg.pdf │ │ │ ├── mh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mh.pdf │ │ │ ├── mk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mk.pdf │ │ │ ├── ml.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ml.pdf │ │ │ ├── mm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mm.pdf │ │ │ ├── mn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mn.pdf │ │ │ ├── mo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mo.pdf │ │ │ ├── mp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mp.pdf │ │ │ ├── mq.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mq.pdf │ │ │ ├── mr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mr.pdf │ │ │ ├── ms.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ms.pdf │ │ │ ├── mt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mt.pdf │ │ │ ├── mu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mu.pdf │ │ │ ├── mv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mv.pdf │ │ │ ├── mw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mw.pdf │ │ │ ├── mx.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mx.pdf │ │ │ ├── my.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── my.pdf │ │ │ ├── mz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mz.pdf │ │ │ ├── na.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── na.pdf │ │ │ ├── nc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nc.pdf │ │ │ ├── ne.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ne.pdf │ │ │ ├── nf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nf.pdf │ │ │ ├── ng.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ng.pdf │ │ │ ├── ni.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ni.pdf │ │ │ ├── nl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nl.pdf │ │ │ ├── no.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── no.pdf │ │ │ ├── np.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── np.pdf │ │ │ ├── nr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nr.pdf │ │ │ ├── nu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nu.pdf │ │ │ ├── nz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nz.pdf │ │ │ ├── om.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── om.pdf │ │ │ ├── pa.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pa.pdf │ │ │ ├── pe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pe.pdf │ │ │ ├── pf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pf.pdf │ │ │ ├── pg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pg.pdf │ │ │ ├── ph.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ph.pdf │ │ │ ├── pk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pk.pdf │ │ │ ├── pl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pl.pdf │ │ │ ├── pm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pm.pdf │ │ │ ├── pn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pn.pdf │ │ │ ├── pr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pr.pdf │ │ │ ├── ps.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ps.pdf │ │ │ ├── pt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pt.pdf │ │ │ ├── pw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pw.pdf │ │ │ ├── py.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── py.pdf │ │ │ ├── qa.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qa.pdf │ │ │ ├── re.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── re.pdf │ │ │ ├── ro.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ro.pdf │ │ │ ├── rs.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rs.pdf │ │ │ ├── ru.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ru.pdf │ │ │ ├── rw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rw.pdf │ │ │ ├── sa.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sa.pdf │ │ │ ├── sb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sb.pdf │ │ │ ├── sc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sc.pdf │ │ │ ├── sd.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sd.pdf │ │ │ ├── se.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── se.pdf │ │ │ ├── sg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sg.pdf │ │ │ ├── sh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sh.pdf │ │ │ ├── si.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── si.pdf │ │ │ ├── sj.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sj.pdf │ │ │ ├── sk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sk.pdf │ │ │ ├── sl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sl.pdf │ │ │ ├── sm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sm.pdf │ │ │ ├── sn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sn.pdf │ │ │ ├── so.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── so.pdf │ │ │ ├── sr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sr.pdf │ │ │ ├── ss.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ss.pdf │ │ │ ├── st.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── st.pdf │ │ │ ├── sv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sv.pdf │ │ │ ├── sx.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sx.pdf │ │ │ ├── sy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sy.pdf │ │ │ ├── sz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sz.pdf │ │ │ ├── tc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tc.pdf │ │ │ ├── td.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── td.pdf │ │ │ ├── tf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tf.pdf │ │ │ ├── tg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tg.pdf │ │ │ ├── th.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── th.pdf │ │ │ ├── tj.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tj.pdf │ │ │ ├── tk.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tk.pdf │ │ │ ├── tl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tl.pdf │ │ │ ├── tm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tm.pdf │ │ │ ├── tn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tn.pdf │ │ │ ├── to.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── to.pdf │ │ │ ├── tr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tr.pdf │ │ │ ├── tt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tt.pdf │ │ │ ├── tv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tv.pdf │ │ │ ├── tw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tw.pdf │ │ │ ├── tz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tz.pdf │ │ │ ├── ua.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ua.pdf │ │ │ ├── ug.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ug.pdf │ │ │ ├── um.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── um.pdf │ │ │ ├── us.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── us.pdf │ │ │ ├── uy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── uy.pdf │ │ │ ├── uz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── uz.pdf │ │ │ ├── va.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── va.pdf │ │ │ ├── vc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── vc.pdf │ │ │ ├── ve.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ve.pdf │ │ │ ├── vg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── vg.pdf │ │ │ ├── vi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── vi.pdf │ │ │ ├── vn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── vn.pdf │ │ │ ├── vu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── vu.pdf │ │ │ ├── wf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wf.pdf │ │ │ ├── ws.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ws.pdf │ │ │ ├── ye.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ye.pdf │ │ │ ├── yt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── yt.pdf │ │ │ ├── za.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── za.pdf │ │ │ ├── zm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── zm.pdf │ │ │ ├── zw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── zw.pdf │ │ │ └── zz.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── zz.pdf │ │ │ ├── icons │ │ │ ├── Contents.json │ │ │ ├── camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── camera.pdf │ │ │ ├── cancel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cancel.pdf │ │ │ ├── debug.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── debug.pdf │ │ │ ├── delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── delete.pdf │ │ │ ├── deposit.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── deposit.pdf │ │ │ ├── dollar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dollar.pdf │ │ │ ├── done.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── done.pdf │ │ │ ├── faq.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── faq.pdf │ │ │ ├── gift.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gift.pdf │ │ │ ├── hamburger.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hamburger.pdf │ │ │ ├── key.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── key.pdf │ │ │ ├── logout.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logout.pdf │ │ │ ├── myAccount.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── myAccount.pdf │ │ │ ├── paperplane.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── paperplane.pdf │ │ │ ├── phone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── phone.pdf │ │ │ ├── photo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── photo.pdf │ │ │ ├── reload.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── reload.pdf │ │ │ ├── send.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── send.pdf │ │ │ ├── send2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── send2.pdf │ │ │ ├── settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── settings.pdf │ │ │ ├── statusDelivered.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── statusDelivered.pdf │ │ │ ├── statusRead.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── statusRead.pdf │ │ │ ├── statusSent.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── statusSent.pdf │ │ │ ├── switchAccounts.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── switchAccounts.pdf │ │ │ ├── tip.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tip.pdf │ │ │ └── withdraw.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── withdraw.pdf │ │ │ ├── symbols │ │ │ ├── Contents.json │ │ │ ├── code.symbolset │ │ │ │ ├── Contents.json │ │ │ │ └── code.fill.svg │ │ │ ├── google.symbolset │ │ │ │ ├── Contents.json │ │ │ │ └── google.fill.svg │ │ │ ├── hex.large.fill.symbolset │ │ │ │ ├── Contents.json │ │ │ │ └── hex.large.fill.svg │ │ │ ├── hex.small.fill.symbolset │ │ │ │ ├── Contents.json │ │ │ │ └── hex.small.fill.svg │ │ │ ├── kin.large.symbolset │ │ │ │ ├── Contents.json │ │ │ │ └── kin.large.svg │ │ │ └── kin.symbolset │ │ │ │ ├── Contents.json │ │ │ │ └── kin.fill.small.svg │ │ │ └── vectors │ │ │ ├── Contents.json │ │ │ ├── checkmark.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark.pdf │ │ │ ├── checkmarkLarge.imageset │ │ │ ├── Contents.json │ │ │ └── checkmarkLarge.pdf │ │ │ └── youtube.imageset │ │ │ ├── Contents.json │ │ │ └── youtube.pdf │ │ ├── Camera │ │ ├── CameraAuthorizer.swift │ │ ├── CameraOverlay.swift │ │ ├── CameraPreviewView.swift │ │ ├── CameraSession.swift │ │ └── CameraSessionExtractor.swift │ │ ├── Controllers │ │ └── CountdownTimer.swift │ │ ├── Graph │ │ ├── Chart.swift │ │ ├── DataSet.swift │ │ ├── Shapes │ │ │ └── LineShape.swift │ │ └── ValueAnnotation.swift │ │ ├── Haptic Feedback │ │ └── Feedback.swift │ │ ├── Internal │ │ └── Binding+Observers.swift │ │ ├── List │ │ ├── ListFooter.swift │ │ └── ListHeader.swift │ │ ├── Math │ │ └── Curve.swift │ │ ├── Metrics.swift │ │ ├── Modifiers │ │ ├── Badged.swift │ │ ├── Conditional.swift │ │ ├── Draggable.swift │ │ ├── Loading.swift │ │ ├── Separator.swift │ │ └── Tooltip.swift │ │ ├── Navigation │ │ └── Flow.swift │ │ ├── Placeholders │ │ └── Data+Bill.swift │ │ ├── Sheets │ │ └── SheetEnablePush.swift │ │ ├── Theme │ │ ├── AppFonts.swift │ │ ├── Color.swift │ │ ├── FontBook.swift │ │ ├── Image+Symbols.swift │ │ └── UIImage+Color.swift │ │ ├── Transitions │ │ ├── Animations.swift │ │ └── PopTransition.swift │ │ ├── Types.swift │ │ ├── View Controllers │ │ ├── PhotoPickerView.swift │ │ └── SafariView.swift │ │ ├── Views │ │ ├── AccessKey.swift │ │ ├── AmountField.swift │ │ ├── AmountText.swift │ │ ├── Badge.swift │ │ ├── Bill │ │ │ ├── BillView.swift │ │ │ ├── CodeView.swift │ │ │ ├── KikCode.swift │ │ │ ├── LoginBillView.swift │ │ │ ├── RequestView.swift │ │ │ └── TwitterBillView.swift │ │ ├── Bubble.swift │ │ ├── Buttons │ │ │ ├── AvatarView.swift │ │ │ ├── BarButton.swift │ │ │ ├── BlurButton.swift │ │ │ ├── BubbleButton.swift │ │ │ ├── ButtonState.swift │ │ │ ├── CapsuleButton.swift │ │ │ ├── CodeButton.swift │ │ │ ├── HapticButton.swift │ │ │ ├── LargeButton.swift │ │ │ └── RoundButton.swift │ │ ├── CheckView.swift │ │ ├── CodeBrand.swift │ │ ├── Containers │ │ │ ├── Background.swift │ │ │ ├── BlurPillView.swift │ │ │ ├── BlurView.swift │ │ │ ├── BorderedContainer.swift │ │ │ ├── InputContainer.swift │ │ │ ├── LazyTable.swift │ │ │ ├── LazyView.swift │ │ │ ├── Loadable.swift │ │ │ ├── PartialSheet.swift │ │ │ ├── Row.swift │ │ │ ├── ScrollBox.swift │ │ │ ├── SheetView.swift │ │ │ ├── ToastContainer.swift │ │ │ └── VerticalContainer.swift │ │ ├── Controls │ │ │ └── SegmentedControl.swift │ │ ├── CurrencyText.swift │ │ ├── CustomTextField.swift │ │ ├── Flag.swift │ │ ├── HandleView.swift │ │ ├── Hex.swift │ │ ├── Images │ │ │ └── SystemCircle.swift │ │ ├── ImmutableField.swift │ │ ├── InitialAvatarView.swift │ │ ├── KeyPadView.swift │ │ ├── KinText.swift │ │ ├── LoadingView.swift │ │ ├── ModalHeaderBar.swift │ │ ├── Modals │ │ │ └── SwipeControl.swift │ │ ├── MultitouchView.swift │ │ ├── Preview.swift │ │ ├── QRCode.swift │ │ ├── RectEdgeShape.swift │ │ ├── SearchBar.swift │ │ ├── SeedView.swift │ │ ├── Shapes │ │ │ └── UnevenRoundedCorners.swift │ │ ├── TextBubble.swift │ │ ├── Toolbar Buttons │ │ │ └── ToolbarCloseButton.swift │ │ ├── TwoFactorCodeView.swift │ │ ├── ViewReader.swift │ │ └── WebKitView.swift │ │ └── iOS Version Support │ │ └── iOS 16.swift └── Tests │ └── CodeUIMTests │ └── DataSetTests.swift ├── CodeUITests ├── CodeUITests.swift └── Info.plist ├── Configurations └── base.xcconfig ├── LICENSE ├── README.md ├── SECURITY.md ├── Scripts ├── count ├── generate ├── gengoogle ├── genstrings ├── pull_protos ├── pull_secrets ├── pull_secrets_if_needed ├── pull_strings ├── resources │ └── mutable_push.json ├── run ├── test └── testpush ├── Shared ├── Chat+Extensions.swift ├── Kin+Formatting.swift ├── Localization │ ├── Localizable.stringsdict │ ├── Localized.swift │ ├── ar.lproj │ │ └── Localizable.strings │ ├── be.lproj │ │ └── Localizable.strings │ ├── bg.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── el.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── et.lproj │ │ └── Localizable.strings │ ├── fa.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hi.lproj │ │ └── Localizable.strings │ ├── hr.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── id.lproj │ │ └── Localizable.strings │ ├── is.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── ms.lproj │ │ └── Localizable.strings │ ├── nb.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── no.lproj │ │ └── Localizable.strings │ ├── pa.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt.lproj │ │ └── Localizable.strings │ ├── ro.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ └── Localizable.strings │ ├── sr.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── th.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ └── Localizable.strings │ └── vi.lproj │ │ └── Localizable.strings ├── NotificationModifier.swift ├── PrivacyInfo.xcprivacy ├── String+Localized.swift └── String+Padding.swift ├── Support └── status.json └── Vendor └── opencv2.framework ├── Headers ├── Resources ├── Versions ├── A │ ├── Headers │ │ ├── calib3d.hpp │ │ ├── calib3d │ │ │ └── calib3d.hpp │ │ ├── contrib │ │ │ ├── contrib.hpp │ │ │ ├── detection_based_tracker.hpp │ │ │ ├── hybridtracker.hpp │ │ │ ├── openfabmap.hpp │ │ │ └── retina.hpp │ │ ├── core.hpp │ │ ├── core │ │ │ ├── affine.hpp │ │ │ ├── core.hpp │ │ │ ├── core_c.h │ │ │ ├── cuda_devptrs.hpp │ │ │ ├── devmem2d.hpp │ │ │ ├── eigen.hpp │ │ │ ├── gpumat.hpp │ │ │ ├── internal.hpp │ │ │ ├── mat.hpp │ │ │ ├── opengl_interop.hpp │ │ │ ├── opengl_interop_deprecated.hpp │ │ │ ├── operations.hpp │ │ │ ├── types_c.h │ │ │ ├── version.hpp │ │ │ └── wimage.hpp │ │ ├── features2d.hpp │ │ ├── features2d │ │ │ └── features2d.hpp │ │ ├── flann.hpp │ │ ├── flann │ │ │ ├── all_indices.h │ │ │ ├── allocator.h │ │ │ ├── any.h │ │ │ ├── autotuned_index.h │ │ │ ├── composite_index.h │ │ │ ├── config.h │ │ │ ├── defines.h │ │ │ ├── dist.h │ │ │ ├── dummy.h │ │ │ ├── dynamic_bitset.h │ │ │ ├── flann.hpp │ │ │ ├── flann_base.hpp │ │ │ ├── general.h │ │ │ ├── ground_truth.h │ │ │ ├── hdf5.h │ │ │ ├── heap.h │ │ │ ├── hierarchical_clustering_index.h │ │ │ ├── index_testing.h │ │ │ ├── kdtree_index.h │ │ │ ├── kdtree_single_index.h │ │ │ ├── kmeans_index.h │ │ │ ├── linear_index.h │ │ │ ├── logger.h │ │ │ ├── lsh_index.h │ │ │ ├── lsh_table.h │ │ │ ├── matrix.h │ │ │ ├── miniflann.hpp │ │ │ ├── nn_index.h │ │ │ ├── object_factory.h │ │ │ ├── params.h │ │ │ ├── random.h │ │ │ ├── result_set.h │ │ │ ├── sampling.h │ │ │ ├── saving.h │ │ │ ├── simplex_downhill.h │ │ │ └── timer.h │ │ ├── highgui.hpp │ │ ├── highgui │ │ │ ├── cap_ios.h │ │ │ ├── highgui.hpp │ │ │ ├── highgui_c.h │ │ │ └── ios.h │ │ ├── imgproc.hpp │ │ ├── imgproc │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc_c.h │ │ │ └── types_c.h │ │ ├── legacy │ │ │ ├── blobtrack.hpp │ │ │ ├── compat.hpp │ │ │ ├── legacy.hpp │ │ │ └── streams.hpp │ │ ├── ml.hpp │ │ ├── ml │ │ │ └── ml.hpp │ │ ├── nonfree │ │ │ ├── features2d.hpp │ │ │ ├── gpu.hpp │ │ │ ├── nonfree.hpp │ │ │ └── ocl.hpp │ │ ├── objdetect.hpp │ │ ├── objdetect │ │ │ └── objdetect.hpp │ │ ├── opencv.hpp │ │ ├── opencv_modules.hpp │ │ ├── photo.hpp │ │ ├── photo │ │ │ ├── photo.hpp │ │ │ └── photo_c.h │ │ ├── stitching.hpp │ │ ├── stitching │ │ │ ├── detail │ │ │ │ ├── autocalib.hpp │ │ │ │ ├── blenders.hpp │ │ │ │ ├── camera.hpp │ │ │ │ ├── exposure_compensate.hpp │ │ │ │ ├── matchers.hpp │ │ │ │ ├── motion_estimators.hpp │ │ │ │ ├── seam_finders.hpp │ │ │ │ ├── util.hpp │ │ │ │ ├── util_inl.hpp │ │ │ │ ├── warpers.hpp │ │ │ │ └── warpers_inl.hpp │ │ │ ├── stitcher.hpp │ │ │ └── warpers.hpp │ │ ├── video.hpp │ │ ├── video │ │ │ ├── background_segm.hpp │ │ │ ├── tracking.hpp │ │ │ └── video.hpp │ │ ├── videostab.hpp │ │ ├── videostab │ │ │ ├── deblurring.hpp │ │ │ ├── fast_marching.hpp │ │ │ ├── fast_marching_inl.hpp │ │ │ ├── frame_source.hpp │ │ │ ├── global_motion.hpp │ │ │ ├── inpainting.hpp │ │ │ ├── log.hpp │ │ │ ├── motion_stabilizing.hpp │ │ │ ├── optical_flow.hpp │ │ │ ├── stabilizer.hpp │ │ │ └── videostab.hpp │ │ └── world │ │ │ └── world.hpp │ ├── Resources │ │ └── Info.plist │ └── opencv2 └── Current └── opencv2 /.gitattributes: -------------------------------------------------------------------------------- 1 | Vendor/* linguist-vendored 2 | */*.framework/* linguist-vendored 3 | 4 | */*.framework/* linguist-generated 5 | -------------------------------------------------------------------------------- /Code.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/Codes/Code.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Code.swift 3 | // Code 4 | // 5 | // Created by Dima Bart on 2021-02-02. 6 | // 7 | 8 | import Foundation 9 | 10 | enum Code {} 11 | -------------------------------------------------------------------------------- /Code/Extraction/Code.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Code.swift 3 | // Code 4 | // 5 | // Created by Dima Bart on 2021-02-02. 6 | // 7 | 8 | import Foundation 9 | 10 | enum Code {} 11 | -------------------------------------------------------------------------------- /Code/Guards.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Guards.swift 3 | // Code 4 | // 5 | // Created by Dima Bart on 2022-05-17. 6 | // 7 | 8 | #if !DEBUG && CODEDEV 9 | //#error("Code must be on the production environment for release.") 10 | #endif 11 | -------------------------------------------------------------------------------- /Code/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon120-1.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon1024 Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon1024 Beta.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon120 Beta-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon120 Beta-1.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon120 Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon120 Beta.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon180 Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon180 Beta.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon40 Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon40 Beta.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon58 Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon58 Beta.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon60 Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon60 Beta.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon80 Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon80 Beta.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon87 Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/AppIcon.beta.appiconset/Icon87 Beta.png -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/codeLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "codeLogo.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Code/Supporting Files/Assets.xcassets/codeLogo.imageset/codeLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Code/Supporting Files/Assets.xcassets/codeLogo.imageset/codeLogo.pdf -------------------------------------------------------------------------------- /CodeAPI/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | DerivedData/ 7 | .swiftpm/config/registries.json 8 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 9 | .netrc 10 | -------------------------------------------------------------------------------- /CodeAPI/README.md: -------------------------------------------------------------------------------- 1 | # CodeAPI 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /CodeAPI/Tests/CodeAPITests/CodeAPITests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | @testable import CodeAPI 3 | 4 | final class CodeAPITests: XCTestCase { 5 | func testExample() throws {} 6 | } 7 | -------------------------------------------------------------------------------- /CodeGrind/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /CodeGrind/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeGrind/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeScanner/CodeScanner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CodeScanner/CodeScanner/src/kikcode_constants.h: -------------------------------------------------------------------------------- 1 | #ifndef __KIKCODE_CONSTANTS_H__ 2 | #define __KIKCODE_CONSTANTS_H__ 3 | 4 | #define KIK_CODE_TOTAL_BYTE_COUNT 35 5 | 6 | #endif // __KIKCODE_CONSTANTS_H__ 7 | -------------------------------------------------------------------------------- /CodeScanner/Frameworks/opencv2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /CodeScanner/Frameworks/opencv2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /CodeScanner/Frameworks/opencv2.framework/Versions/A/opencv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeScanner/Frameworks/opencv2.framework/Versions/A/opencv2 -------------------------------------------------------------------------------- /CodeScanner/Frameworks/opencv2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /CodeScanner/Frameworks/opencv2.framework/opencv2: -------------------------------------------------------------------------------- 1 | Versions/Current/opencv2 -------------------------------------------------------------------------------- /CodeServices/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /CodeServices/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CodeServices/README.md: -------------------------------------------------------------------------------- 1 | # CodeServices 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /CodeServices/Sources/CodeServices/Solana/Keys/Key+Base64.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Key+Base64.swift 3 | // CodeServices 4 | // 5 | // Created by Dima Bart. 6 | // Copyright © 2021 Code Inc. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | 12 | -------------------------------------------------------------------------------- /CodeUI/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /CodeUI/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CodeUI/README.md: -------------------------------------------------------------------------------- 1 | # CodeUI 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Avenir/AvenirNextLTPro-Demi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Avenir/AvenirNextLTPro-Demi.otf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Avenir/AvenirNextLTPro-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Avenir/AvenirNextLTPro-Medium.otf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Avenir/AvenirNextLTPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Avenir/AvenirNextLTPro-Regular.otf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-Bold.ttf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-ExtraBold.ttf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-ExtraLight.ttf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-Light.ttf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-Medium.ttf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-Regular.ttf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Manrope/Manrope-SemiBold.ttf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/Fonts/Roboto/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/Fonts/Roboto/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/globe.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "globe.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/globe.imageset/globe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/globe.imageset/globe.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/grid.imageset/grid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/grid.imageset/grid.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/hexagons.imageset/hexagons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/hexagons.imageset/hexagons.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/securityStrip.imageset/securityStrip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/securityStrip.imageset/securityStrip.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/waves.imageset/waves.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/bill/waves.imageset/waves.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/bell.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bell.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/bell.imageset/bell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/bell.imageset/bell.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/codeBrand.imageset/codeBrand.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/codeBrand.imageset/codeBrand.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/codeLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "codeLogo.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/codeLogo.imageset/codeLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/codeLogo.imageset/codeLogo.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/deleteBubble.imageset/deleteBubble.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/deleteBubble.imageset/deleteBubble.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/graphicCameraAccess.imageset/Bill-Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/graphicCameraAccess.imageset/Bill-Phone.png -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/graphicCameraAccess.imageset/Bill-Phone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/graphicCameraAccess.imageset/Bill-Phone@2x.png -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/graphicCameraAccess.imageset/Bill-Phone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/graphicCameraAccess.imageset/Bill-Phone@3x.png -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/graphicWallet.imageset/graphicWallet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/graphicWallet.imageset/graphicWallet.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/inviteLetter.imageset/inviteLetter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/inviteLetter.imageset/inviteLetter.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/kado.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kado.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/kado.imageset/kado.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/kado.imageset/kado.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/logoAndroid.imageset/logoAndroid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/logoAndroid.imageset/logoAndroid.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/logoApple.imageset/logoApple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/logoApple.imageset/logoApple.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/twitter.imageset/twitter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/twitter.imageset/twitter.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/twitterBlue.imageset/twitterBlue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/twitterBlue.imageset/twitterBlue.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/twitterGold.imageset/twitterGold.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/twitterGold.imageset/twitterGold.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/twitterGrey.imageset/twitterGrey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/twitterGrey.imageset/twitterGrey.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/videoBuyKin.imageset/videoBuyKin@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/videoBuyKin.imageset/videoBuyKin@2x.jpg -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/videoBuyKin.imageset/videoBuyKin@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/videoBuyKin.imageset/videoBuyKin@3x.jpg -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/videoSellKin.imageset/videoSellKin@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/videoSellKin.imageset/videoSellKin@2x.jpg -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/videoSellKin.imageset/videoSellKin@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/brand/videoSellKin.imageset/videoSellKin@3x.jpg -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/chat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "chat.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/chat.imageset/chat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/chat.imageset/chat.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "close.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/close.imageset/close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/close.imageset/close.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/google.button.imageset/google.button.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/google.button.imageset/google.button.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/hex.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "hex.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/hex.imageset/hex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/hex.imageset/hex.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/history.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "history.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/history.imageset/history.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/history.imageset/history.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/invites.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "invites.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/invites.imageset/invites.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/invites.imageset/invites.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/invites.new.imageset/invites.new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/invites.new.imageset/invites.new.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/kin.button.imageset/kin.button.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/kin.button.imageset/kin.button.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/kin.button.large.imageset/kin.button.large.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/kin.button.large.imageset/kin.button.large.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/tipcard.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "tipcard.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/tipcard.imageset/tipcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/tipcard.imageset/tipcard.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/wallet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "wallet.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/wallet.imageset/wallet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/buttons/wallet.imageset/wallet.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/KIN.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "KIN.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/KIN.imageset/KIN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/KIN.imageset/KIN.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/XAF.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "XAF.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/XAF.imageset/XAF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/XAF.imageset/XAF.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/XOF.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "XOF.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/XOF.imageset/XOF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (currency)/XOF.imageset/XOF.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ad.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ad.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ad.imageset/ad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ad.imageset/ad.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ae.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ae.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ae.imageset/ae.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ae.imageset/ae.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/af.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "af.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/af.imageset/af.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/af.imageset/af.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ag.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ag.imageset/ag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ag.imageset/ag.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ai.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ai.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ai.imageset/ai.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ai.imageset/ai.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/al.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "al.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/al.imageset/al.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/al.imageset/al.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/am.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "am.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/am.imageset/am.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/am.imageset/am.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/an.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "an.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/an.imageset/an.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/an.imageset/an.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ao.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ao.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ao.imageset/ao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ao.imageset/ao.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/aq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "aq.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/aq.imageset/aq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/aq.imageset/aq.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ar.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ar.imageset/ar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ar.imageset/ar.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/as.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "as.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/as.imageset/as.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/as.imageset/as.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/at.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "at.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/at.imageset/at.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/at.imageset/at.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/au.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "au.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/au.imageset/au.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/au.imageset/au.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/aw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "aw.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/aw.imageset/aw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/aw.imageset/aw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ax.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ax.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ax.imageset/ax.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ax.imageset/ax.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/az.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "az.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/az.imageset/az.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/az.imageset/az.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ba.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ba.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ba.imageset/ba.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ba.imageset/ba.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bb.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bb.imageset/bb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bb.imageset/bb.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bd.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bd.imageset/bd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bd.imageset/bd.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/be.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "be.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/be.imageset/be.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/be.imageset/be.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bf.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bf.imageset/bf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bf.imageset/bf.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bg.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bg.imageset/bg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bg.imageset/bg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bh.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bh.imageset/bh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bh.imageset/bh.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bi.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bi.imageset/bi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bi.imageset/bi.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bj.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bj.imageset/bj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bj.imageset/bj.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bl.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bl.imageset/bl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bl.imageset/bl.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bm.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bm.imageset/bm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bm.imageset/bm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bn.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bn.imageset/bn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bn.imageset/bn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bo.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bo.imageset/bo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bo.imageset/bo.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bq.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bq.imageset/bq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bq.imageset/bq.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/br.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "br.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/br.imageset/br.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/br.imageset/br.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bs.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bs.imageset/bs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bs.imageset/bs.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bt.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bt.imageset/bt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bt.imageset/bt.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bv.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bv.imageset/bv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bv.imageset/bv.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bw.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bw.imageset/bw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bw.imageset/bw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/by.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "by.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/by.imageset/by.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/by.imageset/by.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bz.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bz.imageset/bz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/bz.imageset/bz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ca.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ca.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ca.imageset/ca.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ca.imageset/ca.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cc.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cc.imageset/cc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cc.imageset/cc.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cd.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cd.imageset/cd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cd.imageset/cd.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cf.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cf.imageset/cf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cf.imageset/cf.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cg.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cg.imageset/cg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cg.imageset/cg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ch.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ch.imageset/ch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ch.imageset/ch.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ci.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ci.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ci.imageset/ci.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ci.imageset/ci.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ck.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ck.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ck.imageset/ck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ck.imageset/ck.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cl.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cl.imageset/cl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cl.imageset/cl.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cm.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cm.imageset/cm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cm.imageset/cm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cn.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cn.imageset/cn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cn.imageset/cn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/co.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "co.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/co.imageset/co.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/co.imageset/co.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cr.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cr.imageset/cr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cr.imageset/cr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cu.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cu.imageset/cu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cu.imageset/cu.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cv.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cv.imageset/cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cv.imageset/cv.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cw.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cw.imageset/cw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cw.imageset/cw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cx.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cx.imageset/cx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cx.imageset/cx.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cy.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cy.imageset/cy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cy.imageset/cy.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cz.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cz.imageset/cz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/cz.imageset/cz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/de.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "de.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/de.imageset/de.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/de.imageset/de.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dj.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dj.imageset/dj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dj.imageset/dj.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dk.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dk.imageset/dk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dk.imageset/dk.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dm.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dm.imageset/dm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dm.imageset/dm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/do.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "do.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/do.imageset/do.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/do.imageset/do.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dz.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dz.imageset/dz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/dz.imageset/dz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ec.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ec.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ec.imageset/ec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ec.imageset/ec.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ee.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ee.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ee.imageset/ee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ee.imageset/ee.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "eg.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eg.imageset/eg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eg.imageset/eg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "eh.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eh.imageset/eh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eh.imageset/eh.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "eo.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eo.imageset/eo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eo.imageset/eo.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/er.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "er.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/er.imageset/er.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/er.imageset/er.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/es.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "es.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/es.imageset/es.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/es.imageset/es.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/et.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "et.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/et.imageset/et.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/et.imageset/et.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "eu.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eu.imageset/eu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/eu.imageset/eu.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "fi.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fi.imageset/fi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fi.imageset/fi.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "fj.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fj.imageset/fj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fj.imageset/fj.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "fk.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fk.imageset/fk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fk.imageset/fk.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "fm.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fm.imageset/fm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fm.imageset/fm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "fo.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fo.imageset/fo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fo.imageset/fo.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "fr.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fr.imageset/fr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/fr.imageset/fr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ga.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ga.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ga.imageset/ga.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ga.imageset/ga.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gb.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gb.imageset/gb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gb.imageset/gb.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gd.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gd.imageset/gd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gd.imageset/gd.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ge.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ge.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ge.imageset/ge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ge.imageset/ge.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gf.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gf.imageset/gf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gf.imageset/gf.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gg.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gg.imageset/gg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gg.imageset/gg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gh.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gh.imageset/gh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gh.imageset/gh.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gi.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gi.imageset/gi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gi.imageset/gi.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gl.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gl.imageset/gl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gl.imageset/gl.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gm.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gm.imageset/gm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gm.imageset/gm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gn.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gn.imageset/gn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gn.imageset/gn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gp.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gp.imageset/gp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gp.imageset/gp.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gq.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gq.imageset/gq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gq.imageset/gq.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gr.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gr.imageset/gr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gr.imageset/gr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gs.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gs.imageset/gs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gs.imageset/gs.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gt.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gt.imageset/gt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gt.imageset/gt.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gu.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gu.imageset/gu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gu.imageset/gu.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gw.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gw.imageset/gw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gw.imageset/gw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gy.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gy.imageset/gy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/gy.imageset/gy.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "hk.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hk.imageset/hk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hk.imageset/hk.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "hm.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hm.imageset/hm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hm.imageset/hm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "hn.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hn.imageset/hn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hn.imageset/hn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "hr.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hr.imageset/hr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hr.imageset/hr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ht.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ht.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ht.imageset/ht.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ht.imageset/ht.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "hu.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hu.imageset/hu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/hu.imageset/hu.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/id.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "id.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/id.imageset/id.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/id.imageset/id.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ie.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ie.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ie.imageset/ie.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ie.imageset/ie.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/il.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "il.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/il.imageset/il.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/il.imageset/il.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/im.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "im.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/im.imageset/im.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/im.imageset/im.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/in.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "in.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/in.imageset/in.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/in.imageset/in.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/io.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "io.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/io.imageset/io.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/io.imageset/io.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/iq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "iq.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/iq.imageset/iq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/iq.imageset/iq.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ir.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ir.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ir.imageset/ir.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ir.imageset/ir.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/is.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "is.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/is.imageset/is.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/is.imageset/is.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/it.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "it.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/it.imageset/it.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/it.imageset/it.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/je.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "je.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/je.imageset/je.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/je.imageset/je.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "jm.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jm.imageset/jm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jm.imageset/jm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "jo.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jo.imageset/jo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jo.imageset/jo.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "jp.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jp.imageset/jp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/jp.imageset/jp.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ke.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ke.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ke.imageset/ke.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ke.imageset/ke.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kg.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kg.imageset/kg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kg.imageset/kg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kh.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kh.imageset/kh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kh.imageset/kh.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ki.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ki.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ki.imageset/ki.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ki.imageset/ki.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/km.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "km.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/km.imageset/km.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/km.imageset/km.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kn.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kn.imageset/kn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kn.imageset/kn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kp.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kp.imageset/kp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kp.imageset/kp.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kr.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kr.imageset/kr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kr.imageset/kr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kw.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kw.imageset/kw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kw.imageset/kw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ky.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ky.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ky.imageset/ky.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ky.imageset/ky.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kz.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kz.imageset/kz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/kz.imageset/kz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/la.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "la.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/la.imageset/la.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/la.imageset/la.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "lb.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lb.imageset/lb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lb.imageset/lb.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "lc.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lc.imageset/lc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lc.imageset/lc.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/li.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "li.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/li.imageset/li.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/li.imageset/li.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "lk.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lk.imageset/lk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lk.imageset/lk.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "lr.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lr.imageset/lr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lr.imageset/lr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ls.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ls.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ls.imageset/ls.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ls.imageset/ls.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "lt.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lt.imageset/lt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lt.imageset/lt.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "lu.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lu.imageset/lu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lu.imageset/lu.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "lv.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lv.imageset/lv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/lv.imageset/lv.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ly.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ly.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ly.imageset/ly.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ly.imageset/ly.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ma.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ma.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ma.imageset/ma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ma.imageset/ma.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mc.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mc.imageset/mc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mc.imageset/mc.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/md.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "md.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/md.imageset/md.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/md.imageset/md.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/me.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "me.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/me.imageset/me.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/me.imageset/me.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mf.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mf.imageset/mf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mf.imageset/mf.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mg.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mg.imageset/mg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mg.imageset/mg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mh.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mh.imageset/mh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mh.imageset/mh.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mk.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mk.imageset/mk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mk.imageset/mk.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ml.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ml.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ml.imageset/ml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ml.imageset/ml.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mm.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mm.imageset/mm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mm.imageset/mm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mn.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mn.imageset/mn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mn.imageset/mn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mo.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mo.imageset/mo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mo.imageset/mo.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mp.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mp.imageset/mp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mp.imageset/mp.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mq.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mq.imageset/mq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mq.imageset/mq.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mr.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mr.imageset/mr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mr.imageset/mr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ms.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ms.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ms.imageset/ms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ms.imageset/ms.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mt.imageset/mt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mt.imageset/mt.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mu.imageset/mu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mu.imageset/mu.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mv.imageset/mv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mv.imageset/mv.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mw.imageset/mw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mw.imageset/mw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mx.imageset/mx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mx.imageset/mx.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/my.imageset/my.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/my.imageset/my.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mz.imageset/mz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/mz.imageset/mz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/na.imageset/na.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/na.imageset/na.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nc.imageset/nc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nc.imageset/nc.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ne.imageset/ne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ne.imageset/ne.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nf.imageset/nf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nf.imageset/nf.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ng.imageset/ng.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ng.imageset/ng.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ni.imageset/ni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ni.imageset/ni.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nl.imageset/nl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nl.imageset/nl.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/no.imageset/no.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/no.imageset/no.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/np.imageset/np.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/np.imageset/np.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nr.imageset/nr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nr.imageset/nr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nu.imageset/nu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nu.imageset/nu.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nz.imageset/nz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/nz.imageset/nz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/om.imageset/om.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/om.imageset/om.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pa.imageset/pa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pa.imageset/pa.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pe.imageset/pe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pe.imageset/pe.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pf.imageset/pf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pf.imageset/pf.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pg.imageset/pg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pg.imageset/pg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ph.imageset/ph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ph.imageset/ph.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pk.imageset/pk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pk.imageset/pk.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pl.imageset/pl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pl.imageset/pl.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pm.imageset/pm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pm.imageset/pm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pn.imageset/pn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pn.imageset/pn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pr.imageset/pr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pr.imageset/pr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ps.imageset/ps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ps.imageset/ps.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pt.imageset/pt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pt.imageset/pt.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pw.imageset/pw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/pw.imageset/pw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/py.imageset/py.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/py.imageset/py.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/qa.imageset/qa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/qa.imageset/qa.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/re.imageset/re.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/re.imageset/re.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ro.imageset/ro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ro.imageset/ro.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/rs.imageset/rs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/rs.imageset/rs.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ru.imageset/ru.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ru.imageset/ru.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/rw.imageset/rw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/rw.imageset/rw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sa.imageset/sa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sa.imageset/sa.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sb.imageset/sb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sb.imageset/sb.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sc.imageset/sc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sc.imageset/sc.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sd.imageset/sd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sd.imageset/sd.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/se.imageset/se.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/se.imageset/se.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sg.imageset/sg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sg.imageset/sg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sh.imageset/sh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sh.imageset/sh.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/si.imageset/si.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/si.imageset/si.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sj.imageset/sj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sj.imageset/sj.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sk.imageset/sk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sk.imageset/sk.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sl.imageset/sl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sl.imageset/sl.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sm.imageset/sm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sm.imageset/sm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sn.imageset/sn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sn.imageset/sn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/so.imageset/so.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/so.imageset/so.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sr.imageset/sr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sr.imageset/sr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ss.imageset/ss.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ss.imageset/ss.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/st.imageset/st.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/st.imageset/st.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sv.imageset/sv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sv.imageset/sv.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sx.imageset/sx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sx.imageset/sx.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sy.imageset/sy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sy.imageset/sy.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sz.imageset/sz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/sz.imageset/sz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tc.imageset/tc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tc.imageset/tc.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/td.imageset/td.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/td.imageset/td.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tf.imageset/tf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tf.imageset/tf.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tg.imageset/tg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tg.imageset/tg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/th.imageset/th.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/th.imageset/th.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tj.imageset/tj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tj.imageset/tj.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tk.imageset/tk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tk.imageset/tk.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tl.imageset/tl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tl.imageset/tl.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tm.imageset/tm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tm.imageset/tm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tn.imageset/tn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tn.imageset/tn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/to.imageset/to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/to.imageset/to.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tr.imageset/tr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tr.imageset/tr.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tt.imageset/tt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tt.imageset/tt.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tv.imageset/tv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tv.imageset/tv.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tw.imageset/tw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tw.imageset/tw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tz.imageset/tz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/tz.imageset/tz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ua.imageset/ua.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ua.imageset/ua.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ug.imageset/ug.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ug.imageset/ug.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/um.imageset/um.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/um.imageset/um.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/us.imageset/us.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/us.imageset/us.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/uy.imageset/uy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/uy.imageset/uy.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/uz.imageset/uz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/uz.imageset/uz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/va.imageset/va.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/va.imageset/va.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vc.imageset/vc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vc.imageset/vc.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ve.imageset/ve.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ve.imageset/ve.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vg.imageset/vg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vg.imageset/vg.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vi.imageset/vi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vi.imageset/vi.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vn.imageset/vn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vn.imageset/vn.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vu.imageset/vu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/vu.imageset/vu.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/wf.imageset/wf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/wf.imageset/wf.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ws.imageset/ws.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ws.imageset/ws.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ye.imageset/ye.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/ye.imageset/ye.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/yt.imageset/yt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/yt.imageset/yt.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/za.imageset/za.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/za.imageset/za.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/zm.imageset/zm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/zm.imageset/zm.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/zw.imageset/zw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/zw.imageset/zw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/zz.imageset/zz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/flags (region)/zz.imageset/zz.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/camera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "camera.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/camera.imageset/camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/camera.imageset/camera.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/cancel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cancel.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/cancel.imageset/cancel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/cancel.imageset/cancel.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/debug.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "debug.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/debug.imageset/debug.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/debug.imageset/debug.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/delete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "delete.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/delete.imageset/delete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/delete.imageset/delete.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/deposit.imageset/deposit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/deposit.imageset/deposit.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/dollar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dollar.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/dollar.imageset/dollar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/dollar.imageset/dollar.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/done.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "done.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/done.imageset/done.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/done.imageset/done.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/faq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "faq.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/faq.imageset/faq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/faq.imageset/faq.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/gift.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "gift.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/gift.imageset/gift.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/gift.imageset/gift.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/hamburger.imageset/hamburger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/hamburger.imageset/hamburger.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/key.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "key.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/key.imageset/key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/key.imageset/key.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/logout.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "logout.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/logout.imageset/logout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/logout.imageset/logout.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/myAccount.imageset/myAccount.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/myAccount.imageset/myAccount.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/paperplane.imageset/paperplane.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/paperplane.imageset/paperplane.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/phone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "phone.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/phone.imageset/phone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/phone.imageset/phone.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/photo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "photo.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/photo.imageset/photo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/photo.imageset/photo.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/reload.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "reload.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/reload.imageset/reload.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/reload.imageset/reload.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/send.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "send.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/send.imageset/send.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/send.imageset/send.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/send2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "send2.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/send2.imageset/send2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/send2.imageset/send2.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/settings.imageset/settings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/settings.imageset/settings.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/statusDelivered.imageset/statusDelivered.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/statusDelivered.imageset/statusDelivered.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/statusRead.imageset/statusRead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/statusRead.imageset/statusRead.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/statusSent.imageset/statusSent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/statusSent.imageset/statusSent.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/switchAccounts.imageset/switchAccounts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/switchAccounts.imageset/switchAccounts.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/tip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "tip.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/tip.imageset/tip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/tip.imageset/tip.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/withdraw.imageset/withdraw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/icons/withdraw.imageset/withdraw.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/symbols/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/vectors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/vectors/checkmark.imageset/checkmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/vectors/checkmark.imageset/checkmark.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/vectors/checkmarkLarge.imageset/checkmarkLarge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/vectors/checkmarkLarge.imageset/checkmarkLarge.pdf -------------------------------------------------------------------------------- /CodeUI/Sources/CodeUI/Assets/UI.xcassets/vectors/youtube.imageset/youtube.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/CodeUI/Sources/CodeUI/Assets/UI.xcassets/vectors/youtube.imageset/youtube.pdf -------------------------------------------------------------------------------- /CodeUITests/CodeUITests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CodeUITests.swift 3 | // CodeUITests 4 | // 5 | // Created by Dima Bart on 2020-12-17. 6 | // 7 | 8 | import XCTest 9 | 10 | class CodeUITests: XCTestCase {} 11 | -------------------------------------------------------------------------------- /Configurations/base.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "secrets.xcconfig" 2 | -------------------------------------------------------------------------------- /Scripts/resources/mutable_push.json: -------------------------------------------------------------------------------- 1 | { 2 | "aps": { 3 | "alert": "You got a push", 4 | "badge": 1, 5 | "sound": "default", 6 | "mutable-content": 1 7 | }, 8 | 9 | "imageURL": "https://server.com/path/to/image.jpg" 10 | } 11 | -------------------------------------------------------------------------------- /Scripts/test: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | set -eo pipefail 5 | 6 | xcodebuild test \ 7 | -project "Code.xcodeproj" \ 8 | -scheme "Code" \ 9 | -sdk iphonesimulator \ 10 | -destination "id=$CURRENT_SIMULATOR_UUID" \ 11 | | xcpretty -c 12 | -------------------------------------------------------------------------------- /Support/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": "ok", 3 | "minimumClientVersion": 143 4 | } 5 | -------------------------------------------------------------------------------- /Vendor/opencv2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Vendor/opencv2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Vendor/opencv2.framework/Versions/A/opencv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-payments/code-ios-app/d799dc902f9411e3dd92f3f2700f42e1d60ccc6f/Vendor/opencv2.framework/Versions/A/opencv2 -------------------------------------------------------------------------------- /Vendor/opencv2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Vendor/opencv2.framework/opencv2: -------------------------------------------------------------------------------- 1 | Versions/Current/opencv2 --------------------------------------------------------------------------------