Photo Gallery by Supsystic - Version 1.15.6

Version Description

Download this release

Release Info

Developer supsystic.com
Plugin Icon 128x128 Photo Gallery by Supsystic
Version 1.15.6
Comparing to
See all releases

Code changes from version 1.15.4 to 1.15.6

index.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Photo Gallery by Supsystic
5
  * Description: Easy to use Gallery by Supsystic with professional gallery templates. Show off your best design, photography and creative work
6
- * Version: 1.15.4
7
  * Author: supsystic.com
8
  * Author URI: https://supsystic.com
9
  * Text Domain: grid-gallery
@@ -11,5 +11,5 @@
11
 
12
  require_once dirname(__FILE__) . '/app/SupsysticGallery.php';
13
 
14
- $supsysticGallery = new SupsysticGallery('1.15.4');
15
  $supsysticGallery->run();
3
  /**
4
  * Plugin Name: Photo Gallery by Supsystic
5
  * Description: Easy to use Gallery by Supsystic with professional gallery templates. Show off your best design, photography and creative work
6
+ * Version: 1.15.6
7
  * Author: supsystic.com
8
  * Author URI: https://supsystic.com
9
  * Text Domain: grid-gallery
11
 
12
  require_once dirname(__FILE__) . '/app/SupsysticGallery.php';
13
 
14
+ $supsysticGallery = new SupsysticGallery('1.15.6');
15
  $supsysticGallery->run();
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: supsystic.com
3
  Donate link: https://supsystic.com/plugins/gallery
4
  Tags: gallery, wordpress gallery plugin, photo gallery, grid gallery, image gallery, video gallery, responsive gallery, polaroid gallery
5
- Tested up to: 5.8
6
- Stable tag: 1.15.4
7
 
8
  Photo Gallery with template editor to build amazing media gallery. Responsive mobile gallery with grid, masonry, carousel, polaroid and more gallery
9
 
@@ -176,6 +176,15 @@ Add watermark on each image in your gallery and you protect your photos from the
176
  14. Photo gallery plugin admin area. Captions and Icons tab. Create impressive gallery with icons and fantastic caption effect.
177
 
178
  == Changelog ==
 
 
 
 
 
 
 
 
 
179
  = Gallery 1.15.4 / 06.12.2021 =
180
  * Add fixes for Mosaic Type Gallery
181
  * Add fix for Facebook API
2
  Contributors: supsystic.com
3
  Donate link: https://supsystic.com/plugins/gallery
4
  Tags: gallery, wordpress gallery plugin, photo gallery, grid gallery, image gallery, video gallery, responsive gallery, polaroid gallery
5
+ Tested up to: 6.0
6
+ Stable tag: 1.15.6
7
 
8
  Photo Gallery with template editor to build amazing media gallery. Responsive mobile gallery with grid, masonry, carousel, polaroid and more gallery
9
 
176
  14. Photo gallery plugin admin area. Captions and Icons tab. Create impressive gallery with icons and fantastic caption effect.
177
 
178
  == Changelog ==
179
+ = Gallery 1.15.6 / 17.06.2022 =
180
+ * Fixes for Controller
181
+ * Fixes for WP
182
+
183
+ = Gallery 1.15.5 / 01.06.2022 =
184
+ * Add fixes to saving link
185
+ * Fixes for LazyLoad
186
+ * Add support for WordPress 6.0 ( test mode )
187
+
188
  = Gallery 1.15.4 / 06.12.2021 =
189
  * Add fixes for Mosaic Type Gallery
190
  * Add fix for Facebook API
src/GridGallery/Galleries/Controller.php CHANGED
@@ -20,6 +20,7 @@ class GridGallery_Galleries_Controller extends GridGallery_Core_BaseController
20
  'chooseAction',
21
  'renameAction',
22
  'deleteAction',
 
23
  'deleteGroupAction',
24
  'deleteResourceAction',
25
  'addImagesAction',
@@ -33,7 +34,7 @@ class GridGallery_Galleries_Controller extends GridGallery_Core_BaseController
33
  'ajaxResizeImageAction',
34
  'saveSortByAction',
35
  'importSettingsAction',
36
- 'cloneAction',
37
  'createDefaultGallerySettingsAction',
38
  'removeDefaultGallerySettingsAction',
39
  );
@@ -240,7 +241,7 @@ class GridGallery_Galleries_Controller extends GridGallery_Core_BaseController
240
  } else {
241
  $gallery->photos = $position->sort($gallery->photos);
242
  }
243
- }
244
  return array(
245
  'gallery' => $gallery,
246
  'ajaxUrl' => admin_url('admin-ajax.php'),
@@ -315,11 +316,11 @@ class GridGallery_Galleries_Controller extends GridGallery_Core_BaseController
315
  $stats = $this->getEnvironment()->getModule('stats');
316
  $stats->save('galleries.create');
317
 
318
- if(get_option('defaultgallerysettings')) {
319
- $defaultSettingGalleryId = get_option('defaultgallerysettings');
320
- } else {
321
  $defaultSettingGalleryId = null;
322
- }
323
 
324
  try {
325
  $galleries->createFromRequest($request, $language, $config);
@@ -411,12 +412,12 @@ class GridGallery_Galleries_Controller extends GridGallery_Core_BaseController
411
  );
412
  }
413
 
414
-
415
 
416
  $galleries = $this->getModel('galleries');
417
  $gallery = $galleries->getById($gid);
418
 
419
- //cleaning cache after attaching
420
  $this->getModule('galleries')->cleanCache($gid);
421
 
422
  /*return $this->response(
@@ -733,7 +734,7 @@ class GridGallery_Galleries_Controller extends GridGallery_Core_BaseController
733
  $uiModule = $this->getModule('ui');
734
  $fontList = array_merge($this->getModel('settings')->getFontsList(), $uiModule->getStandardFontsList());
735
  sort($fontList);
736
-
737
  $membershipModel = $this->getModel('membership');
738
  $pageOptions = array(
739
  'isSettingPage' => 1,
@@ -845,7 +846,7 @@ class GridGallery_Galleries_Controller extends GridGallery_Core_BaseController
845
  } else if(isset($data['plugins']['membership']['enable']) && $data['plugins']['membership']['enable'] == 1) {
846
  $removeWithOtherCache = true;
847
  }
848
-
849
  $this->getModule('galleries')->cleanCache($galleryId, $removeWithOtherCache);
850
  }
851
 
20
  'chooseAction',
21
  'renameAction',
22
  'deleteAction',
23
+ 'saveSettingsAction',
24
  'deleteGroupAction',
25
  'deleteResourceAction',
26
  'addImagesAction',
34
  'ajaxResizeImageAction',
35
  'saveSortByAction',
36
  'importSettingsAction',
37
+ 'cloneAction',
38
  'createDefaultGallerySettingsAction',
39
  'removeDefaultGallerySettingsAction',
40
  );
241
  } else {
242
  $gallery->photos = $position->sort($gallery->photos);
243
  }
244
+ }
245
  return array(
246
  'gallery' => $gallery,
247
  'ajaxUrl' => admin_url('admin-ajax.php'),
316
  $stats = $this->getEnvironment()->getModule('stats');
317
  $stats->save('galleries.create');
318
 
319
+ // if(get_option('defaultgallerysettings')) {
320
+ // $defaultSettingGalleryId = get_option('defaultgallerysettings');
321
+ // } else {
322
  $defaultSettingGalleryId = null;
323
+ // }
324
 
325
  try {
326
  $galleries->createFromRequest($request, $language, $config);
412
  );
413
  }
414
 
415
+
416
 
417
  $galleries = $this->getModel('galleries');
418
  $gallery = $galleries->getById($gid);
419
 
420
+ //cleaning cache after attaching
421
  $this->getModule('galleries')->cleanCache($gid);
422
 
423
  /*return $this->response(
734
  $uiModule = $this->getModule('ui');
735
  $fontList = array_merge($this->getModel('settings')->getFontsList(), $uiModule->getStandardFontsList());
736
  sort($fontList);
737
+
738
  $membershipModel = $this->getModel('membership');
739
  $pageOptions = array(
740
  'isSettingPage' => 1,
846
  } else if(isset($data['plugins']['membership']['enable']) && $data['plugins']['membership']['enable'] == 1) {
847
  $removeWithOtherCache = true;
848
  }
849
+
850
  $this->getModule('galleries')->cleanCache($galleryId, $removeWithOtherCache);
851
  }
852
 
src/GridGallery/Galleries/configs/presets.php CHANGED
@@ -2,14 +2,14 @@
2
 
3
  return array(
4
  'gallery_presets' => array(
5
- 1 => 'a:26:{s:5:"title";s:11:"new_preset1";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:10:{s:4:"grid";s:1:"0";s:8:"position";s:1:"1";s:8:"distance";s:1:"5";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"215";s:17:"photo_height_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:2:"10";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#000000";s:4:"blur";s:1:"5";s:1:"x";s:1:"2";s:1:"y";s:1:"4";}s:7:"overlay";a:16:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#6f0000";s:12:"transparency";s:1:"5";s:6:"effect";s:16:"quarter-slide-up";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-5d";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_bottom";s:8:"paddings";a:4:{s:4:"left";s:2:"10";s:5:"right";s:2:"10";s:3:"top";s:2:"20";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:7:"#0c0c0c";s:19:"bgColorTransparency";s:1:"5";}s:5:"icons";a:7:{s:8:"position";s:10:"center_top";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"1";}}',
6
- 2 => 'a:26:{s:5:"title";s:12:"new-preset-2";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:8:{s:4:"grid";s:1:"1";s:8:"position";s:1:"1";s:8:"distance";s:1:"0";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:5:"black";s:5:"width";s:1:"3";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#aaaaaa";s:4:"blur";s:2:"10";s:1:"x";s:1:"1";s:1:"y";s:1:"1";}s:7:"overlay";a:16:{s:10:"text_align";s:4:"left";s:8:"position";s:3:"top";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0a076d";s:12:"transparency";s:1:"5";s:6:"effect";s:19:"revolving-door-left";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:12:"data-caption";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-5d";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:10:"center_top";s:8:"paddings";a:4:{s:4:"left";s:2:"10";s:5:"right";s:2:"10";s:3:"top";s:2:"10";s:6:"bottom";s:2:"10";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:5:"icons";a:7:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"1";}}',
7
- 3 => 'a:26:{s:5:"title";s:12:"new-preset-3";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:10:{s:4:"grid";s:1:"0";s:8:"position";s:1:"1";s:8:"distance";s:1:"7";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"215";s:17:"photo_height_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:3:"100";s:11:"radius_unit";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#ffffff";s:5:"width";s:1:"5";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#000000";s:4:"blur";s:2:"10";s:1:"x";s:1:"0";s:1:"y";s:1:"0";}s:7:"overlay";a:16:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#3498db";s:12:"transparency";s:2:"10";s:6:"effect";s:6:"center";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"1";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-7a";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"5";s:5:"right";s:1:"5";s:3:"top";s:1:"5";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:5:"icons";a:7:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:4:"left";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:1:"6";s:3:"pos";s:3:"top";s:5:"align";s:6:"center";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"1";}}',
8
- 4 => 'a:26:{s:5:"title";s:12:"new preset 4";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:8:{s:4:"grid";s:1:"2";s:8:"position";s:1:"1";s:8:"distance";s:1:"5";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:12:"photo_height";s:3:"215";s:17:"photo_height_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:2:"20";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:5:"black";s:5:"width";s:1:"3";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#000000";s:4:"blur";s:1:"5";s:1:"x";s:1:"2";s:1:"y";s:1:"4";}s:7:"overlay";a:16:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0c0000";s:12:"transparency";s:1:"5";s:6:"effect";s:16:"quarter-two-step";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"1";s:12:"mouse_shadow";s:1:"1";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-5d";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:10:"center_top";s:8:"paddings";a:4:{s:4:"left";s:1:"7";s:5:"right";s:1:"7";s:3:"top";s:2:"20";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:5:"icons";a:7:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"1";}}',
9
- 5 => 'a:26:{s:5:"title";s:12:"new-preset-5";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:10:{s:4:"grid";s:1:"0";s:8:"position";s:1:"1";s:8:"distance";s:1:"5";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"215";s:17:"photo_height_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:1:"0";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#aaaaaa";s:4:"blur";s:2:"10";s:1:"x";s:1:"1";s:1:"y";s:1:"1";}s:7:"overlay";a:17:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#ffffff";s:12:"transparency";s:1:"4";s:6:"effect";s:16:"quarter-slide-up";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"12";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";s:9:"fontStyle";a:1:{i:0;s:4:"bold";}}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"0";s:5:"theme";s:7:"theme_1";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:4:"true";s:13:"overlay_color";s:7:"#ffffff";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"20";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#000000";s:16:"background_hover";s:7:"#820101";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-7b";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_bottom";s:8:"paddings";a:4:{s:4:"left";s:2:"10";s:5:"right";s:2:"10";s:3:"top";s:2:"10";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:7:"#6f0000";s:19:"bgColorTransparency";s:1:"4";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"12";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:5:"icons";a:8:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"5";s:7:"enabled";s:4:"true";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#000000";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"6";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"0";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:2:"40";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"1";}}',
10
  6 => 'a:14:{s:5:"title";s:0:"";s:4:"area";a:8:{s:4:"grid";s:1:"0";s:8:"distance";s:1:"5";s:5:"width";s:2:"75";s:10:"width_unit";s:1:"1";s:11:"photo_width";s:3:"250";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"200";s:17:"photo_height_unit";s:1:"0";}s:9:"thumbnail";a:3:{s:6:"border";a:5:{s:6:"radius";s:2:"30";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:1:"0";}s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#aaaaaa";s:4:"blur";s:2:"10";s:1:"x";s:1:"1";s:1:"y";s:1:"1";}s:7:"overlay";a:8:{s:7:"enabled";s:4:"true";s:6:"effect";s:14:"quarter-appear";s:10:"background";s:7:"#3498db";s:10:"foreground";s:7:"#ecf0f1";s:12:"transparency";s:1:"5";s:9:"text_size";s:2:"12";s:14:"text_size_unit";s:1:"0";s:10:"text_align";s:1:"3";}}s:11:"border-type";s:5:"Types";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:6:{s:4:"type";s:1:"0";s:5:"theme";s:7:"theme_1";s:10:"transition";s:7:"elastic";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:13:"slideshowAuto";s:5:"false";}s:5:"posts";a:7:{s:6:"enable";s:1:"1";s:5:"style";s:1:"2";s:7:"current";s:3:"233";s:6:"author";s:1:"1";s:4:"date";s:1:"1";s:8:"contents";s:1:"1";s:10:"categories";s:1:"1";}s:5:"pages";a:1:{s:7:"current";s:2:"33";}s:5:"icons";a:11:{s:7:"enabled";s:5:"false";s:6:"effect";s:17:"hi-icon-effect-5d";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:4:"size";s:2:"16";s:6:"margin";s:1:"5";s:15:"overlay_enabled";s:4:"true";s:13:"overlay_color";s:7:"#3498db";s:20:"overlay_transparency";s:1:"5";}s:10:"categories";a:13:{s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:6:"preset";s:1:"0";s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:0:"";}s:10:"pagination";a:10:{s:7:"enabled";s:4:"true";s:8:"per_page";s:1:"6";s:3:"pos";s:3:"top";s:5:"align";s:5:"right";s:6:"preset";s:1:"5";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:3:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#1e73be";}s:7:"padding";a:2:{s:8:"vertical";s:1:"6";s:10:"horizontal";s:2:"10";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"10";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"0";s:11:"radius_unit";s:2:"px";}}s:12:"previewImage";a:4:{i:0;s:85:"http://dev.supsystic.com/wp-content/uploads/2015/01/113917523_natyurmortuy_foto_2.jpg";i:1;i:280;i:2;i:420;i:3;b:0;}}',
11
  7 => 'a:14:{s:5:"title";s:0:"";s:4:"area";a:8:{s:4:"grid";s:1:"0";s:8:"distance";s:2:"10";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:11:"photo_width";s:3:"350";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"200";s:17:"photo_height_unit";s:1:"0";}s:9:"thumbnail";a:3:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:2:"10";}s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#c0c0c0";s:4:"blur";s:1:"3";s:1:"x";s:1:"4";s:1:"y";s:2:"-4";}s:7:"overlay";a:8:{s:7:"enabled";s:4:"true";s:6:"effect";s:16:"quarter-slide-up";s:10:"background";s:7:"#6f0000";s:10:"foreground";s:7:"#ffffff";s:12:"transparency";s:1:"5";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"text_align";s:1:"2";}}s:11:"border-type";s:5:"Types";s:10:"use_shadow";s:1:"1";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:6:{s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:10:"transition";s:4:"fade";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:13:"slideshowAuto";s:5:"false";}s:5:"posts";a:7:{s:6:"enable";s:1:"1";s:5:"style";s:1:"5";s:7:"current";s:4:"1999";s:6:"author";s:1:"1";s:4:"date";s:1:"1";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:2:"33";}s:5:"icons";a:11:{s:7:"enabled";s:5:"false";s:6:"effect";s:17:"hi-icon-effect-5d";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:4:"size";s:2:"16";s:6:"margin";s:1:"5";s:15:"overlay_enabled";s:4:"true";s:13:"overlay_color";s:7:"#3498db";s:20:"overlay_transparency";s:1:"5";}s:10:"categories";a:13:{s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:6:"preset";s:1:"0";s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:0:"";}s:10:"pagination";a:10:{s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:6:"preset";s:1:"0";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:3:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:12:"previewImage";a:4:{i:0;s:85:"http://dev.supsystic.com/wp-content/uploads/2015/01/113917523_natyurmortuy_foto_2.jpg";i:1;i:280;i:2;i:420;i:3;b:0;}}',
12
  8 => 'a:14:{s:5:"title";s:0:"";s:4:"area";a:8:{s:4:"grid";s:1:"0";s:8:"distance";s:2:"10";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:11:"photo_width";s:3:"500";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"200";s:17:"photo_height_unit";s:1:"0";}s:9:"thumbnail";a:3:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:1:"0";}s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#aaaaaa";s:4:"blur";s:2:"10";s:1:"x";s:1:"1";s:1:"y";s:1:"1";}s:7:"overlay";a:8:{s:7:"enabled";s:4:"true";s:6:"effect";s:14:"quarter-appear";s:10:"background";s:7:"#3498db";s:10:"foreground";s:7:"#ecf0f1";s:12:"transparency";s:1:"5";s:9:"text_size";s:2:"12";s:14:"text_size_unit";s:1:"0";s:10:"text_align";s:1:"3";}}s:11:"border-type";s:5:"Types";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:6:{s:4:"type";s:1:"0";s:5:"theme";s:7:"theme_1";s:10:"transition";s:7:"elastic";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:13:"slideshowAuto";s:5:"false";}s:5:"posts";a:7:{s:6:"enable";s:1:"1";s:5:"style";s:1:"3";s:7:"current";s:3:"233";s:6:"author";s:1:"1";s:4:"date";s:1:"1";s:8:"contents";s:1:"1";s:10:"categories";s:1:"1";}s:5:"pages";a:1:{s:7:"current";s:2:"33";}s:5:"icons";a:11:{s:7:"enabled";s:5:"false";s:6:"effect";s:17:"hi-icon-effect-5d";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:4:"size";s:2:"16";s:6:"margin";s:1:"5";s:15:"overlay_enabled";s:4:"true";s:13:"overlay_color";s:7:"#3498db";s:20:"overlay_transparency";s:1:"5";}s:10:"categories";a:13:{s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:6:"preset";s:1:"0";s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:0:"";}s:10:"pagination";a:10:{s:7:"enabled";s:5:"false";s:8:"per_page";s:1:"6";s:3:"pos";s:3:"top";s:5:"align";s:5:"right";s:6:"preset";s:1:"5";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:3:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#1e73be";}s:7:"padding";a:2:{s:8:"vertical";s:1:"6";s:10:"horizontal";s:2:"10";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"10";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"0";s:11:"radius_unit";s:2:"px";}}s:12:"previewImage";a:4:{i:0;s:85:"http://dev.supsystic.com/wp-content/uploads/2015/01/113917523_natyurmortuy_foto_2.jpg";i:1;i:280;i:2;i:420;i:3;b:0;}}',
13
- 9 => 'a:26:{s:5:"title";s:6:"mosaic";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:9:{s:4:"grid";s:1:"4";s:8:"position";s:1:"1";s:8:"distance";s:1:"5";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";s:12:"ggMosaicType";a:7:{s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:2:"43";s:12:"fontSizeUnit";s:1:"0";s:10:"foreground";s:4:"#fff";s:9:"fontStyle";a:1:{i:0;s:4:"bold";}s:7:"bgColor";s:4:"#000";s:19:"bgColorTransparency";s:1:"4";}}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:2:"10";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#000000";s:4:"blur";s:1:"5";s:1:"x";s:1:"2";s:1:"y";s:1:"4";}s:7:"overlay";a:16:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#6f0000";s:12:"transparency";s:1:"5";s:6:"effect";s:16:"quarter-slide-up";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-5d";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_bottom";s:8:"paddings";a:4:{s:4:"left";s:2:"10";s:5:"right";s:2:"10";s:3:"top";s:2:"20";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:7:"#0c0c0c";s:19:"bgColorTransparency";s:1:"5";}s:5:"icons";a:7:{s:8:"position";s:10:"center_top";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"1";}}',
14
  ),
15
- );
2
 
3
  return array(
4
  'gallery_presets' => array(
5
+ 1 => 'a:26:{s:5:"title";s:11:"new_preset1";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:10:{s:4:"grid";s:1:"0";s:8:"position";s:1:"1";s:8:"distance";s:1:"5";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"215";s:17:"photo_height_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:2:"10";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#000000";s:4:"blur";s:1:"5";s:1:"x";s:1:"2";s:1:"y";s:1:"4";}s:7:"overlay";a:16:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#6f0000";s:12:"transparency";s:1:"5";s:6:"effect";s:16:"quarter-slide-up";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-5d";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_bottom";s:8:"paddings";a:4:{s:4:"left";s:2:"10";s:5:"right";s:2:"10";s:3:"top";s:2:"20";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:7:"#0c0c0c";s:19:"bgColorTransparency";s:1:"5";}s:5:"icons";a:7:{s:8:"position";s:10:"center_top";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"0";}}',
6
+ 2 => 'a:26:{s:5:"title";s:12:"new-preset-2";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:8:{s:4:"grid";s:1:"1";s:8:"position";s:1:"1";s:8:"distance";s:1:"0";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:5:"black";s:5:"width";s:1:"3";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#aaaaaa";s:4:"blur";s:2:"10";s:1:"x";s:1:"1";s:1:"y";s:1:"1";}s:7:"overlay";a:16:{s:10:"text_align";s:4:"left";s:8:"position";s:3:"top";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0a076d";s:12:"transparency";s:1:"5";s:6:"effect";s:19:"revolving-door-left";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:12:"data-caption";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-5d";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:10:"center_top";s:8:"paddings";a:4:{s:4:"left";s:2:"10";s:5:"right";s:2:"10";s:3:"top";s:2:"10";s:6:"bottom";s:2:"10";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:5:"icons";a:7:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"0";}}',
7
+ 3 => 'a:26:{s:5:"title";s:12:"new-preset-3";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:10:{s:4:"grid";s:1:"0";s:8:"position";s:1:"1";s:8:"distance";s:1:"7";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"215";s:17:"photo_height_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:3:"100";s:11:"radius_unit";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#ffffff";s:5:"width";s:1:"5";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#000000";s:4:"blur";s:2:"10";s:1:"x";s:1:"0";s:1:"y";s:1:"0";}s:7:"overlay";a:16:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#3498db";s:12:"transparency";s:2:"10";s:6:"effect";s:6:"center";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"1";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-7a";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"5";s:5:"right";s:1:"5";s:3:"top";s:1:"5";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:5:"icons";a:7:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:4:"left";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:1:"6";s:3:"pos";s:3:"top";s:5:"align";s:6:"center";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"0";}}',
8
+ 4 => 'a:26:{s:5:"title";s:12:"new preset 4";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:8:{s:4:"grid";s:1:"2";s:8:"position";s:1:"1";s:8:"distance";s:1:"5";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:12:"photo_height";s:3:"215";s:17:"photo_height_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:2:"20";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:5:"black";s:5:"width";s:1:"3";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#000000";s:4:"blur";s:1:"5";s:1:"x";s:1:"2";s:1:"y";s:1:"4";}s:7:"overlay";a:16:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0c0000";s:12:"transparency";s:1:"5";s:6:"effect";s:16:"quarter-two-step";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"1";s:12:"mouse_shadow";s:1:"1";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-5d";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:10:"center_top";s:8:"paddings";a:4:{s:4:"left";s:1:"7";s:5:"right";s:1:"7";s:3:"top";s:2:"20";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:5:"icons";a:7:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"0";}}',
9
+ 5 => 'a:26:{s:5:"title";s:12:"new-preset-5";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:10:{s:4:"grid";s:1:"0";s:8:"position";s:1:"1";s:8:"distance";s:1:"5";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"215";s:17:"photo_height_unit";s:1:"0";}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:1:"0";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#aaaaaa";s:4:"blur";s:2:"10";s:1:"x";s:1:"1";s:1:"y";s:1:"1";}s:7:"overlay";a:17:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#ffffff";s:12:"transparency";s:1:"4";s:6:"effect";s:16:"quarter-slide-up";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"12";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";s:9:"fontStyle";a:1:{i:0;s:4:"bold";}}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"0";s:5:"theme";s:7:"theme_1";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:4:"true";s:13:"overlay_color";s:7:"#ffffff";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"20";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#000000";s:16:"background_hover";s:7:"#820101";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-7b";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_bottom";s:8:"paddings";a:4:{s:4:"left";s:2:"10";s:5:"right";s:2:"10";s:3:"top";s:2:"10";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:7:"#6f0000";s:19:"bgColorTransparency";s:1:"4";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"12";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:5:"icons";a:8:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"5";s:7:"enabled";s:4:"true";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#000000";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"6";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"0";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:2:"40";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"0";}}',
10
  6 => 'a:14:{s:5:"title";s:0:"";s:4:"area";a:8:{s:4:"grid";s:1:"0";s:8:"distance";s:1:"5";s:5:"width";s:2:"75";s:10:"width_unit";s:1:"1";s:11:"photo_width";s:3:"250";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"200";s:17:"photo_height_unit";s:1:"0";}s:9:"thumbnail";a:3:{s:6:"border";a:5:{s:6:"radius";s:2:"30";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:1:"0";}s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#aaaaaa";s:4:"blur";s:2:"10";s:1:"x";s:1:"1";s:1:"y";s:1:"1";}s:7:"overlay";a:8:{s:7:"enabled";s:4:"true";s:6:"effect";s:14:"quarter-appear";s:10:"background";s:7:"#3498db";s:10:"foreground";s:7:"#ecf0f1";s:12:"transparency";s:1:"5";s:9:"text_size";s:2:"12";s:14:"text_size_unit";s:1:"0";s:10:"text_align";s:1:"3";}}s:11:"border-type";s:5:"Types";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:6:{s:4:"type";s:1:"0";s:5:"theme";s:7:"theme_1";s:10:"transition";s:7:"elastic";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:13:"slideshowAuto";s:5:"false";}s:5:"posts";a:7:{s:6:"enable";s:1:"1";s:5:"style";s:1:"2";s:7:"current";s:3:"233";s:6:"author";s:1:"1";s:4:"date";s:1:"1";s:8:"contents";s:1:"1";s:10:"categories";s:1:"1";}s:5:"pages";a:1:{s:7:"current";s:2:"33";}s:5:"icons";a:11:{s:7:"enabled";s:5:"false";s:6:"effect";s:17:"hi-icon-effect-5d";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:4:"size";s:2:"16";s:6:"margin";s:1:"5";s:15:"overlay_enabled";s:4:"true";s:13:"overlay_color";s:7:"#3498db";s:20:"overlay_transparency";s:1:"5";}s:10:"categories";a:13:{s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:6:"preset";s:1:"0";s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:0:"";}s:10:"pagination";a:10:{s:7:"enabled";s:4:"true";s:8:"per_page";s:1:"6";s:3:"pos";s:3:"top";s:5:"align";s:5:"right";s:6:"preset";s:1:"5";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:3:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#1e73be";}s:7:"padding";a:2:{s:8:"vertical";s:1:"6";s:10:"horizontal";s:2:"10";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"10";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"0";s:11:"radius_unit";s:2:"px";}}s:12:"previewImage";a:4:{i:0;s:85:"http://dev.supsystic.com/wp-content/uploads/2015/01/113917523_natyurmortuy_foto_2.jpg";i:1;i:280;i:2;i:420;i:3;b:0;}}',
11
  7 => 'a:14:{s:5:"title";s:0:"";s:4:"area";a:8:{s:4:"grid";s:1:"0";s:8:"distance";s:2:"10";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:11:"photo_width";s:3:"350";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"200";s:17:"photo_height_unit";s:1:"0";}s:9:"thumbnail";a:3:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:2:"10";}s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#c0c0c0";s:4:"blur";s:1:"3";s:1:"x";s:1:"4";s:1:"y";s:2:"-4";}s:7:"overlay";a:8:{s:7:"enabled";s:4:"true";s:6:"effect";s:16:"quarter-slide-up";s:10:"background";s:7:"#6f0000";s:10:"foreground";s:7:"#ffffff";s:12:"transparency";s:1:"5";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"text_align";s:1:"2";}}s:11:"border-type";s:5:"Types";s:10:"use_shadow";s:1:"1";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:6:{s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:10:"transition";s:4:"fade";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:13:"slideshowAuto";s:5:"false";}s:5:"posts";a:7:{s:6:"enable";s:1:"1";s:5:"style";s:1:"5";s:7:"current";s:4:"1999";s:6:"author";s:1:"1";s:4:"date";s:1:"1";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:2:"33";}s:5:"icons";a:11:{s:7:"enabled";s:5:"false";s:6:"effect";s:17:"hi-icon-effect-5d";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:4:"size";s:2:"16";s:6:"margin";s:1:"5";s:15:"overlay_enabled";s:4:"true";s:13:"overlay_color";s:7:"#3498db";s:20:"overlay_transparency";s:1:"5";}s:10:"categories";a:13:{s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:6:"preset";s:1:"0";s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:0:"";}s:10:"pagination";a:10:{s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:6:"preset";s:1:"0";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:3:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:12:"previewImage";a:4:{i:0;s:85:"http://dev.supsystic.com/wp-content/uploads/2015/01/113917523_natyurmortuy_foto_2.jpg";i:1;i:280;i:2;i:420;i:3;b:0;}}',
12
  8 => 'a:14:{s:5:"title";s:0:"";s:4:"area";a:8:{s:4:"grid";s:1:"0";s:8:"distance";s:2:"10";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:11:"photo_width";s:3:"500";s:16:"photo_width_unit";s:1:"0";s:12:"photo_height";s:3:"200";s:17:"photo_height_unit";s:1:"0";}s:9:"thumbnail";a:3:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:1:"0";}s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#aaaaaa";s:4:"blur";s:2:"10";s:1:"x";s:1:"1";s:1:"y";s:1:"1";}s:7:"overlay";a:8:{s:7:"enabled";s:4:"true";s:6:"effect";s:14:"quarter-appear";s:10:"background";s:7:"#3498db";s:10:"foreground";s:7:"#ecf0f1";s:12:"transparency";s:1:"5";s:9:"text_size";s:2:"12";s:14:"text_size_unit";s:1:"0";s:10:"text_align";s:1:"3";}}s:11:"border-type";s:5:"Types";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:6:{s:4:"type";s:1:"0";s:5:"theme";s:7:"theme_1";s:10:"transition";s:7:"elastic";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:13:"slideshowAuto";s:5:"false";}s:5:"posts";a:7:{s:6:"enable";s:1:"1";s:5:"style";s:1:"3";s:7:"current";s:3:"233";s:6:"author";s:1:"1";s:4:"date";s:1:"1";s:8:"contents";s:1:"1";s:10:"categories";s:1:"1";}s:5:"pages";a:1:{s:7:"current";s:2:"33";}s:5:"icons";a:11:{s:7:"enabled";s:5:"false";s:6:"effect";s:17:"hi-icon-effect-5d";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:4:"size";s:2:"16";s:6:"margin";s:1:"5";s:15:"overlay_enabled";s:4:"true";s:13:"overlay_color";s:7:"#3498db";s:20:"overlay_transparency";s:1:"5";}s:10:"categories";a:13:{s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:6:"preset";s:1:"0";s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:0:"";}s:10:"pagination";a:10:{s:7:"enabled";s:5:"false";s:8:"per_page";s:1:"6";s:3:"pos";s:3:"top";s:5:"align";s:5:"right";s:6:"preset";s:1:"5";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:3:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#1e73be";}s:7:"padding";a:2:{s:8:"vertical";s:1:"6";s:10:"horizontal";s:2:"10";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"10";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"0";s:11:"radius_unit";s:2:"px";}}s:12:"previewImage";a:4:{i:0;s:85:"http://dev.supsystic.com/wp-content/uploads/2015/01/113917523_natyurmortuy_foto_2.jpg";i:1;i:280;i:2;i:420;i:3;b:0;}}',
13
+ 9 => 'a:26:{s:5:"title";s:6:"mosaic";s:12:"previewImage";s:0:"";s:4:"sort";a:2:{s:6:"sortto";s:0:"";s:6:"sortby";s:0:"";}s:7:"plugins";a:1:{s:10:"membership";a:1:{s:6:"enable";s:0:"";}}s:4:"area";a:9:{s:4:"grid";s:1:"4";s:8:"position";s:1:"1";s:8:"distance";s:1:"5";s:5:"width";s:3:"100";s:10:"width_unit";s:1:"1";s:7:"padding";s:1:"0";s:11:"photo_width";s:3:"215";s:16:"photo_width_unit";s:1:"0";s:12:"ggMosaicType";a:7:{s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:2:"43";s:12:"fontSizeUnit";s:1:"0";s:10:"foreground";s:4:"#fff";s:9:"fontStyle";a:1:{i:0;s:4:"bold";}s:7:"bgColor";s:4:"#000";s:19:"bgColorTransparency";s:1:"4";}}s:7:"general";a:2:{s:7:"columns";a:1:{s:6:"number";s:1:"3";}s:17:"responsiveColumns";a:3:{s:7:"desktop";a:2:{s:5:"width";s:4:"1200";s:7:"columns";s:1:"3";}s:6:"tablet";a:2:{s:5:"width";s:3:"768";s:7:"columns";s:1:"3";}s:6:"mobile";a:2:{s:5:"width";s:3:"320";s:7:"columns";s:1:"3";}}}s:9:"thumbnail";a:7:{s:6:"border";a:5:{s:6:"radius";s:1:"0";s:11:"radius_unit";s:1:"0";s:4:"type";s:4:"none";s:5:"color";s:7:"#fefefe";s:5:"width";s:2:"10";}s:11:"cropQuality";s:3:"100";s:6:"shadow";a:5:{s:7:"overlay";s:1:"0";s:5:"color";s:7:"#000000";s:4:"blur";s:1:"5";s:1:"x";s:1:"2";s:1:"y";s:1:"4";}s:7:"overlay";a:16:{s:10:"text_align";s:1:"2";s:8:"position";s:0:"";s:7:"enabled";s:4:"true";s:10:"background";s:7:"#6f0000";s:12:"transparency";s:1:"5";s:6:"effect";s:16:"quarter-slide-up";s:18:"imageOnHoverEnable";s:1:"0";s:12:"imageOnHover";s:0:"";s:8:"personal";s:5:"false";s:17:"polaroidAnimation";s:4:"true";s:18:"polaroidScattering";s:4:"true";s:18:"polaroidFrameWidth";s:2:"20";s:11:"font_family";s:7:"Default";s:9:"text_size";s:2:"14";s:14:"text_size_unit";s:1:"0";s:10:"foreground";s:7:"#ffffff";}s:7:"tooltip";s:5:"false";s:8:"isMobile";s:5:"false";s:22:"isDisableMobileCaption";s:5:"false";}s:13:"socialSharing";a:1:{s:7:"enabled";s:0:"";}s:8:"showMore";a:6:{s:7:"enabled";s:5:"false";s:12:"loadOnScroll";s:5:"false";s:10:"buttonText";s:9:"Load More";s:11:"loadingText";s:10:"Loading...";s:12:"imagesAmount";s:2:"20";s:14:"showMoreAmount";s:2:"10";}s:16:"horizontalScroll";a:3:{s:7:"enabled";s:5:"false";s:5:"color";s:0:"";s:12:"transparency";s:2:"60";}s:11:"border-type";s:7:"Example";s:10:"use_shadow";s:1:"0";s:12:"mouse_shadow";s:1:"0";s:3:"box";a:13:{s:7:"enabled";s:4:"true";s:4:"type";s:1:"1";s:5:"theme";s:7:"theme_6";s:9:"imageText";s:16:"data-description";s:15:"linkedImageText";s:10:"data-title";s:10:"background";s:0:"";s:12:"transparency";s:2:"30";s:9:"slideshow";s:5:"false";s:14:"slideshowSpeed";s:4:"2500";s:14:"popupHoverStop";s:4:"true";s:13:"slideshowAuto";s:5:"false";s:10:"popupwidth";s:0:"";s:11:"popupheight";s:0:"";}s:5:"popup";a:1:{s:5:"video";a:4:{s:5:"width";s:3:"853";s:6:"height";s:3:"480";s:8:"autoplay";s:5:"false";s:5:"onEnd";s:1:"0";}}s:7:"preload";a:4:{s:7:"enabled";s:4:"true";s:10:"background";s:7:"#0073AA";s:9:"icon_name";s:7:"default";s:10:"icon_items";s:1:"0";}s:5:"posts";a:9:{s:6:"enable";s:1:"0";s:5:"style";s:1:"0";s:9:"autoposts";s:1:"0";s:15:"autopostsNumber";s:1:"5";s:7:"current";s:3:"671";s:6:"author";s:1:"0";s:4:"date";s:1:"0";s:8:"contents";s:1:"0";s:10:"categories";s:1:"0";}s:5:"pages";a:1:{s:7:"current";s:3:"655";}s:5:"icons";a:12:{s:7:"enabled";s:5:"false";s:13:"overlay_color";s:7:"#3498db";s:15:"overlay_enabled";s:4:"true";s:4:"size";s:2:"16";s:5:"color";s:7:"#ffffff";s:11:"hover_color";s:7:"#ffffff";s:20:"overlay_transparency";s:1:"5";s:10:"background";s:7:"#1e73be";s:16:"background_hover";s:7:"#1e73be";s:14:"bgTransparency";s:1:"0";s:6:"margin";s:1:"5";s:6:"effect";s:17:"hi-icon-effect-5d";}s:14:"captionBuilder";a:5:{s:10:"isOnceUsed";s:1:"1";s:10:"background";a:1:{s:6:"enable";s:1:"1";}s:5:"title";a:5:{s:6:"enable";s:1:"1";s:8:"position";s:13:"center_bottom";s:8:"paddings";a:4:{s:4:"left";s:2:"10";s:5:"right";s:2:"10";s:3:"top";s:2:"20";s:6:"bottom";s:1:"0";}s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}s:11:"description";a:8:{s:8:"position";s:13:"center_center";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:11:"font_family";s:7:"Default";s:9:"font_size";s:2:"14";s:14:"font_size_unit";s:1:"0";s:9:"fontColor";s:0:"";s:7:"bgColor";s:7:"#0c0c0c";s:19:"bgColorTransparency";s:1:"5";}s:5:"icons";a:7:{s:8:"position";s:10:"center_top";s:8:"paddings";a:4:{s:4:"left";s:1:"0";s:5:"right";s:1:"0";s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";}s:21:"popupFontAwesomeClass";s:9:"fa-expand";s:21:"videoFontAwesomeClass";s:0:"";s:20:"linkFontAwesomeClass";s:0:"";s:7:"bgColor";s:0:"";s:19:"bgColorTransparency";s:1:"0";}}s:10:"categories";a:15:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"position";s:3:"top";s:5:"align";s:6:"center";s:5:"order";a:1:{i:0;s:7:"__all__";}s:6:"nav_bg";s:7:"#1e73be";s:11:"hide_nav_bg";s:2:"on";s:7:"text_bg";s:7:"#82a0bf";s:12:"hide_text_bg";s:2:"on";s:10:"text_color";s:7:"#1e73be";s:11:"theme_color";s:3:"off";s:7:"padding";a:2:{s:4:"vert";s:1:"3";s:3:"hor";s:2:"10";}s:11:"font_weight";s:6:"normal";s:9:"font_size";s:2:"12";s:6:"border";a:5:{s:5:"width";s:1:"1";s:5:"style";s:5:"solid";s:5:"color";s:7:"#1e73be";s:6:"radius";s:1:"3";s:11:"radius_unit";s:2:"px";}}s:9:"quicksand";a:2:{s:7:"enabled";s:1:"0";s:8:"duration";s:4:"1800";}s:10:"pagination";a:10:{s:6:"preset";s:1:"0";s:7:"enabled";s:5:"false";s:8:"per_page";s:2:"10";s:3:"pos";s:3:"top";s:5:"align";s:4:"left";s:9:"container";a:2:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";}s:4:"text";a:4:{s:10:"background";s:0:"";s:15:"hide_background";s:2:"on";s:5:"color";s:7:"#0a0a0a";s:10:"hide_color";s:3:"off";}s:7:"padding";a:2:{s:8:"vertical";s:1:"4";s:10:"horizontal";s:1:"8";}s:4:"font";a:2:{s:6:"weight";s:6:"normal";s:4:"size";s:2:"13";}s:6:"border";a:5:{s:5:"width";s:1:"1";s:4:"type";s:5:"solid";s:5:"color";s:7:"#999999";s:6:"radius";s:1:"4";s:11:"radius_unit";s:2:"px";}}s:9:"watermark";a:9:{s:7:"enabled";s:0:"";s:8:"show_for";s:1:"3";s:11:"all_img_sel";s:1:"1";s:4:"type";s:3:"img";s:3:"url";s:0:"";s:6:"margin";s:1:"0";s:8:"position";s:13:"center_center";s:6:"rotate";s:1:"0";s:12:"transparency";s:2:"50";}s:7:"buttons";a:12:{s:5:"class";s:0:"";s:5:"color";s:7:"#000000";s:15:"backgroundColor";s:0:"";s:10:"fontFamily";s:7:"Default";s:8:"fontSize";s:0:"";s:10:"fontWeight";s:6:"normal";s:8:"paddingV";s:1:"5";s:8:"paddingH";s:1:"8";s:11:"borderStyle";s:5:"solid";s:11:"borderWidth";s:1:"1";s:11:"borderColor";s:7:"#000000";s:12:"borderRadius";s:1:"2";}s:8:"lazyload";a:1:{s:7:"enabled";s:1:"0";}}',
14
  ),
15
+ );
src/GridGallery/Galleries/views/settings.twig CHANGED
@@ -2440,7 +2440,7 @@
2440
  }
2441
  %}
2442
  {% set var_icon_wrap_item_class %}
2443
- {% block icon_wrap_item_class %}
2444
  icon-fullscreen
2445
  {% endblock %}
2446
  {% endset %}
2440
  }
2441
  %}
2442
  {% set var_icon_wrap_item_class %}
2443
+ {% block icon_wrap_item_class %}
2444
  icon-fullscreen
2445
  {% endblock %}
2446
  {% endset %}
src/GridGallery/Photos/Controller.php CHANGED
@@ -332,7 +332,7 @@ class GridGallery_Photos_Controller extends GridGallery_Core_BaseController
332
  $photo = $photos->getById($photoId);
333
  $attachment = $photo->attachment;
334
  if($photos->rotateAttachment($attachment, $rotateType)) {
335
- $rotated++;
336
  }
337
  }
338
  }
@@ -501,7 +501,7 @@ class GridGallery_Photos_Controller extends GridGallery_Core_BaseController
501
  $request->post->set('replace_attachment_id',null);
502
  }
503
  }
504
-
505
  public function updateAttachmentAction(Rsc_Http_Request $request) {
506
 
507
  /** @var GridGallery_Photos_Model_Photos $photos */
