├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── ChameleonFramework │ ├── LICENSE.md │ ├── Pod │ │ └── Classes │ │ │ ├── Objective-C │ │ │ ├── Chameleon.h │ │ │ ├── ChameleonConstants.h │ │ │ ├── ChameleonConstants.m │ │ │ ├── ChameleonEnums.h │ │ │ ├── ChameleonMacros.h │ │ │ ├── Chameleon_.h │ │ │ ├── Chameleon_.m │ │ │ ├── NSArray+Chameleon.h │ │ │ ├── NSArray+Chameleon.m │ │ │ ├── UIAppearance+Swift.h │ │ │ ├── UIAppearance+Swift.m │ │ │ ├── UIButton+Chameleon.h │ │ │ ├── UIButton+Chameleon.m │ │ │ ├── UIColor+Chameleon.h │ │ │ ├── UIColor+Chameleon.m │ │ │ ├── UIColor+ChameleonPrivate.h │ │ │ ├── UIColor+ChameleonPrivate.m │ │ │ ├── UIImage+ChameleonPrivate.h │ │ │ ├── UIImage+ChameleonPrivate.m │ │ │ ├── UILabel+Chameleon.h │ │ │ ├── UILabel+Chameleon.m │ │ │ ├── UINavigationController+Chameleon.h │ │ │ ├── UINavigationController+Chameleon.m │ │ │ ├── UIView+ChameleonPrivate.h │ │ │ ├── UIView+ChameleonPrivate.m │ │ │ ├── UIViewController+Chameleon.h │ │ │ └── UIViewController+Chameleon.m │ │ │ └── Swift │ │ │ └── ChameleonShorthand.swift │ └── README.md ├── Cosmos │ ├── Cosmos │ │ ├── CosmosAccessibility.swift │ │ ├── CosmosDefaultSettings.swift │ │ ├── CosmosLayerHelper.swift │ │ ├── CosmosLayers.swift │ │ ├── CosmosLocalizedRating.swift │ │ ├── CosmosRating.swift │ │ ├── CosmosSettings.swift │ │ ├── CosmosSize.swift │ │ ├── CosmosText.swift │ │ ├── CosmosTouch.swift │ │ ├── CosmosView.swift │ │ ├── Helpers │ │ │ ├── CosmosTouchTarget.swift │ │ │ └── RightToLeft.swift │ │ ├── StarFillMode.swift │ │ └── StarLayer.swift │ ├── LICENSE │ └── README.md ├── Firebase │ ├── CoreOnly │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ └── README.md ├── FirebaseAnalytics │ └── Frameworks │ │ └── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ ├── FIRAnalytics+AppDelegate.h │ │ ├── FIRAnalytics.h │ │ ├── FIREventNames.h │ │ ├── FIRParameterNames.h │ │ ├── FIRUserPropertyNames.h │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ └── module.modulemap ├── FirebaseCore │ ├── LICENSE │ └── README.md ├── Google-Mobile-Ads-SDK │ └── README.txt ├── Headers │ ├── Private │ │ └── Firebase │ │ │ └── Firebase.h │ └── Public │ │ └── Firebase │ │ └── Firebase.h ├── Local Podspecs │ └── ChameleonFramework.podspec.json ├── Manifest.lock ├── Neon │ ├── LICENSE.txt │ ├── README.md │ └── Source │ │ ├── Neon.swift │ │ ├── NeonAlignable.swift │ │ ├── NeonAnchorable.swift │ │ ├── NeonExtensions.swift │ │ ├── NeonFrameable.swift │ │ └── NeonGroupable.swift ├── Pods.xcodeproj │ └── project.pbxproj ├── SwiftyBeaver │ ├── LICENSE │ ├── README.md │ ├── Sources │ │ ├── Base64.swift │ │ ├── Extensions.swift │ │ └── GoogleCloudDestination.swift │ └── sources │ │ ├── AES256CBC.swift │ │ ├── BaseDestination.swift │ │ ├── ConsoleDestination.swift │ │ ├── FileDestination.swift │ │ ├── Filter.swift │ │ ├── SBPlatformDestination.swift │ │ └── SwiftyBeaver.swift ├── SwiftyJSON │ ├── LICENSE │ └── README.md ├── Target Support Files │ ├── ChameleonFramework │ │ ├── ChameleonFramework-dummy.m │ │ ├── ChameleonFramework-prefix.pch │ │ ├── ChameleonFramework-umbrella.h │ │ ├── ChameleonFramework.modulemap │ │ ├── ChameleonFramework.xcconfig │ │ └── Info.plist │ ├── Cosmos │ │ ├── Cosmos-dummy.m │ │ ├── Cosmos-prefix.pch │ │ ├── Cosmos-umbrella.h │ │ ├── Cosmos.modulemap │ │ ├── Cosmos.xcconfig │ │ └── Info.plist │ ├── FirebaseCore │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ ├── FirebaseCore.modulemap │ │ └── FirebaseCore.xcconfig │ ├── Neon │ │ ├── Info.plist │ │ ├── Neon-dummy.m │ │ ├── Neon-prefix.pch │ │ ├── Neon-umbrella.h │ │ ├── Neon.modulemap │ │ └── Neon.xcconfig │ ├── SwiftyBeaver │ │ ├── Info.plist │ │ ├── SwiftyBeaver-dummy.m │ │ ├── SwiftyBeaver-prefix.pch │ │ ├── SwiftyBeaver-umbrella.h │ │ ├── SwiftyBeaver.modulemap │ │ └── SwiftyBeaver.xcconfig │ ├── SwiftyJSON │ │ ├── Info.plist │ │ ├── SwiftyJSON-dummy.m │ │ ├── SwiftyJSON-prefix.pch │ │ ├── SwiftyJSON-umbrella.h │ │ ├── SwiftyJSON.modulemap │ │ └── SwiftyJSON.xcconfig │ └── nanopb │ │ ├── Info.plist │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.modulemap │ │ └── nanopb.xcconfig └── nanopb │ ├── LICENSE.txt │ ├── README.md │ ├── pb.h │ ├── pb_common.c │ ├── pb_common.h │ ├── pb_decode.c │ ├── pb_decode.h │ ├── pb_encode.c │ └── pb_encode.h ├── README.md ├── XMP ├── Exiv2 - Image metadata library and tools.html ├── README ├── XMPSpecificationPart2.pdf ├── XMPtoFilterMapping.xlsx ├── convert.sh ├── convertXMP.py ├── genconvert.sh ├── jsonPresets │ ├── BlondiesBrunettes │ │ ├── Adeline.json │ │ ├── Amber.json │ │ ├── Clarisse.json │ │ ├── Emily.json │ │ ├── Gwendolyn.json │ │ ├── Juliet.json │ │ ├── Marianne.json │ │ ├── Summer.json │ │ ├── Taylor.json │ │ ├── Vicky.json │ │ └── Violet.json │ ├── F-StopUrban │ │ ├── Grunge.json │ │ ├── GrungeBW.json │ │ ├── GrungeBlue.json │ │ ├── GrungeGreen.json │ │ ├── GrungeMuted.json │ │ ├── GrungeRed.json │ │ ├── GrungeSepia.json │ │ ├── GrungeSmooth.json │ │ ├── UrbanGrain.json │ │ └── UrbanVignette.json │ └── Trey │ │ ├── BeautifulRelease.json │ │ ├── CarefullyShavenTurk.json │ │ ├── MarshmallowHappysmell.json │ │ ├── Navigator.json │ │ ├── OnRecreationalDrugs.json │ │ ├── Relic.json │ │ ├── SteampunkAfternoon.json │ │ ├── SundayAloneTime.json │ │ ├── ThankHeavenForLittleGirls.json │ │ └── TurkishBlast.json ├── sample_preset.json ├── sample_sidecar.xmp └── xmpPresets │ ├── BlondiesBrunettes │ ├── Adeline.xmp │ ├── Amber.xmp │ ├── Clarisse.xmp │ ├── Emily.xmp │ ├── Gwendolyn.xmp │ ├── Juliet.xmp │ ├── Marianne.xmp │ ├── Summer.xmp │ ├── Taylor.xmp │ ├── Vicky.xmp │ └── Violet.xmp │ ├── F-StopUrban │ └── Grunge.xmp │ └── Trey │ └── Relic.xmp ├── addMods.sh ├── phixer.xcodeproj └── project.pbxproj ├── phixer ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon24@2x.png │ │ ├── Icon27.5@2x.png │ │ ├── Icon29.png │ │ ├── Icon29@2x-1.png │ │ ├── Icon29@2x-2.png │ │ ├── Icon29@2x.png │ │ ├── Icon29@3x-1.png │ │ ├── Icon29@3x.png │ │ ├── Icon40-1.png │ │ ├── Icon40.png │ │ ├── Icon40@2x-1.png │ │ ├── Icon40@2x-2.png │ │ ├── Icon40@2x.png │ │ ├── Icon40@3x.png │ │ ├── Icon60@2x-1.png │ │ ├── Icon60@2x.png │ │ ├── Icon60@3x-1.png │ │ ├── Icon60@3x.png │ │ ├── Icon76.png │ │ ├── Icon76@2x.png │ │ ├── Icon83.5@2x.png │ │ ├── Icon86@2x.png │ │ ├── Icon98@2x.png │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small-50.png │ │ ├── icon-small-50@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ ├── icon@2x.png │ │ ├── ios-marketing.png │ │ ├── notification-icon@2x.png │ │ ├── notification-icon@3x.png │ │ ├── notification-icon~ipad.png │ │ └── notification-icon~ipad@2x.png │ ├── Contents.json │ ├── app_icon.imageset │ │ ├── Contents.json │ │ ├── app_icon.png │ │ ├── app_icon@2x.png │ │ └── app_icon@3x.png │ ├── ic_accept.imageset │ │ ├── Contents.json │ │ ├── ic_accept.png │ │ ├── ic_accept@2x.png │ │ └── ic_accept@3x.png │ ├── ic_acne.imageset │ │ ├── Contents.json │ │ ├── ic_acne.png │ │ ├── ic_acne@2x.png │ │ └── ic_acne@3x.png │ ├── ic_adjust.imageset │ │ ├── Contents.json │ │ ├── ic_adjust.png │ │ ├── ic_adjust@2x.png │ │ └── ic_adjust@3x.png │ ├── ic_back.imageset │ │ ├── Contents.json │ │ ├── ic_back.png │ │ ├── ic_back@2x.png │ │ └── ic_back@3x.png │ ├── ic_basic.imageset │ │ ├── Contents.json │ │ ├── ic_basic.png │ │ ├── ic_basic@2x.png │ │ └── ic_basic@3x.png │ ├── ic_blend.imageset │ │ ├── Contents.json │ │ ├── ic_blend.png │ │ ├── ic_blend@2x.png │ │ └── ic_blend@3x.png │ ├── ic_brightness.imageset │ │ ├── Contents.json │ │ ├── ic_brightness.png │ │ ├── ic_brightness@2x.png │ │ └── ic_brightness@3x.png │ ├── ic_brush.imageset │ │ ├── Contents.json │ │ ├── ic_brush.png │ │ ├── ic_brush@2x.png │ │ └── ic_brush@3x.png │ ├── ic_category.imageset │ │ ├── Contents.json │ │ ├── ic_category.png │ │ ├── ic_category@2x.png │ │ └── ic_category@3x.png │ ├── ic_category_hide.imageset │ │ ├── Contents.json │ │ ├── ic_category_hide.png │ │ ├── ic_category_hide@2x.png │ │ └── ic_category_hide@3x.png │ ├── ic_category_show.imageset │ │ ├── Contents.json │ │ ├── ic_category_show.png │ │ ├── ic_category_show@2x.png │ │ └── ic_category_show@3x.png │ ├── ic_clarity.imageset │ │ ├── Contents.json │ │ ├── ic_clarity.png │ │ ├── ic_clarity@2x.png │ │ └── ic_clarity@3x.png │ ├── ic_contrast.imageset │ │ ├── Contents.json │ │ ├── ic_contrast.png │ │ ├── ic_contrast@2x.png │ │ └── ic_contrast@3x.png │ ├── ic_crop.imageset │ │ ├── Contents.json │ │ ├── ic_crop.png │ │ ├── ic_crop@2x.png │ │ └── ic_crop@3x.png │ ├── ic_curve.imageset │ │ ├── Contents.json │ │ ├── ic_curve.png │ │ ├── ic_curve@2x.png │ │ └── ic_curve@3x.png │ ├── ic_dehaze.imageset │ │ ├── Contents.json │ │ ├── ic_dehaze.png │ │ ├── ic_dehaze@2x.png │ │ └── ic_dehaze@3x.png │ ├── ic_down.imageset │ │ ├── Contents.json │ │ ├── ic_down.png │ │ ├── ic_down@2x.png │ │ └── ic_down@3x.png │ ├── ic_exp_comp.imageset │ │ ├── Contents.json │ │ ├── ic_exp_comp.png │ │ ├── ic_exp_comp@2x.png │ │ └── ic_exp_comp@3x.png │ ├── ic_exposure.imageset │ │ ├── Contents.json │ │ ├── ic_exposure.png │ │ ├── ic_exposure@2x.png │ │ └── ic_exposure@3x.png │ ├── ic_eye.imageset │ │ ├── Contents.json │ │ ├── ic_eye.png │ │ ├── ic_eye@2x.png │ │ └── ic_eye@3x.png │ ├── ic_eyebrow.imageset │ │ ├── Contents.json │ │ ├── ic_eyebrow.png │ │ ├── ic_eyebrow@2x.png │ │ └── ic_eyebrow@3x.png │ ├── ic_face.imageset │ │ ├── Contents.json │ │ ├── ic_face.png │ │ ├── ic_face@2x.png │ │ └── ic_face@3x.png │ ├── ic_face_select.imageset │ │ ├── Contents.json │ │ ├── ic_face_select.png │ │ ├── ic_face_select@2x.png │ │ └── ic_face_select@3x.png │ ├── ic_filmstrip.imageset │ │ ├── Contents.json │ │ ├── ic_filmstrip.png │ │ ├── ic_filmstrip@2x.png │ │ └── ic_filmstrip@3x.png │ ├── ic_filter.imageset │ │ ├── Contents.json │ │ ├── ic_filter.png │ │ ├── ic_filter@2x.png │ │ └── ic_filter@3x.png │ ├── ic_filter_gallery.imageset │ │ ├── Contents.json │ │ ├── ic_filter_gallery.png │ │ ├── ic_filter_gallery@2x.png │ │ └── ic_filter_gallery@3x.png │ ├── ic_filters.imageset │ │ ├── Contents.json │ │ ├── ic_filters.png │ │ ├── ic_filters@2x.png │ │ └── ic_filters@3x.png │ ├── ic_filters_hide.imageset │ │ ├── Contents.json │ │ ├── ic_filters_hide.png │ │ ├── ic_filters_hide@2x.png │ │ └── ic_filters_hide@3x.png │ ├── ic_filters_show.imageset │ │ ├── Contents.json │ │ ├── ic_filters_show.png │ │ ├── ic_filters_show@2x.png │ │ └── ic_filters_show@3x.png │ ├── ic_front_back.imageset │ │ ├── Contents.json │ │ ├── ic_front_back.png │ │ ├── ic_front_back@2x.png │ │ └── ic_front_back@3x.png │ ├── ic_full_screen.imageset │ │ ├── Contents.json │ │ ├── ic_full_screen.png │ │ ├── ic_full_screen@2x.png │ │ └── ic_full_screen@3x.png │ ├── ic_gallery.imageset │ │ ├── Contents.json │ │ ├── ic_gallery.png │ │ ├── ic_gallery@2x.png │ │ └── ic_gallery@3x.png │ ├── ic_gear.imageset │ │ ├── Contents.json │ │ ├── ic_gear.png │ │ ├── ic_gear@2x.png │ │ └── ic_gear@3x.png │ ├── ic_heart_filled.imageset │ │ ├── Contents.json │ │ ├── ic_heart_filled.png │ │ ├── ic_heart_filled@2x.png │ │ └── ic_heart_filled@3x.png │ ├── ic_heart_outline.imageset │ │ ├── Contents.json │ │ ├── ic_heart_outline.png │ │ ├── ic_heart_outline@2x.png │ │ └── ic_heart_outline@3x.png │ ├── ic_help.imageset │ │ ├── Contents.json │ │ ├── ic_help.png │ │ ├── ic_help@2x.png │ │ └── ic_help@3x.png │ ├── ic_highlights.imageset │ │ ├── Contents.json │ │ ├── ic_highlights.png │ │ ├── ic_highlights@2x.png │ │ └── ic_highlights@3x.png │ ├── ic_histogram.imageset │ │ ├── Contents.json │ │ ├── ic_histogram.png │ │ ├── ic_histogram@2x.png │ │ └── ic_histogram@3x.png │ ├── ic_image.imageset │ │ ├── Contents.json │ │ ├── ic_image.png │ │ ├── ic_image@2x.png │ │ └── ic_image@3x.png │ ├── ic_info.imageset │ │ ├── Contents.json │ │ ├── ic_info.png │ │ ├── ic_info@2x.png │ │ └── ic_info@3x.png │ ├── ic_layers_3.imageset │ │ ├── Contents.json │ │ ├── ic_layers_3.png │ │ ├── ic_layers_3@2x.png │ │ └── ic_layers_3@3x.png │ ├── ic_left.imageset │ │ ├── Contents.json │ │ ├── ic_left.png │ │ ├── ic_left@2x.png │ │ └── ic_left@3x.png │ ├── ic_lips.imageset │ │ ├── Contents.json │ │ ├── ic_lips.png │ │ ├── ic_lips@2x.png │ │ └── ic_lips@3x.png │ ├── ic_live.imageset │ │ ├── Contents.json │ │ ├── ic_live.png │ │ ├── ic_live@2x.png │ │ └── ic_live@3x.png │ ├── ic_magic.imageset │ │ ├── Contents.json │ │ ├── ic_magic.png │ │ ├── ic_magic@2x.png │ │ └── ic_magic@3x.png │ ├── ic_menu.imageset │ │ ├── Contents.json │ │ ├── ic_menu.png │ │ ├── ic_menu@2x.png │ │ └── ic_menu@3x.png │ ├── ic_next.imageset │ │ ├── Contents.json │ │ ├── ic_next.png │ │ ├── ic_next@2x.png │ │ └── ic_next@3x.png │ ├── ic_no.imageset │ │ ├── Contents.json │ │ ├── ic_no.png │ │ ├── ic_no@2x.png │ │ └── ic_no@3x.png │ ├── ic_no_view.imageset │ │ ├── Contents.json │ │ ├── ic_no_view.png │ │ ├── ic_no_view@2x.png │ │ └── ic_no_view@3x.png │ ├── ic_noise.imageset │ │ ├── Contents.json │ │ ├── ic_noise.png │ │ ├── ic_noise@2x.png │ │ └── ic_noise@3x.png │ ├── ic_perspective.imageset │ │ ├── Contents.json │ │ ├── ic_perspective.png │ │ ├── ic_perspective@2x.png │ │ └── ic_perspective@3x.png │ ├── ic_preset.imageset │ │ ├── Contents.json │ │ ├── ic_preset.png │ │ ├── ic_preset@2x.png │ │ └── ic_preset@3x.png │ ├── ic_prev.imageset │ │ ├── Contents.json │ │ ├── ic_prev.png │ │ ├── ic_prev@2x.png │ │ └── ic_prev@3x.png │ ├── ic_reject.imageset │ │ ├── Contents.json │ │ ├── ic_reject.png │ │ ├── ic_reject@2x.png │ │ └── ic_reject@3x.png │ ├── ic_reset.imageset │ │ ├── Contents.json │ │ ├── ic_reset.png │ │ ├── ic_reset@2x.png │ │ └── ic_reset@3x.png │ ├── ic_right.imageset │ │ ├── Contents.json │ │ ├── ic_right.png │ │ ├── ic_right@2x.png │ │ └── ic_right@3x.png │ ├── ic_right_arrow.imageset │ │ ├── Contents.json │ │ ├── ic_right_arrow.png │ │ ├── ic_right_arrow@2x.png │ │ └── ic_right_arrow@3x.png │ ├── ic_rotate.imageset │ │ ├── Contents.json │ │ ├── ic_rotate.png │ │ ├── ic_rotate@2x.png │ │ └── ic_rotate@3x.png │ ├── ic_saturation.imageset │ │ ├── Contents.json │ │ ├── ic_saturation.png │ │ ├── ic_saturation@2x.png │ │ └── ic_saturation@3x.png │ ├── ic_save.imageset │ │ ├── Contents.json │ │ ├── ic_save.png │ │ ├── ic_save@2x.png │ │ └── ic_save@3x.png │ ├── ic_shadow.imageset │ │ ├── Contents.json │ │ ├── ic_shadow.png │ │ ├── ic_shadow@2x.png │ │ └── ic_shadow@3x.png │ ├── ic_sharpness.imageset │ │ ├── Contents.json │ │ ├── ic_sharpness.png │ │ ├── ic_sharpness@2x.png │ │ └── ic_sharpness@3x.png │ ├── ic_sliders.imageset │ │ ├── Contents.json │ │ ├── ic_sliders.png │ │ ├── ic_sliders@2x.png │ │ └── ic_sliders@3x.png │ ├── ic_sliders_hide.imageset │ │ ├── Contents.json │ │ ├── ic_sliders_hide.png │ │ ├── ic_sliders_hide@2x.png │ │ └── ic_sliders_hide@3x.png │ ├── ic_sliders_show.imageset │ │ ├── Contents.json │ │ ├── ic_sliders_show.png │ │ ├── ic_sliders_show@2x.png │ │ └── ic_sliders_show@3x.png │ ├── ic_smile.imageset │ │ ├── Contents.json │ │ ├── ic_smile.png │ │ ├── ic_smile@2x.png │ │ └── ic_smile@3x.png │ ├── ic_split_screen.imageset │ │ ├── Contents.json │ │ ├── ic_split_screen.png │ │ ├── ic_split_screen@2x.png │ │ └── ic_split_screen@3x.png │ ├── ic_star.imageset │ │ ├── Contents.json │ │ ├── ic_star.png │ │ ├── ic_star@2x.png │ │ └── ic_star@3x.png │ ├── ic_star_filled_1.imageset │ │ ├── Contents.json │ │ ├── ic_star_filled_1.png │ │ ├── ic_star_filled_1@2x.png │ │ └── ic_star_filled_1@3x.png │ ├── ic_star_filled_2.imageset │ │ ├── Contents.json │ │ ├── ic_star_filled_2.png │ │ ├── ic_star_filled_2@2x.png │ │ └── ic_star_filled_2@3x.png │ ├── ic_star_filled_3.imageset │ │ ├── Contents.json │ │ ├── ic_star_filled_3.png │ │ ├── ic_star_filled_3@2x.png │ │ └── ic_star_filled_3@3x.png │ ├── ic_stroked_circle.imageset │ │ ├── Contents.json │ │ ├── ic_stroked_circle.png │ │ ├── ic_stroked_circle@2x.png │ │ └── ic_stroked_circle@3x.png │ ├── ic_swap.imageset │ │ ├── Contents.json │ │ ├── ic_swap.png │ │ ├── ic_swap@2x.png │ │ └── ic_swap@3x.png │ ├── ic_tilt.imageset │ │ ├── Contents.json │ │ ├── ic_tilt.png │ │ ├── ic_tilt@2x.png │ │ └── ic_tilt@3x.png │ ├── ic_touch.imageset │ │ ├── Contents.json │ │ ├── ic_touch.png │ │ ├── ic_touch@2x.png │ │ └── ic_touch@3x.png │ ├── ic_transform.imageset │ │ ├── Contents.json │ │ ├── ic_transform.png │ │ ├── ic_transform@2x.png │ │ └── ic_transform@3x.png │ ├── ic_undo.imageset │ │ ├── Contents.json │ │ ├── ic_undo.png │ │ ├── ic_undo@2x.png │ │ └── ic_undo@3x.png │ ├── ic_unknown.imageset │ │ ├── Contents.json │ │ ├── ic_unknown.png │ │ ├── ic_unknown@2x.png │ │ └── ic_unknown@3x.png │ ├── ic_up.imageset │ │ ├── Contents.json │ │ ├── ic_up.png │ │ ├── ic_up@2x.png │ │ └── ic_up@3x.png │ ├── ic_vibrance.imageset │ │ ├── Contents.json │ │ ├── ic_vibrance.png │ │ ├── ic_vibrance@2x.png │ │ └── ic_vibrance@3x.png │ ├── ic_view.imageset │ │ ├── Contents.json │ │ ├── ic_view.png │ │ ├── ic_view@2x.png │ │ └── ic_view@3x.png │ ├── ic_vignette.imageset │ │ ├── Contents.json │ │ ├── ic_vignette.png │ │ ├── ic_vignette@2x.png │ │ └── ic_vignette@3x.png │ ├── ic_warmth.imageset │ │ ├── Contents.json │ │ ├── ic_warmth.png │ │ ├── ic_warmth@2x.png │ │ └── ic_warmth@3x.png │ ├── ic_wb.imageset │ │ ├── Contents.json │ │ ├── ic_wb.png │ │ ├── ic_wb@2x.png │ │ └── ic_wb@3x.png │ └── ic_yes.imageset │ │ ├── Contents.json │ │ ├── ic_yes.png │ │ ├── ic_yes@2x.png │ │ └── ic_yes@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Config │ ├── Presets │ │ ├── AnalogFilm │ │ │ ├── N-AgfaScala200.json │ │ │ ├── N-AgfaVista100.json │ │ │ ├── N-AgfaVista400.json │ │ │ ├── N-AgfaVista800.json │ │ │ ├── N-Fuji160C.json │ │ │ ├── N-Fuji400H.json │ │ │ ├── N-Fuji800Z.json │ │ │ ├── N-FujiFP100C.json │ │ │ ├── N-FujiFP3000b.json │ │ │ ├── N-FujiFortiaSP.json │ │ │ ├── N-FujiNeopan1600.json │ │ │ ├── N-FujiNeopan400.json │ │ │ ├── N-FujiProvia100.json │ │ │ ├── N-FujiProvia400.json │ │ │ ├── N-FujiSuperia100.json │ │ │ ├── N-FujiSuperia1600.json │ │ │ ├── N-FujiSuperia400.json │ │ │ ├── N-FujiVelvia100.json │ │ │ ├── N-FujiVelvia50.json │ │ │ ├── N-KodakBW400CN.json │ │ │ ├── N-KodakEktachrome100G.json │ │ │ ├── N-KodakEktachrome100VS.json │ │ │ ├── N-KodakEktachromeE200.json │ │ │ ├── N-KodakEktar100.json │ │ │ ├── N-KodakGold100.json │ │ │ ├── N-KodakGold200.json │ │ │ ├── N-KodakMax800.json │ │ │ ├── N-KodakPortra160.json │ │ │ ├── N-KodakPortra400.json │ │ │ ├── N-KodakPortra800.json │ │ │ ├── N-KodakRoyalGold400.json │ │ │ ├── N-KodakT-MAX3200.json │ │ │ ├── N-KodakTRI-X400.json │ │ │ ├── N-KodakUltraMax400.json │ │ │ ├── N-KodakUltraMax800.json │ │ │ ├── N-Polaroid665.json │ │ │ ├── N-Polaroid669.json │ │ │ └── N-Polaroid690.json │ │ ├── BlondiesBrunettes │ │ │ ├── Adeline.json │ │ │ ├── Amber.json │ │ │ ├── Clarisse.json │ │ │ ├── Emily.json │ │ │ ├── Gwendolyn.json │ │ │ ├── Juliet.json │ │ │ ├── Marianne.json │ │ │ ├── Summer.json │ │ │ ├── Taylor.json │ │ │ ├── Vicky.json │ │ │ └── Violet.json │ │ ├── ContrastlyWinterWonderland │ │ │ ├── WinterB&WDark.json │ │ │ ├── WinterB&WHighlights.json │ │ │ ├── WinterCinematicDehaze.json │ │ │ ├── WinterContrastExposure.json │ │ │ ├── WinterDehaze.json │ │ │ ├── WinterDesaturated.json │ │ │ ├── WinterFilmSaturation.json │ │ │ ├── WinterForegroundEnhancer.json │ │ │ ├── WinterHDR.json │ │ │ ├── WinterHazeCold.json │ │ │ ├── WinterHazeWarm.json │ │ │ ├── WinterHiSaturation.json │ │ │ ├── WinterLowSaturation.json │ │ │ ├── WinterMatte.json │ │ │ ├── WinterSceneryEnhancer.json │ │ │ ├── WinterSceneryEnhancerClear.json │ │ │ ├── WinterSkyEnhancer.json │ │ │ ├── WinterVibrantCold.json │ │ │ ├── WinterVibrantWarm.json │ │ │ └── WinterVintageRetro.json │ │ ├── Design Panoply - The Apocalypse │ │ │ ├── Corruption.json │ │ │ ├── Fallout.json │ │ │ ├── Hopeless.json │ │ │ ├── Metropolis.json │ │ │ ├── SecretBunker.json │ │ │ ├── Sewage.json │ │ │ ├── Station.json │ │ │ ├── ToxicCity.json │ │ │ ├── Union.json │ │ │ └── Wasteland.json │ │ ├── F-StopUrban │ │ │ ├── Grunge(black&white).json │ │ │ ├── Grunge(blue).json │ │ │ ├── Grunge(green).json │ │ │ ├── Grunge(muted).json │ │ │ ├── Grunge(red).json │ │ │ ├── Grunge(sepia).json │ │ │ ├── Grunge(smooth).json │ │ │ ├── Grunge.json │ │ │ ├── UrbanGrain.json │ │ │ └── UrbanVignette.json │ │ ├── FallColor │ │ │ ├── FallFoliage(Light).json │ │ │ ├── FallFoliage(Medium).json │ │ │ └── FallFoliage(Strong).json │ │ ├── Ilford B&W │ │ │ ├── IlfordDelta100Curve.json │ │ │ ├── IlfordDelta3200Curve.json │ │ │ ├── IlfordDelta400Curve.json │ │ │ ├── IlfordFP4Plus125Curve.json │ │ │ └── IlfordHP5Plus400Curve.json │ │ ├── Lightroom │ │ │ ├── LR-AgedPhoto1.json │ │ │ ├── LR-Antique.json │ │ │ ├── LR-AntiqueLight.json │ │ │ ├── LR-BW-Flat.json │ │ │ ├── LR-BW-HighContrast-2.json │ │ │ ├── LR-BW-HighContrast.json │ │ │ ├── LR-BW-Infrared.json │ │ │ ├── LR-BW-Landscape.json │ │ │ ├── LR-BW-Look1.json │ │ │ ├── LR-BW-Look2.json │ │ │ ├── LR-BW-Look3.json │ │ │ ├── LR-BW-Look4.json │ │ │ ├── LR-BW-Look5.json │ │ │ ├── LR-BW-LowContrast-2.json │ │ │ ├── LR-BW-LowContrast.json │ │ │ ├── LR-BW-Punch.json │ │ │ ├── LR-BW-SeleniumTone.json │ │ │ ├── LR-BW-SepiaTone.json │ │ │ ├── LR-BW-Soft.json │ │ │ ├── LR-BW-SplitTone.json │ │ │ ├── LR-BleachBypass.json │ │ │ ├── LR-Bright.json │ │ │ ├── LR-ColdTone.json │ │ │ ├── LR-CoolLight.json │ │ │ ├── LR-Creamtone.json │ │ │ ├── LR-CrossProcess-01.json │ │ │ ├── LR-CrossProcess-02.json │ │ │ ├── LR-CrossProcess-03.json │ │ │ ├── LR-Cyanotype.json │ │ │ ├── LR-DesaturatedContrast.json │ │ │ ├── LR-DirectPositive.json │ │ │ ├── LR-FlatGreen.json │ │ │ ├── LR-HighContrast.json │ │ │ ├── LR-HighContrastDetail.json │ │ │ ├── LR-Matte.json │ │ │ ├── LR-MediumContrast.json │ │ │ ├── LR-Natural.json │ │ │ ├── LR-OldPolar.json │ │ │ ├── LR-Punch.json │ │ │ ├── LR-RedLiftMatte.json │ │ │ ├── LR-Selenium.json │ │ │ ├── LR-Sepia.json │ │ │ ├── LR-SharpenFaces.json │ │ │ ├── LR-SharpenScenic.json │ │ │ ├── LR-SoftMist.json │ │ │ ├── LR-Split1.json │ │ │ ├── LR-Split2.json │ │ │ ├── LR-Split3.json │ │ │ ├── LR-Split4.json │ │ │ ├── LR-TurquoiseRed.json │ │ │ ├── LR-VintageInstant.json │ │ │ ├── LR-Vivid.json │ │ │ ├── LR-WarmContrast.json │ │ │ ├── LR-WarmShadows.json │ │ │ └── LR-Yesteryear.json │ │ ├── Mastin Labs Ilford BW Pack - Nikon │ │ │ ├── 1a.PanF35mm-N.json │ │ │ ├── 1a.PanFMediumFormat-N.json │ │ │ ├── 1b.HP535mm-N.json │ │ │ ├── 1b.HP5MediumFormat-N.json │ │ │ ├── 1c.Delta320035mm-N.json │ │ │ ├── 1c.Delta3200MediumFormat-N.json │ │ │ ├── 2a.AllHard-N.json │ │ │ ├── 2b.AllSoft-N.json │ │ │ ├── 2c.HighlightHard-N.json │ │ │ ├── 2d.HighlightSoft-N.json │ │ │ ├── 2e.ShadowHard-N.json │ │ │ ├── 2f.ShadowSoft-N.json │ │ │ ├── 3a.RedFilter-N.json │ │ │ ├── 3b.GreenFilter-N.json │ │ │ ├── 3c.YellowFilter-N.json │ │ │ ├── 4a.WarmtonePaper-N.json │ │ │ ├── 4b.CooltonePaper-N.json │ │ │ ├── 4c.NeutralPaper-N.json │ │ │ ├── 5a.LensCorrectionOn-N.json │ │ │ └── 5b.LensCorrectionOff(Reset)-N.json │ │ ├── Phil │ │ │ ├── Phil-Landscape.json │ │ │ └── Phil-People.json │ │ ├── PhotographyPlanetEssentials │ │ │ ├── BoldHDR.json │ │ │ ├── Cinematic-Alternate.json │ │ │ ├── Cinematic2.json │ │ │ ├── CoolBreeze.json │ │ │ ├── Cooling.json │ │ │ ├── CrossProcessed.json │ │ │ ├── Delightful.json │ │ │ ├── ElegantB&W.json │ │ │ ├── Faded.json │ │ │ ├── Hazy.json │ │ │ ├── HeavyGrain.json │ │ │ ├── HighClarityColorPop.json │ │ │ ├── HighContrastB&W.json │ │ │ ├── IntenseFilm.json │ │ │ ├── LightGrain.json │ │ │ ├── LightNoiseReduction.json │ │ │ ├── LightSharpening.json │ │ │ ├── Matte.json │ │ │ ├── MatteB&W.json │ │ │ ├── MediumGrain.json │ │ │ ├── ModerateVignette.json │ │ │ ├── NaturalColorPop.json │ │ │ ├── OldSchool.json │ │ │ ├── PeachyFilm.json │ │ │ ├── Pink.json │ │ │ ├── Red.json │ │ │ ├── ResetColorFilter.json │ │ │ ├── ResetGrain.json │ │ │ ├── ResetNoiseReduction.json │ │ │ ├── ResetVignette.json │ │ │ ├── SoftBluePastel.json │ │ │ ├── SoftMatte.json │ │ │ ├── SoftVignette.json │ │ │ ├── SplitToned.json │ │ │ ├── StrongNoiseReduction.json │ │ │ ├── StrongSharpening.json │ │ │ ├── StrongVignette.json │ │ │ ├── Sunlight.json │ │ │ ├── Teal.json │ │ │ ├── Violet2.json │ │ │ └── WarmSunlight.json │ │ ├── Porcelain B&W │ │ │ ├── PorcelainI.json │ │ │ ├── PorcelainIIIHC.json │ │ │ ├── PorcelainIILT.json │ │ │ ├── PorcelainIV.json │ │ │ ├── PorcelainVII.json │ │ │ ├── PorcelainVIIILT.json │ │ │ ├── PorcelainVISF2.json │ │ │ └── PorcelainVSF.json │ │ ├── Punches │ │ │ ├── BrightFadedPunch.json │ │ │ ├── CrossVintagePunch.json │ │ │ ├── DarkFadedPunch.json │ │ │ ├── HighContrastPunch.json │ │ │ ├── NeutralPunch.json │ │ │ ├── VintagePunch.json │ │ │ └── WarmPunch.json │ │ ├── SleeklensLandscapeVibrations │ │ │ ├── AlotofContrast.json │ │ │ ├── BlueSky.json │ │ │ ├── BreakofDawn.json │ │ │ ├── Brighten.json │ │ │ ├── BrightenShadows.json │ │ │ ├── Cinematic.json │ │ │ ├── ClassicSunset.json │ │ │ ├── CleanStart.json │ │ │ ├── ContrastyB&W.json │ │ │ ├── Crunchy.json │ │ │ ├── CrystalClear.json │ │ │ ├── Darken.json │ │ │ ├── Dramatic.json │ │ │ ├── EnhanceDetails.json │ │ │ ├── EnhanceGoldenHour.json │ │ │ ├── Hollywood.json │ │ │ ├── LessHighlights.json │ │ │ ├── MagicGoldenHour.json │ │ │ ├── MoreDynamicRange.json │ │ │ ├── October.json │ │ │ ├── OverallHaze.json │ │ │ ├── PunchitUp.json │ │ │ ├── PunchyBlackandWhite.json │ │ │ ├── ReduceReds.json │ │ │ ├── ReduceYellows.json │ │ │ ├── SoftLight.json │ │ │ ├── VeryFlat.json │ │ │ ├── Vignette-MediumDarkness.json │ │ │ ├── Vivid.json │ │ │ └── WarmSplendor.json │ │ ├── SleeklensStarter │ │ │ ├── AfternoonPlay.json │ │ │ ├── CleanBlack.json │ │ │ ├── CloseHighlights.json │ │ │ ├── CloseShadows.json │ │ │ ├── ColorPop.json │ │ │ ├── DreamyFeeling.json │ │ │ ├── Exposure+1.json │ │ │ ├── ExposureMinus1.json │ │ │ ├── FreshLime.json │ │ │ ├── GreenCotton.json │ │ │ ├── GreyWorld.json │ │ │ ├── HappyMeadow.json │ │ │ ├── HawaiColor.json │ │ │ ├── HighContrast.json │ │ │ ├── Kasper.json │ │ │ ├── LowContrast.json │ │ │ ├── NiceGreens.json │ │ │ ├── OpenHighlights.json │ │ │ ├── OpenShadows.json │ │ │ ├── RESETALL.json │ │ │ ├── RainyDays.json │ │ │ ├── Startrails.json │ │ │ ├── SummerBloom.json │ │ │ ├── SunnyVibe.json │ │ │ ├── TravelWish.json │ │ │ ├── VelvetFreedom.json │ │ │ ├── Vignette-SubtleBlack.json │ │ │ ├── Vignette-SubtleWhite.json │ │ │ ├── VintageBlack.json │ │ │ ├── WalkOnABeach.json │ │ │ └── WarmShadows.json │ │ ├── Test │ │ │ └── Test00.json │ │ ├── TonalBlack&White │ │ │ ├── BlackandWhiteTonalContrast(Light).json │ │ │ ├── BlackandWhiteTonalContrast(Medium).json │ │ │ └── BlackandWhiteTonalContrast(Strong).json │ │ ├── Trey │ │ │ ├── ABeautifulRelease.json │ │ │ ├── AMarshmallowHappysmell.json │ │ │ ├── AlkalineStorm.json │ │ │ ├── BeautifulRelease.json │ │ │ ├── BrokenPhotocopier.json │ │ │ ├── CarefullyShavenTurk.json │ │ │ ├── HotelofBudapest.json │ │ │ ├── HotelofBudapestFreeSample.json │ │ │ ├── LatinOilSlicker.json │ │ │ ├── LatinOilSlickerFreeSample.json │ │ │ ├── Let's-Get-LostFree-LR-Presets.co.json │ │ │ ├── Let'sGetLost.json │ │ │ ├── LightHDR.json │ │ │ ├── MarshmallowHappysmell.json │ │ │ ├── Navigator.json │ │ │ ├── OldenDelays.json │ │ │ ├── OnRecreationalDrugs.json │ │ │ ├── Parentgrain.json │ │ │ ├── ParentgrainFreeSample.json │ │ │ ├── PrimePicard.json │ │ │ ├── PrimePicardFreeSample.json │ │ │ ├── Relic.json │ │ │ ├── RestorationSoftware.json │ │ │ ├── SandstormCastleBlack.json │ │ │ ├── SandstormCastleBlackFreeSample.json │ │ │ ├── SteampunkAfternoon.json │ │ │ ├── SundayAloneTime.json │ │ │ ├── ThankHeavenForLittleGirls.json │ │ │ ├── TheNavigator.json │ │ │ └── TurkishBlast.json │ │ ├── VSCO │ │ │ ├── A4.json │ │ │ ├── A5.json │ │ │ ├── A6.json │ │ │ ├── B1.json │ │ │ ├── B5.json │ │ │ ├── HB1.json │ │ │ ├── HB2.json │ │ │ ├── M5.json │ │ │ ├── T1.json │ │ │ └── X1.json │ │ ├── Washes │ │ │ ├── AmberDarkWash.json │ │ │ ├── AmberWash.json │ │ │ ├── ApricotWash.json │ │ │ ├── CrossDarkWash.json │ │ │ ├── DarkWash.json │ │ │ ├── WarmCrossWash.json │ │ │ ├── WarmDarkCrossWash.json │ │ │ └── WarmFadedWash.json │ │ ├── graphicex 01 │ │ │ ├── graphicex01-01.json │ │ │ ├── graphicex01-02.json │ │ │ ├── graphicex01-03.json │ │ │ ├── graphicex01-04.json │ │ │ ├── graphicex01-05.json │ │ │ ├── graphicex01-06.json │ │ │ ├── graphicex01-07.json │ │ │ ├── graphicex01-08.json │ │ │ ├── graphicex01-09.json │ │ │ └── graphicex01-10.json │ │ ├── graphicex 02 │ │ │ ├── graphicex02-01.json │ │ │ ├── graphicex02-02.json │ │ │ ├── graphicex02-03.json │ │ │ ├── graphicex02-04.json │ │ │ ├── graphicex02-05.json │ │ │ ├── graphicex02-06.json │ │ │ ├── graphicex02-07.json │ │ │ ├── graphicex02-08.json │ │ │ ├── graphicex02-09.json │ │ │ ├── graphicex02-10.json │ │ │ ├── graphicex02-11.json │ │ │ ├── graphicex02-12.json │ │ │ ├── graphicex02-13.json │ │ │ ├── graphicex02-14.json │ │ │ ├── graphicex02-15.json │ │ │ ├── graphicex02-16.json │ │ │ ├── graphicex02-17.json │ │ │ ├── graphicex02-18.json │ │ │ ├── graphicex02-19.json │ │ │ └── graphicex02-20.json │ │ ├── graphicex HDR │ │ │ ├── graphicexhdr01-01.json │ │ │ ├── graphicexhdr01-02.json │ │ │ ├── graphicexhdr01-03.json │ │ │ ├── graphicexhdr01-04.json │ │ │ ├── graphicexhdr01-05.json │ │ │ ├── graphicexhdr01-06.json │ │ │ ├── graphicexhdr01-07.json │ │ │ ├── graphicexhdr01-08.json │ │ │ ├── graphicexhdr01-09.json │ │ │ ├── graphicexhdr01-10.json │ │ │ ├── graphicexhdr01-11.json │ │ │ ├── graphicexhdr01-12.json │ │ │ ├── graphicexhdr01-13.json │ │ │ ├── graphicexhdr01-14.json │ │ │ └── graphicexhdr01-15.json │ │ ├── onOneGlow │ │ │ ├── Glow-Bright&Flattened.json │ │ │ ├── Glow-BrightContrast.json │ │ │ ├── Glow-SoftandMuted.json │ │ │ ├── Glow-SubtlePortrait.json │ │ │ ├── Glow-Vibrance.json │ │ │ └── Glow-VibrantDesaturation.json │ │ ├── onOneHandTinting │ │ │ ├── Tinting-Aqua.json │ │ │ ├── Tinting-Blue.json │ │ │ ├── Tinting-Brown.json │ │ │ ├── Tinting-Green.json │ │ │ ├── Tinting-Orange.json │ │ │ ├── Tinting-Pink.json │ │ │ ├── Tinting-Red.json │ │ │ └── Tinting-Yellow.json │ │ ├── onOneInstantastic │ │ │ ├── 1975.json │ │ │ ├── Brandenburg.json │ │ │ ├── Crossify.json │ │ │ ├── Daisy.json │ │ │ ├── ElHefe.json │ │ │ ├── Inky.json │ │ │ ├── LordKelvin.json │ │ │ ├── Mayor.json │ │ │ ├── PopFlash.json │ │ │ ├── Roaster.json │ │ │ ├── Robin.json │ │ │ ├── WaldenPond.json │ │ │ └── XPro.json │ │ ├── onOneKidsMatteB&W │ │ │ ├── Ava.json │ │ │ ├── Emma.json │ │ │ ├── Ethan.json │ │ │ ├── Isabella.json │ │ │ ├── Jackson.json │ │ │ ├── Liam.json │ │ │ ├── Mason.json │ │ │ ├── Noah.json │ │ │ ├── Olivia.json │ │ │ └── Sophia.json │ │ ├── onOneMovieLooks │ │ │ ├── Arkham.json │ │ │ ├── Blue Dawn.json │ │ │ ├── BlueDawn.json │ │ │ ├── Omaha Beach.json │ │ │ ├── OmahaBeach.json │ │ │ ├── Tijuana.json │ │ │ └── Wonka.json │ │ ├── onOneToners │ │ │ ├── B&WHighContrast.json │ │ │ ├── B&WInfrared.json │ │ │ ├── BluelikeJazz.json │ │ │ ├── FourLeafClover.json │ │ │ ├── LightMocha.json │ │ │ ├── PurplePassion.json │ │ │ ├── RedVelvet.json │ │ │ └── SundayMorningLatte.json │ │ ├── onOneVintage │ │ │ ├── VintageBlueYellow.json │ │ │ ├── VintageCool.json │ │ │ ├── VintageRed.json │ │ │ └── VintageRedCyan.json │ │ ├── onOneX-Process │ │ │ ├── CrossProcessBlue.json │ │ │ ├── CrossProcessGreen.json │ │ │ └── CrossProcessYellow.json │ │ ├── poster_bd HDR Soft Vol.2 │ │ │ ├── posterbdhdrsoft01-01.json │ │ │ ├── posterbdhdrsoft01-02.json │ │ │ ├── posterbdhdrsoft01-03.json │ │ │ ├── posterbdhdrsoft01-04.json │ │ │ ├── posterbdhdrsoft01-05.json │ │ │ ├── posterbdhdrsoft01-06.json │ │ │ ├── posterbdhdrsoft01-07.json │ │ │ ├── posterbdhdrsoft01-08.json │ │ │ ├── posterbdhdrsoft01-09.json │ │ │ ├── posterbdhdrsoft01-10.json │ │ │ ├── posterbdhdrsoft01-11.json │ │ │ ├── posterbdhdrsoft01-12.json │ │ │ ├── posterbdhdrsoft01-13.json │ │ │ ├── posterbdhdrsoft01-14.json │ │ │ ├── posterbdhdrsoft01-15.json │ │ │ ├── posterbdhdrsoft01-16.json │ │ │ ├── posterbdhdrsoft01-17.json │ │ │ ├── posterbdhdrsoft01-18.json │ │ │ ├── posterbdhdrsoft01-19.json │ │ │ ├── posterbdhdrsoft01-20.json │ │ │ ├── posterbdhdrsoft01-21.json │ │ │ ├── posterbdhdrsoft01-22.json │ │ │ ├── posterbdhdrsoft01-23.json │ │ │ ├── posterbdhdrsoft01-24.json │ │ │ └── posterbdhdrsoft01-25.json │ │ ├── poster_bd Soft Vol.1 │ │ │ ├── posterbdsoft01-01.json │ │ │ ├── posterbdsoft01-02.json │ │ │ ├── posterbdsoft01-03.json │ │ │ ├── posterbdsoft01-04.json │ │ │ ├── posterbdsoft01-05.json │ │ │ ├── posterbdsoft01-06.json │ │ │ ├── posterbdsoft01-07.json │ │ │ ├── posterbdsoft01-08.json │ │ │ ├── posterbdsoft01-09.json │ │ │ ├── posterbdsoft01-10.json │ │ │ ├── posterbdsoft01-11.json │ │ │ ├── posterbdsoft01-12.json │ │ │ ├── posterbdsoft01-13.json │ │ │ ├── posterbdsoft01-14.json │ │ │ ├── posterbdsoft01-15.json │ │ │ ├── posterbdsoft01-16.json │ │ │ ├── posterbdsoft01-17.json │ │ │ ├── posterbdsoft01-18.json │ │ │ ├── posterbdsoft01-19.json │ │ │ └── posterbdsoft01-20.json │ │ ├── poster_bd Soft Vol.2 │ │ │ ├── posterbdsoft02-01.json │ │ │ ├── posterbdsoft02-02.json │ │ │ ├── posterbdsoft02-03.json │ │ │ ├── posterbdsoft02-04.json │ │ │ ├── posterbdsoft02-05.json │ │ │ ├── posterbdsoft02-06.json │ │ │ ├── posterbdsoft02-07.json │ │ │ ├── posterbdsoft02-08.json │ │ │ ├── posterbdsoft02-09.json │ │ │ ├── posterbdsoft02-10.json │ │ │ ├── posterbdsoft02-11.json │ │ │ ├── posterbdsoft02-12.json │ │ │ ├── posterbdsoft02-13.json │ │ │ ├── posterbdsoft02-14.json │ │ │ ├── posterbdsoft02-15.json │ │ │ ├── posterbdsoft02-16.json │ │ │ ├── posterbdsoft02-17.json │ │ │ ├── posterbdsoft02-18.json │ │ │ ├── posterbdsoft02-19.json │ │ │ └── posterbdsoft02-20.json │ │ ├── poster_bd Soft Vol.3 │ │ │ ├── posterbdsoft03-01.json │ │ │ ├── posterbdsoft03-02.json │ │ │ ├── posterbdsoft03-03.json │ │ │ ├── posterbdsoft03-04.json │ │ │ ├── posterbdsoft03-05.json │ │ │ ├── posterbdsoft03-06.json │ │ │ ├── posterbdsoft03-07.json │ │ │ ├── posterbdsoft03-08.json │ │ │ ├── posterbdsoft03-09.json │ │ │ ├── posterbdsoft03-10.json │ │ │ ├── posterbdsoft03-11.json │ │ │ ├── posterbdsoft03-12.json │ │ │ ├── posterbdsoft03-13.json │ │ │ ├── posterbdsoft03-14.json │ │ │ ├── posterbdsoft03-15.json │ │ │ ├── posterbdsoft03-16.json │ │ │ ├── posterbdsoft03-17.json │ │ │ ├── posterbdsoft03-18.json │ │ │ ├── posterbdsoft03-19.json │ │ │ └── posterbdsoft03-20.json │ │ ├── poster_bd Soft Vol.4 │ │ │ ├── posterbdsoft04-01.json │ │ │ ├── posterbdsoft04-02.json │ │ │ ├── posterbdsoft04-03.json │ │ │ ├── posterbdsoft04-04.json │ │ │ ├── posterbdsoft04-05.json │ │ │ ├── posterbdsoft04-06.json │ │ │ ├── posterbdsoft04-07.json │ │ │ ├── posterbdsoft04-08.json │ │ │ ├── posterbdsoft04-09.json │ │ │ ├── posterbdsoft04-10.json │ │ │ ├── posterbdsoft04-11.json │ │ │ ├── posterbdsoft04-12.json │ │ │ ├── posterbdsoft04-13.json │ │ │ ├── posterbdsoft04-14.json │ │ │ ├── posterbdsoft04-15.json │ │ │ ├── posterbdsoft04-16.json │ │ │ ├── posterbdsoft04-17.json │ │ │ ├── posterbdsoft04-18.json │ │ │ ├── posterbdsoft04-19.json │ │ │ ├── posterbdsoft04-20.json │ │ │ ├── posterbdsoft04-21.json │ │ │ └── posterbdsoft04-22.json │ │ ├── poster_bd Wedding │ │ │ ├── posterbdwedding-01.json │ │ │ ├── posterbdwedding-02.json │ │ │ ├── posterbdwedding-03.json │ │ │ ├── posterbdwedding-04.json │ │ │ ├── posterbdwedding-05.json │ │ │ ├── posterbdwedding-06.json │ │ │ ├── posterbdwedding-07.json │ │ │ ├── posterbdwedding-08.json │ │ │ ├── posterbdwedding-09.json │ │ │ ├── posterbdwedding-10.json │ │ │ ├── posterbdwedding-11.json │ │ │ ├── posterbdwedding-12.json │ │ │ ├── posterbdwedding-13.json │ │ │ ├── posterbdwedding-14.json │ │ │ ├── posterbdwedding-15.json │ │ │ ├── posterbdwedding-16.json │ │ │ ├── posterbdwedding-17.json │ │ │ ├── posterbdwedding-18.json │ │ │ ├── posterbdwedding-19.json │ │ │ ├── posterbdwedding-20.json │ │ │ ├── posterbdwedding-21.json │ │ │ └── posterbdwedding-22.json │ │ ├── presetpro Light Leaks │ │ │ ├── Presetpro-Center.json │ │ │ └── Presetpro-Edge.json │ │ ├── uploader B&W HDR │ │ │ ├── B&WP#01.json │ │ │ ├── B&WP#02.json │ │ │ ├── B&WP#03.json │ │ │ ├── B&WP#04.json │ │ │ ├── B&WP#05.json │ │ │ ├── B&WP#06.json │ │ │ ├── B&WP#07.json │ │ │ ├── B&WP#08.json │ │ │ ├── B&WP#09.json │ │ │ └── B&WP#10.json │ │ └── uploader Dramatic Landscape │ │ │ ├── dramatic-01.json │ │ │ ├── dramatic-02.json │ │ │ ├── dramatic-03.json │ │ │ ├── dramatic-04.json │ │ │ ├── dramatic-05.json │ │ │ ├── dramatic-06.json │ │ │ ├── dramatic-07.json │ │ │ ├── dramatic-08.json │ │ │ ├── dramatic-09.json │ │ │ ├── dramatic-10.json │ │ │ ├── dramatic-11.json │ │ │ ├── dramatic-12.json │ │ │ ├── dramatic-13.json │ │ │ ├── dramatic-14.json │ │ │ ├── dramatic-15.json │ │ │ ├── dramatic-16.json │ │ │ ├── dramatic-17.json │ │ │ ├── dramatic-18.json │ │ │ ├── dramatic-19.json │ │ │ ├── dramatic-20.json │ │ │ ├── dramatic-21.json │ │ │ ├── dramatic-22.json │ │ │ ├── dramatic-23.json │ │ │ ├── dramatic-24.json │ │ │ ├── dramatic-25.json │ │ │ ├── dramatic-26.json │ │ │ ├── dramatic-27.json │ │ │ ├── dramatic-28.json │ │ │ ├── dramatic-29.json │ │ │ └── dramatic-30.json │ ├── crayola.json │ ├── defaultConfig.json │ ├── genLookupJson.pl │ ├── oldFilterConfig.json │ ├── oldPresetList.json │ ├── testFilterConfig.json │ └── x.txt ├── Controllers │ ├── CameraViewController.swift │ ├── FilterBasedController.swift │ ├── FilterBasedControllerDelegate.swift │ ├── Galleries │ │ ├── BlendGalleryViewController.swift │ │ ├── CategoryGalleryViewController.swift │ │ ├── FilterGalleryViewController.swift │ │ ├── SampleGalleryViewController.swift │ │ └── StyleTransferGalleryViewController.swift │ ├── LiveFilterViewController.swift │ ├── MainViewController.swift │ ├── Menus │ │ ├── EditBaseMenuController.swift │ │ ├── EditBaseMenuInterface.swift │ │ ├── EditBasicAdjustmentsController.swift │ │ ├── EditCurvesController.swift │ │ ├── EditDetailMenuController.swift │ │ ├── EditFacesMenuController.swift │ │ ├── EditMainOptionsController.swift │ │ └── README.md │ ├── Tools │ │ ├── EditBaseToolController.swift │ │ ├── EditCropToolController.swift │ │ ├── EditCurvesToolController.swift │ │ ├── EditFacesToolController.swift │ │ ├── EditHSVToolController.swift │ │ └── README.md │ └── ViewControllers │ │ ├── BasicEditViewController.swift │ │ ├── BlendImagesViewController.swift │ │ ├── ChooseBlendViewController.swift │ │ ├── ChoosePhotoViewController.swift │ │ ├── ColorPickerController.swift │ │ ├── ColorSchemeViewController.swift │ │ ├── CoordinatedController.swift │ │ ├── FilterDetailsViewController.swift │ │ ├── HTMLViewController.swift │ │ ├── MainMenuController.swift │ │ ├── PresetListController.swift │ │ ├── ResetViewController.swift │ │ ├── SettingsMenuController.swift │ │ ├── SplashScreenViewController.swift │ │ ├── StartupViewController.swift │ │ └── ThemeChooserController.swift ├── Coordinators │ ├── AppCoordinator.swift │ ├── BasicEditCoordinator.swift │ ├── BlendImagesCoordinator.swift │ ├── CategoryGalleryCoordinator.swift │ ├── ChoosePhotoCoordinator.swift │ ├── ControllerDelegate.swift │ ├── ControllerFactory.swift │ ├── Coordinator.swift │ ├── CoordinatorDelegate.swift │ ├── CoordinatorFactory.swift │ ├── FilterGalleryCoordinator.swift │ ├── HelpCoordinator.swift │ ├── MainMenuCoordinator.swift │ ├── PresetListCoordinator.swift │ ├── README.md │ ├── SettingsCoordinator.swift │ ├── SimpleCoordinator.swift │ ├── SplashScreenCoordinator.swift │ ├── StyleTransferGalleryCoordinator.swift │ └── SubControllerDelegate.swift ├── Database │ ├── AssetListEntity+CoreDataClass.swift │ ├── AssetListEntity+CoreDataProperties.swift │ ├── AssetListRecord.swift │ ├── AssignmentEntity+CoreDataClass.swift │ ├── AssignmentEntity+CoreDataProperties.swift │ ├── AssignmentRecord.swift │ ├── CategoryEntity+CoreDataClass.swift │ ├── CategoryEntity+CoreDataProperties.swift │ ├── CategoryRecord.swift │ ├── Database.swift │ ├── FilterEntity+CoreDataClass.swift │ ├── FilterEntity+CoreDataProperties.swift │ ├── FilterRecord.swift │ ├── LookupFilterEntity+CoreDataClass.swift │ ├── LookupFilterEntity+CoreDataProperties.swift │ ├── LookupFilterRecord.swift │ ├── SettingsEntity+CoreDataClass.swift │ ├── SettingsEntity+CoreDataProperties.swift │ ├── SettingsRecord.swift │ ├── UserChangesEntity+CoreDataClass.swift │ ├── UserChangesEntity+CoreDataProperties.swift │ ├── UserChangesRecord.swift │ └── phixerModel.xcdatamodeld │ │ └── Model.xcdatamodel │ │ └── contents ├── Extensions │ ├── AVDepthData+Extensions.swift │ ├── CGFloat+Extensions.swift │ ├── CGImage+Extensions.swift │ ├── CGImagePropertyOrientation+Extensions.swift │ ├── CGImageSource+Extensions.swift │ ├── CGRect+Extensions.swift │ ├── CIColor+Extensions.swift │ ├── CIImage+Extensions.swift │ ├── CIVector+Extensions.swift │ ├── UIBezierPath+Extensions.swift │ ├── UIColor+Extensions.swift │ ├── UIFont+Extensions.swift │ ├── UIImage+Extensions.swift │ ├── UILabel+Extensions.swift │ └── UIViewController+Extensions.swift ├── Filters │ ├── CustomFilters │ │ ├── CustomFilterRegistry.swift │ │ ├── Filterpedia │ │ │ ├── Bokeh.swift │ │ │ ├── CIKL_Sky.swift │ │ │ ├── CMYKRegistrationMismatch.swift │ │ │ ├── CRTFilter.swift │ │ │ ├── CarnivalMirror.swift │ │ │ ├── CausticRefraction.swift │ │ │ ├── ColorDirectedBlur.swift │ │ │ ├── CompoundEye.swift │ │ │ ├── ConcentricSineWaves.swift │ │ │ ├── ConvolutionKernels.swift │ │ │ ├── CustomFilters.swift │ │ │ ├── DitherBayer.cikernel │ │ │ ├── EightBit.swift │ │ │ ├── Extensions.swift │ │ │ ├── FilmicEffects.swift │ │ │ ├── Flame.swift │ │ │ ├── KuwaharaFilter.swift │ │ │ ├── LensFlare.swift │ │ │ ├── MercurializeFilter.swift │ │ │ ├── ModelIOGenerators.swift │ │ │ ├── MultiBandHSV.swift │ │ │ ├── README.md │ │ │ ├── RGBChannelCompositing.swift │ │ │ ├── RefractedTextFilter.swift │ │ │ ├── ScatterFilter.swift │ │ │ ├── SimplePlasma.swift │ │ │ ├── SobelEdgeDetection.swift │ │ │ ├── ThirdPartyFilters.swift │ │ │ ├── TransverseChromaticAberration.swift │ │ │ ├── VImageFilters.swift │ │ │ ├── Voronoi.cikernel │ │ │ ├── VoronoiNoise.swift │ │ │ ├── cikl_sky.cikernel │ │ │ ├── flame.cikernel │ │ │ └── metalFilters │ │ │ │ ├── MetalFilters.swift │ │ │ │ └── Shaders.metal │ │ ├── Yu │ │ │ ├── README.md │ │ │ ├── YUCIBilateralFilter.cikernel │ │ │ ├── YUCIBilateralFilter.h │ │ │ ├── YUCIBilateralFilter.m │ │ │ ├── YUCICLAHE.cikernel │ │ │ ├── YUCICLAHE.h │ │ │ ├── YUCICLAHE.m │ │ │ ├── YUCIColorLookup.cikernel │ │ │ ├── YUCIColorLookup.h │ │ │ ├── YUCIColorLookup.m │ │ │ ├── YUCIFXAA.cikernel │ │ │ ├── YUCIFXAA.h │ │ │ ├── YUCIFXAA.m │ │ │ ├── YUCIFilterConstructor.h │ │ │ ├── YUCIFilterConstructor.m │ │ │ ├── YUCIFilterPreviewGenerator.h │ │ │ ├── YUCIFilterPreviewGenerator.m │ │ │ ├── YUCIFilterUtilities.h │ │ │ ├── YUCIFilterUtilities.m │ │ │ ├── YUCIFlashTransition.cikernel │ │ │ ├── YUCIFlashTransition.h │ │ │ ├── YUCIFlashTransition.m │ │ │ ├── YUCIGreenBlueChannelOverlayBlend.cikernel │ │ │ ├── YUCIHSLToRGB.cikernel │ │ │ ├── YUCIHighPass.cikernel │ │ │ ├── YUCIHighPass.h │ │ │ ├── YUCIHighPass.m │ │ │ ├── YUCIHighPassSkinSmoothing.h │ │ │ ├── YUCIHighPassSkinSmoothing.m │ │ │ ├── YUCIHighPassSkinSmoothingMaskBoost.cikernel │ │ │ ├── YUCIHistogramEqualization.h │ │ │ ├── YUCIHistogramEqualization.m │ │ │ ├── YUCIRGBToHSL.cikernel │ │ │ ├── YUCIRGBToneCurve.cikernel │ │ │ ├── YUCIRGBToneCurve.h │ │ │ ├── YUCIRGBToneCurve.m │ │ │ ├── YUCIReflectedTile.cikernel │ │ │ ├── YUCIReflectedTile.h │ │ │ ├── YUCIReflectedTile.m │ │ │ ├── YUCIReflectedTileROICalculator.h │ │ │ ├── YUCIReflectedTileROICalculator.m │ │ │ ├── YUCIUtilities.h │ │ │ └── YUCIUtilities.m │ │ └── phil │ │ │ ├── AdaptiveThresholdFilter.swift │ │ │ ├── AutoAdjustFilter.swift │ │ │ ├── BWZoneFilter.swift │ │ │ ├── BackgroundBlurFilter.swift │ │ │ ├── BlendImageFilter.swift │ │ │ ├── BrightnessFilter.swift │ │ │ ├── CLAHEFilter.swift │ │ │ ├── CenteredVignetteFilter.swift │ │ │ ├── ClarityFilter.swift │ │ │ ├── ColorConversions.cikernel │ │ │ ├── ColorSketchFilter.swift │ │ │ ├── ColorSobelFilter.swift │ │ │ ├── ContrastFilter.swift │ │ │ ├── CropRotateFilter.swift │ │ │ ├── DehazeFilter.swift │ │ │ ├── EdgeGlowFilter.swift │ │ │ ├── EnhanceEyebrowsFilter.swift │ │ │ ├── EnhanceEyesFilter.swift │ │ │ ├── EnhanceFaceFilter.swift │ │ │ ├── EnhanceLipsFilter.swift │ │ │ ├── EnhanceTeethFilter.swift │ │ │ ├── FilmGrainFilter.swift │ │ │ ├── ForegroundLightingFilter.swift │ │ │ ├── ForegroundMaskFilter.swift │ │ │ ├── HighPassFilter.swift │ │ │ ├── HighPassSharpeningFilter.swift │ │ │ ├── HighPassSkinSmoothingFilter.swift │ │ │ ├── HueRangeFilter.swift │ │ │ ├── LaplacianGaussianFilter.swift │ │ │ ├── LumaRangeFilter.swift │ │ │ ├── MaskedSkinSmoothingFilter.swift │ │ │ ├── Opacity.swift │ │ │ ├── OpacityFilter.swift │ │ │ ├── PresetFilter.swift │ │ │ ├── SaturationFilter.swift │ │ │ ├── SketchFilter.swift │ │ │ ├── SmoothThresholdFilter.swift │ │ │ ├── Sobel3x3Filter.swift │ │ │ ├── Sobel5x5Filter.swift │ │ │ ├── SobelFilter.swift │ │ │ ├── SplitToningFilter.swift │ │ │ ├── StyleTransferFilter.swift │ │ │ ├── Style_Candy.swift │ │ │ ├── Style_Feathers.swift │ │ │ ├── Style_LaMuse.swift │ │ │ ├── Style_Mosaic.swift │ │ │ ├── Style_Scream.swift │ │ │ ├── Style_Udnie.swift │ │ │ ├── UnsharpMaskFilter.swift │ │ │ ├── VignetteEffectFilter.swift │ │ │ └── WhiteBalanceFilter.swift │ ├── FilterChain.swift │ ├── FilterDefinition.swift │ └── FilterDescriptor.swift ├── GoogleService-Info.plist ├── Help │ ├── About.html │ ├── BasicEditor.html │ ├── BlendGallery.html │ ├── BlendImages.html │ ├── FilterGallery.html │ ├── FilterPreview.html │ ├── LiveFilters.html │ ├── Reset.html │ ├── SampleGallery.html │ ├── Settings.html │ ├── StyleTransferGallery.html │ ├── ThemeChooser.html │ └── default.html ├── Images │ ├── Blends │ │ ├── 8_by_grandeombre_stock.jpg │ │ ├── NerveEndings-Parsley.jpg │ │ ├── ScratchTheItch.jpg │ │ ├── _film_grain_numba_1__by_su_y.jpg │ │ ├── grunge_background_v2_by_bcoolbyte.jpg │ │ ├── lightning_splits_by_dazzle_textures.jpg │ │ ├── monoprint_16_by_pendlestock.jpg │ │ ├── monoprint_17_by_pendlestock.jpg │ │ ├── neopan_texture___2_by_jakezdaniel-d1zp0ug.jpg │ │ ├── paper_curled_by_fotojenny.jpg │ │ ├── sad_ending_by_ckdailyplanet-d30dame.jpg │ │ ├── shedyourskin_DirtyLights2.jpg │ │ ├── shedyourskin_DirtyLights4.jpg │ │ ├── shedyourskin_Tex_119.jpg │ │ ├── shedyourskin_Tex_124.jpg │ │ ├── shedyourskin_Tex_132.jpg │ │ ├── shedyourskin_Tex_87.jpg │ │ ├── texture_110_by_sirius_sdz.jpg │ │ ├── texture_142_by_sirius_sdz.jpg │ │ ├── texture_202_by_malleni_stock-d9uwyqo.jpg │ │ ├── textures_100_by_inthename_stock.jpg │ │ ├── textures_92_by_inthename_stock.jpg │ │ └── wake_by_photoshop_stock.jpg │ ├── Default-568h@2x.png │ ├── Lookups │ │ ├── fd_04a_neutral.jpg │ │ ├── fd_04b_desat.jpg │ │ ├── fd_04c_blue.jpg │ │ ├── fd_04d_blue_yellow.jpg │ │ ├── fd_04e_dark.jpg │ │ ├── fd_04f_dark_cool.jpg │ │ ├── fd_04g_low_contrast.jpg │ │ ├── fd_04h_red.jpg │ │ ├── fd_04i_dark_warm.jpg │ │ ├── fd_04j_amber.jpg │ │ ├── fd_04k_dark_purple.jpg │ │ ├── fd_04l_hi_contrast.jpg │ │ ├── fd_09a_wash_dark.jpg │ │ ├── fd_09b_wash_cross_dark.jpg │ │ ├── fd_09c_wash_amber_dark.jpg │ │ ├── fd_09d_wash_amber.jpg │ │ ├── fd_09e_wash_apricot.jpg │ │ ├── fd_09f_wash_warm_cross.jpg │ │ ├── fd_09g_wash_warm_dark_cross.jpg │ │ ├── fd_09h_wash_warm_faded.jpg │ │ ├── fx_001_bleach_bypass.jpg │ │ ├── fx_002_duplex.jpg │ │ ├── fx_003_fog.jpg │ │ ├── fx_004_foliage_1.jpg │ │ ├── fx_005_foliage_2.jpg │ │ ├── fx_006_foliage_3.jpg │ │ ├── fx_007_hi_key.jpg │ │ ├── fx_008_indian_summer.jpg │ │ ├── fx_009_infrared_1.jpg │ │ ├── fx_010_infrared_2.jpg │ │ ├── fx_011_infrared_3.jpg │ │ ├── fx_012_infrared_4.jpg │ │ ├── fx_013_infrared_color_1.jpg │ │ ├── fx_014_infrared_color_2.jpg │ │ ├── fx_015_infrared_color_3.jpg │ │ ├── fx_016_infrared_color_4.jpg │ │ ├── fx_017_infrared_color_5.jpg │ │ ├── fx_018_ink_1.jpg │ │ ├── fx_019_ink_2.jpg │ │ ├── fx_020_ink_3.jpg │ │ ├── fx_021_ink_4.jpg │ │ ├── fx_022_ink_5.jpg │ │ ├── fx_023_ink_6.jpg │ │ ├── fx_024_ink_7.jpg │ │ ├── fx_025_ink_8.jpg │ │ ├── fx_026_ink_9.jpg │ │ ├── fx_027_ink_10.jpg │ │ ├── fx_028_ink_11.jpg │ │ ├── fx_029_lo_key.jpg │ │ ├── fx_030_midnight_1.jpg │ │ ├── fx_031_midnight_2.jpg │ │ ├── fx_032_midnight_3.jpg │ │ ├── fx_033_midnight_4.jpg │ │ ├── fx_034_midnight_5.jpg │ │ ├── fx_035_monday_morning_1.jpg │ │ ├── fx_036_monday_morning_2.jpg │ │ ├── fx_037_monday_morning_3.jpg │ │ ├── fx_038_monday_morning_4.jpg │ │ ├── fx_039_monday_morning_5.jpg │ │ ├── fx_040_old_photo_1.jpg │ │ ├── fx_041_old_photo_2.jpg │ │ ├── fx_042_old_photo_3.jpg │ │ ├── fx_043_old_photo_4.jpg │ │ ├── fx_044_old_photo_5.jpg │ │ ├── fx_045_old_photo_6.jpg │ │ ├── fx_046_old_photo_color_1.jpg │ │ ├── fx_047_old_photo_color_2.jpg │ │ ├── fx_048_old_photo_color_3.jpg │ │ ├── fx_049_old_photo_color_4.jpg │ │ ├── fx_050_old_photo_color_5.jpg │ │ ├── fx_051_old_photo_color_6.jpg │ │ ├── fx_052_pastel_1.jpg │ │ ├── fx_053_pastel_2.jpg │ │ ├── fx_054_pastel_3.jpg │ │ ├── fx_055_solarize_1.jpg │ │ ├── fx_056_solarize_2.jpg │ │ ├── fx_057_solarize_3.jpg │ │ ├── fx_058_solarize_4.jpg │ │ ├── fx_060_solarize_5.jpg │ │ ├── fx_061_solarize_6.jpg │ │ ├── fx_062_solarize_bw_1.jpg │ │ ├── fx_063_solarize_bw_2.jpg │ │ ├── fx_064_solarize_bw_3.jpg │ │ ├── fx_065_solarize_bw_4.jpg │ │ ├── fx_066_solarize_bw_5.jpg │ │ ├── fx_067_solarize_bw_6.jpg │ │ ├── lookup.jpg │ │ ├── ms_001_adeline.jpg │ │ ├── ms_002_amber.jpg │ │ ├── ms_003_clarisse.jpg │ │ ├── ms_004_emily.jpg │ │ ├── ms_005_gwendoline.jpg │ │ ├── ms_006_juliette.jpg │ │ ├── ms_007_marianne.jpg │ │ ├── ms_008_summer.jpg │ │ ├── ms_009_taylor.jpg │ │ ├── ms_010_vicky.jpg │ │ ├── ms_011_violet.jpg │ │ ├── ms_012_soft_matte.jpg │ │ ├── ms_013_matte.jpg │ │ ├── ms_014_peachy_film.jpg │ │ ├── ms_015_intense_film.jpg │ │ ├── ms_016_clarity_color_pop.jpg │ │ ├── ms_017_natural_color_pop.jpg │ │ ├── ms_018_hazy.jpg │ │ ├── ms_019_cool_breeze.jpg │ │ ├── ms_020_delightful.jpg │ │ ├── ms_021_old_school.jpg │ │ ├── ms_022_cinematic_1.jpg │ │ ├── ms_023_cinematic_2.jpg │ │ ├── ms_024_soft_blue_pastel.jpg │ │ ├── ms_025_break_of_dawn.jpg │ │ ├── ms_026_classic_sunset.jpg │ │ ├── ms_027_crunchy.jpg │ │ ├── ms_028_crystal_clear.jpg │ │ ├── ms_029_hollywood.jpg │ │ ├── ms_030_magic_golden_hour.jpg │ │ ├── ms_031_punch_it_up.jpg │ │ ├── ms_032_warm_splendor.jpg │ │ ├── ms_033_clean_start.jpg │ │ ├── ms_034_dramatic.jpg │ │ ├── ms_035_soft_light.jpg │ │ ├── ms_036_vivid.jpg │ │ ├── ms_037_blue_sky.jpg │ │ ├── ms_038_enhance_golden_hour.jpg │ │ ├── ms_039_october.jpg │ │ ├── ms_056_fresh_lime.jpg │ │ ├── ms_057_happy_meadow.jpg │ │ ├── ms_058_walk_on_a_beach.jpg │ │ ├── ms_059_afternoon_play.jpg │ │ ├── ms_060_kasper.jpg │ │ ├── ms_061_rainy_day.jpg │ │ ├── ms_062_nice_greens.jpg │ │ ├── ms_063_warm_shadows.jpg │ │ ├── ms_064_fall_foliage_light.jpg │ │ ├── ms_065_fall_foliage_medium.jpg │ │ ├── ms_066_fall_foliage_strong.jpg │ │ ├── ms_067_glow_bright_flattened.jpg │ │ ├── ms_068_glow_bright_contrast.jpg │ │ ├── ms_069_glow_soft_muted.jpg │ │ ├── ms_070_glow_subtle_portrait.jpg │ │ ├── ms_071_glow_vibrance.jpg │ │ ├── ms_072_glow_vibrant_desat.jpg │ │ ├── ps_001_2strip.jpg │ │ ├── ps_002_3strip.jpg │ │ ├── ps_003_anime.jpg │ │ ├── ps_004_blacklight_poster.jpg │ │ ├── ps_005_bleach_bypass.jpg │ │ ├── ps_006_blue_tone.jpg │ │ ├── ps_007_candlelight.jpg │ │ ├── ps_008_cobalt_carmine.jpg │ │ ├── ps_009_color_negative.jpg │ │ ├── ps_010_color_negative2.jpg │ │ ├── ps_011_crisp_warm.jpg │ │ ├── ps_012_crisp_winter.jpg │ │ ├── ps_013_cross_process.jpg │ │ ├── ps_014_darker.jpg │ │ ├── ps_015_drop_blues.jpg │ │ ├── ps_016_edgy_amber.jpg │ │ ├── ps_017_fall_colors.jpg │ │ ├── ps_018_filmstock_50.jpg │ │ ├── ps_019_foggy_night.jpg │ │ ├── ps_020_futuristic_bleak.jpg │ │ ├── ps_021_gold_blue.jpg │ │ ├── ps_022_gold_crimson.jpg │ │ ├── ps_023_green_red.jpg │ │ ├── ps_024_increase_contrast.jpg │ │ ├── ps_025_invert.jpg │ │ ├── ps_026_late_sunset.jpg │ │ ├── ps_027_lighter.jpg │ │ ├── ps_028_lightness_decrease.jpg │ │ ├── ps_029_lightness_increase.jpg │ │ ├── ps_030_medium_contrast.jpg │ │ ├── ps_031_moonlight.jpg │ │ ├── ps_032_negative.jpg │ │ ├── ps_033_night_from_day.jpg │ │ ├── ps_034_pastel8.jpg │ │ ├── ps_035_red_blue_yellow.jpg │ │ ├── ps_036_sepia.jpg │ │ ├── ps_037_sienna_blue.jpg │ │ ├── ps_038_smokey.jpg │ │ ├── ps_039_soft_warming.jpg │ │ ├── ps_040_strong_contrast.jpg │ │ ├── ps_041_teal_magenta_gold.jpg │ │ ├── ps_042_teal_orange_contrast.jpg │ │ ├── ps_043_tension_green.jpg │ │ ├── ps_044_turqoise_sepia.jpg │ │ ├── tn_001_isolate_blue.jpg │ │ ├── tn_002_isolate_green.jpg │ │ ├── tn_003_isolate_yellow.jpg │ │ ├── tn_004_isolate_red.jpg │ │ ├── tn_004_tint_aqua.jpg │ │ ├── tn_005_tint_blue.jpg │ │ ├── tn_006_tint_brown.jpg │ │ ├── tn_007_tint_green.jpg │ │ ├── tn_008_tint_orange.jpg │ │ ├── tn_009_tint_pink.jpg │ │ ├── tn_010_tint_red.jpg │ │ ├── tn_011_tint_yellow.jpg │ │ ├── ur_001_grunge.jpg │ │ ├── ur_002_grunge_bw.jpg │ │ ├── ur_003_grunge_blue.jpg │ │ ├── ur_004_grunge_green.jpg │ │ ├── ur_005_grunge_muted.jpg │ │ ├── ur_006_grunge_red.jpg │ │ ├── ur_007_grunge_sepia.jpg │ │ ├── ur_008_gritty_daylight.jpg │ │ ├── ur_009_gritty_heavy.jpg │ │ ├── ur_010_gritty_light.jpg │ │ ├── ur_011_gritty_medium.jpg │ │ ├── ur_012_gritty_warm.jpg │ │ ├── ur_013_grunge_vignette.jpg │ │ ├── ur_014_grunge_dark.jpg │ │ ├── ur_015_grunge_simple.jpg │ │ ├── vn_001_punch.jpg │ │ ├── vn_002_cross_punch.jpg │ │ ├── vn_003_winter_retro.jpg │ │ ├── vn_004_old_polar.jpg │ │ ├── vn_005_yesteryear.jpg │ │ ├── vn_006_dreamy_feeling.jpg │ │ ├── vn_007_green_cotton.jpg │ │ ├── vn_008_summer_bloom.jpg │ │ ├── vn_009_travel_wish.jpg │ │ ├── vn_010_velvet_freedom.jpg │ │ ├── vn_011_beautiful_release.jpg │ │ ├── vn_012_marshmallow_happysmell.jpg │ │ ├── vn_013_carefully_shaven_turk.jpg │ │ ├── vn_014_recreational_drugs.jpg │ │ ├── vn_015_relic.jpg │ │ ├── vn_016_steampunk_afternoon.jpg │ │ ├── vn_017_sunday_alone_time.jpg │ │ ├── vn_018_thank_heaven.jpg │ │ ├── vn_019_navigator.jpg │ │ ├── vn_020_turkish_blast.jpg │ │ ├── vn_021_1975.jpg │ │ ├── vn_022_brandenburg.jpg │ │ ├── vn_023_crossify.jpg │ │ ├── vn_024_daisy.jpg │ │ ├── vn_025_el_hefe.jpg │ │ ├── vn_026_inky.jpg │ │ ├── vn_027_lord_kelvin.jpg │ │ ├── vn_028_mayor.jpg │ │ ├── vn_029_pop_flash.jpg │ │ ├── vn_030_roaster.jpg │ │ ├── vn_031_robin.jpg │ │ ├── vn_032_waldon_pond.jpg │ │ ├── vn_033_xpro.jpg │ │ ├── vn_034_arkham.jpg │ │ ├── vn_035_blue_dawn.jpg │ │ ├── vn_036_clarity.jpg │ │ ├── vn_037_omaha_beach.jpg │ │ ├── vn_038_tijuana.jpg │ │ ├── vn_039_wonka.jpg │ │ ├── vn_040_antique.jpg │ │ ├── vn_041_classic_muted.jpg │ │ ├── vn_042_grandmas_lemonade.jpg │ │ ├── vn_043_retro_warm.jpg │ │ ├── vn_044_blue_yellow.jpg │ │ ├── vn_045_cool.jpg │ │ ├── vn_046_red.jpg │ │ ├── vn_047_red_cyan.jpg │ │ ├── xp_001_kalif_dark.jpg │ │ ├── xp_002_kalif_medium.jpg │ │ ├── xp_003_kalif_light.jpg │ │ ├── xp_004_kalif_refine.jpg │ │ ├── xp_005_mutato_cmyk.jpg │ │ ├── xp_006_mutato_e6_c41.jpg │ │ ├── xp_007_mutato_c41_e6.jpg │ │ ├── xp_008_mutato_cross1.jpg │ │ ├── xp_009_mutato_cross2.jpg │ │ ├── xp_010_mutato_cross3.jpg │ │ ├── xp_011_mutato_apply.jpg │ │ ├── xp_012_mutato_hue_sat.jpg │ │ ├── xp_013_mutato_gradient.jpg │ │ ├── xp_014_another.jpg │ │ ├── xp_015_blue_yellow.jpg │ │ ├── xp_016_lr_1.jpg │ │ ├── xp_017_lr_2.jpg │ │ ├── xp_018_lr_3.jpg │ │ ├── xp_019_direct_pos.jpg │ │ ├── xp_020_oo_blue.jpg │ │ ├── xp_021_oo_cyan.jpg │ │ ├── xp_022_oo_green.jpg │ │ ├── xp_023_oo_red.jpg │ │ └── xp_024_oo_yellow.jpg │ ├── Samples │ │ ├── sample_bagels_1986.png │ │ ├── sample_beach_1678.png │ │ ├── sample_emma_1427.png │ │ ├── sample_girls_2134.png │ │ ├── sample_glasses_1975.png │ │ ├── sample_gnocchi_2273.png │ │ ├── sample_hugger_1151.png │ │ ├── sample_kids_9989.png │ │ ├── sample_nate_1429.png │ │ ├── sample_parents_1758.png │ │ ├── sample_pisa_2216.png │ │ └── sample_tree_1149.png │ ├── Style │ │ ├── style_candy.jpg │ │ ├── style_feathers.jpg │ │ ├── style_la_muse.jpg │ │ ├── style_mosaic.jpg │ │ ├── style_the_scream.jpg │ │ └── style_udnie.jpg │ └── Textures │ │ ├── tx_pencil.jpg │ │ ├── tx_pencil_2.jpg │ │ └── tx_pencil_crosshatch_2.jpg ├── Info.plist ├── MLModels │ ├── FNS-Candy.mlmodel │ ├── FNS-Feathers.mlmodel │ ├── FNS-La-Muse.mlmodel │ ├── FNS-Mosaic.mlmodel │ ├── FNS-The-Scream.mlmodel │ ├── FNS-Udnie.mlmodel │ └── MLModelHelper.swift ├── Manifest.lock ├── Models │ ├── Admob.swift │ ├── AspectRatio.swift │ ├── BlendMode.swift │ ├── CameraISO.swift │ ├── CameraManager.swift │ ├── CameraSpeed.swift │ ├── ClosestFraction.swift │ ├── DisplayMode.swift │ ├── EditList.swift │ ├── EditManager.swift │ ├── FaceDetection.swift │ ├── FacialFeatures.swift │ ├── FilterConfiguration.swift │ ├── FilterDescriptorCache.swift │ ├── FilterFactory.swift │ ├── FilterLoader.swift │ ├── FilterManager.swift │ ├── Fractional.swift │ ├── Fractional.swift.sav │ ├── Fractional4.swift │ ├── ImageCache.swift │ ├── ImageManager.swift │ ├── RenderViewCache.swift │ └── UISettings.swift ├── Operations │ ├── Clarity.swift │ └── Preset.swift ├── Themes │ ├── BlueTheme.swift │ ├── CustomTheme.swift │ ├── DarkTheme.swift │ ├── LightTheme.swift │ ├── RedTheme.swift │ ├── ThemeManager.swift │ └── WarholTheme.swift ├── Utilities │ ├── CameraCaptureHelper.swift │ ├── ColorUtilities.swift │ ├── Geometry.swift │ ├── MuliticastDelegate.swift │ ├── Stack.swift │ └── Utilities.swift ├── Views │ ├── CameraDisplayView.swift │ ├── CameraInfoView.swift │ ├── ColorSchemeView.swift │ ├── Components │ │ ├── Adornment.swift │ │ ├── BorderedButton.swift │ │ ├── ColorWheelView.swift │ │ ├── CroppableImageView.swift │ │ ├── GradientSlider.swift │ │ ├── GridOverlayView.swift │ │ ├── HSBSliderView.swift │ │ ├── ISColorWheel.h │ │ ├── ISColorWheel.m │ │ ├── ImageContainerView.swift │ │ ├── ImageCropperView │ │ │ ├── IC_CGFloatExtension.swift │ │ │ ├── IC_CGPointExtension.swift │ │ │ ├── IC_CGSizeExtensions.swift │ │ │ ├── IC_UIImageExtensions.swift │ │ │ ├── ImageCropperOverlayView.swift │ │ │ ├── ImageCropperOverlayViewConfiguration.swift │ │ │ ├── ImageCropperOverlayViewConfigurationCorner.swift │ │ │ ├── ImageCropperOverlayViewConfigurationEdge.swift │ │ │ ├── ImageCropperOverlayViewConfigurationGrid.swift │ │ │ ├── ImageCropperOverlayViewConfigurationOverlay.swift │ │ │ ├── ImageCropperOverlayViewTouchState.swift │ │ │ ├── ImageCropperScrollView.swift │ │ │ ├── ImageCropperView.h │ │ │ ├── ImageCropperView.swift │ │ │ └── README.md │ │ ├── MenuItem.swift │ │ ├── PathMaskView.swift │ │ ├── RGBSliderView.swift │ │ ├── RenderContainerView.swift │ │ ├── RenderView.swift │ │ ├── ScrollableRenderView.swift │ │ ├── SimpleCarousel.swift │ │ ├── SimpleSwipeView.swift │ │ ├── SquareButton.swift │ │ ├── SwipeView.swift │ │ ├── TimedAlertView.swift │ │ ├── ZoomableScrollView.swift │ │ ├── iCarousel.h │ │ └── iCarousel.m │ ├── EditImageDisplayView.swift │ ├── EditStackView.swift │ ├── FilterDisplayView.swift │ ├── Galleries │ │ ├── BlendGalleryView.swift │ │ ├── CategoryGalleryView.swift │ │ ├── CategoryGalleryViewCell.swift │ │ ├── FilterGalleryView.swift │ │ ├── FilterGalleryViewCell.swift │ │ ├── FilterGalleryViewOld.swift │ │ ├── GalleryViewCell.swift │ │ ├── MenuView.swift │ │ ├── MenuViewCell.swift │ │ ├── SampleGalleryView.swift │ │ ├── StyleTransferGalleryView.swift │ │ └── StyleTransferGalleryViewCell.swift │ ├── Panels │ │ ├── AdornmentView.swift │ │ ├── CameraControlsView.swift │ │ ├── CameraSettingsView.swift │ │ ├── CategorySelectionView.swift │ │ ├── ControllerMenuView.swift │ │ ├── EditControlsView.swift │ │ ├── FilterControlsView.swift │ │ ├── FilterInfoView.swift │ │ ├── FilterParametersView.swift │ │ ├── FilterSelectionView.swift │ │ ├── ImageSelectionView.swift │ │ └── RatingView.swift │ └── TitleView.swift └── phixer-Bridging-Header.h ├── phixerTests ├── Info.plist └── phixerTests.swift └── phixerUITests ├── Info.plist └── phixerUITests.swift /Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- 1 | module Firebase { 2 | export * 3 | header "Firebase.h" 4 | } -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h: -------------------------------------------------------------------------------- 1 | #import "FIRAnalytics+AppDelegate.h" 2 | #import "FIRAnalytics.h" 3 | #import "FIREventNames.h" 4 | #import "FIRParameterNames.h" 5 | #import "FIRUserPropertyNames.h" 6 | -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Target Support Files/ChameleonFramework/ChameleonFramework-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ChameleonFramework : NSObject 3 | @end 4 | @implementation PodsDummy_ChameleonFramework 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ChameleonFramework/ChameleonFramework.modulemap: -------------------------------------------------------------------------------- 1 | framework module ChameleonFramework { 2 | umbrella header "ChameleonFramework-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Cosmos/Cosmos-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Cosmos : NSObject 3 | @end 4 | @implementation PodsDummy_Cosmos 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Cosmos/Cosmos.modulemap: -------------------------------------------------------------------------------- 1 | framework module Cosmos { 2 | umbrella header "Cosmos-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseCore : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseCore 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseCore { 2 | umbrella header "FirebaseCore-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Neon/Neon-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Neon : NSObject 3 | @end 4 | @implementation PodsDummy_Neon 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Neon/Neon-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Neon/Neon.modulemap: -------------------------------------------------------------------------------- 1 | framework module Neon { 2 | umbrella header "Neon-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyBeaver/SwiftyBeaver-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftyBeaver : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftyBeaver 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyBeaver/SwiftyBeaver.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftyBeaver { 2 | umbrella header "SwiftyBeaver-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftyJSON : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftyJSON 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftyJSON { 2 | umbrella header "SwiftyJSON-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_nanopb : NSObject 3 | @end 4 | @implementation PodsDummy_nanopb 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- 1 | framework module nanopb { 2 | umbrella header "nanopb-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /XMP/XMPSpecificationPart2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/XMP/XMPSpecificationPart2.pdf -------------------------------------------------------------------------------- /XMP/XMPtoFilterMapping.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/XMP/XMPtoFilterMapping.xlsx -------------------------------------------------------------------------------- /XMP/jsonPresets/F-StopUrban/UrbanGrain.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "F-Stop Stop Urban Presets", 4 | "name": "Urban Grain" 5 | }, 6 | "filters": [], 7 | "key": "jsonPresets//F-StopUrban/UrbanGrain.json" 8 | } -------------------------------------------------------------------------------- /addMods.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | 3 | # add the new files: 4 | git diff --name-only --cached | xargs -n 1 git add -v 5 | 6 | # add the modified files: 7 | git status -s | grep " M " | awk '{ print $2 }' | xargs -n 1 git add -v 8 | -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon24@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon27.5@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon29@2x-1.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon29@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon29@2x-2.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon29@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon29@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon29@3x-1.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon29@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon40-1.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon40@2x-1.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon40@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon40@2x-2.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon60@2x-1.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon60@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon60@3x-1.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon76@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon83.5@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon86@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/Icon98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/Icon98@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-small-50.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-small.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/icon@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/ios-marketing.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /phixer/Assets.xcassets/app_icon.imageset/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/app_icon.imageset/app_icon.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/app_icon.imageset/app_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/app_icon.imageset/app_icon@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/app_icon.imageset/app_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/app_icon.imageset/app_icon@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_accept.imageset/ic_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_accept.imageset/ic_accept.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_accept.imageset/ic_accept@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_accept.imageset/ic_accept@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_accept.imageset/ic_accept@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_accept.imageset/ic_accept@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_acne.imageset/ic_acne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_acne.imageset/ic_acne.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_acne.imageset/ic_acne@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_acne.imageset/ic_acne@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_acne.imageset/ic_acne@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_acne.imageset/ic_acne@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_adjust.imageset/ic_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_adjust.imageset/ic_adjust.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_adjust.imageset/ic_adjust@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_adjust.imageset/ic_adjust@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_adjust.imageset/ic_adjust@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_adjust.imageset/ic_adjust@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_back.imageset/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_back.imageset/ic_back.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_back.imageset/ic_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_back.imageset/ic_back@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_back.imageset/ic_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_back.imageset/ic_back@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_basic.imageset/ic_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_basic.imageset/ic_basic.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_basic.imageset/ic_basic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_basic.imageset/ic_basic@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_basic.imageset/ic_basic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_basic.imageset/ic_basic@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_blend.imageset/ic_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_blend.imageset/ic_blend.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_blend.imageset/ic_blend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_blend.imageset/ic_blend@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_blend.imageset/ic_blend@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_blend.imageset/ic_blend@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_brightness.imageset/ic_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_brightness.imageset/ic_brightness.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_brightness.imageset/ic_brightness@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_brightness.imageset/ic_brightness@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_brightness.imageset/ic_brightness@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_brightness.imageset/ic_brightness@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_brush.imageset/ic_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_brush.imageset/ic_brush.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_brush.imageset/ic_brush@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_brush.imageset/ic_brush@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_brush.imageset/ic_brush@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_brush.imageset/ic_brush@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category.imageset/ic_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category.imageset/ic_category.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category.imageset/ic_category@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category.imageset/ic_category@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category.imageset/ic_category@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category.imageset/ic_category@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category_hide.imageset/ic_category_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category_hide.imageset/ic_category_hide.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category_hide.imageset/ic_category_hide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category_hide.imageset/ic_category_hide@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category_hide.imageset/ic_category_hide@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category_hide.imageset/ic_category_hide@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category_show.imageset/ic_category_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category_show.imageset/ic_category_show.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category_show.imageset/ic_category_show@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category_show.imageset/ic_category_show@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_category_show.imageset/ic_category_show@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_category_show.imageset/ic_category_show@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_clarity.imageset/ic_clarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_clarity.imageset/ic_clarity.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_clarity.imageset/ic_clarity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_clarity.imageset/ic_clarity@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_clarity.imageset/ic_clarity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_clarity.imageset/ic_clarity@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_contrast.imageset/ic_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_contrast.imageset/ic_contrast.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_contrast.imageset/ic_contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_contrast.imageset/ic_contrast@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_contrast.imageset/ic_contrast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_contrast.imageset/ic_contrast@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_crop.imageset/ic_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_crop.imageset/ic_crop.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_crop.imageset/ic_crop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_crop.imageset/ic_crop@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_crop.imageset/ic_crop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_crop.imageset/ic_crop@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_curve.imageset/ic_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_curve.imageset/ic_curve.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_curve.imageset/ic_curve@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_curve.imageset/ic_curve@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_curve.imageset/ic_curve@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_curve.imageset/ic_curve@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_dehaze.imageset/ic_dehaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_dehaze.imageset/ic_dehaze.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_dehaze.imageset/ic_dehaze@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_dehaze.imageset/ic_dehaze@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_dehaze.imageset/ic_dehaze@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_dehaze.imageset/ic_dehaze@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_down.imageset/ic_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_down.imageset/ic_down.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_down.imageset/ic_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_down.imageset/ic_down@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_down.imageset/ic_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_down.imageset/ic_down@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_exp_comp.imageset/ic_exp_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_exp_comp.imageset/ic_exp_comp.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_exp_comp.imageset/ic_exp_comp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_exp_comp.imageset/ic_exp_comp@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_exp_comp.imageset/ic_exp_comp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_exp_comp.imageset/ic_exp_comp@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_exposure.imageset/ic_exposure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_exposure.imageset/ic_exposure.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_exposure.imageset/ic_exposure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_exposure.imageset/ic_exposure@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_exposure.imageset/ic_exposure@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_exposure.imageset/ic_exposure@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_eye.imageset/ic_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_eye.imageset/ic_eye.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_eye.imageset/ic_eye@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_eye.imageset/ic_eye@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_eye.imageset/ic_eye@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_eye.imageset/ic_eye@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_eyebrow.imageset/ic_eyebrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_eyebrow.imageset/ic_eyebrow.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_eyebrow.imageset/ic_eyebrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_eyebrow.imageset/ic_eyebrow@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_eyebrow.imageset/ic_eyebrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_eyebrow.imageset/ic_eyebrow@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_face.imageset/ic_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_face.imageset/ic_face.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_face.imageset/ic_face@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_face.imageset/ic_face@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_face.imageset/ic_face@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_face.imageset/ic_face@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_face_select.imageset/ic_face_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_face_select.imageset/ic_face_select.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_face_select.imageset/ic_face_select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_face_select.imageset/ic_face_select@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_face_select.imageset/ic_face_select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_face_select.imageset/ic_face_select@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filmstrip.imageset/ic_filmstrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filmstrip.imageset/ic_filmstrip.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filmstrip.imageset/ic_filmstrip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filmstrip.imageset/ic_filmstrip@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filmstrip.imageset/ic_filmstrip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filmstrip.imageset/ic_filmstrip@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filter.imageset/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filter.imageset/ic_filter.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filter.imageset/ic_filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filter.imageset/ic_filter@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filter.imageset/ic_filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filter.imageset/ic_filter@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filter_gallery.imageset/ic_filter_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filter_gallery.imageset/ic_filter_gallery.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filter_gallery.imageset/ic_filter_gallery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filter_gallery.imageset/ic_filter_gallery@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filter_gallery.imageset/ic_filter_gallery@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filter_gallery.imageset/ic_filter_gallery@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters.imageset/ic_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters.imageset/ic_filters.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters.imageset/ic_filters@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters.imageset/ic_filters@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters.imageset/ic_filters@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters.imageset/ic_filters@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters_hide.imageset/ic_filters_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters_hide.imageset/ic_filters_hide.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters_hide.imageset/ic_filters_hide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters_hide.imageset/ic_filters_hide@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters_hide.imageset/ic_filters_hide@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters_hide.imageset/ic_filters_hide@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters_show.imageset/ic_filters_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters_show.imageset/ic_filters_show.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters_show.imageset/ic_filters_show@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters_show.imageset/ic_filters_show@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_filters_show.imageset/ic_filters_show@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_filters_show.imageset/ic_filters_show@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_front_back.imageset/ic_front_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_front_back.imageset/ic_front_back.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_front_back.imageset/ic_front_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_front_back.imageset/ic_front_back@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_front_back.imageset/ic_front_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_front_back.imageset/ic_front_back@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_full_screen.imageset/ic_full_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_full_screen.imageset/ic_full_screen.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_full_screen.imageset/ic_full_screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_full_screen.imageset/ic_full_screen@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_full_screen.imageset/ic_full_screen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_full_screen.imageset/ic_full_screen@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_gallery.imageset/ic_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_gallery.imageset/ic_gallery.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_gallery.imageset/ic_gallery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_gallery.imageset/ic_gallery@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_gallery.imageset/ic_gallery@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_gallery.imageset/ic_gallery@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_gear.imageset/ic_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_gear.imageset/ic_gear.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_gear.imageset/ic_gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_gear.imageset/ic_gear@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_gear.imageset/ic_gear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_gear.imageset/ic_gear@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_heart_filled.imageset/ic_heart_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_heart_filled.imageset/ic_heart_filled.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_heart_filled.imageset/ic_heart_filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_heart_filled.imageset/ic_heart_filled@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_heart_filled.imageset/ic_heart_filled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_heart_filled.imageset/ic_heart_filled@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_heart_outline.imageset/ic_heart_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_heart_outline.imageset/ic_heart_outline.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_heart_outline.imageset/ic_heart_outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_heart_outline.imageset/ic_heart_outline@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_heart_outline.imageset/ic_heart_outline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_heart_outline.imageset/ic_heart_outline@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_help.imageset/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_help.imageset/ic_help.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_help.imageset/ic_help@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_help.imageset/ic_help@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_help.imageset/ic_help@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_help.imageset/ic_help@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_highlights.imageset/ic_highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_highlights.imageset/ic_highlights.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_highlights.imageset/ic_highlights@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_highlights.imageset/ic_highlights@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_highlights.imageset/ic_highlights@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_highlights.imageset/ic_highlights@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_histogram.imageset/ic_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_histogram.imageset/ic_histogram.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_histogram.imageset/ic_histogram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_histogram.imageset/ic_histogram@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_histogram.imageset/ic_histogram@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_histogram.imageset/ic_histogram@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_image.imageset/ic_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_image.imageset/ic_image.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_image.imageset/ic_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_image.imageset/ic_image@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_image.imageset/ic_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_image.imageset/ic_image@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_info.imageset/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_info.imageset/ic_info.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_info.imageset/ic_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_info.imageset/ic_info@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_info.imageset/ic_info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_info.imageset/ic_info@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_layers_3.imageset/ic_layers_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_layers_3.imageset/ic_layers_3.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_layers_3.imageset/ic_layers_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_layers_3.imageset/ic_layers_3@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_layers_3.imageset/ic_layers_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_layers_3.imageset/ic_layers_3@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_left.imageset/ic_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_left.imageset/ic_left.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_left.imageset/ic_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_left.imageset/ic_left@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_left.imageset/ic_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_left.imageset/ic_left@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_lips.imageset/ic_lips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_lips.imageset/ic_lips.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_lips.imageset/ic_lips@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_lips.imageset/ic_lips@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_lips.imageset/ic_lips@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_lips.imageset/ic_lips@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_live.imageset/ic_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_live.imageset/ic_live.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_live.imageset/ic_live@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_live.imageset/ic_live@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_live.imageset/ic_live@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_live.imageset/ic_live@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_magic.imageset/ic_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_magic.imageset/ic_magic.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_magic.imageset/ic_magic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_magic.imageset/ic_magic@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_magic.imageset/ic_magic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_magic.imageset/ic_magic@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_menu.imageset/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_menu.imageset/ic_menu.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_menu.imageset/ic_menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_menu.imageset/ic_menu@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_menu.imageset/ic_menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_menu.imageset/ic_menu@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_next.imageset/ic_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_next.imageset/ic_next.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_next.imageset/ic_next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_next.imageset/ic_next@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_next.imageset/ic_next@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_next.imageset/ic_next@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_no.imageset/ic_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_no.imageset/ic_no.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_no.imageset/ic_no@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_no.imageset/ic_no@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_no.imageset/ic_no@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_no.imageset/ic_no@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_no_view.imageset/ic_no_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_no_view.imageset/ic_no_view.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_no_view.imageset/ic_no_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_no_view.imageset/ic_no_view@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_no_view.imageset/ic_no_view@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_no_view.imageset/ic_no_view@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_noise.imageset/ic_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_noise.imageset/ic_noise.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_noise.imageset/ic_noise@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_noise.imageset/ic_noise@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_noise.imageset/ic_noise@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_noise.imageset/ic_noise@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_perspective.imageset/ic_perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_perspective.imageset/ic_perspective.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_perspective.imageset/ic_perspective@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_perspective.imageset/ic_perspective@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_perspective.imageset/ic_perspective@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_perspective.imageset/ic_perspective@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_preset.imageset/ic_preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_preset.imageset/ic_preset.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_preset.imageset/ic_preset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_preset.imageset/ic_preset@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_preset.imageset/ic_preset@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_preset.imageset/ic_preset@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_prev.imageset/ic_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_prev.imageset/ic_prev.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_prev.imageset/ic_prev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_prev.imageset/ic_prev@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_prev.imageset/ic_prev@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_prev.imageset/ic_prev@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_reject.imageset/ic_reject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_reject.imageset/ic_reject.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_reject.imageset/ic_reject@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_reject.imageset/ic_reject@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_reject.imageset/ic_reject@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_reject.imageset/ic_reject@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_reset.imageset/ic_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_reset.imageset/ic_reset.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_reset.imageset/ic_reset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_reset.imageset/ic_reset@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_reset.imageset/ic_reset@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_reset.imageset/ic_reset@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_right.imageset/ic_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_right.imageset/ic_right.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_right.imageset/ic_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_right.imageset/ic_right@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_right.imageset/ic_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_right.imageset/ic_right@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_right_arrow.imageset/ic_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_right_arrow.imageset/ic_right_arrow.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_right_arrow.imageset/ic_right_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_right_arrow.imageset/ic_right_arrow@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_right_arrow.imageset/ic_right_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_right_arrow.imageset/ic_right_arrow@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_rotate.imageset/ic_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_rotate.imageset/ic_rotate.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_rotate.imageset/ic_rotate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_rotate.imageset/ic_rotate@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_rotate.imageset/ic_rotate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_rotate.imageset/ic_rotate@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_saturation.imageset/ic_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_saturation.imageset/ic_saturation.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_saturation.imageset/ic_saturation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_saturation.imageset/ic_saturation@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_saturation.imageset/ic_saturation@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_saturation.imageset/ic_saturation@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_save.imageset/ic_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_save.imageset/ic_save.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_save.imageset/ic_save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_save.imageset/ic_save@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_save.imageset/ic_save@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_save.imageset/ic_save@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_shadow.imageset/ic_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_shadow.imageset/ic_shadow.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_shadow.imageset/ic_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_shadow.imageset/ic_shadow@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_shadow.imageset/ic_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_shadow.imageset/ic_shadow@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sharpness.imageset/ic_sharpness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sharpness.imageset/ic_sharpness.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sharpness.imageset/ic_sharpness@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sharpness.imageset/ic_sharpness@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sharpness.imageset/ic_sharpness@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sharpness.imageset/ic_sharpness@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders.imageset/ic_sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders.imageset/ic_sliders.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders.imageset/ic_sliders@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders.imageset/ic_sliders@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders.imageset/ic_sliders@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders.imageset/ic_sliders@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders_hide.imageset/ic_sliders_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders_hide.imageset/ic_sliders_hide.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders_hide.imageset/ic_sliders_hide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders_hide.imageset/ic_sliders_hide@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders_hide.imageset/ic_sliders_hide@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders_hide.imageset/ic_sliders_hide@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders_show.imageset/ic_sliders_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders_show.imageset/ic_sliders_show.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders_show.imageset/ic_sliders_show@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders_show.imageset/ic_sliders_show@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_sliders_show.imageset/ic_sliders_show@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_sliders_show.imageset/ic_sliders_show@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_smile.imageset/ic_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_smile.imageset/ic_smile.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_smile.imageset/ic_smile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_smile.imageset/ic_smile@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_smile.imageset/ic_smile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_smile.imageset/ic_smile@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_split_screen.imageset/ic_split_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_split_screen.imageset/ic_split_screen.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_split_screen.imageset/ic_split_screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_split_screen.imageset/ic_split_screen@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_split_screen.imageset/ic_split_screen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_split_screen.imageset/ic_split_screen@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star.imageset/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star.imageset/ic_star.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star.imageset/ic_star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star.imageset/ic_star@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star.imageset/ic_star@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star.imageset/ic_star@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_1.imageset/ic_star_filled_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_1.imageset/ic_star_filled_1.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_1.imageset/ic_star_filled_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_1.imageset/ic_star_filled_1@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_1.imageset/ic_star_filled_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_1.imageset/ic_star_filled_1@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_2.imageset/ic_star_filled_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_2.imageset/ic_star_filled_2.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_2.imageset/ic_star_filled_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_2.imageset/ic_star_filled_2@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_2.imageset/ic_star_filled_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_2.imageset/ic_star_filled_2@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_3.imageset/ic_star_filled_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_3.imageset/ic_star_filled_3.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_3.imageset/ic_star_filled_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_3.imageset/ic_star_filled_3@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_star_filled_3.imageset/ic_star_filled_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_star_filled_3.imageset/ic_star_filled_3@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_stroked_circle.imageset/ic_stroked_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_stroked_circle.imageset/ic_stroked_circle.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_stroked_circle.imageset/ic_stroked_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_stroked_circle.imageset/ic_stroked_circle@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_stroked_circle.imageset/ic_stroked_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_stroked_circle.imageset/ic_stroked_circle@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_swap.imageset/ic_swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_swap.imageset/ic_swap.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_swap.imageset/ic_swap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_swap.imageset/ic_swap@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_swap.imageset/ic_swap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_swap.imageset/ic_swap@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_tilt.imageset/ic_tilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_tilt.imageset/ic_tilt.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_tilt.imageset/ic_tilt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_tilt.imageset/ic_tilt@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_tilt.imageset/ic_tilt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_tilt.imageset/ic_tilt@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_touch.imageset/ic_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_touch.imageset/ic_touch.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_touch.imageset/ic_touch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_touch.imageset/ic_touch@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_touch.imageset/ic_touch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_touch.imageset/ic_touch@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_transform.imageset/ic_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_transform.imageset/ic_transform.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_transform.imageset/ic_transform@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_transform.imageset/ic_transform@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_transform.imageset/ic_transform@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_transform.imageset/ic_transform@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_undo.imageset/ic_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_undo.imageset/ic_undo.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_undo.imageset/ic_undo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_undo.imageset/ic_undo@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_undo.imageset/ic_undo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_undo.imageset/ic_undo@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_unknown.imageset/ic_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_unknown.imageset/ic_unknown.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_unknown.imageset/ic_unknown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_unknown.imageset/ic_unknown@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_unknown.imageset/ic_unknown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_unknown.imageset/ic_unknown@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_up.imageset/ic_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_up.imageset/ic_up.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_up.imageset/ic_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_up.imageset/ic_up@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_up.imageset/ic_up@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_up.imageset/ic_up@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_vibrance.imageset/ic_vibrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_vibrance.imageset/ic_vibrance.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_vibrance.imageset/ic_vibrance@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_vibrance.imageset/ic_vibrance@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_vibrance.imageset/ic_vibrance@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_vibrance.imageset/ic_vibrance@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_view.imageset/ic_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_view.imageset/ic_view.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_view.imageset/ic_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_view.imageset/ic_view@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_view.imageset/ic_view@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_view.imageset/ic_view@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_vignette.imageset/ic_vignette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_vignette.imageset/ic_vignette.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_vignette.imageset/ic_vignette@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_vignette.imageset/ic_vignette@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_vignette.imageset/ic_vignette@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_vignette.imageset/ic_vignette@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_warmth.imageset/ic_warmth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_warmth.imageset/ic_warmth.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_warmth.imageset/ic_warmth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_warmth.imageset/ic_warmth@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_warmth.imageset/ic_warmth@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_warmth.imageset/ic_warmth@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_wb.imageset/ic_wb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_wb.imageset/ic_wb.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_wb.imageset/ic_wb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_wb.imageset/ic_wb@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_wb.imageset/ic_wb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_wb.imageset/ic_wb@3x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_yes.imageset/ic_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_yes.imageset/ic_yes.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_yes.imageset/ic_yes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_yes.imageset/ic_yes@2x.png -------------------------------------------------------------------------------- /phixer/Assets.xcassets/ic_yes.imageset/ic_yes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Assets.xcassets/ic_yes.imageset/ic_yes@3x.png -------------------------------------------------------------------------------- /phixer/Config/Presets/Mastin Labs Ilford BW Pack - Nikon/5a.LensCorrectionOn-N.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": {}, 3 | "filters": [], 4 | "key": "../phixer/Config/Presets//Mastin Labs Ilford BW Pack - Nikon/5a.LensCorrectionOn-N.json" 5 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/Mastin Labs Ilford BW Pack - Nikon/5b.LensCorrectionOff(Reset)-N.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": {}, 3 | "filters": [], 4 | "key": "../phixer/Config/Presets//Mastin Labs Ilford BW Pack - Nikon/5b.LensCorrectionOff(Reset)-N.json" 5 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/PhotographyPlanetEssentials/Cooling.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "Essentials by PhotographyPla.net", 4 | "name": "2.04 - Cooling" 5 | }, 6 | "filters": [], 7 | "key": "../phixer/Config/Presets//PhotographyPlanetEssentials/Cooling.json" 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/PhotographyPlanetEssentials/Pink.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "Essentials by PhotographyPla.net", 4 | "name": "2.06 - Pink" 5 | }, 6 | "filters": [], 7 | "key": "../phixer/Config/Presets//PhotographyPlanetEssentials/Pink.json" 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/PhotographyPlanetEssentials/Red.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "Essentials by PhotographyPla.net", 4 | "name": "2.05 - Red" 5 | }, 6 | "filters": [], 7 | "key": "../phixer/Config/Presets//PhotographyPlanetEssentials/Red.json" 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/PhotographyPlanetEssentials/ResetGrain.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "Essentials by PhotographyPla.net", 4 | "name": "5.01 - Reset Grain" 5 | }, 6 | "filters": [], 7 | "key": "../phixer/Config/Presets//PhotographyPlanetEssentials/ResetGrain.json" 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/PhotographyPlanetEssentials/Sunlight.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "Essentials by PhotographyPla.net", 4 | "name": "2.02 - Sunlight" 5 | }, 6 | "filters": [], 7 | "key": "../phixer/Config/Presets//PhotographyPlanetEssentials/Sunlight.json" 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/PhotographyPlanetEssentials/Teal.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "Essentials by PhotographyPla.net", 4 | "name": "2.07 - Teal" 5 | }, 6 | "filters": [], 7 | "key": "../phixer/Config/Presets//PhotographyPlanetEssentials/Teal.json" 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/PhotographyPlanetEssentials/Violet2.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "Essentials by PhotographyPla.net", 4 | "name": "2.08 - Violet" 5 | }, 6 | "filters": [], 7 | "key": "../phixer/Config/Presets//PhotographyPlanetEssentials/Violet2.json" 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/PhotographyPlanetEssentials/WarmSunlight.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "group": "Essentials by PhotographyPla.net", 4 | "name": "2.03 - Warm Sunlight" 5 | }, 6 | "filters": [], 7 | "key": "../phixer/Config/Presets//PhotographyPlanetEssentials/WarmSunlight.json" 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/presetpro Light Leaks/Presetpro-Center.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "../phixer/Config/Presets//presetpro Light Leaks/Presetpro-Center.json", 3 | "info": { 4 | "name": "Presetpro - Center", 5 | "group": "User Presets" 6 | }, 7 | "filters": [] 8 | } -------------------------------------------------------------------------------- /phixer/Config/Presets/presetpro Light Leaks/Presetpro-Edge.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "../phixer/Config/Presets//presetpro Light Leaks/Presetpro-Edge.json", 3 | "info": { 4 | "name": "Presetpro - Edge", 5 | "group": "User Presets" 6 | }, 7 | "filters": [] 8 | } -------------------------------------------------------------------------------- /phixer/Filters/CustomFilters/Yu/README.md: -------------------------------------------------------------------------------- 1 | # Filters by Yu 2 | 3 | Code in this directory is based on filters created by Shuichi Tsutsumi : https://github.com/shu223/iOS-Depth-Sampler/tree/master/Pods/Vivid/Sources 4 | 5 | -------------------------------------------------------------------------------- /phixer/Filters/CustomFilters/Yu/YUCIHighPass.cikernel: -------------------------------------------------------------------------------- 1 | 2 | kernel vec4 filterKernel(__sample image, __sample blurredImage) { 3 | return vec4(vec3(image.rgb - blurredImage.rgb + vec3(0.5,0.5,0.5)), image.a); 4 | } -------------------------------------------------------------------------------- /phixer/Help/About.html: -------------------------------------------------------------------------------- 1 | 2 |

