├── .gitignore ├── LICENSE ├── PhotoLock.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── PhotoLock.xcworkspace └── contents.xcworkspacedata ├── PhotoLock ├── Application │ ├── AppDelegate.swift │ └── Defaults.swift ├── Controllers │ ├── AuthenticationViewController.swift │ ├── ChangePasswordViewController.swift │ ├── ImportPhotosFromFileSharingViewController.swift │ ├── PhotoDisplayViewController.swift │ ├── PhotoLockTableViewController.swift │ ├── PhotoViewController.swift │ ├── PhotosCollectionViewController.swift │ └── SettingsViewController.swift ├── Models │ ├── Album.h │ ├── Album.m │ ├── Base.h │ ├── Base.m │ ├── BaseDBMasterKey.h │ ├── BaseDBMasterKey.m │ ├── Photo.h │ ├── Photo.m │ ├── User.h │ └── User.m ├── Resources │ ├── Base.lproj │ │ ├── CTAssetsPickerController.strings │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.xib │ │ ├── Localizable.strings │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── Add.imageset │ │ │ ├── Add.png │ │ │ ├── Add@2x.png │ │ │ ├── Add@3x.png │ │ │ └── Contents.json │ │ ├── AlbumsHintImage.imageset │ │ │ ├── AlbumsHintImage.png │ │ │ ├── AlbumsHintImage@2x.png │ │ │ ├── AlbumsHintImage@3x.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x-1.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ └── Icon-Small@3x.png │ │ ├── HUDBackground.imageset │ │ │ ├── Contents.json │ │ │ └── HUDBackground@2x.png │ │ ├── LaunchImage.launchimage │ │ │ ├── 3.5.png │ │ │ ├── 4.0.png │ │ │ ├── Contents.json │ │ │ ├── pad.png │ │ │ └── pad1024.png │ │ ├── PHOTO.imageset │ │ │ ├── Contents.json │ │ │ └── iTunesArtwork@2x.png │ │ ├── PHOTO64.imageset │ │ │ ├── Contents.json │ │ │ ├── PHOTO64.png │ │ │ ├── PHOTO64@2x.png │ │ │ └── PHOTO64@3x.png │ │ ├── PhotosHintImage.imageset │ │ │ ├── Contents.json │ │ │ ├── PhotosHintImage.png │ │ │ ├── PhotosHintImage@2x.png │ │ │ └── PhotosHintImage@3x.png │ │ ├── Settings.imageset │ │ │ ├── Contents.json │ │ │ ├── Settings.png │ │ │ ├── Settings@2x.png │ │ │ └── Settings@3x.png │ │ ├── SharingImage.imageset │ │ │ ├── Contents.json │ │ │ └── iTunesArtwork@2x.png │ │ ├── bg.imageset │ │ │ ├── Contents.json │ │ │ └── bg3.png │ │ ├── bg3.imageset │ │ │ ├── Contents.json │ │ │ └── bg3.png │ │ ├── navigationBarBackgroundImage.imageset │ │ │ ├── Contents.json │ │ │ ├── navigationBarBackgroundImage.png │ │ │ ├── navigationBarBackgroundImage@2x.png │ │ │ └── navigationBarBackgroundImage@3x.png │ │ └── tapGesture.imageset │ │ │ ├── Contents.json │ │ │ ├── tapGesture.png │ │ │ ├── tapGesture@2x.png │ │ │ └── tapGesture@3x.png │ ├── Info.plist │ ├── PhotoLock-Bridging-Header.h │ ├── en.lproj │ │ ├── CTAssetsPickerController.strings │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ ├── zh-Hans.lproj │ │ ├── CTAssetsPickerController.strings │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ └── zh-Hant.lproj │ │ ├── CTAssetsPickerController.strings │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings ├── Utilities │ ├── CQMHPhotoSlicer.h │ ├── CQMHPhotoSlicer.m │ ├── CommonUtilities.h │ ├── CommonUtilities.m │ ├── NSData+AESCrypt.h │ ├── NSData+AESCrypt.m │ ├── NSData+CommonCrypto.h │ ├── NSData+CommonCrypto.m │ ├── NSString+AESCrypt.h │ ├── NSString+AESCrypt.m │ ├── UIImage+FixOrientation.h │ └── UIImage+FixOrientation.m ├── Vendors │ ├── Colours.swift │ ├── GoogleMobileAdsSdkiOS-7.3.1 │ │ ├── GoogleMobileAds.framework │ │ │ ├── GoogleMobileAds │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── GoogleMobileAds │ │ │ │ └── Headers │ │ │ │ │ ├── DFPBannerView.h │ │ │ │ │ ├── DFPCustomRenderedAd.h │ │ │ │ │ ├── DFPCustomRenderedBannerViewDelegate.h │ │ │ │ │ ├── DFPCustomRenderedInterstitialDelegate.h │ │ │ │ │ ├── DFPInterstitial.h │ │ │ │ │ ├── DFPRequest.h │ │ │ │ │ ├── GADAdNetworkExtras.h │ │ │ │ │ ├── GADAdSize.h │ │ │ │ │ ├── GADAdSizeDelegate.h │ │ │ │ │ ├── GADAppEventDelegate.h │ │ │ │ │ ├── GADBannerView.h │ │ │ │ │ ├── GADBannerViewDelegate.h │ │ │ │ │ ├── GADExtras.h │ │ │ │ │ ├── GADInAppPurchase.h │ │ │ │ │ ├── GADInAppPurchaseDelegate.h │ │ │ │ │ ├── GADInterstitial.h │ │ │ │ │ ├── GADInterstitialDelegate.h │ │ │ │ │ ├── GADRequest.h │ │ │ │ │ ├── GADRequestError.h │ │ │ │ │ ├── GoogleMobileAds.h │ │ │ │ │ ├── Loading │ │ │ │ │ ├── Formats │ │ │ │ │ │ ├── GADNativeAd.h │ │ │ │ │ │ ├── GADNativeAdDelegate.h │ │ │ │ │ │ ├── GADNativeAdImage.h │ │ │ │ │ │ ├── GADNativeAppInstallAd.h │ │ │ │ │ │ ├── GADNativeContentAd.h │ │ │ │ │ │ └── GADNativeCustomTemplateAd.h │ │ │ │ │ ├── GADAdLoader.h │ │ │ │ │ ├── GADAdLoaderAdTypes.h │ │ │ │ │ ├── GADAdLoaderDelegate.h │ │ │ │ │ └── Options │ │ │ │ │ │ └── GADNativeAdImageAdLoaderOptions.h │ │ │ │ │ ├── Mediation │ │ │ │ │ ├── GADCustomEventBanner.h │ │ │ │ │ ├── GADCustomEventBannerDelegate.h │ │ │ │ │ ├── GADCustomEventExtras.h │ │ │ │ │ ├── GADCustomEventInterstitial.h │ │ │ │ │ ├── GADCustomEventInterstitialDelegate.h │ │ │ │ │ └── GADCustomEventRequest.h │ │ │ │ │ └── Search │ │ │ │ │ ├── GADSearchBannerView.h │ │ │ │ │ └── GADSearchRequest.h │ │ │ │ └── Current │ │ └── Mediation Adapters │ │ │ ├── GADMAdNetworkAdapterProtocol.h │ │ │ ├── GADMAdNetworkConnectorProtocol.h │ │ │ ├── GADMEnums.h │ │ │ └── README.txt │ └── UMSocial_Sdk_4.2.2 │ │ ├── Header │ │ ├── UMSocial.h │ │ ├── UMSocialAccountManager.h │ │ ├── UMSocialBar.h │ │ ├── UMSocialConfig.h │ │ ├── UMSocialControllerService.h │ │ ├── UMSocialControllerServiceComment.h │ │ ├── UMSocialData.h │ │ ├── UMSocialDataService.h │ │ ├── UMSocialSnsData.h │ │ ├── UMSocialSnsPlatformManager.h │ │ └── UMSocialSnsService.h │ │ ├── SocialSDKXib │ │ ├── UMSCommentDetailController.xib │ │ ├── UMSCommentInputController.xib │ │ ├── UMSCommentInputControlleriPad.xib │ │ ├── UMSLoginViewController.xib │ │ ├── UMSShareListController.xib │ │ ├── UMShareEditViewController.xib │ │ ├── UMShareEditViewControlleriPad.xib │ │ └── UMSnsAccountViewController.xib │ │ ├── UMSocialSDKResourcesNew.bundle │ │ ├── Buttons │ │ │ ├── UMS_Check.png │ │ │ ├── UMS_Check@2x.png │ │ │ ├── UMS_No_Location.png │ │ │ ├── UMS_No_Location@2x.png │ │ │ ├── UMS_User-Avatar-Placeholder@2x.png │ │ │ ├── UMS_User_profile_default@2x.png │ │ │ ├── UMS_account_login@2x.png │ │ │ ├── UMS_add_friend_off.png │ │ │ ├── UMS_add_friend_off@2x.png │ │ │ ├── UMS_add_friend_on.png │ │ │ ├── UMS_add_friend_on@2x.png │ │ │ ├── UMS_comment_input@2x.png │ │ │ ├── UMS_comment_view_cell.png │ │ │ ├── UMS_comment_view_cell_white@2x.png │ │ │ ├── UMS_delete_image_button_normal.png │ │ │ ├── UMS_delete_image_button_normal@2x.png │ │ │ ├── UMS_find@2x.png │ │ │ ├── UMS_follow_off@2x.png │ │ │ ├── UMS_follow_on@2x.png │ │ │ ├── UMS_nav_bar_bg_white@2x.png │ │ │ ├── UMS_nav_button_back.png │ │ │ ├── UMS_nav_button_back@2x.png │ │ │ ├── UMS_nav_button_close.png │ │ │ ├── UMS_nav_button_close@2x.png │ │ │ ├── UMS_nav_button_refresh.png │ │ │ ├── UMS_nav_button_refresh@2x.png │ │ │ ├── UMS_nav_button_send.png │ │ │ ├── UMS_nav_button_send@2x.png │ │ │ ├── UMS_oauth_off.png │ │ │ ├── UMS_oauth_off@2x.png │ │ │ ├── UMS_oauth_on.png │ │ │ ├── UMS_oauth_on@2x.png │ │ │ ├── UMS_place_map.png │ │ │ ├── UMS_place_map@2x.png │ │ │ ├── UMS_place_off.png │ │ │ ├── UMS_place_off@2x.png │ │ │ ├── UMS_place_tap.png │ │ │ ├── UMS_place_tap@2x.png │ │ │ ├── UMS_shake__share_button@2x.png │ │ │ ├── UMS_shake_close.png │ │ │ ├── UMS_shake_close@2x.png │ │ │ ├── UMS_shake_close_tap.png │ │ │ ├── UMS_shake_close_tap@2x.png │ │ │ ├── UMS_share_change_account.png │ │ │ ├── UMS_share_change_account@2x.png │ │ │ ├── UMS_share_change_account_bg@2x.png │ │ │ ├── UMS_share_change_account_tap.png │ │ │ ├── UMS_share_change_account_tap@2x.png │ │ │ ├── UMS_share_change_to_account@2x.png │ │ │ ├── UMS_share_change_to_account_tap@2x.png │ │ │ ├── UMS_share_oauth@2x.png │ │ │ ├── UMS_umeng_share_at.png │ │ │ ├── UMS_umeng_share_at@2x.png │ │ │ ├── UMS_umeng_share_atSel.png │ │ │ ├── UMS_umeng_share_atSel@2x.png │ │ │ ├── UMS_umeng_share_at_tap.png │ │ │ ├── UMS_umeng_share_toolbarBg.png │ │ │ ├── UMS_umeng_share_toolbarBg@2x.png │ │ │ ├── UMS_url_image.png │ │ │ ├── UMS_url_image@2x.png │ │ │ ├── UMS_url_music.png │ │ │ ├── UMS_url_music@2x.png │ │ │ ├── UMS_url_video.png │ │ │ └── UMS_url_video@2x.png │ │ ├── EGO │ │ │ ├── blackArrow.png │ │ │ ├── blackArrow@2x.png │ │ │ ├── blueArrow.png │ │ │ ├── blueArrow@2x.png │ │ │ ├── grayArrow.png │ │ │ ├── grayArrow@2x.png │ │ │ ├── whiteArrow.png │ │ │ └── whiteArrow@2x.png │ │ ├── OtherTheme │ │ │ ├── UMS_actionsheet_panel@2x.png │ │ │ ├── UMS_nav_back_button_normal.png │ │ │ ├── UMS_nav_back_button_normal@2x.png │ │ │ ├── UMS_nav_back_button_tap.png │ │ │ ├── UMS_nav_back_button_tap@2x.png │ │ │ ├── UMS_nav_bar_bg_black.png │ │ │ ├── UMS_nav_bar_bg_black@2x.png │ │ │ ├── UMS_nav_button_normal.png │ │ │ ├── UMS_nav_button_normal@2x.png │ │ │ ├── UMS_nav_button_tap.png │ │ │ └── UMS_nav_button_tap@2x.png │ │ ├── SnsPlatform │ │ │ ├── UMS_douban_icon.png │ │ │ ├── UMS_douban_icon@2x.png │ │ │ ├── UMS_douban_off.png │ │ │ ├── UMS_douban_off@2x.png │ │ │ ├── UMS_douban_on.png │ │ │ ├── UMS_douban_on@2x.png │ │ │ ├── UMS_email_icon.png │ │ │ ├── UMS_email_icon@2x.png │ │ │ ├── UMS_email_off.png │ │ │ ├── UMS_email_off@2x.png │ │ │ ├── UMS_email_on@2x.png │ │ │ ├── UMS_facebook_icon.png │ │ │ ├── UMS_facebook_icon@2x.png │ │ │ ├── UMS_facebook_off.png │ │ │ ├── UMS_facebook_off@2x.png │ │ │ ├── UMS_facebook_on.png │ │ │ ├── UMS_facebook_on@2x.png │ │ │ ├── UMS_instagram.png │ │ │ ├── UMS_instagram@2x.png │ │ │ ├── UMS_laiwang_session@2x.png │ │ │ ├── UMS_laiwang_timeline@2x.png │ │ │ ├── UMS_line_icon@2x.png │ │ │ ├── UMS_qq_icon.png │ │ │ ├── UMS_qq_icon@2x.png │ │ │ ├── UMS_qq_off.png │ │ │ ├── UMS_qq_off@2x.png │ │ │ ├── UMS_qq_on.png │ │ │ ├── UMS_qq_on@2x.png │ │ │ ├── UMS_qzone_icon.png │ │ │ ├── UMS_qzone_icon@2x.png │ │ │ ├── UMS_qzone_off.png │ │ │ ├── UMS_qzone_off@2x.png │ │ │ ├── UMS_qzone_on.png │ │ │ ├── UMS_qzone_on@2x.png │ │ │ ├── UMS_renren_icon.png │ │ │ ├── UMS_renren_icon@2x.png │ │ │ ├── UMS_renren_off.png │ │ │ ├── UMS_renren_off@2x.png │ │ │ ├── UMS_renren_on.png │ │ │ ├── UMS_renren_on@2x.png │ │ │ ├── UMS_sina_icon.png │ │ │ ├── UMS_sina_icon@2x.png │ │ │ ├── UMS_sina_off.png │ │ │ ├── UMS_sina_off@2x.png │ │ │ ├── UMS_sina_on.png │ │ │ ├── UMS_sina_on@2x.png │ │ │ ├── UMS_sms_icon.png │ │ │ ├── UMS_sms_icon@2x.png │ │ │ ├── UMS_sms_off.png │ │ │ ├── UMS_sms_off@2x.png │ │ │ ├── UMS_sms_on@2x.png │ │ │ ├── UMS_tencent_icon.png │ │ │ ├── UMS_tencent_icon@2x.png │ │ │ ├── UMS_tencent_off.png │ │ │ ├── UMS_tencent_off@2x.png │ │ │ ├── UMS_tencent_on.png │ │ │ ├── UMS_tencent_on@2x.png │ │ │ ├── UMS_tumblr_icon@2x.png │ │ │ ├── UMS_twitter_icon.png │ │ │ ├── UMS_twitter_icon@2x.png │ │ │ ├── UMS_twitter_off.png │ │ │ ├── UMS_twitter_off@2x.png │ │ │ ├── UMS_twitter_on.png │ │ │ ├── UMS_twitter_on@2x.png │ │ │ ├── UMS_wechat_favorite_icon.png │ │ │ ├── UMS_wechat_favorite_icon@2x.png │ │ │ ├── UMS_wechat_icon.png │ │ │ ├── UMS_wechat_icon@2x.png │ │ │ ├── UMS_wechat_off.png │ │ │ ├── UMS_wechat_off@2x.png │ │ │ ├── UMS_wechat_on@2x.png │ │ │ ├── UMS_wechat_session_icon.png │ │ │ ├── UMS_wechat_session_icon@2x.png │ │ │ ├── UMS_wechat_timeline_icon.png │ │ │ ├── UMS_wechat_timeline_icon@2x.png │ │ │ ├── UMS_wechat_timeline_off.png │ │ │ ├── UMS_wechat_timeline_off@2x.png │ │ │ ├── UMS_wechat_timeline_on.png │ │ │ ├── UMS_wechat_timeline_on@2x.png │ │ │ ├── UMS_whatsapp_icon@2x.png │ │ │ ├── UMS_yixin_session@2x.png │ │ │ └── UMS_yixin_timeline@2x.png │ │ ├── SocialSDKBar │ │ │ ├── UMS_account_normal_white.png │ │ │ ├── UMS_account_normal_white@2x.png │ │ │ ├── UMS_account_tap_white.png │ │ │ ├── UMS_account_tap_white@2x.png │ │ │ ├── UMS_comment_normal_white.png │ │ │ ├── UMS_comment_normal_white@2x.png │ │ │ ├── UMS_comment_tap_white.png │ │ │ ├── UMS_comment_tap_white@2x.png │ │ │ ├── UMS_like_off_white.png │ │ │ ├── UMS_like_off_white@2x.png │ │ │ ├── UMS_like_on_white.png │ │ │ ├── UMS_like_on_white@2x.png │ │ │ ├── UMS_share_normal_white.png │ │ │ ├── UMS_share_normal_white@2x.png │ │ │ ├── UMS_share_tap_white.png │ │ │ └── UMS_share_tap_white@2x.png │ │ └── Sound │ │ │ └── shake_sound.mp3 │ │ ├── en.lproj │ │ └── UMSocialLocalizable.strings │ │ ├── libUMSocial_Sdk_4.2.2.a │ │ ├── zh-Hans.lproj │ │ └── UMSocialLocalizable.strings │ │ └── zh-Hant.lproj │ │ └── UMSocialLocalizable.strings └── Views │ ├── BorderView.swift │ ├── CircleButton.h │ ├── CircleButton.m │ ├── NavigationViewController.swift │ ├── RectBorderButton.swift │ ├── RectBorderLabel.swift │ ├── TilingView.h │ └── TilingView.m ├── PhotoLockTests ├── Info.plist └── PhotoLockTests.swift ├── Podfile ├── Podfile.lock ├── Pods ├── CTAssetsPickerController │ ├── CTAssetsPickerController │ │ ├── ALAsset+accessibilityLabel.h │ │ ├── ALAsset+accessibilityLabel.m │ │ ├── ALAsset+assetType.h │ │ ├── ALAsset+assetType.m │ │ ├── ALAsset+isEqual.h │ │ ├── ALAsset+isEqual.m │ │ ├── ALAssetsGroup+isEqual.h │ │ ├── ALAssetsGroup+isEqual.m │ │ ├── CTAssetItemViewController.h │ │ ├── CTAssetItemViewController.m │ │ ├── CTAssetScrollView.h │ │ ├── CTAssetScrollView.m │ │ ├── CTAssetsGroupViewCell.h │ │ ├── CTAssetsGroupViewCell.m │ │ ├── CTAssetsGroupViewController.h │ │ ├── CTAssetsGroupViewController.m │ │ ├── CTAssetsPageViewController.h │ │ ├── CTAssetsPageViewController.m │ │ ├── CTAssetsPickerCommon.h │ │ ├── CTAssetsPickerController.h │ │ ├── CTAssetsPickerController.m │ │ ├── CTAssetsSupplementaryView.h │ │ ├── CTAssetsSupplementaryView.m │ │ ├── CTAssetsViewCell.h │ │ ├── CTAssetsViewCell.m │ │ ├── CTAssetsViewController.h │ │ ├── CTAssetsViewController.m │ │ ├── CTAssetsViewControllerTransition.h │ │ ├── CTAssetsViewControllerTransition.m │ │ ├── NSBundle+CTAssetsPickerController.h │ │ ├── NSBundle+CTAssetsPickerController.m │ │ ├── NSDateFormatter+timeIntervalFormatter.h │ │ ├── NSDateFormatter+timeIntervalFormatter.m │ │ ├── UIImage+CTAssetsPickerController.h │ │ └── UIImage+CTAssetsPickerController.m │ ├── LICENSE │ ├── README.md │ └── Resources │ │ ├── CTAssetsPicker.xcassets │ │ ├── CTAssetsPickerChecked.imageset │ │ │ ├── CTAssetsPickerChecked.png │ │ │ ├── CTAssetsPickerChecked@2x.png │ │ │ └── CTAssetsPickerChecked@3x.png │ │ ├── CTAssetsPickerEmptyAsset.imageset │ │ │ ├── CTAssetsPickerEmptyAsset.png │ │ │ ├── CTAssetsPickerEmptyAsset@2x.png │ │ │ └── CTAssetsPickerEmptyAsset@3x.png │ │ ├── CTAssetsPickerEmptyCell.imageset │ │ │ ├── CTAssetsPickerEmptyCell.png │ │ │ ├── CTAssetsPickerEmptyCell@2x.png │ │ │ └── CTAssetsPickerEmptyCell@3x.png │ │ ├── CTAssetsPickerLocked.imageset │ │ │ ├── CTAssetsPickerLocked.png │ │ │ ├── CTAssetsPickerLocked@2x.png │ │ │ └── CTAssetsPickerLocked@3x.png │ │ ├── CTAssetsPickerPlay.imageset │ │ │ ├── CTAssetsPickerPlay.png │ │ │ ├── CTAssetsPickerPlay@2x.png │ │ │ └── CTAssetsPickerPlay@3x.png │ │ └── CTAssetsPickerVideo.imageset │ │ │ ├── CTAssetsPickerVideo.png │ │ │ ├── CTAssetsPickerVideo@2x.png │ │ │ └── CTAssetsPickerVideo@3x.png │ │ ├── ar.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── da.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── de.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── en.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── es-MX.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── es.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── fi.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── fr-BE.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── fr.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── he.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── hi-IN.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── id.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── it.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── ja.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── ko.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── nl-BE.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── nl.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── pt-PT.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── pt.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── ru.lproj │ │ └── CTAssetsPickerController.strings │ │ ├── zh-Hans.lproj │ │ └── CTAssetsPickerController.strings │ │ └── zh-Hant.lproj │ │ └── CTAssetsPickerController.strings ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── Headers │ ├── Private │ │ ├── CTAssetsPickerController │ │ │ ├── ALAsset+accessibilityLabel.h │ │ │ ├── ALAsset+assetType.h │ │ │ ├── ALAsset+isEqual.h │ │ │ ├── ALAssetsGroup+isEqual.h │ │ │ ├── CTAssetItemViewController.h │ │ │ ├── CTAssetScrollView.h │ │ │ ├── CTAssetsGroupViewCell.h │ │ │ ├── CTAssetsGroupViewController.h │ │ │ ├── CTAssetsPageViewController.h │ │ │ ├── CTAssetsPickerCommon.h │ │ │ ├── CTAssetsPickerController.h │ │ │ ├── CTAssetsSupplementaryView.h │ │ │ ├── CTAssetsViewCell.h │ │ │ ├── CTAssetsViewController.h │ │ │ ├── CTAssetsViewControllerTransition.h │ │ │ ├── NSBundle+CTAssetsPickerController.h │ │ │ ├── NSDateFormatter+timeIntervalFormatter.h │ │ │ └── UIImage+CTAssetsPickerController.h │ │ ├── FMDB │ │ │ ├── FMDB.h │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabasePool.h │ │ │ ├── FMDatabaseQueue.h │ │ │ └── FMResultSet.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ └── SVProgressHUD.h │ │ ├── UIActionSheet+Blocks │ │ │ └── UIActionSheet+Blocks.h │ │ ├── UIAlertView+Blocks │ │ │ └── UIAlertView+Blocks.h │ │ └── iRate │ │ │ └── iRate.h │ └── Public │ │ ├── CTAssetsPickerController │ │ ├── ALAsset+accessibilityLabel.h │ │ ├── ALAsset+assetType.h │ │ ├── ALAsset+isEqual.h │ │ ├── ALAssetsGroup+isEqual.h │ │ ├── CTAssetItemViewController.h │ │ ├── CTAssetScrollView.h │ │ ├── CTAssetsGroupViewCell.h │ │ ├── CTAssetsGroupViewController.h │ │ ├── CTAssetsPageViewController.h │ │ ├── CTAssetsPickerCommon.h │ │ ├── CTAssetsPickerController.h │ │ ├── CTAssetsSupplementaryView.h │ │ ├── CTAssetsViewCell.h │ │ ├── CTAssetsViewController.h │ │ ├── CTAssetsViewControllerTransition.h │ │ ├── NSBundle+CTAssetsPickerController.h │ │ ├── NSDateFormatter+timeIntervalFormatter.h │ │ └── UIImage+CTAssetsPickerController.h │ │ ├── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabasePool.h │ │ ├── FMDatabaseQueue.h │ │ └── FMResultSet.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ └── SVProgressHUD.h │ │ ├── UIActionSheet+Blocks │ │ └── UIActionSheet+Blocks.h │ │ ├── UIAlertView+Blocks │ │ └── UIAlertView+Blocks.h │ │ └── iRate │ │ └── iRate.h ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── SVProgressHUD │ ├── LICENSE.txt │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ └── SVProgressHUD.m ├── Target Support Files │ ├── Pods-CTAssetsPickerController │ │ ├── Pods-CTAssetsPickerController-Private.xcconfig │ │ ├── Pods-CTAssetsPickerController-dummy.m │ │ ├── Pods-CTAssetsPickerController-prefix.pch │ │ └── Pods-CTAssetsPickerController.xcconfig │ ├── Pods-FMDB │ │ ├── Pods-FMDB-Private.xcconfig │ │ ├── Pods-FMDB-dummy.m │ │ ├── Pods-FMDB-prefix.pch │ │ └── Pods-FMDB.xcconfig │ ├── Pods-Masonry │ │ ├── Pods-Masonry-Private.xcconfig │ │ ├── Pods-Masonry-dummy.m │ │ ├── Pods-Masonry-prefix.pch │ │ └── Pods-Masonry.xcconfig │ ├── Pods-SVProgressHUD │ │ ├── Pods-SVProgressHUD-Private.xcconfig │ │ ├── Pods-SVProgressHUD-dummy.m │ │ ├── Pods-SVProgressHUD-prefix.pch │ │ └── Pods-SVProgressHUD.xcconfig │ ├── Pods-UIActionSheet+Blocks │ │ ├── Pods-UIActionSheet+Blocks-Private.xcconfig │ │ ├── Pods-UIActionSheet+Blocks-dummy.m │ │ ├── Pods-UIActionSheet+Blocks-prefix.pch │ │ └── Pods-UIActionSheet+Blocks.xcconfig │ ├── Pods-UIAlertView+Blocks │ │ ├── Pods-UIAlertView+Blocks-Private.xcconfig │ │ ├── Pods-UIAlertView+Blocks-dummy.m │ │ ├── Pods-UIAlertView+Blocks-prefix.pch │ │ └── Pods-UIAlertView+Blocks.xcconfig │ ├── Pods-iRate │ │ ├── Pods-iRate-Private.xcconfig │ │ ├── Pods-iRate-dummy.m │ │ ├── Pods-iRate-prefix.pch │ │ └── Pods-iRate.xcconfig │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig ├── UIActionSheet+Blocks │ ├── LICENSE │ ├── README.md │ ├── UIActionSheet+Blocks.h │ └── UIActionSheet+Blocks.m ├── UIAlertView+Blocks │ ├── LICENSE │ ├── README.md │ ├── UIAlertView+Blocks.h │ └── UIAlertView+Blocks.m └── iRate │ ├── LICENCE.md │ ├── README.md │ └── iRate │ ├── iRate.bundle │ ├── ar.lproj │ │ └── Localizable.strings │ ├── bn.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de-AT.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── el.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fa.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hi.lproj │ │ └── Localizable.strings │ ├── id.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── mk.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── no.lproj │ │ └── Localizable.strings │ ├── pa.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ └── Localizable.strings │ ├── sl.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── th.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ └── Localizable.strings │ ├── ur-IN.lproj │ │ └── Localizable.strings │ ├── ur-PK.lproj │ │ └── Localizable.strings │ ├── ur.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ └── zh-Hant.lproj │ │ └── Localizable.strings │ ├── iRate.h │ └── iRate.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/LICENSE -------------------------------------------------------------------------------- /PhotoLock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PhotoLock.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhotoLock.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhotoLock/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Application/AppDelegate.swift -------------------------------------------------------------------------------- /PhotoLock/Application/Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Application/Defaults.swift -------------------------------------------------------------------------------- /PhotoLock/Controllers/AuthenticationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Controllers/AuthenticationViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Controllers/ChangePasswordViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Controllers/ChangePasswordViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Controllers/ImportPhotosFromFileSharingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Controllers/ImportPhotosFromFileSharingViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Controllers/PhotoDisplayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Controllers/PhotoDisplayViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Controllers/PhotoLockTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Controllers/PhotoLockTableViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Controllers/PhotoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Controllers/PhotoViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Controllers/PhotosCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Controllers/PhotosCollectionViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Controllers/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Controllers/SettingsViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Models/Album.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/Album.h -------------------------------------------------------------------------------- /PhotoLock/Models/Album.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/Album.m -------------------------------------------------------------------------------- /PhotoLock/Models/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/Base.h -------------------------------------------------------------------------------- /PhotoLock/Models/Base.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/Base.m -------------------------------------------------------------------------------- /PhotoLock/Models/BaseDBMasterKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/BaseDBMasterKey.h -------------------------------------------------------------------------------- /PhotoLock/Models/BaseDBMasterKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/BaseDBMasterKey.m -------------------------------------------------------------------------------- /PhotoLock/Models/Photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/Photo.h -------------------------------------------------------------------------------- /PhotoLock/Models/Photo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/Photo.m -------------------------------------------------------------------------------- /PhotoLock/Models/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/User.h -------------------------------------------------------------------------------- /PhotoLock/Models/User.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Models/User.m -------------------------------------------------------------------------------- /PhotoLock/Resources/Base.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Base.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/Base.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | "CFBundleDisplayName" = "THIS"; -------------------------------------------------------------------------------- /PhotoLock/Resources/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /PhotoLock/Resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/Add.imageset/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/Add.imageset/Add.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/Add.imageset/Add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/Add.imageset/Add@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/Add.imageset/Add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/Add.imageset/Add@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/Add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/Add.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AlbumsHintImage.imageset/AlbumsHintImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AlbumsHintImage.imageset/AlbumsHintImage.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AlbumsHintImage.imageset/AlbumsHintImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AlbumsHintImage.imageset/AlbumsHintImage@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AlbumsHintImage.imageset/AlbumsHintImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AlbumsHintImage.imageset/AlbumsHintImage@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AlbumsHintImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AlbumsHintImage.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x-1.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/HUDBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/HUDBackground.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/HUDBackground.imageset/HUDBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/HUDBackground.imageset/HUDBackground@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/3.5.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/4.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/4.0.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/pad.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/pad1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/LaunchImage.launchimage/pad1024.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PHOTO.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PHOTO.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PHOTO.imageset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PHOTO.imageset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PHOTO64.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PHOTO64.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PHOTO64.imageset/PHOTO64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PHOTO64.imageset/PHOTO64.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PHOTO64.imageset/PHOTO64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PHOTO64.imageset/PHOTO64@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PHOTO64.imageset/PHOTO64@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PHOTO64.imageset/PHOTO64@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PhotosHintImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PhotosHintImage.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PhotosHintImage.imageset/PhotosHintImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PhotosHintImage.imageset/PhotosHintImage.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PhotosHintImage.imageset/PhotosHintImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PhotosHintImage.imageset/PhotosHintImage@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/PhotosHintImage.imageset/PhotosHintImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/PhotosHintImage.imageset/PhotosHintImage@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/Settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/Settings.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/Settings.imageset/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/Settings.imageset/Settings.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/Settings.imageset/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/Settings.imageset/Settings@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/Settings.imageset/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/Settings.imageset/Settings@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/SharingImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/SharingImage.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/SharingImage.imageset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/SharingImage.imageset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/bg.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/bg.imageset/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/bg.imageset/bg3.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/bg3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/bg3.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/bg3.imageset/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/bg3.imageset/bg3.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/navigationBarBackgroundImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/navigationBarBackgroundImage.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/navigationBarBackgroundImage.imageset/navigationBarBackgroundImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/navigationBarBackgroundImage.imageset/navigationBarBackgroundImage.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/navigationBarBackgroundImage.imageset/navigationBarBackgroundImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/navigationBarBackgroundImage.imageset/navigationBarBackgroundImage@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/navigationBarBackgroundImage.imageset/navigationBarBackgroundImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/navigationBarBackgroundImage.imageset/navigationBarBackgroundImage@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/tapGesture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/tapGesture.imageset/Contents.json -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/tapGesture.imageset/tapGesture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/tapGesture.imageset/tapGesture.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/tapGesture.imageset/tapGesture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/tapGesture.imageset/tapGesture@2x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Images.xcassets/tapGesture.imageset/tapGesture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Images.xcassets/tapGesture.imageset/tapGesture@3x.png -------------------------------------------------------------------------------- /PhotoLock/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/Info.plist -------------------------------------------------------------------------------- /PhotoLock/Resources/PhotoLock-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/PhotoLock-Bridging-Header.h -------------------------------------------------------------------------------- /PhotoLock/Resources/en.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/en.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | "CFBundleDisplayName" = "THIS"; -------------------------------------------------------------------------------- /PhotoLock/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/en.lproj/Main.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/zh-Hans.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/zh-Hans.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | "CFBundleDisplayName" = "这个"; -------------------------------------------------------------------------------- /PhotoLock/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/zh-Hans.lproj/Main.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/zh-Hant.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/zh-Hant.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | "CFBundleDisplayName" = "這個"; -------------------------------------------------------------------------------- /PhotoLock/Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /PhotoLock/Resources/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Resources/zh-Hant.lproj/Main.strings -------------------------------------------------------------------------------- /PhotoLock/Utilities/CQMHPhotoSlicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/CQMHPhotoSlicer.h -------------------------------------------------------------------------------- /PhotoLock/Utilities/CQMHPhotoSlicer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/CQMHPhotoSlicer.m -------------------------------------------------------------------------------- /PhotoLock/Utilities/CommonUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/CommonUtilities.h -------------------------------------------------------------------------------- /PhotoLock/Utilities/CommonUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/CommonUtilities.m -------------------------------------------------------------------------------- /PhotoLock/Utilities/NSData+AESCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/NSData+AESCrypt.h -------------------------------------------------------------------------------- /PhotoLock/Utilities/NSData+AESCrypt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/NSData+AESCrypt.m -------------------------------------------------------------------------------- /PhotoLock/Utilities/NSData+CommonCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/NSData+CommonCrypto.h -------------------------------------------------------------------------------- /PhotoLock/Utilities/NSData+CommonCrypto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/NSData+CommonCrypto.m -------------------------------------------------------------------------------- /PhotoLock/Utilities/NSString+AESCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/NSString+AESCrypt.h -------------------------------------------------------------------------------- /PhotoLock/Utilities/NSString+AESCrypt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/NSString+AESCrypt.m -------------------------------------------------------------------------------- /PhotoLock/Utilities/UIImage+FixOrientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/UIImage+FixOrientation.h -------------------------------------------------------------------------------- /PhotoLock/Utilities/UIImage+FixOrientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Utilities/UIImage+FixOrientation.m -------------------------------------------------------------------------------- /PhotoLock/Vendors/Colours.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/Colours.swift -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/GoogleMobileAds: -------------------------------------------------------------------------------- 1 | Versions/Current/GoogleMobileAds -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/GoogleMobileAds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/GoogleMobileAds -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/DFPBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/DFPBannerView.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedAd.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/DFPInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/DFPInterstitial.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/DFPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/DFPRequest.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADAdNetworkExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADAdNetworkExtras.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADAdSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADAdSize.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADAdSizeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADAdSizeDelegate.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADAppEventDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADAppEventDelegate.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADBannerView.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADBannerViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADBannerViewDelegate.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADExtras.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchase.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchaseDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchaseDelegate.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitial.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitialDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitialDelegate.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADRequest.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADRequestError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GADRequestError.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GoogleMobileAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/GoogleMobileAds.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Loading/Formats/GADNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Loading/Formats/GADNativeAd.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Loading/GADAdLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Loading/GADAdLoader.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Loading/GADAdLoaderAdTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Loading/GADAdLoaderAdTypes.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Loading/GADAdLoaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Loading/GADAdLoaderDelegate.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADCustomEventBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADCustomEventBanner.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADCustomEventExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADCustomEventExtras.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADCustomEventRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADCustomEventRequest.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Search/GADSearchBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Search/GADSearchBannerView.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Search/GADSearchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/A/Headers/Search/GADSearchRequest.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/GoogleMobileAds.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/Mediation Adapters/GADMAdNetworkAdapterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/Mediation Adapters/GADMAdNetworkAdapterProtocol.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/Mediation Adapters/GADMAdNetworkConnectorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/Mediation Adapters/GADMAdNetworkConnectorProtocol.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/Mediation Adapters/GADMEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/Mediation Adapters/GADMEnums.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/Mediation Adapters/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/GoogleMobileAdsSdkiOS-7.3.1/Mediation Adapters/README.txt -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocial.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialAccountManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialAccountManager.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialBar.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialConfig.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialControllerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialControllerService.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialControllerServiceComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialControllerServiceComment.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialData.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialDataService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialDataService.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialSnsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialSnsData.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialSnsPlatformManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialSnsPlatformManager.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialSnsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/Header/UMSocialSnsService.h -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSCommentDetailController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSCommentDetailController.xib -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSCommentInputController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSCommentInputController.xib -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSCommentInputControlleriPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSCommentInputControlleriPad.xib -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSLoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSLoginViewController.xib -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSShareListController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSShareListController.xib -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMShareEditViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMShareEditViewController.xib -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMShareEditViewControlleriPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMShareEditViewControlleriPad.xib -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSnsAccountViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/SocialSDKXib/UMSnsAccountViewController.xib -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_User-Avatar-Placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_User-Avatar-Placeholder@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_User_profile_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_User_profile_default@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_account_login@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_account_login@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_input@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_input@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_find@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_find@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_bar_bg_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_bar_bg_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake__share_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake__share_button@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_bg@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_tap.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_tap@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_to_account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_to_account@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_to_account_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_to_account_tap@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_oauth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_oauth@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at_tap.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_toolbarBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_toolbarBg.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_toolbarBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_toolbarBg@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/blackArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/blackArrow.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/blackArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/blackArrow@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/blueArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/blueArrow.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/blueArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/blueArrow@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/grayArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/grayArrow.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/grayArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/grayArrow@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_actionsheet_panel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_actionsheet_panel@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_normal.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_normal@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_tap.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_tap@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg_black.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg_black@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_normal.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_normal@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_instagram.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_instagram@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_laiwang_session@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_laiwang_session@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_laiwang_timeline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_laiwang_timeline@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_line_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_line_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tumblr_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tumblr_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_favorite_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_favorite_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_favorite_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_favorite_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_session_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_session_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_session_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_session_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_icon.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_off.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_off@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_on.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_on@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_whatsapp_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_whatsapp_icon@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_yixin_session@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_yixin_session@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_yixin_timeline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_yixin_timeline@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_normal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_normal_white.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_normal_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_normal_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_tap_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_tap_white.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_tap_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_tap_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_normal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_normal_white.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_normal_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_normal_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_tap_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_tap_white.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_tap_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_tap_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_off_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_off_white.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_off_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_off_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_normal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_normal_white.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_normal_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_normal_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_tap_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_tap_white.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_tap_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_tap_white@2x.png -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Sound/shake_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/UMSocialSDKResourcesNew.bundle/Sound/shake_sound.mp3 -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/en.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/en.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/libUMSocial_Sdk_4.2.2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/libUMSocial_Sdk_4.2.2.a -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/zh-Hans.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/zh-Hans.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /PhotoLock/Vendors/UMSocial_Sdk_4.2.2/zh-Hant.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Vendors/UMSocial_Sdk_4.2.2/zh-Hant.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /PhotoLock/Views/BorderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Views/BorderView.swift -------------------------------------------------------------------------------- /PhotoLock/Views/CircleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Views/CircleButton.h -------------------------------------------------------------------------------- /PhotoLock/Views/CircleButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Views/CircleButton.m -------------------------------------------------------------------------------- /PhotoLock/Views/NavigationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Views/NavigationViewController.swift -------------------------------------------------------------------------------- /PhotoLock/Views/RectBorderButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Views/RectBorderButton.swift -------------------------------------------------------------------------------- /PhotoLock/Views/RectBorderLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Views/RectBorderLabel.swift -------------------------------------------------------------------------------- /PhotoLock/Views/TilingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Views/TilingView.h -------------------------------------------------------------------------------- /PhotoLock/Views/TilingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLock/Views/TilingView.m -------------------------------------------------------------------------------- /PhotoLockTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLockTests/Info.plist -------------------------------------------------------------------------------- /PhotoLockTests/PhotoLockTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/PhotoLockTests/PhotoLockTests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+accessibilityLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+accessibilityLabel.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+accessibilityLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+accessibilityLabel.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+assetType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+assetType.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+assetType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+assetType.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+isEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+isEqual.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+isEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/ALAsset+isEqual.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/ALAssetsGroup+isEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/ALAssetsGroup+isEqual.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/ALAssetsGroup+isEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/ALAssetsGroup+isEqual.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetItemViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetItemViewController.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetItemViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetItemViewController.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetScrollView.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetScrollView.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewCell.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewCell.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewController.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewController.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPageViewController.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPageViewController.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerCommon.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerController.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsSupplementaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsSupplementaryView.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsSupplementaryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsSupplementaryView.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewCell.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewCell.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewController.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewController.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewControllerTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewControllerTransition.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewControllerTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewControllerTransition.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/NSBundle+CTAssetsPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/NSBundle+CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/NSBundle+CTAssetsPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/NSBundle+CTAssetsPickerController.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/NSDateFormatter+timeIntervalFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/NSDateFormatter+timeIntervalFormatter.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/NSDateFormatter+timeIntervalFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/NSDateFormatter+timeIntervalFormatter.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/UIImage+CTAssetsPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/UIImage+CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/CTAssetsPickerController/UIImage+CTAssetsPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/CTAssetsPickerController/UIImage+CTAssetsPickerController.m -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/LICENSE -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/README.md -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerChecked.imageset/CTAssetsPickerChecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerChecked.imageset/CTAssetsPickerChecked.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerChecked.imageset/CTAssetsPickerChecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerChecked.imageset/CTAssetsPickerChecked@2x.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerChecked.imageset/CTAssetsPickerChecked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerChecked.imageset/CTAssetsPickerChecked@3x.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerEmptyCell.imageset/CTAssetsPickerEmptyCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerEmptyCell.imageset/CTAssetsPickerEmptyCell.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerLocked.imageset/CTAssetsPickerLocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerLocked.imageset/CTAssetsPickerLocked.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerLocked.imageset/CTAssetsPickerLocked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerLocked.imageset/CTAssetsPickerLocked@2x.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerLocked.imageset/CTAssetsPickerLocked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerLocked.imageset/CTAssetsPickerLocked@3x.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerPlay.imageset/CTAssetsPickerPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerPlay.imageset/CTAssetsPickerPlay.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerPlay.imageset/CTAssetsPickerPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerPlay.imageset/CTAssetsPickerPlay@2x.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerPlay.imageset/CTAssetsPickerPlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerPlay.imageset/CTAssetsPickerPlay@3x.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerVideo.imageset/CTAssetsPickerVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerVideo.imageset/CTAssetsPickerVideo.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerVideo.imageset/CTAssetsPickerVideo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerVideo.imageset/CTAssetsPickerVideo@2x.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerVideo.imageset/CTAssetsPickerVideo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/CTAssetsPickerVideo.imageset/CTAssetsPickerVideo@3x.png -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/ar.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/ar.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/da.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/da.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/de.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/de.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/en.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/en.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/es-MX.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/es-MX.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/es.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/es.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/fi.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/fi.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/fr-BE.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/fr-BE.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/fr.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/fr.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/he.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/he.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/hi-IN.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/hi-IN.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/id.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/id.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/it.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/it.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/ja.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/ja.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/ko.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/ko.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/nl-BE.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/nl-BE.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/nl.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/nl.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/pt-PT.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/pt-PT.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/pt.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/pt.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/ru.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/ru.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/zh-Hans.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/zh-Hans.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/CTAssetsPickerController/Resources/zh-Hant.lproj/CTAssetsPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/CTAssetsPickerController/Resources/zh-Hant.lproj/CTAssetsPickerController.strings -------------------------------------------------------------------------------- /Pods/FMDB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/LICENSE.txt -------------------------------------------------------------------------------- /Pods/FMDB/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/README.markdown -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/FMDB/src/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/ALAsset+accessibilityLabel.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/ALAsset+accessibilityLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/ALAsset+assetType.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/ALAsset+assetType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/ALAsset+isEqual.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/ALAsset+isEqual.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/ALAssetsGroup+isEqual.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/ALAssetsGroup+isEqual.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetItemViewController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetItemViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsGroupViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsGroupViewController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsPageViewController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsPageViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsPickerCommon.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerCommon.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsSupplementaryView.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsSupplementaryView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/CTAssetsViewControllerTransition.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewControllerTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/NSBundle+CTAssetsPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/NSBundle+CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/NSDateFormatter+timeIntervalFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/NSDateFormatter+timeIntervalFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CTAssetsPickerController/UIImage+CTAssetsPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/UIImage+CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/UIActionSheet+Blocks/UIActionSheet+Blocks.h: -------------------------------------------------------------------------------- 1 | ../../../UIActionSheet+Blocks/UIActionSheet+Blocks.h -------------------------------------------------------------------------------- /Pods/Headers/Private/UIAlertView+Blocks/UIAlertView+Blocks.h: -------------------------------------------------------------------------------- 1 | ../../../UIAlertView+Blocks/UIAlertView+Blocks.h -------------------------------------------------------------------------------- /Pods/Headers/Private/iRate/iRate.h: -------------------------------------------------------------------------------- 1 | ../../../iRate/iRate/iRate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/ALAsset+accessibilityLabel.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/ALAsset+accessibilityLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/ALAsset+assetType.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/ALAsset+assetType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/ALAsset+isEqual.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/ALAsset+isEqual.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/ALAssetsGroup+isEqual.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/ALAssetsGroup+isEqual.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetItemViewController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetItemViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsGroupViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsGroupViewController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsGroupViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsPageViewController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsPageViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsPickerCommon.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerCommon.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsSupplementaryView.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsSupplementaryView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/CTAssetsViewControllerTransition.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/CTAssetsViewControllerTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/NSBundle+CTAssetsPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/NSBundle+CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/NSDateFormatter+timeIntervalFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/NSDateFormatter+timeIntervalFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CTAssetsPickerController/UIImage+CTAssetsPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../CTAssetsPickerController/CTAssetsPickerController/UIImage+CTAssetsPickerController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UIActionSheet+Blocks/UIActionSheet+Blocks.h: -------------------------------------------------------------------------------- 1 | ../../../UIActionSheet+Blocks/UIActionSheet+Blocks.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UIAlertView+Blocks/UIAlertView+Blocks.h: -------------------------------------------------------------------------------- 1 | ../../../UIAlertView+Blocks/UIAlertView+Blocks.h -------------------------------------------------------------------------------- /Pods/Headers/Public/iRate/iRate.h: -------------------------------------------------------------------------------- 1 | ../../../iRate/iRate/iRate.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SVProgressHUD/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/LICENSE.txt -------------------------------------------------------------------------------- /Pods/SVProgressHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/README.md -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CTAssetsPickerController/Pods-CTAssetsPickerController-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-CTAssetsPickerController/Pods-CTAssetsPickerController-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CTAssetsPickerController/Pods-CTAssetsPickerController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-CTAssetsPickerController/Pods-CTAssetsPickerController-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CTAssetsPickerController/Pods-CTAssetsPickerController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-CTAssetsPickerController/Pods-CTAssetsPickerController-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CTAssetsPickerController/Pods-CTAssetsPickerController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-CTAssetsPickerController/Pods-CTAssetsPickerController.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FMDB/Pods-FMDB-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-FMDB/Pods-FMDB-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FMDB/Pods-FMDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-FMDB/Pods-FMDB-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FMDB/Pods-FMDB-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-FMDB/Pods-FMDB-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FMDB/Pods-FMDB.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_FMDB_OTHER_LDFLAGS = -l"sqlite3" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Masonry/Pods-Masonry-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-Masonry/Pods-Masonry-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Masonry/Pods-Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-Masonry/Pods-Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Masonry/Pods-Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-Masonry/Pods-Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Masonry/Pods-Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-Masonry/Pods-Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SVProgressHUD/Pods-SVProgressHUD-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-SVProgressHUD/Pods-SVProgressHUD-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SVProgressHUD/Pods-SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-SVProgressHUD/Pods-SVProgressHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SVProgressHUD/Pods-SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-SVProgressHUD/Pods-SVProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SVProgressHUD/Pods-SVProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_SVPROGRESSHUD_OTHER_LDFLAGS = -framework "QuartzCore" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UIActionSheet+Blocks/Pods-UIActionSheet+Blocks-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-UIActionSheet+Blocks/Pods-UIActionSheet+Blocks-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UIActionSheet+Blocks/Pods-UIActionSheet+Blocks-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-UIActionSheet+Blocks/Pods-UIActionSheet+Blocks-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UIActionSheet+Blocks/Pods-UIActionSheet+Blocks-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-UIActionSheet+Blocks/Pods-UIActionSheet+Blocks-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UIActionSheet+Blocks/Pods-UIActionSheet+Blocks.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UIAlertView+Blocks/Pods-UIAlertView+Blocks-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-UIAlertView+Blocks/Pods-UIAlertView+Blocks-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UIAlertView+Blocks/Pods-UIAlertView+Blocks-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-UIAlertView+Blocks/Pods-UIAlertView+Blocks-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UIAlertView+Blocks/Pods-UIAlertView+Blocks-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-UIAlertView+Blocks/Pods-UIAlertView+Blocks-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UIAlertView+Blocks/Pods-UIAlertView+Blocks.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-iRate/Pods-iRate-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-iRate/Pods-iRate-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-iRate/Pods-iRate-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-iRate/Pods-iRate-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-iRate/Pods-iRate-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods-iRate/Pods-iRate-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-iRate/Pods-iRate.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Pods/UIActionSheet+Blocks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/UIActionSheet+Blocks/LICENSE -------------------------------------------------------------------------------- /Pods/UIActionSheet+Blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/UIActionSheet+Blocks/README.md -------------------------------------------------------------------------------- /Pods/UIActionSheet+Blocks/UIActionSheet+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/UIActionSheet+Blocks/UIActionSheet+Blocks.h -------------------------------------------------------------------------------- /Pods/UIActionSheet+Blocks/UIActionSheet+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/UIActionSheet+Blocks/UIActionSheet+Blocks.m -------------------------------------------------------------------------------- /Pods/UIAlertView+Blocks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/UIAlertView+Blocks/LICENSE -------------------------------------------------------------------------------- /Pods/UIAlertView+Blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/UIAlertView+Blocks/README.md -------------------------------------------------------------------------------- /Pods/UIAlertView+Blocks/UIAlertView+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/UIAlertView+Blocks/UIAlertView+Blocks.h -------------------------------------------------------------------------------- /Pods/UIAlertView+Blocks/UIAlertView+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/UIAlertView+Blocks/UIAlertView+Blocks.m -------------------------------------------------------------------------------- /Pods/iRate/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/LICENCE.md -------------------------------------------------------------------------------- /Pods/iRate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/README.md -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/bn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/bn.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/de-AT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/de-AT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/mk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/mk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/pa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/pa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ur-IN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/ur-IN.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ur-PK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/ur-PK.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ur.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/ur.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.h -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/Pods/iRate/iRate/iRate.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanhua-Guan/HQPhotoLock/HEAD/README.md --------------------------------------------------------------------------------