@@ -522,7 +522,11 @@ class GridGallery_Photos_Controller extends GridGallery_Core_BaseController
522
  $cropPosition = $request->post->get('cropPosition');
523
 
524
  if($link){
525
- $rel = trim(implode(' ', $request->post->get('rel', '')));
 
 
 
 
526
  } else {
527
  $rel = '';
528
  }
332
  $photo = $photos->getById($photoId);
333
  $attachment = $photo->attachment;
334
  if($photos->rotateAttachment($attachment, $rotateType)) {
335
+ $rotated++;
336
  }
337
  }
338
  }
501
  $request->post->set('replace_attachment_id',null);
502
  }
503
  }
504
+
505
  public function updateAttachmentAction(Rsc_Http_Request $request) {
506
 
507
  /** @var GridGallery_Photos_Model_Photos $photos */
522
  $cropPosition = $request->post->get('cropPosition');
523
 
524
  if($link){
525
+ if (!empty($request->post->get('rel', ''))) {
526
+ $rel = trim(implode(' ', $request->post->get('rel', '')));
527
+ } else {
528
+ $rel = '';
529
+ }
530
  } else {
531
  $rel = '';
532
  }
src/GridGallery/Settings/Controller.php CHANGED
@@ -45,12 +45,14 @@ class GridGallery_Settings_Controller extends GridGallery_Core_BaseController
45
 
46
  public function requireNonces() {
47
  return array(
48
- 'saveSettingsActionAction',
49
  );
50
  }
51
 
52
  public function saveSettingsAction(Rsc_Http_Request $request) {
53
 
 
 
54
  $optionsName = $this->getConfig()->get('db_prefix') . 'settings';
55
  $currentSettings = get_option($optionsName);
56
  $settings = $request->post->get('settings', array());
@@ -76,4 +78,4 @@ class GridGallery_Settings_Controller extends GridGallery_Core_BaseController
76
  update_option($optionsName, $merge);
77
  return $this->redirect($this->generateUrl('settings'));
78
  }
79
- }
45
 