About Phixer

3 | 4 | 5 | Phixer is a somewhat simple photo editor that combines filters, image adjustments, style transfer, frames etc. 6 |

7 | More info will be added when Phil gets his lazy butt moving... 8 | -------------------------------------------------------------------------------- /phixer/Help/FilterPreview.html: -------------------------------------------------------------------------------- 1 | 2 |

Filter Preview

3 | 4 | 5 |

6 | This screen shows a full screen version of the currently selected image (or sample) with filter(s) applied 7 | -------------------------------------------------------------------------------- /phixer/Help/Reset.html: -------------------------------------------------------------------------------- 1 | 2 |

Reset

3 | 4 | 5 |

6 | This screen allows to reset the settings for filters (ratings etc.) 7 | -------------------------------------------------------------------------------- /phixer/Help/Settings.html: -------------------------------------------------------------------------------- 1 | 2 |

Settings

3 | 4 | Well, a set of things that you can change that affect how the app behaves... 5 |

6 | Sorry, more info will be added when Phil gets his lazy butt moving... 7 | -------------------------------------------------------------------------------- /phixer/Help/default.html: -------------------------------------------------------------------------------- 1 | 2 |

Help Text Not Done Yet...

3 | 4 | 5 |

6 | Sorry, more info will be added when Phil gets his lazy butt moving... 7 | -------------------------------------------------------------------------------- /phixer/Images/Blends/8_by_grandeombre_stock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/8_by_grandeombre_stock.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/NerveEndings-Parsley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/NerveEndings-Parsley.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/ScratchTheItch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/ScratchTheItch.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/_film_grain_numba_1__by_su_y.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/_film_grain_numba_1__by_su_y.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/grunge_background_v2_by_bcoolbyte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/grunge_background_v2_by_bcoolbyte.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/lightning_splits_by_dazzle_textures.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/lightning_splits_by_dazzle_textures.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/monoprint_16_by_pendlestock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/monoprint_16_by_pendlestock.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/monoprint_17_by_pendlestock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/monoprint_17_by_pendlestock.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/neopan_texture___2_by_jakezdaniel-d1zp0ug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/neopan_texture___2_by_jakezdaniel-d1zp0ug.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/paper_curled_by_fotojenny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/paper_curled_by_fotojenny.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/sad_ending_by_ckdailyplanet-d30dame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/sad_ending_by_ckdailyplanet-d30dame.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/shedyourskin_DirtyLights2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/shedyourskin_DirtyLights2.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/shedyourskin_DirtyLights4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/shedyourskin_DirtyLights4.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/shedyourskin_Tex_119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/shedyourskin_Tex_119.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/shedyourskin_Tex_124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/shedyourskin_Tex_124.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/shedyourskin_Tex_132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/shedyourskin_Tex_132.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/shedyourskin_Tex_87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/shedyourskin_Tex_87.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/texture_110_by_sirius_sdz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/texture_110_by_sirius_sdz.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/texture_142_by_sirius_sdz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/texture_142_by_sirius_sdz.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/texture_202_by_malleni_stock-d9uwyqo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/texture_202_by_malleni_stock-d9uwyqo.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/textures_100_by_inthename_stock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/textures_100_by_inthename_stock.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/textures_92_by_inthename_stock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/textures_92_by_inthename_stock.jpg -------------------------------------------------------------------------------- /phixer/Images/Blends/wake_by_photoshop_stock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Blends/wake_by_photoshop_stock.jpg -------------------------------------------------------------------------------- /phixer/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04a_neutral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04a_neutral.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04b_desat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04b_desat.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04c_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04c_blue.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04d_blue_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04d_blue_yellow.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04e_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04e_dark.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04f_dark_cool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04f_dark_cool.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04g_low_contrast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04g_low_contrast.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04h_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04h_red.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04i_dark_warm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04i_dark_warm.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04j_amber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04j_amber.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04k_dark_purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04k_dark_purple.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_04l_hi_contrast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_04l_hi_contrast.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_09a_wash_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_09a_wash_dark.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_09b_wash_cross_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_09b_wash_cross_dark.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_09c_wash_amber_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_09c_wash_amber_dark.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_09d_wash_amber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_09d_wash_amber.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_09e_wash_apricot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_09e_wash_apricot.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_09f_wash_warm_cross.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_09f_wash_warm_cross.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_09g_wash_warm_dark_cross.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_09g_wash_warm_dark_cross.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fd_09h_wash_warm_faded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fd_09h_wash_warm_faded.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_001_bleach_bypass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_001_bleach_bypass.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_002_duplex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_002_duplex.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_003_fog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_003_fog.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_004_foliage_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_004_foliage_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_005_foliage_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_005_foliage_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_006_foliage_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_006_foliage_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_007_hi_key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_007_hi_key.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_008_indian_summer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_008_indian_summer.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_009_infrared_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_009_infrared_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_010_infrared_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_010_infrared_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_011_infrared_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_011_infrared_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_012_infrared_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_012_infrared_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_013_infrared_color_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_013_infrared_color_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_014_infrared_color_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_014_infrared_color_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_015_infrared_color_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_015_infrared_color_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_016_infrared_color_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_016_infrared_color_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_017_infrared_color_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_017_infrared_color_5.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_018_ink_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_018_ink_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_019_ink_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_019_ink_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_020_ink_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_020_ink_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_021_ink_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_021_ink_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_022_ink_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_022_ink_5.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_023_ink_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_023_ink_6.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_024_ink_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_024_ink_7.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_025_ink_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_025_ink_8.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_026_ink_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_026_ink_9.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_027_ink_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_027_ink_10.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_028_ink_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_028_ink_11.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_029_lo_key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_029_lo_key.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_030_midnight_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_030_midnight_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_031_midnight_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_031_midnight_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_032_midnight_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_032_midnight_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_033_midnight_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_033_midnight_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_034_midnight_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_034_midnight_5.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_035_monday_morning_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_035_monday_morning_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_036_monday_morning_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_036_monday_morning_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_037_monday_morning_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_037_monday_morning_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_038_monday_morning_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_038_monday_morning_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_039_monday_morning_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_039_monday_morning_5.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_040_old_photo_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_040_old_photo_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_041_old_photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_041_old_photo_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_042_old_photo_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_042_old_photo_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_043_old_photo_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_043_old_photo_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_044_old_photo_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_044_old_photo_5.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_045_old_photo_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_045_old_photo_6.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_046_old_photo_color_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_046_old_photo_color_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_047_old_photo_color_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_047_old_photo_color_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_048_old_photo_color_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_048_old_photo_color_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_049_old_photo_color_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_049_old_photo_color_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_050_old_photo_color_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_050_old_photo_color_5.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_051_old_photo_color_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_051_old_photo_color_6.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_052_pastel_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_052_pastel_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_053_pastel_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_053_pastel_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_054_pastel_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_054_pastel_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_055_solarize_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_055_solarize_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_056_solarize_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_056_solarize_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_057_solarize_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_057_solarize_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_058_solarize_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_058_solarize_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_060_solarize_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_060_solarize_5.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_061_solarize_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_061_solarize_6.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_062_solarize_bw_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_062_solarize_bw_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_063_solarize_bw_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_063_solarize_bw_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_064_solarize_bw_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_064_solarize_bw_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_065_solarize_bw_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_065_solarize_bw_4.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_066_solarize_bw_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_066_solarize_bw_5.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/fx_067_solarize_bw_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/fx_067_solarize_bw_6.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/lookup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/lookup.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_001_adeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_001_adeline.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_002_amber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_002_amber.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_003_clarisse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_003_clarisse.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_004_emily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_004_emily.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_005_gwendoline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_005_gwendoline.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_006_juliette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_006_juliette.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_007_marianne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_007_marianne.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_008_summer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_008_summer.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_009_taylor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_009_taylor.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_010_vicky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_010_vicky.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_011_violet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_011_violet.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_012_soft_matte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_012_soft_matte.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_013_matte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_013_matte.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_014_peachy_film.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_014_peachy_film.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_015_intense_film.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_015_intense_film.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_016_clarity_color_pop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_016_clarity_color_pop.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_017_natural_color_pop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_017_natural_color_pop.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_018_hazy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_018_hazy.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_019_cool_breeze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_019_cool_breeze.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_020_delightful.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_020_delightful.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_021_old_school.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_021_old_school.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_022_cinematic_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_022_cinematic_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_023_cinematic_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_023_cinematic_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_024_soft_blue_pastel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_024_soft_blue_pastel.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_025_break_of_dawn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_025_break_of_dawn.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_026_classic_sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_026_classic_sunset.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_027_crunchy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_027_crunchy.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_028_crystal_clear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_028_crystal_clear.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_029_hollywood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_029_hollywood.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_030_magic_golden_hour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_030_magic_golden_hour.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_031_punch_it_up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_031_punch_it_up.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_032_warm_splendor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_032_warm_splendor.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_033_clean_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_033_clean_start.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_034_dramatic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_034_dramatic.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_035_soft_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_035_soft_light.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_036_vivid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_036_vivid.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_037_blue_sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_037_blue_sky.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_038_enhance_golden_hour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_038_enhance_golden_hour.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_039_october.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_039_october.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_056_fresh_lime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_056_fresh_lime.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_057_happy_meadow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_057_happy_meadow.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_058_walk_on_a_beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_058_walk_on_a_beach.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_059_afternoon_play.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_059_afternoon_play.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_060_kasper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_060_kasper.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_061_rainy_day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_061_rainy_day.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_062_nice_greens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_062_nice_greens.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_063_warm_shadows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_063_warm_shadows.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_064_fall_foliage_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_064_fall_foliage_light.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_065_fall_foliage_medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_065_fall_foliage_medium.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_066_fall_foliage_strong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_066_fall_foliage_strong.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_067_glow_bright_flattened.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_067_glow_bright_flattened.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_068_glow_bright_contrast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_068_glow_bright_contrast.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_069_glow_soft_muted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_069_glow_soft_muted.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_070_glow_subtle_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_070_glow_subtle_portrait.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_071_glow_vibrance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_071_glow_vibrance.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ms_072_glow_vibrant_desat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ms_072_glow_vibrant_desat.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_001_2strip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_001_2strip.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_002_3strip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_002_3strip.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_003_anime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_003_anime.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_004_blacklight_poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_004_blacklight_poster.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_005_bleach_bypass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_005_bleach_bypass.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_006_blue_tone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_006_blue_tone.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_007_candlelight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_007_candlelight.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_008_cobalt_carmine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_008_cobalt_carmine.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_009_color_negative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_009_color_negative.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_010_color_negative2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_010_color_negative2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_011_crisp_warm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_011_crisp_warm.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_012_crisp_winter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_012_crisp_winter.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_013_cross_process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_013_cross_process.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_014_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_014_darker.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_015_drop_blues.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_015_drop_blues.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_016_edgy_amber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_016_edgy_amber.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_017_fall_colors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_017_fall_colors.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_018_filmstock_50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_018_filmstock_50.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_019_foggy_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_019_foggy_night.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_020_futuristic_bleak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_020_futuristic_bleak.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_021_gold_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_021_gold_blue.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_022_gold_crimson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_022_gold_crimson.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_023_green_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_023_green_red.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_024_increase_contrast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_024_increase_contrast.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_025_invert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_025_invert.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_026_late_sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_026_late_sunset.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_027_lighter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_027_lighter.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_028_lightness_decrease.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_028_lightness_decrease.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_029_lightness_increase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_029_lightness_increase.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_030_medium_contrast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_030_medium_contrast.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_031_moonlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_031_moonlight.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_032_negative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_032_negative.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_033_night_from_day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_033_night_from_day.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_034_pastel8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_034_pastel8.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_035_red_blue_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_035_red_blue_yellow.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_036_sepia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_036_sepia.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_037_sienna_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_037_sienna_blue.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_038_smokey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_038_smokey.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_039_soft_warming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_039_soft_warming.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_040_strong_contrast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_040_strong_contrast.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_041_teal_magenta_gold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_041_teal_magenta_gold.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_042_teal_orange_contrast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_042_teal_orange_contrast.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_043_tension_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_043_tension_green.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ps_044_turqoise_sepia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ps_044_turqoise_sepia.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_001_isolate_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_001_isolate_blue.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_002_isolate_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_002_isolate_green.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_003_isolate_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_003_isolate_yellow.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_004_isolate_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_004_isolate_red.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_004_tint_aqua.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_004_tint_aqua.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_005_tint_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_005_tint_blue.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_006_tint_brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_006_tint_brown.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_007_tint_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_007_tint_green.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_008_tint_orange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_008_tint_orange.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_009_tint_pink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_009_tint_pink.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_010_tint_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_010_tint_red.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/tn_011_tint_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/tn_011_tint_yellow.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_001_grunge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_001_grunge.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_002_grunge_bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_002_grunge_bw.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_003_grunge_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_003_grunge_blue.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_004_grunge_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_004_grunge_green.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_005_grunge_muted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_005_grunge_muted.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_006_grunge_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_006_grunge_red.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_007_grunge_sepia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_007_grunge_sepia.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_008_gritty_daylight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_008_gritty_daylight.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_009_gritty_heavy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_009_gritty_heavy.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_010_gritty_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_010_gritty_light.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_011_gritty_medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_011_gritty_medium.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_012_gritty_warm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_012_gritty_warm.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_013_grunge_vignette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_013_grunge_vignette.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_014_grunge_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_014_grunge_dark.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/ur_015_grunge_simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/ur_015_grunge_simple.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_001_punch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_001_punch.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_002_cross_punch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_002_cross_punch.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_003_winter_retro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_003_winter_retro.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_004_old_polar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_004_old_polar.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_005_yesteryear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_005_yesteryear.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_006_dreamy_feeling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_006_dreamy_feeling.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_007_green_cotton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_007_green_cotton.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_008_summer_bloom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_008_summer_bloom.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_009_travel_wish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_009_travel_wish.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_010_velvet_freedom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_010_velvet_freedom.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_011_beautiful_release.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_011_beautiful_release.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_012_marshmallow_happysmell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_012_marshmallow_happysmell.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_013_carefully_shaven_turk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_013_carefully_shaven_turk.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_014_recreational_drugs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_014_recreational_drugs.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_015_relic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_015_relic.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_016_steampunk_afternoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_016_steampunk_afternoon.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_017_sunday_alone_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_017_sunday_alone_time.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_018_thank_heaven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_018_thank_heaven.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_019_navigator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_019_navigator.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_020_turkish_blast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_020_turkish_blast.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_021_1975.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_021_1975.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_022_brandenburg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_022_brandenburg.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_023_crossify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_023_crossify.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_024_daisy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_024_daisy.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_025_el_hefe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_025_el_hefe.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_026_inky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_026_inky.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_027_lord_kelvin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_027_lord_kelvin.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_028_mayor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_028_mayor.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_029_pop_flash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_029_pop_flash.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_030_roaster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_030_roaster.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_031_robin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_031_robin.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_032_waldon_pond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_032_waldon_pond.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_033_xpro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_033_xpro.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_034_arkham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_034_arkham.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_035_blue_dawn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_035_blue_dawn.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_036_clarity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_036_clarity.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_037_omaha_beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_037_omaha_beach.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_038_tijuana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_038_tijuana.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_039_wonka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_039_wonka.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_040_antique.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_040_antique.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_041_classic_muted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_041_classic_muted.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_042_grandmas_lemonade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_042_grandmas_lemonade.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_043_retro_warm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_043_retro_warm.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_044_blue_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_044_blue_yellow.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_045_cool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_045_cool.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_046_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_046_red.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/vn_047_red_cyan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/vn_047_red_cyan.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_001_kalif_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_001_kalif_dark.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_002_kalif_medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_002_kalif_medium.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_003_kalif_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_003_kalif_light.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_004_kalif_refine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_004_kalif_refine.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_005_mutato_cmyk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_005_mutato_cmyk.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_006_mutato_e6_c41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_006_mutato_e6_c41.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_007_mutato_c41_e6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_007_mutato_c41_e6.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_008_mutato_cross1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_008_mutato_cross1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_009_mutato_cross2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_009_mutato_cross2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_010_mutato_cross3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_010_mutato_cross3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_011_mutato_apply.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_011_mutato_apply.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_012_mutato_hue_sat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_012_mutato_hue_sat.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_013_mutato_gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_013_mutato_gradient.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_014_another.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_014_another.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_015_blue_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_015_blue_yellow.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_016_lr_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_016_lr_1.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_017_lr_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_017_lr_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_018_lr_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_018_lr_3.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_019_direct_pos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_019_direct_pos.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_020_oo_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_020_oo_blue.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_021_oo_cyan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_021_oo_cyan.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_022_oo_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_022_oo_green.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_023_oo_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_023_oo_red.jpg -------------------------------------------------------------------------------- /phixer/Images/Lookups/xp_024_oo_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Lookups/xp_024_oo_yellow.jpg -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_bagels_1986.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_bagels_1986.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_beach_1678.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_beach_1678.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_emma_1427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_emma_1427.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_girls_2134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_girls_2134.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_glasses_1975.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_glasses_1975.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_gnocchi_2273.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_gnocchi_2273.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_hugger_1151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_hugger_1151.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_kids_9989.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_kids_9989.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_nate_1429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_nate_1429.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_parents_1758.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_parents_1758.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_pisa_2216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_pisa_2216.png -------------------------------------------------------------------------------- /phixer/Images/Samples/sample_tree_1149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Samples/sample_tree_1149.png -------------------------------------------------------------------------------- /phixer/Images/Style/style_candy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Style/style_candy.jpg -------------------------------------------------------------------------------- /phixer/Images/Style/style_feathers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Style/style_feathers.jpg -------------------------------------------------------------------------------- /phixer/Images/Style/style_la_muse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Style/style_la_muse.jpg -------------------------------------------------------------------------------- /phixer/Images/Style/style_mosaic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Style/style_mosaic.jpg -------------------------------------------------------------------------------- /phixer/Images/Style/style_the_scream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Style/style_the_scream.jpg -------------------------------------------------------------------------------- /phixer/Images/Style/style_udnie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Style/style_udnie.jpg -------------------------------------------------------------------------------- /phixer/Images/Textures/tx_pencil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Textures/tx_pencil.jpg -------------------------------------------------------------------------------- /phixer/Images/Textures/tx_pencil_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Textures/tx_pencil_2.jpg -------------------------------------------------------------------------------- /phixer/Images/Textures/tx_pencil_crosshatch_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Images/Textures/tx_pencil_crosshatch_2.jpg -------------------------------------------------------------------------------- /phixer/MLModels/FNS-Candy.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/MLModels/FNS-Candy.mlmodel -------------------------------------------------------------------------------- /phixer/MLModels/FNS-Feathers.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/MLModels/FNS-Feathers.mlmodel -------------------------------------------------------------------------------- /phixer/MLModels/FNS-La-Muse.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/MLModels/FNS-La-Muse.mlmodel -------------------------------------------------------------------------------- /phixer/MLModels/FNS-Mosaic.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/MLModels/FNS-Mosaic.mlmodel -------------------------------------------------------------------------------- /phixer/MLModels/FNS-The-Scream.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/MLModels/FNS-The-Scream.mlmodel -------------------------------------------------------------------------------- /phixer/MLModels/FNS-Udnie.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/MLModels/FNS-Udnie.mlmodel -------------------------------------------------------------------------------- /phixer/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateemma/phixer/cfc6d7dac853271da5e8301c0e036e02e8395a89/phixer/Manifest.lock -------------------------------------------------------------------------------- /phixer/phixer-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #import "YUCIFilterConstructor.h" 6 | #import "YUCIUtilities.h" 7 | #import "YUCIHighPassSkinSmoothing.h" 8 | #import "YUCICLAHE.h" 9 | --------------------------------------------------------------------------------