46
  public function requireNonces() {
47
  return array(
48
+ 'saveSettingsAction',
49
  );
50
  }
51
 
52
  public function saveSettingsAction(Rsc_Http_Request $request) {
53
 
54
+
55
+
56
  $optionsName = $this->getConfig()->get('db_prefix') . 'settings';
57
  $currentSettings = get_option($optionsName);
58
  $settings = $request->post->get('settings', array());
78
  update_option($optionsName, $merge);
79
  return $this->redirect($this->generateUrl('settings'));
80
  }
81
+ }
src/GridGallery/Ui/views/type.twig CHANGED
@@ -298,6 +298,13 @@
298
  </div>
299
  <div class="gg-link-option gg-option-container ggSettingsDisplNone">
300
  <input type="text" name="link" value="{{ image.attachment.external_link }}" style="width: 100%;" placeholder="{{ translate('http://example.com/') }}"/></br>
 
 
 
 
 
 
 
301
  <label>
302
  <input type="checkbox" name="target" value="_blank" {% if image.attachment.target == '_blank' %} checked="checked" {% endif %}/>
303
  {{ translate('Open in new window') }}
298
  </div>
299
  <div class="gg-link-option gg-option-container ggSettingsDisplNone">
300
  <input type="text" name="link" value="{{ image.attachment.external_link }}" style="width: 100%;" placeholder="{{ translate('http://example.com/') }}"/></br>
301
+ {% if environment.isPro() == false %}
302
+ <span style="color: #4ae8ea;" class="description">
303
+ </br><a style="color: #4ae8ea;" href="http://supsystic.com/plugins/photo-gallery?utm_source=plugin&utm_medium=video&utm_campaign=gallery" target="_blank">
304
+ {{ nonProMsg|raw }}
305
+ </a>
306
+ </span>
307
+ {% endif %}
308
  <label>
309
  <input type="checkbox" name="target" value="_blank" {% if image.attachment.target == '_blank' %} checked="checked" {% endif %}/>
310
  {{ translate('Open in new window') }}
vendor/Rsc/Mvc/Module.php CHANGED
@@ -150,16 +150,14 @@ class Rsc_Mvc_Module
150
  public function handle()
151
  {
152
  $action = $this->request->query->get('action', 'index') . 'Action';
153
-
154
  $controller = $this->getController();
155
-
156
  if (method_exists($controller, $action)) {
157
 
158
  $requireNonces = $controller->requireNonces();
159
 
160
  if (in_array($action, $requireNonces)) {
161
- $plugMenuSets = $this->getEnvironment()->getConfig()->get('plugin_menu');
162
- check_admin_referer($plugMenuSets['menu_slug']);
163
  }
164
 
165
  return call_user_func_array(array($controller, $action), array(
150
  public function handle()
151
  {
152
  $action = $this->request->query->get('action', 'index') . 'Action';
 
153
  $controller = $this->getController();
 
154
  if (method_exists($controller, $action)) {
155
 
156
  $requireNonces = $controller->requireNonces();
157
 
158
  if (in_array($action, $requireNonces)) {
159
+ $plugMenuSets = $this->getEnvironment()->getConfig()->get('plugin_menu');
160
+ check_admin_referer($plugMenuSets['menu_slug']);
161
  }
162
 
163
  return call_user_func_array(array($controller, $action), array(