window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/orders.snapix.gr\/wp-includes\/js\/wp-emoji.js?ver=6.3.1","twemoji":"https:\/\/orders.snapix.gr\/wp-includes\/js\/twemoji.js?ver=6.3.1"}};
/**
* @output wp-includes/js/wp-emoji-loader.js
*//**
* Emoji Settings as exported in PHP via _print_emoji_detection_script().
* @typedef WPEmojiSettings
* @type {object}
* @property {?object} source
* @property {?string} source.concatemoji
* @property {?string} source.twemoji
* @property {?string} source.wpemoji
* @property {?boolean} DOMReady
* @property {?Function} readyCallback
*//**
* Support tests.
* @typedef SupportTests
* @type {object}
* @property {?boolean} flag
* @property {?boolean} emoji
*//**
* IIFE to detect emoji support and load Twemoji if needed.
*
* @param {Window} window
* @param {Document} document
* @param {WPEmojiSettings} settings
*/
( function wpEmojiLoader( window, document, settings ) {
if ( typeof Promise === 'undefined' ) {
return;
}var sessionStorageKey = 'wpEmojiSettingsSupports';
var tests = [ 'flag', 'emoji' ];/**
* Checks whether the browser supports offloading to a Worker.
*
* @since 6.3.0
*
* @private
*
* @returns {boolean}
*/
function supportsWorkerOffloading() {
return (
typeof Worker !== 'undefined' &&
typeof OffscreenCanvas !== 'undefined' &&
typeof URL !== 'undefined' &&
URL.createObjectURL &&
typeof Blob !== 'undefined'
);
}/**
* @typedef SessionSupportTests
* @type {object}
* @property {number} timestamp
* @property {SupportTests} supportTests
*//**
* Get support tests from session.
*
* @since 6.3.0
*
* @private
*
* @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
*/
function getSessionSupportTests() {
try {
/** @type {SessionSupportTests} */
var item = JSON.parse(
sessionStorage.getItem( sessionStorageKey )
);
if (
typeof item === 'object' &&
typeof item.timestamp === 'number' &&
new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
typeof item.supportTests === 'object'
) {
return item.supportTests;
}
} catch ( e ) {}
return null;
}/**
* Persist the supports in session storage.
*
* @since 6.3.0
*
* @private
*
* @param {SupportTests} supportTests Support tests.
*/
function setSessionSupportTests( supportTests ) {
try {
/** @type {SessionSupportTests} */
var item = {
supportTests: supportTests,
timestamp: new Date().valueOf()
};sessionStorage.setItem(
sessionStorageKey,
JSON.stringify( item )
);
} catch ( e ) {}
}/**
* Checks if two sets of Emoji characters render the same visually.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 4.9.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} set1 Set of Emoji to test.
* @param {string} set2 Set of Emoji to test.
*
* @return {boolean} True if the two sets render the same.
*/
function emojiSetsRenderIdentically( context, set1, set2 ) {
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set1, 0, 0 );
var rendered1 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set2, 0, 0 );
var rendered2 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);return rendered1.every( function ( rendered2Data, index ) {
return rendered2Data === rendered2[ index ];
} );
}/**
* Determines if the browser properly renders Emoji that Twemoji can supplement.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 4.2.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} type Whether to test for support of "flag" or "emoji".
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
*
* @return {boolean} True if the browser can render emoji, false if it cannot.
*/
function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
var isIdentical;switch ( type ) {
case 'flag':
/*
* Test for Transgender flag compatibility. Added in Unicode 13.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (white flag emoji + transgender symbol).
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
);if ( isIdentical ) {
return false;
}/*
* Test for UN flag compatibility. This is the least supported of the letter locale flags,
* so gives us an easy test for full support.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly ([U] + [N]).
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
);if ( isIdentical ) {
return false;
}/*
* Test for English flag compatibility. England is a country in the United Kingdom, it
* does not have a two letter locale code but rather a five letter sub-division code.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
*/
isIdentical = emojiSetsRenderIdentically(
context,
// as the flag sequence
'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
// with each code point separated by a zero-width space
'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
);return ! isIdentical;
case 'emoji':
/*
* Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone!
*
* To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone.
*
* The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand,
* 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone.
*
* 0x1FAF1 == Rightwards Hand
* 0x1F3FB == Light Skin Tone
* 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
* 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
* 0x1FAF2 == Leftwards Hand
* 0x1F3FF == Dark Skin Tone.
*
* When updating this test for future Emoji releases, ensure that individual emoji that make up the
* sequence come from older emoji standards.
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83E\uDEF1\uD83C\uDFFB\u200D\uD83E\uDEF2\uD83C\uDFFF', // as the zero-width joiner sequence
'\uD83E\uDEF1\uD83C\uDFFB\u200B\uD83E\uDEF2\uD83C\uDFFF' // separated by a zero-width space
);return ! isIdentical;
}return false;
}/**
* Checks emoji support tests.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 6.3.0
*
* @private
*
* @param {string[]} tests Tests.
* @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
*
* @return {SupportTests} Support tests.
*/
function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
var canvas;
if (
typeof WorkerGlobalScope !== 'undefined' &&
self instanceof WorkerGlobalScope
) {
canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
} else {
canvas = document.createElement( 'canvas' );
}var context = canvas.getContext( '2d', { willReadFrequently: true } );/*
* Chrome on OS X added native emoji rendering in M41. Unfortunately,
* it doesn't work when the font is bolder than 500 weight. So, we
* check for bold rendering support to avoid invisible emoji in Chrome.
*/
context.textBaseline = 'top';
context.font = '600 32px Arial';var supports = {};
tests.forEach( function ( test ) {
supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
} );
return supports;
}/**
* Adds a script to the head of the document.
*
* @ignore
*
* @since 4.2.0
*
* @param {string} src The url where the script is located.
*
* @return {void}
*/
function addScript( src ) {
var script = document.createElement( 'script' );
script.src = src;
script.defer = true;
document.head.appendChild( script );
}settings.supports = {
everything: true,
everythingExceptFlag: true
};// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
var domReadyPromise = new Promise( function ( resolve ) {
document.addEventListener( 'DOMContentLoaded', resolve, {
once: true
} );
} );// Obtain the emoji support from the browser, asynchronously when possible.
new Promise( function ( resolve ) {
var supportTests = getSessionSupportTests();
if ( supportTests ) {
resolve( supportTests );
return;
}if ( supportsWorkerOffloading() ) {
try {
// Note that the functions are being passed as arguments due to minification.
var workerScript =
'postMessage(' +
testEmojiSupports.toString() +
'(' +
[
JSON.stringify( tests ),
browserSupportsEmoji.toString(),
emojiSetsRenderIdentically.toString()
].join( ',' ) +
'));';
var blob = new Blob( [ workerScript ], {
type: 'text/javascript'
} );
var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
worker.onmessage = function ( event ) {
supportTests = event.data;
setSessionSupportTests( supportTests );
worker.terminate();
resolve( supportTests );
};
return;
} catch ( e ) {}
}supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
setSessionSupportTests( supportTests );
resolve( supportTests );
} )
// Once the browser emoji support has been obtained from the session, finalize the settings.
.then( function ( supportTests ) {
/*
* Tests the browser support for flag emojis and other emojis, and adjusts the
* support settings accordingly.
*/
for ( var test in supportTests ) {
settings.supports[ test ] = supportTests[ test ];settings.supports.everything =
settings.supports.everything && settings.supports[ test ];if ( 'flag' !== test ) {
settings.supports.everythingExceptFlag =
settings.supports.everythingExceptFlag &&
settings.supports[ test ];
}
}settings.supports.everythingExceptFlag =
settings.supports.everythingExceptFlag &&
! settings.supports.flag;// Sets DOMReady to false and assigns a ready function to settings.
settings.DOMReady = false;
settings.readyCallback = function () {
settings.DOMReady = true;
};
} )
.then( function () {
return domReadyPromise;
} )
.then( function () {
// When the browser can not render everything we need to load a polyfill.
if ( ! settings.supports.everything ) {
settings.readyCallback();var src = settings.source || {};if ( src.concatemoji ) {
addScript( src.concatemoji );
} else if ( src.wpemoji && src.twemoji ) {
addScript( src.twemoji );
addScript( src.wpemoji );
}
}
} );
} )( window, document, window._wpemojiSettings );
https://orders.snapix.gr/wp-includes/js/jquery/jquery.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_gallery_display/static/fontawesome/js/v4-shims.min.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_gallery_display/static/fontawesome/js/all.min.js
https://orders.snapix.gr/wp-includes/js/jquery/jquery-migrate.js
var photocrati_ajax = {"url":"https:\/\/orders.snapix.gr\/index.php?photocrati_ajax=1","wp_home_url":"https:\/\/orders.snapix.gr","wp_site_url":"https:\/\/orders.snapix.gr","wp_root_url":"https:\/\/orders.snapix.gr","wp_plugins_url":"https:\/\/orders.snapix.gr\/wp-content\/plugins","wp_content_url":"https:\/\/orders.snapix.gr\/wp-content","wp_includes_url":"https:\/\/orders.snapix.gr\/wp-includes\/","ngg_param_slug":"nggallery"};
var photocrati_ajax = {"url":"https:\/\/orders.snapix.gr\/index.php?photocrati_ajax=1","wp_home_url":"https:\/\/orders.snapix.gr","wp_site_url":"https:\/\/orders.snapix.gr","wp_root_url":"https:\/\/orders.snapix.gr","wp_plugins_url":"https:\/\/orders.snapix.gr\/wp-content\/plugins","wp_content_url":"https:\/\/orders.snapix.gr\/wp-content","wp_includes_url":"https:\/\/orders.snapix.gr\/wp-includes\/","ngg_param_slug":"nggallery"};
var photocrati_ajax = {"url":"https:\/\/orders.snapix.gr\/index.php?photocrati_ajax=1","wp_home_url":"https:\/\/orders.snapix.gr","wp_site_url":"https:\/\/orders.snapix.gr","wp_root_url":"https:\/\/orders.snapix.gr","wp_plugins_url":"https:\/\/orders.snapix.gr\/wp-content\/plugins","wp_content_url":"https:\/\/orders.snapix.gr\/wp-content","wp_includes_url":"https:\/\/orders.snapix.gr\/wp-includes\/","ngg_param_slug":"nggallery"};
var photocrati_ajax = {"url":"https:\/\/orders.snapix.gr\/index.php?photocrati_ajax=1","wp_home_url":"https:\/\/orders.snapix.gr","wp_site_url":"https:\/\/orders.snapix.gr","wp_root_url":"https:\/\/orders.snapix.gr","wp_plugins_url":"https:\/\/orders.snapix.gr\/wp-content\/plugins","wp_content_url":"https:\/\/orders.snapix.gr\/wp-content","wp_includes_url":"https:\/\/orders.snapix.gr\/wp-includes\/","ngg_param_slug":"nggallery"};
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/ajax/static/ajax.min.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/ecommerce/static/sprintf.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/ecommerce/static/basil.min.js
var breeze_prefetch = {"local_url":"https:\/\/orders.snapix.gr","ignore_remote_prefetch":"1","ignore_list":["\/wp-admin\/"]};
https://orders.snapix.gr/wp-content/plugins/breeze/assets/js/js-front-end/breeze-prefetch-links.min.js
var galleries = {};
galleries.gallery_5d363a3f2ab0aa10c4f8bf0f9c873008 = {"id":null,"source":"galleries","container_ids":["3"],"gallery_ids":[],"album_ids":[],"tag_ids":[],"display_type":"photocrati-nextgen_pro_thumbnail_grid","exclusions":[],"order_by":"filename","order_direction":"ASC","image_ids":[],"entity_ids":[],"tagcloud":false,"returns":"included","slug":null,"sortorder":[],"display_settings":{"override_thumbnail_settings":"0","thumbnail_width":"240","thumbnail_height":"160","thumbnail_crop":"0","images_per_page":"36","border_size":"0","border_color":"#eeeeee","spacing":"2","number_of_columns":"0","display_type_view":"default","ngg_triggers_display":"never","ngg_proofing_display":"0","captions_enabled":"0","captions_display_sharing":"1","captions_display_title":"1","captions_display_description":"1","captions_animation":"slideup","is_ecommerce_enabled":"1","use_lightbox_effect":true,"thumbnail_quality":100,"thumbnail_watermark":0,"disable_pagination":0,"_errors":[]},"excluded_container_ids":[],"maximum_entity_count":500,"__defaults_set":true,"_errors":[],"ID":"5d363a3f2ab0aa10c4f8bf0f9c873008"};
galleries.gallery_5d363a3f2ab0aa10c4f8bf0f9c873008.wordpress_page_root = "https:\/\/orders.snapix.gr\/%cf%84%ce%b1-%ce%b2%ce%b1%ce%b8%cf%8d%cf%84%ce%b5%cf%81%ce%b1-%cf%80%ce%bf%cf%84%ce%ac%ce%bc%ce%b9%ce%b1-%cf%81%ce%ad%ce%bf%cf%85%ce%bd-%cf%83%ce%b9%cf%89%cf%80%ce%b7%ce%bb%ce%ac-dancespace\/";
var nextgen_lightbox_settings = {"static_path":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/nextgen-gallery\/products\/photocrati_nextgen\/modules\/lightbox\/static\/{placeholder}","context":"nextgen_images"};
galleries.gallery_5d363a3f2ab0aa10c4f8bf0f9c873008.images_list = [{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2002-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2002-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/103\/2200x1467x80\/3fc7453466d2188d42c1caf6edcb84cd"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":103,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2002-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2002-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2002-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/103\/2200x1467x80\/3fc7453466d2188d42c1caf6edcb84cd"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2009-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2009-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/101\/2200x1467x80\/d0738279d0d0ba49fb8a2cd4dc9279de"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":101,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2009-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2009-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2009-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/101\/2200x1467x80\/d0738279d0d0ba49fb8a2cd4dc9279de"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2015-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2015-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/72\/2200x1467x80\/c03af4e3c99234155a8ec91f3b360c7b"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":72,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2015-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2015-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2015-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/72\/2200x1467x80\/c03af4e3c99234155a8ec91f3b360c7b"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2021-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2021-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2021-JAPAN-20191213.jpg-nggid0269-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":69,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2021-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2021-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2021-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2021-JAPAN-20191213.jpg-nggid0269-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2023-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2023-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2023-JAPAN-20191213.jpg-nggid0271-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":71,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2023-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2023-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2023-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2023-JAPAN-20191213.jpg-nggid0271-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2031-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2031-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/65\/2200x1467x80\/34f6d76cccd5dbb4bf308b93e7bf09c8"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":65,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2031-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2031-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2031-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/65\/2200x1467x80\/34f6d76cccd5dbb4bf308b93e7bf09c8"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2051-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2051-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2051-JAPAN-20191213.jpg-nggid0266-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":66,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2051-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2051-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2051-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2051-JAPAN-20191213.jpg-nggid0266-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2069-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2069-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/70\/2200x1467x80\/766f7732bad25d509504f27b9d8d43f0"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":70,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2069-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2069-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2069-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/70\/2200x1467x80\/766f7732bad25d509504f27b9d8d43f0"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2094-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2094-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2094-JAPAN-20191213.jpg-nggid0267-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":67,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2094-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2094-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2094-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2094-JAPAN-20191213.jpg-nggid0267-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2112-JAPAN-20191215.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2112-JAPAN-20191215.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2112-JAPAN-20191215.jpg-nggid0268-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":68,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2112-JAPAN-20191215.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2112-JAPAN-20191215.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2112-JAPAN-20191215.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2112-JAPAN-20191215.jpg-nggid0268-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2142-JAPAN-20191215.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2142-JAPAN-20191215.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/73\/2200x1467x80\/74fae2bca1bb9f1fb3ce475e0c0a9966"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":73,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2142-JAPAN-20191215.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2142-JAPAN-20191215.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2142-JAPAN-20191215.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/73\/2200x1467x80\/74fae2bca1bb9f1fb3ce475e0c0a9966"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2202-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2202-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2202-JAPAN-20191226.jpg-nggid0274-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":74,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2202-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2202-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2202-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2202-JAPAN-20191226.jpg-nggid0274-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2209-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2209-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2209-JAPAN-20191226.jpg-nggid0275-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":75,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2209-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2209-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2209-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2209-JAPAN-20191226.jpg-nggid0275-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2222-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2222-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2222-JAPAN-20191226.jpg-nggid0276-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":76,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2222-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2222-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2222-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2222-JAPAN-20191226.jpg-nggid0276-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2224-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2224-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/77\/2200x1467x80\/f6606fb1ee20a996ef472218148cbecc"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":77,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2224-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2224-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2224-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/77\/2200x1467x80\/f6606fb1ee20a996ef472218148cbecc"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2248-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2248-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2248-JAPAN-20191226.jpg-nggid0278-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":78,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2248-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2248-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2248-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2248-JAPAN-20191226.jpg-nggid0278-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2254-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2254-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/79\/2200x1467x80\/d6a9383e1f6f7caff2b5d58cc781a3d0"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":79,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2254-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2254-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2254-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/79\/2200x1467x80\/d6a9383e1f6f7caff2b5d58cc781a3d0"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2277-JAPAN-20191226-scaled-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2277-JAPAN-20191226-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/80\/1066x1600x80\/73532cf3b806614ab7c50c05cf447528"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":80,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2277-JAPAN-20191226-scaled-1.jpg","width":533,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2277-JAPAN-20191226-scaled-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2277-JAPAN-20191226-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/80\/1066x1600x80\/73532cf3b806614ab7c50c05cf447528"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2303-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2303-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/81\/2200x1467x80\/f29dfffbff83393247c45f16e1246416"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":81,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2303-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2303-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2303-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/81\/2200x1467x80\/f29dfffbff83393247c45f16e1246416"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2332-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2332-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/82\/2200x1467x80\/e25b743f924afc48618abbda5545a693"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":82,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2332-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2332-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2332-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/82\/2200x1467x80\/e25b743f924afc48618abbda5545a693"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2333-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2333-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/83\/2200x1467x80\/a7c5e2d3946821584df7d66b42a31110"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":83,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2333-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2333-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2333-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/83\/2200x1467x80\/a7c5e2d3946821584df7d66b42a31110"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2424-JAPAN-20191227-scaled-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2424-JAPAN-20191227-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/85\/1066x1600x80\/ba0f7307778d69c1ad744d16cf00eef6"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":85,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2424-JAPAN-20191227-scaled-1.jpg","width":533,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2424-JAPAN-20191227-scaled-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2424-JAPAN-20191227-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/85\/1066x1600x80\/ba0f7307778d69c1ad744d16cf00eef6"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2475-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2475-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/84\/2200x1467x80\/839b27a4509088d622fcb1256b4d2767"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":84,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2475-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2475-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2475-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/84\/2200x1467x80\/839b27a4509088d622fcb1256b4d2767"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2488-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2488-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2488-JAPAN-20191227.jpg-nggid0286-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":86,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2488-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2488-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2488-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2488-JAPAN-20191227.jpg-nggid0286-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2503-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2503-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2503-JAPAN-20191227.jpg-nggid0287-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":87,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2503-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2503-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2503-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2503-JAPAN-20191227.jpg-nggid0287-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2508-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2508-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2508-JAPAN-20191227.jpg-nggid0289-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":89,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2508-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2508-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2508-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2508-JAPAN-20191227.jpg-nggid0289-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2537-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2537-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2537-JAPAN-20191227.jpg-nggid0288-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":88,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2537-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2537-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2537-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2537-JAPAN-20191227.jpg-nggid0288-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2604-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2604-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/90\/2200x1467x80\/ffacaab738f052821e7c8387dc13de62"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":90,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2604-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2604-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2604-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/90\/2200x1467x80\/ffacaab738f052821e7c8387dc13de62"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2697-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2697-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/91\/2200x1467x80\/a026dd4d787b453beed2c948d47a7de1"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":91,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2697-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2697-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2697-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/91\/2200x1467x80\/a026dd4d787b453beed2c948d47a7de1"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2734-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2734-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2734-JAPAN-20191228.jpg-nggid0292-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":92,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2734-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2734-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2734-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2734-JAPAN-20191228.jpg-nggid0292-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2761-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2761-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/93\/2200x1467x80\/dc7f09a80c7239f53b15b0837716a122"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":93,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2761-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2761-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2761-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/93\/2200x1467x80\/dc7f09a80c7239f53b15b0837716a122"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2818-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2818-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/94\/2200x1467x80\/47916985521dcc626816859666a1b005"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":94,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2818-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2818-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2818-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/94\/2200x1467x80\/47916985521dcc626816859666a1b005"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2831-JAPAN-20191228-scaled-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2831-JAPAN-20191228-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2831-JAPAN-20191228-scaled-1.jpg-nggid0296-ngg0dyn-1066x1600x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":96,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2831-JAPAN-20191228-scaled-1.jpg","width":533,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2831-JAPAN-20191228-scaled-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2831-JAPAN-20191228-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2831-JAPAN-20191228-scaled-1.jpg-nggid0296-ngg0dyn-1066x1600x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2884-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2884-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2884-JAPAN-20191228.jpg-nggid0295-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":95,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2884-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2884-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2884-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2884-JAPAN-20191228.jpg-nggid0295-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3008-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3008-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/97\/2200x1467x80\/110dedc187162390efa03492980224a6"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":97,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-3008-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3008-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3008-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/97\/2200x1467x80\/110dedc187162390efa03492980224a6"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3054-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3054-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/98\/2200x1467x80\/4f12a1dc326b6561162739092e3a5410"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":98,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-3054-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3054-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3054-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/98\/2200x1467x80\/4f12a1dc326b6561162739092e3a5410"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3152-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3152-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/99\/2200x1467x80\/c1e09e0b84de65bf28cae0a706247648"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":99,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-3152-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3152-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3152-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/99\/2200x1467x80\/c1e09e0b84de65bf28cae0a706247648"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cover-japan.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cover-japan.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/cover-japan.jpg-nggid03100-ngg0dyn-1920x1080x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":100,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-cover-japan.jpg","width":1200,"height":675,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cover-japan.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cover-japan.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/cover-japan.jpg-nggid03100-ngg0dyn-1920x1080x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/japan-cover.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/japan-cover.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/102\/1200x675x80\/1b29df33a492a6bd01756bdb70b40a32"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":102,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-japan-cover.jpg","width":1200,"height":675,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/japan-cover.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/japan-cover.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/102\/1200x675x80\/1b29df33a492a6bd01756bdb70b40a32"},"thumb_dimensions":{"width":240,"height":160}}];
galleries.gallery_5d363a3f2ab0aa10c4f8bf0f9c873008.images_list_limit = "";
galleries.gallery_5d363a3f2ab0aa10c4f8bf0f9c873008.images_list_count = 39;
galleries.gallery_5d363a3f2ab0aa10c4f8bf0f9c873008.captions_enabled = false;
galleries.gallery_c67b30e590df5e8dbaf1f8455f596065 = {"id":null,"ids":null,"source":"galleries","container_ids":[],"gallery_ids":[],"album_ids":[],"tag_ids":[],"display_type":"photocrati-nextgen_pro_thumbnail_grid","exclusions":[],"order_by":"filename","order_direction":"ASC","image_ids":[],"entity_ids":[],"tagcloud":false,"returns":"included","slug":null,"sortorder":[],"display_settings":{"override_thumbnail_settings":"0","thumbnail_width":"240","thumbnail_height":"160","thumbnail_crop":"0","images_per_page":"36","border_size":"0","border_color":"#eeeeee","spacing":"2","number_of_columns":"0","display_type_view":"default","ngg_triggers_display":"never","ngg_proofing_display":"0","captions_enabled":"0","captions_display_sharing":"1","captions_display_title":"1","captions_display_description":"1","captions_animation":"slideup","is_ecommerce_enabled":"1","use_lightbox_effect":true,"thumbnail_quality":100,"thumbnail_watermark":0,"disable_pagination":0,"_errors":[]},"excluded_container_ids":[],"maximum_entity_count":500,"__defaults_set":true,"_errors":[],"ID":"c67b30e590df5e8dbaf1f8455f596065"};
galleries.gallery_c67b30e590df5e8dbaf1f8455f596065.wordpress_page_root = "https:\/\/orders.snapix.gr\/%cf%84%ce%b1-%ce%b2%ce%b1%ce%b8%cf%8d%cf%84%ce%b5%cf%81%ce%b1-%cf%80%ce%bf%cf%84%ce%ac%ce%bc%ce%b9%ce%b1-%cf%81%ce%ad%ce%bf%cf%85%ce%bd-%cf%83%ce%b9%cf%89%cf%80%ce%b7%ce%bb%ce%ac-dancespace\/";
var nextgen_lightbox_settings = {"static_path":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/nextgen-gallery\/products\/photocrati_nextgen\/modules\/lightbox\/static\/{placeholder}","context":"nextgen_images"};
galleries.gallery_c67b30e590df5e8dbaf1f8455f596065.images_list = [{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0009-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0009-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0009-PROVA-D.jpg-nggid0215-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0009-PROVA-D","description":"","image_id":15,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0009-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0009-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0009-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0009-PROVA-D.jpg-nggid0215-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/001-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/001-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/001-8TH-RULE.jpg-nggid017-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":7,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-001-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/001-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/001-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/001-8TH-RULE.jpg-nggid017-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0010-PROVA-D-2-1.jpg-nggid0218-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0010-PROVA-D-2-1","description":"","image_id":18,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0010-PROVA-D-2-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0010-PROVA-D-2-1.jpg-nggid0218-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0010-PROVA-D-2.jpg-nggid0217-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0010-PROVA-D-2","description":"","image_id":17,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0010-PROVA-D-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0010-PROVA-D-2.jpg-nggid0217-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/002-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/002-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/8\/1200x800x80\/607fd4d153d23b03d217dc981e93ec60"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":8,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-002-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/002-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/002-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/8\/1200x800x80\/607fd4d153d23b03d217dc981e93ec60"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0026-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0026-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/35\/1200x800x80\/19ab5a82067dd1980f5e4f44926cb260"},"use_hdpi":true,"title":"0026-PROVA-D","description":"","image_id":35,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0026-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0026-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0026-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/35\/1200x800x80\/19ab5a82067dd1980f5e4f44926cb260"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/003-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/003-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/9\/1200x800x80\/287652204969997adf62901251a60942"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":9,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-003-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/003-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/003-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/9\/1200x800x80\/287652204969997adf62901251a60942"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2-scaled-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2-scaled-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/44\/2048x1366x80\/28b66a3523af1dc12261f4de2b0ed1ae"},"use_hdpi":true,"title":"0033-PROVA-D-2-scaled-2","description":"","image_id":44,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0033-PROVA-D-2-scaled-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2-scaled-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2-scaled-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/44\/2048x1366x80\/28b66a3523af1dc12261f4de2b0ed1ae"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/43\/1200x800x80\/e6b5f16592f9023980aea0df3762816e"},"use_hdpi":true,"title":"0033-PROVA-D-2","description":"","image_id":43,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0033-PROVA-D-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/43\/1200x800x80\/e6b5f16592f9023980aea0df3762816e"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0034-PROVA-D-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0034-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/46\/1200x800x80\/a13508139e960a5cbd5b1ac8b914ff6e"},"use_hdpi":true,"title":"0034-PROVA-D-2","description":"","image_id":46,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0034-PROVA-D-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0034-PROVA-D-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0034-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/46\/1200x800x80\/a13508139e960a5cbd5b1ac8b914ff6e"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/004-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/004-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/10\/1200x800x80\/08187b41e9b5f58ae96b9c70ffa0bfcc"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":10,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-004-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/004-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/004-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/10\/1200x800x80\/08187b41e9b5f58ae96b9c70ffa0bfcc"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/005-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/005-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/005-8TH-RULE.jpg-nggid0211-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":11,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-005-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/005-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/005-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/005-8TH-RULE.jpg-nggid0211-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/006-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/006-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/006-8TH-RULE.jpg-nggid0212-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":12,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-006-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/006-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/006-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/006-8TH-RULE.jpg-nggid0212-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/007-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/007-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/007-8TH-RULE.jpg-nggid0213-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":13,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-007-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/007-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/007-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/007-8TH-RULE.jpg-nggid0213-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0071-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0071-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0071-PROVA-D.jpg-nggid0251-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0071-PROVA-D","description":"","image_id":51,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0071-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0071-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0071-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0071-PROVA-D.jpg-nggid0251-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/53\/1200x800x80\/ca1eb1a1308a6788160594aa7a89f523"},"use_hdpi":true,"title":"0079-PROVA-D-1","description":"","image_id":53,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0079-PROVA-D-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/53\/1200x800x80\/ca1eb1a1308a6788160594aa7a89f523"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/52\/1200x800x80\/4c4ae8210d4fd4745a7a20c07ee1962b"},"use_hdpi":true,"title":"0079-PROVA-D","description":"","image_id":52,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0079-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/52\/1200x800x80\/4c4ae8210d4fd4745a7a20c07ee1962b"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/008-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/008-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/008-8TH-RULE.jpg-nggid0214-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":14,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-008-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/008-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/008-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/008-8TH-RULE.jpg-nggid0214-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/009-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/009-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/009-8TH-RULE.jpg-nggid0216-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":16,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-009-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/009-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/009-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/009-8TH-RULE.jpg-nggid0216-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/010-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/010-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/010-8TH-RULE.jpg-nggid0219-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":19,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-010-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/010-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/010-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/010-8TH-RULE.jpg-nggid0219-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/011-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/011-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/20\/1200x800x80\/1fcc301970b995e25e2f4ba7c9a63456"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":20,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-011-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/011-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/011-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/20\/1200x800x80\/1fcc301970b995e25e2f4ba7c9a63456"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0119-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0119-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0119-PROVA-D.jpg-nggid0254-ngg0dyn-350x350x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0119-PROVA-D","description":"","image_id":54,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0119-PROVA-D.jpg","width":350,"height":350,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0119-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0119-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0119-PROVA-D.jpg-nggid0254-ngg0dyn-350x350x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/012-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/012-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/21\/1200x800x80\/c912b6c018e06051f8ab29724dc7dcc9"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":21,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-012-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/012-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/012-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/21\/1200x800x80\/c912b6c018e06051f8ab29724dc7dcc9"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0129-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0129-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/55\/1200x800x80\/3ae1bd8f2708f0fe1ef8b872cefcc327"},"use_hdpi":true,"title":"0129-PROVA-D","description":"","image_id":55,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0129-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0129-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0129-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/55\/1200x800x80\/3ae1bd8f2708f0fe1ef8b872cefcc327"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/013-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/013-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/22\/1200x800x80\/b4e53191848bcdbb31706f5916f33980"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":22,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-013-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/013-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/013-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/22\/1200x800x80\/b4e53191848bcdbb31706f5916f33980"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0131-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0131-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/56\/1200x800x80\/d16e3690bb3e07ef4e4a60af4172c7e4"},"use_hdpi":true,"title":"0131-PROVA-D","description":"","image_id":56,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0131-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0131-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0131-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/56\/1200x800x80\/d16e3690bb3e07ef4e4a60af4172c7e4"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/014-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/014-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/014-8TH-RULE.jpg-nggid0223-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":23,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-014-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/014-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/014-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/014-8TH-RULE.jpg-nggid0223-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0140-PROVA-D-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0140-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/57\/1200x800x80\/e28c705ec0d05d5d0516614f71d06252"},"use_hdpi":true,"title":"0140-PROVA-D-2","description":"","image_id":57,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0140-PROVA-D-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0140-PROVA-D-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0140-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/57\/1200x800x80\/e28c705ec0d05d5d0516614f71d06252"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/015-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/015-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/24\/1200x800x80\/5735daef1ce0690aec7be812d63e1611"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":24,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-015-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/015-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/015-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/24\/1200x800x80\/5735daef1ce0690aec7be812d63e1611"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0152-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0152-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0152-PROVA-D.jpg-nggid0258-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0152-PROVA-D","description":"","image_id":58,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0152-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0152-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0152-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0152-PROVA-D.jpg-nggid0258-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/016-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/016-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/25\/1200x800x80\/9cc832521a1b8ff28668b7e2d4f0e256"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":25,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-016-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/016-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/016-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/25\/1200x800x80\/9cc832521a1b8ff28668b7e2d4f0e256"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0164-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0164-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/59\/1200x800x80\/c8ea5f7c04823918bf91b4b015bcf040"},"use_hdpi":true,"title":"0164-PROVA-D","description":"","image_id":59,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0164-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0164-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0164-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/59\/1200x800x80\/c8ea5f7c04823918bf91b4b015bcf040"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/017-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/017-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/017-8TH-RULE.jpg-nggid0226-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":26,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-017-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/017-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/017-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/017-8TH-RULE.jpg-nggid0226-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0171-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0171-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/60\/1200x800x80\/18861652fa7131e86030cd16c99cbc52"},"use_hdpi":true,"title":"0171-PROVA-D","description":"","image_id":60,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0171-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0171-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0171-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/60\/1200x800x80\/18861652fa7131e86030cd16c99cbc52"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/018-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/018-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/018-8TH-RULE.jpg-nggid0227-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":27,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-018-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/018-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/018-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/018-8TH-RULE.jpg-nggid0227-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/019-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/019-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/019-8TH-RULE.jpg-nggid0228-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":28,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-019-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/019-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/019-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/019-8TH-RULE.jpg-nggid0228-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0193-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0193-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/61\/1200x800x80\/8e92e7f8898ac78992bf171daa40b140"},"use_hdpi":true,"title":"0193-PROVA-D","description":"","image_id":61,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0193-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0193-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0193-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/61\/1200x800x80\/8e92e7f8898ac78992bf171daa40b140"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/020-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/020-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/020-8TH-RULE.jpg-nggid0229-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":29,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-020-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/020-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/020-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/020-8TH-RULE.jpg-nggid0229-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0205-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0205-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0205-PROVA-D.jpg-nggid0262-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0205-PROVA-D","description":"","image_id":62,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0205-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0205-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0205-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0205-PROVA-D.jpg-nggid0262-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/021-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/021-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/021-8TH-RULE.jpg-nggid0230-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":30,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-021-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/021-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/021-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/021-8TH-RULE.jpg-nggid0230-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/022-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/022-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/022-8TH-RULE.jpg-nggid0231-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":31,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-022-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/022-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/022-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/022-8TH-RULE.jpg-nggid0231-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/023-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/023-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/32\/1200x800x80\/3b4b68bf6d2ac1199967466f913a1307"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":32,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-023-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/023-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/023-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/32\/1200x800x80\/3b4b68bf6d2ac1199967466f913a1307"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/024-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/024-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/024-8TH-RULE.jpg-nggid0233-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":33,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-024-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/024-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/024-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/024-8TH-RULE.jpg-nggid0233-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0249-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0249-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0249-PROVA-D.jpg-nggid0263-ngg0dyn-450x450x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0249-PROVA-D","description":"","image_id":63,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0249-PROVA-D.jpg","width":450,"height":450,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0249-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0249-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0249-PROVA-D.jpg-nggid0263-ngg0dyn-450x450x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/025-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/025-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/34\/1200x800x80\/ab34f6cd34ff6cd863fdd98f20ead57f"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":34,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-025-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/025-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/025-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/34\/1200x800x80\/ab34f6cd34ff6cd863fdd98f20ead57f"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/026-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/026-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/026-8TH-RULE.jpg-nggid0236-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":36,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-026-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/026-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/026-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/026-8TH-RULE.jpg-nggid0236-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/027-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/027-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/027-8TH-RULE.jpg-nggid0237-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":37,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-027-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/027-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/027-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/027-8TH-RULE.jpg-nggid0237-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/028-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/028-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/38\/1200x800x80\/9bad4b69ee7d41ac4de91b18e14da5e2"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":38,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-028-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/028-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/028-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/38\/1200x800x80\/9bad4b69ee7d41ac4de91b18e14da5e2"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/029-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/029-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/029-8TH-RULE.jpg-nggid0239-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":39,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-029-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/029-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/029-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/029-8TH-RULE.jpg-nggid0239-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/030-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/030-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/030-8TH-RULE.jpg-nggid0240-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":40,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-030-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/030-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/030-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/030-8TH-RULE.jpg-nggid0240-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/031-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/031-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/031-8TH-RULE.jpg-nggid0241-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":41,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-031-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/031-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/031-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/031-8TH-RULE.jpg-nggid0241-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/032-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/032-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/42\/1200x800x80\/105124ec356a229d2f713ff8e562fe27"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":42,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-032-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/032-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/032-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/42\/1200x800x80\/105124ec356a229d2f713ff8e562fe27"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/033-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/033-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/033-8TH-RULE.jpg-nggid0245-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":45,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-033-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/033-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/033-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/033-8TH-RULE.jpg-nggid0245-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/034-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/034-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/034-8TH-RULE.jpg-nggid0247-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":47,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-034-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/034-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/034-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/034-8TH-RULE.jpg-nggid0247-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/035-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/035-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/035-8TH-RULE.jpg-nggid0248-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":48,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-035-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/035-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/035-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/035-8TH-RULE.jpg-nggid0248-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/036-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/036-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/49\/1200x800x80\/41917db2f7ea8dbcb58d922af84e015a"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":49,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-036-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/036-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/036-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/49\/1200x800x80\/41917db2f7ea8dbcb58d922af84e015a"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/037-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/037-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/037-8TH-RULE.jpg-nggid0250-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":50,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-037-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/037-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/037-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/037-8TH-RULE.jpg-nggid0250-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1001-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1001-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/196\/2200x1236x80\/e1cca47c3bb4a801bbf196ab46478312"},"use_hdpi":true,"title":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","description":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","image_id":196,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1001-Block172-Gadetsaki-2.jpg","width":1200,"height":674,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1001-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1001-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/196\/2200x1236x80\/e1cca47c3bb4a801bbf196ab46478312"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1005-Block172-Gadetsaki-3-scaled-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1005-Block172-Gadetsaki-3-scaled-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/106\/2048x1151x80\/dea3461cff037e7ed49a1e3a69dbeed1"},"use_hdpi":true,"title":"1005-Block172-Gadetsaki-3-scaled-2","description":"","image_id":106,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1005-Block172-Gadetsaki-3-scaled-2.jpg","width":1200,"height":674,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1005-Block172-Gadetsaki-3-scaled-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1005-Block172-Gadetsaki-3-scaled-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/106\/2048x1151x80\/dea3461cff037e7ed49a1e3a69dbeed1"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1018-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1018-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1018-Block172-Gadetsaki-2.jpg-nggid03110-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","description":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","image_id":110,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1018-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1018-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1018-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1018-Block172-Gadetsaki-2.jpg-nggid03110-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1020-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1020-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/107\/2200x1467x80\/b713f4047e67c64999e23828b2fb4493"},"use_hdpi":true,"title":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","description":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","image_id":107,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1020-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1020-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1020-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/107\/2200x1467x80\/b713f4047e67c64999e23828b2fb4493"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1023-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1023-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/109\/2200x1467x80\/b6f8c0a6ce5d7cc9899f16a87c929c34"},"use_hdpi":true,"title":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","description":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","image_id":109,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1023-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1023-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1023-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/109\/2200x1467x80\/b6f8c0a6ce5d7cc9899f16a87c929c34"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1026-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1026-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1026-Block172-Gadetsaki-2.jpg-nggid03104-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","description":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","image_id":104,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1026-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1026-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1026-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1026-Block172-Gadetsaki-2.jpg-nggid03104-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1028-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1028-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/108\/2200x1467x80\/450e66a23db3ed29c3372edeb0b91bce"},"use_hdpi":true,"title":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","description":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","image_id":108,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1028-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1028-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1028-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/108\/2200x1467x80\/450e66a23db3ed29c3372edeb0b91bce"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1071-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1071-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1071-Block172-Gadetsaki-3.jpg-nggid03105-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","description":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","image_id":105,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1071-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1071-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1071-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1071-Block172-Gadetsaki-3.jpg-nggid03105-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1072-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1072-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1072-Block172-Gadetsaki-3.jpg-nggid03111-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","description":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","image_id":111,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1072-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1072-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1072-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1072-Block172-Gadetsaki-3.jpg-nggid03111-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1081-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1081-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1081-Block172-Gadetsaki-2.jpg-nggid03114-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 2\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, NEAR LIGHT","description":"block 172 | 2\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, NEAR LIGHT","image_id":114,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1081-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1081-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1081-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1081-Block172-Gadetsaki-2.jpg-nggid03114-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1092-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1092-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1092-Block172-Gadetsaki-2.jpg-nggid03113-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":113,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1092-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1092-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1092-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1092-Block172-Gadetsaki-2.jpg-nggid03113-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1095-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1095-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1095-Block172-Gadetsaki-2.jpg-nggid03112-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":112,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1095-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1095-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1095-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1095-Block172-Gadetsaki-2.jpg-nggid03112-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1100-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1100-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/115\/2200x1467x80\/c8e6699eb8654ecbfba905d506f9c8ee"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":115,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1100-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1100-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1100-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/115\/2200x1467x80\/c8e6699eb8654ecbfba905d506f9c8ee"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1103-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1103-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/116\/2200x1467x80\/9164858aa12dbf25ee4a85cbce61b19b"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":116,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1103-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1103-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1103-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/116\/2200x1467x80\/9164858aa12dbf25ee4a85cbce61b19b"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1125-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1125-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/117\/2200x1467x80\/3f97ec8910c61d4fae6e2d129f019878"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":117,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1125-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1125-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1125-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/117\/2200x1467x80\/3f97ec8910c61d4fae6e2d129f019878"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1128-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1128-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1128-Block172-Gadetsaki-2.jpg-nggid03121-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":121,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1128-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1128-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1128-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1128-Block172-Gadetsaki-2.jpg-nggid03121-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1131-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1131-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/118\/2200x1467x80\/cbbb97e68469d11eb107aba62f6b2a01"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":118,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1131-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1131-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1131-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/118\/2200x1467x80\/cbbb97e68469d11eb107aba62f6b2a01"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1133-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1133-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/119\/2200x1467x80\/a224696420fed3fd3ee3d30af343b537"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":119,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1133-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1133-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1133-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/119\/2200x1467x80\/a224696420fed3fd3ee3d30af343b537"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1136-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1136-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/120\/2200x1467x80\/363b66176e87efd5c0b2f57155ea2aa7"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":120,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1136-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1136-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1136-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/120\/2200x1467x80\/363b66176e87efd5c0b2f57155ea2aa7"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1145-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1145-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1145-Block172-Gadetsaki-2.jpg-nggid03122-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":122,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1145-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1145-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1145-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1145-Block172-Gadetsaki-2.jpg-nggid03122-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1155-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1155-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/123\/2200x1467x80\/8a19197ac7d3e3913ce1077a4d485dbe"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":123,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1155-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1155-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1155-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/123\/2200x1467x80\/8a19197ac7d3e3913ce1077a4d485dbe"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1163-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1163-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1163-Block172-Gadetsaki-2.jpg-nggid03124-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","description":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","image_id":124,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1163-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1163-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1163-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1163-Block172-Gadetsaki-2.jpg-nggid03124-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1176-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1176-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1176-Block172-Gadetsaki-2.jpg-nggid03125-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","description":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","image_id":125,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1176-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1176-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1176-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1176-Block172-Gadetsaki-2.jpg-nggid03125-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1180-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1180-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1180-Block172-Gadetsaki-2.jpg-nggid03126-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","description":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","image_id":126,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1180-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1180-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1180-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/cache\/1180-Block172-Gadetsaki-2.jpg-nggid03126-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1183-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1183-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/127\/2200x1467x80\/895d2515bfc7da97901b3eefdb8f5bd9"},"use_hdpi":true,"title":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","description":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","image_id":127,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1183-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1183-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1183-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/127\/2200x1467x80\/895d2515bfc7da97901b3eefdb8f5bd9"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1190-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1190-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/128\/2200x1467x80\/325bb22ad0171d5ea0cc9a126156df18"},"use_hdpi":true,"title":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","description":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","image_id":128,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1190-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1190-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1190-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/128\/2200x1467x80\/325bb22ad0171d5ea0cc9a126156df18"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1191-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1191-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/129\/2200x1467x80\/a66cf0fcaf470483dfa22326a980dce2"},"use_hdpi":true,"title":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","description":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","image_id":129,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1191-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1191-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1191-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/129\/2200x1467x80\/a66cf0fcaf470483dfa22326a980dce2"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1195-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1195-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/130\/2200x1467x80\/f48598712a98ff60e7a6633994478979"},"use_hdpi":true,"title":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","description":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","image_id":130,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1195-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1195-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1195-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/130\/2200x1467x80\/f48598712a98ff60e7a6633994478979"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1211-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1211-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/132\/2200x1467x80\/9d6d95f7785fa48fefe76239c62ce21a"},"use_hdpi":true,"title":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","description":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","image_id":132,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1211-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1211-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1211-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/132\/2200x1467x80\/9d6d95f7785fa48fefe76239c62ce21a"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1214-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1214-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/131\/2200x1467x80\/05104b0f7e7d06f4625d87e5d9504a15"},"use_hdpi":true,"title":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","description":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","image_id":131,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1214-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1214-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1214-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/131\/2200x1467x80\/05104b0f7e7d06f4625d87e5d9504a15"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1218-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1218-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/133\/2200x1467x80\/6c4644f24a5dbc333800c0194f7d23af"},"use_hdpi":true,"title":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","description":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","image_id":133,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1218-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1218-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1218-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/133\/2200x1467x80\/6c4644f24a5dbc333800c0194f7d23af"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1227-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1227-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/134\/2200x1467x80\/9d43a296cc887f33d47460dd8bbd9464"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":134,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1227-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1227-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1227-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/134\/2200x1467x80\/9d43a296cc887f33d47460dd8bbd9464"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1229-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1229-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/138\/2200x1467x80\/65fe88e77660a3282b35a76481c28865"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":138,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1229-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1229-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1229-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/138\/2200x1467x80\/65fe88e77660a3282b35a76481c28865"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1246-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1246-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/136\/2200x1467x80\/6c6d675ef6c679eba1e459e1d6a660e7"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":136,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1246-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1246-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1246-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/136\/2200x1467x80\/6c6d675ef6c679eba1e459e1d6a660e7"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1247-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1247-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/135\/2200x1467x80\/32167bf0622afd35ea5d76ea7d96b2c2"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":135,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1247-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1247-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1247-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/135\/2200x1467x80\/32167bf0622afd35ea5d76ea7d96b2c2"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1253-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1253-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/139\/2200x1467x80\/e288ec4a2d662d2da35e763918f6ba67"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":139,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1253-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1253-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1253-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/139\/2200x1467x80\/e288ec4a2d662d2da35e763918f6ba67"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1259-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1259-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/137\/2200x1467x80\/55e6af7444f9e2f84b64cab88538939e"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":137,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1259-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1259-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1259-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/137\/2200x1467x80\/55e6af7444f9e2f84b64cab88538939e"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1261-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1261-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/140\/2200x1467x80\/b4c01e82776e25bd82cec9ca83ffb330"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":140,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1261-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1261-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1261-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/140\/2200x1467x80\/b4c01e82776e25bd82cec9ca83ffb330"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1267-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1267-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/142\/2200x1467x80\/263eb864b94836a6649aa52c9b2f15ef"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":142,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1267-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1267-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1267-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/142\/2200x1467x80\/263eb864b94836a6649aa52c9b2f15ef"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1285-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1285-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/141\/2200x1467x80\/bbf3dc82d541e9ce57785bdb969364d1"},"use_hdpi":true,"title":"block 172 | 7\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, EXPERIENCE","description":"block 172 | 7\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, EXPERIENCE","image_id":141,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1285-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1285-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1285-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/141\/2200x1467x80\/bbf3dc82d541e9ce57785bdb969364d1"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1287-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1287-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/144\/2200x1467x80\/8e6ee7c514bc5b8bdc4fafbe50fcb304"},"use_hdpi":true,"title":"block 172 | 7\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, EXPERIENCE","description":"block 172 | 7\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, EXPERIENCE","image_id":144,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1287-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1287-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1287-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/144\/2200x1467x80\/8e6ee7c514bc5b8bdc4fafbe50fcb304"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1291-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1291-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/143\/2200x1467x80\/1bc177b1d2e06a3cbfeacd54444594b7"},"use_hdpi":true,"title":"block 172 | 7\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, EXPERIENCE","description":"block 172 | 7\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, EXPERIENCE","image_id":143,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1291-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1291-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1291-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/143\/2200x1467x80\/1bc177b1d2e06a3cbfeacd54444594b7"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1308-Block172-Gadetsaki-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1308-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/151\/2200x1467x80\/f22bb15cdaf3a1ff951d555045f74400"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":151,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1308-Block172-Gadetsaki-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1308-Block172-Gadetsaki-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1308-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/151\/2200x1467x80\/f22bb15cdaf3a1ff951d555045f74400"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1314-Block172-Gadetsaki-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1314-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/145\/2200x1467x80\/129f4d733d8f9a7ac6b3d2577e387efe"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":145,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1314-Block172-Gadetsaki-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1314-Block172-Gadetsaki-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1314-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/145\/2200x1467x80\/129f4d733d8f9a7ac6b3d2577e387efe"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1321-Block172-Gadetsaki-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1321-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/146\/2200x1467x80\/ea6df6f2cdeade53eef33763b4da7a56"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":146,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1321-Block172-Gadetsaki-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1321-Block172-Gadetsaki-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1321-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/146\/2200x1467x80\/ea6df6f2cdeade53eef33763b4da7a56"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1322-Block172-Gadetsaki-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1322-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/147\/2200x1467x80\/9ce9d38d2168a6e18af57cfa4bfb1ea1"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":147,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1322-Block172-Gadetsaki-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1322-Block172-Gadetsaki-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1322-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/147\/2200x1467x80\/9ce9d38d2168a6e18af57cfa4bfb1ea1"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1323-Block172-Gadetsaki-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1323-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/149\/2200x1467x80\/8d178bdf75b8713742a82769f6391521"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":149,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1323-Block172-Gadetsaki-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1323-Block172-Gadetsaki-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1323-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/149\/2200x1467x80\/8d178bdf75b8713742a82769f6391521"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1328-Block172-Gadetsaki-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1328-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/148\/2200x1467x80\/12b14bc04d8e47a0e22f9f8489bd526b"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":148,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1328-Block172-Gadetsaki-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1328-Block172-Gadetsaki-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1328-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/148\/2200x1467x80\/12b14bc04d8e47a0e22f9f8489bd526b"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1331-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1331-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/150\/2200x1467x80\/cdff4cec1e306004af79c898deebdeed"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":150,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1331-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1331-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1331-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/150\/2200x1467x80\/cdff4cec1e306004af79c898deebdeed"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1342-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1342-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/156\/2200x1467x80\/d21a8817dfbcdea78e6d4e82e0a70bce"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":156,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1342-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1342-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1342-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/156\/2200x1467x80\/d21a8817dfbcdea78e6d4e82e0a70bce"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1347-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1347-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/153\/2200x1467x80\/ba90db347541d9ae2b4633d805a4135b"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":153,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1347-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1347-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1347-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/153\/2200x1467x80\/ba90db347541d9ae2b4633d805a4135b"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1354-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1354-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/152\/2200x1467x80\/379ad79c4b29205f611e7dbc6056f0eb"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":152,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1354-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1354-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1354-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/152\/2200x1467x80\/379ad79c4b29205f611e7dbc6056f0eb"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1362-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1362-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/155\/2200x1467x80\/61686f33c575d12877b0dc2ea42368b2"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":155,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1362-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1362-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1362-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/155\/2200x1467x80\/61686f33c575d12877b0dc2ea42368b2"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1387-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1387-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/154\/2200x1467x80\/fecdc0539dca282c7f265338093495ce"},"use_hdpi":true,"title":"block 172 | 9\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 9\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":154,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1387-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1387-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1387-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/154\/2200x1467x80\/fecdc0539dca282c7f265338093495ce"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1389-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1389-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/157\/2200x1467x80\/63f4ea0ad5a198b74d5bdd895369a0a2"},"use_hdpi":true,"title":"block 172 | 9\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 9\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":157,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1389-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1389-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1389-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/157\/2200x1467x80\/63f4ea0ad5a198b74d5bdd895369a0a2"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1397-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1397-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/158\/2200x1467x80\/12178c37e12a445b90705865017c366a"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":158,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1397-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1397-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1397-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/158\/2200x1467x80\/12178c37e12a445b90705865017c366a"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1398-Block172-Gadetsaki_bw.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1398-Block172-Gadetsaki_bw.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/159\/2200x1467x80\/4bb1c3697e2c0f6c59e1aad7d077f2c2"},"use_hdpi":true,"title":"1398-Block172-Gadetsaki_bw","description":"","image_id":159,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1398-Block172-Gadetsaki_bw.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1398-Block172-Gadetsaki_bw.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1398-Block172-Gadetsaki_bw.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/159\/2200x1467x80\/4bb1c3697e2c0f6c59e1aad7d077f2c2"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1403-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1403-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/162\/2200x1467x80\/c1a6071148212470dc64c0bb7a0bd3dd"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":162,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1403-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1403-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1403-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/162\/2200x1467x80\/c1a6071148212470dc64c0bb7a0bd3dd"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1409-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1409-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/161\/2200x1467x80\/0909ab7c9c14cfa74924514843c418ed"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":161,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1409-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1409-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1409-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/161\/2200x1467x80\/0909ab7c9c14cfa74924514843c418ed"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1417-Block172-Gadetsaki-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1417-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/160\/2200x1467x80\/61373c0d8d413d2da16a4b2e8705802c"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":160,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1417-Block172-Gadetsaki-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1417-Block172-Gadetsaki-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1417-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/160\/2200x1467x80\/61373c0d8d413d2da16a4b2e8705802c"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1426-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1426-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/163\/2200x1467x80\/d4971236bcccdc8c52751db90203f948"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":163,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1426-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1426-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1426-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/163\/2200x1467x80\/d4971236bcccdc8c52751db90203f948"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1441-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1441-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/165\/2200x1467x80\/637dcf978623dd26b776f1c992a7827b"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":165,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1441-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1441-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1441-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/165\/2200x1467x80\/637dcf978623dd26b776f1c992a7827b"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1468-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1468-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/164\/2200x1467x80\/6a73165e45b2d4d466bdabe0eae72c2f"},"use_hdpi":true,"title":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","description":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","image_id":164,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1468-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1468-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1468-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/164\/2200x1467x80\/6a73165e45b2d4d466bdabe0eae72c2f"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1477-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1477-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/167\/2200x1467x80\/88fe90d35b263a4cc2bfa2b5a895750f"},"use_hdpi":true,"title":"1477-Block172-Gadetsaki-2","description":"","image_id":167,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1477-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1477-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1477-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/167\/2200x1467x80\/88fe90d35b263a4cc2bfa2b5a895750f"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1490-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1490-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/166\/2200x1467x80\/d3c89ffd5eac4a3845e9ce91b0ab32a6"},"use_hdpi":true,"title":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","description":"block 172 | \u03bc\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, \u03c3\u03ce\u03c0\u03b1 \u03bc\u03b7 \u03bc\u03b9\u03bb\u03ac\u03c2","image_id":166,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1490-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1490-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1490-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/166\/2200x1467x80\/d3c89ffd5eac4a3845e9ce91b0ab32a6"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1493-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1493-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/168\/2200x1467x80\/23e5f20fc7b87c7594473763d01acfb2"},"use_hdpi":true,"title":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","description":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","image_id":168,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1493-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1493-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1493-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/168\/2200x1467x80\/23e5f20fc7b87c7594473763d01acfb2"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1509-Block172-Gadetsaki-2-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1509-Block172-Gadetsaki-2-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/170\/2200x1467x80\/218213253298857ce09961511c5eb7a7"},"use_hdpi":true,"title":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","description":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","image_id":170,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1509-Block172-Gadetsaki-2-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1509-Block172-Gadetsaki-2-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1509-Block172-Gadetsaki-2-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/170\/2200x1467x80\/218213253298857ce09961511c5eb7a7"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1509-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1509-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/169\/2200x1467x80\/73be2d6ef25905ceb95f339119c93edf"},"use_hdpi":true,"title":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","description":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","image_id":169,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1509-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1509-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1509-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/169\/2200x1467x80\/73be2d6ef25905ceb95f339119c93edf"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1526-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1526-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/171\/2200x1467x80\/9ec2749b2735e557e906eb82dc6c32d9"},"use_hdpi":true,"title":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","description":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","image_id":171,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1526-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1526-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1526-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/171\/2200x1467x80\/9ec2749b2735e557e906eb82dc6c32d9"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1530-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1530-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/174\/2200x1467x80\/8dc05eadca40e701bf5bd02a62c81bb6"},"use_hdpi":true,"title":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","description":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","image_id":174,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1530-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1530-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1530-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/174\/2200x1467x80\/8dc05eadca40e701bf5bd02a62c81bb6"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1531-Block172-Gadetsaki-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1531-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/173\/2200x1467x80\/6dca8dd56e54a2d70f998fd131e25fc8"},"use_hdpi":true,"title":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","description":"block 172 | 1\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, BROKEN PIGLETS","image_id":173,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1531-Block172-Gadetsaki-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1531-Block172-Gadetsaki-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1531-Block172-Gadetsaki-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/173\/2200x1467x80\/6dca8dd56e54a2d70f998fd131e25fc8"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1545-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1545-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/172\/2200x1467x80\/7b7661fcba282a8d9f73c3c5c871516d"},"use_hdpi":true,"title":"block 172 | 2\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, NEAR LIGHT","description":"block 172 | 2\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, NEAR LIGHT","image_id":172,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1545-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1545-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1545-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/172\/2200x1467x80\/7b7661fcba282a8d9f73c3c5c871516d"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1548-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1548-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/175\/2200x1467x80\/cd2bf4f9163610339bcec56670ae4599"},"use_hdpi":true,"title":"block 172 | 2\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, NEAR LIGHT","description":"block 172 | 2\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, NEAR LIGHT","image_id":175,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1548-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1548-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1548-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/175\/2200x1467x80\/cd2bf4f9163610339bcec56670ae4599"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1550-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1550-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/176\/2200x1467x80\/6ae1ad8be469398dff026934722c4ac5"},"use_hdpi":true,"title":"block 172 | 2\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, NEAR LIGHT","description":"block 172 | 2\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, NEAR LIGHT","image_id":176,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1550-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1550-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1550-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/176\/2200x1467x80\/6ae1ad8be469398dff026934722c4ac5"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1604-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1604-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/178\/2200x1467x80\/b6a000b1f15da2622fc61e3709704ea7"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":178,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1604-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1604-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1604-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/178\/2200x1467x80\/b6a000b1f15da2622fc61e3709704ea7"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1607-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1607-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/179\/2200x1467x80\/e6832519196828512c632836dacb1645"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":179,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1607-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1607-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1607-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/179\/2200x1467x80\/e6832519196828512c632836dacb1645"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1613-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1613-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/177\/2200x1467x80\/6e0ed2530636265bdc1c97344e0bf82a"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":177,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1613-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1613-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1613-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/177\/2200x1467x80\/6e0ed2530636265bdc1c97344e0bf82a"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1629-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1629-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/180\/2200x1467x80\/814313dd187a41e2ca84cffc7eea91dc"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":180,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1629-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1629-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1629-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/180\/2200x1467x80\/814313dd187a41e2ca84cffc7eea91dc"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1630-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1630-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/181\/2200x1467x80\/8ad152692a2d4885f97915a48db16d78"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":181,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1630-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1630-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1630-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/181\/2200x1467x80\/8ad152692a2d4885f97915a48db16d78"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1679-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1679-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/182\/2200x1467x80\/4bac6256a3e8d11c23672d682901c0b5"},"use_hdpi":true,"title":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 3\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":182,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1679-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1679-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1679-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/182\/2200x1467x80\/4bac6256a3e8d11c23672d682901c0b5"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1731-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1731-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/183\/2200x1467x80\/593b8e6183a218e11f62c5d79f493f02"},"use_hdpi":true,"title":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","description":"block 172 | 4\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1,NO-XYGEN","image_id":183,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1731-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1731-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1731-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/183\/2200x1467x80\/593b8e6183a218e11f62c5d79f493f02"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1738-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1738-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/184\/2200x1467x80\/a45dd22852b2ab9be898d7bfbf160819"},"use_hdpi":true,"title":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","description":"block 172 | 5\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, KID-NAP","image_id":184,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1738-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1738-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1738-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/184\/2200x1467x80\/a45dd22852b2ab9be898d7bfbf160819"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1768-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1768-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/185\/2200x1467x80\/40c667525c20fc5a2355253c0b7d81c5"},"use_hdpi":true,"title":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","description":"block 172 | 6\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, JOURNEY","image_id":185,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1768-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1768-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1768-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/185\/2200x1467x80\/40c667525c20fc5a2355253c0b7d81c5"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1819-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1819-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/186\/2200x1467x80\/f3f36f3a685400b9d677aa7618bd22aa"},"use_hdpi":true,"title":"block 172 | 7\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, EXPERIENCE","description":"block 172 | 7\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, EXPERIENCE","image_id":186,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1819-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1819-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1819-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/186\/2200x1467x80\/f3f36f3a685400b9d677aa7618bd22aa"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1831-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1831-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/187\/2200x1467x80\/4dbe9a8cf3b31cf40df489be96a3cfb9"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":187,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1831-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1831-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1831-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/187\/2200x1467x80\/4dbe9a8cf3b31cf40df489be96a3cfb9"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1873-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1873-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/188\/2200x1467x80\/75d57a2deeea3789d346fb9997ff0aaf"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":188,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1873-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1873-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1873-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/188\/2200x1467x80\/75d57a2deeea3789d346fb9997ff0aaf"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1908-Block172-Gadetsaki-3.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1908-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/189\/2200x1467x80\/4e755573e04f06f9d31eafe33b2b54ab"},"use_hdpi":true,"title":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","description":"block 172 | 8\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, MARIA","image_id":189,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1908-Block172-Gadetsaki-3.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1908-Block172-Gadetsaki-3.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1908-Block172-Gadetsaki-3.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/189\/2200x1467x80\/4e755573e04f06f9d31eafe33b2b54ab"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1938-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1938-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/190\/2200x1467x80\/554ea3772722b9d31aed7221d074a8f0"},"use_hdpi":true,"title":"block 172 | 9\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 9\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":190,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1938-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1938-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1938-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/190\/2200x1467x80\/554ea3772722b9d31aed7221d074a8f0"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1942-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1942-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/191\/2200x1467x80\/eb7c95187b536b8f79c547b69d81fed8"},"use_hdpi":true,"title":"block 172 | 9\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","description":"block 172 | 9\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, LACRIMOSA","image_id":191,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1942-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1942-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1942-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/191\/2200x1467x80\/eb7c95187b536b8f79c547b69d81fed8"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1946-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1946-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/192\/2200x1467x80\/0d341500844f7b3056e4bf17e9ff3ddc"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":192,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1946-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1946-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1946-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/192\/2200x1467x80\/0d341500844f7b3056e4bf17e9ff3ddc"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1950-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1950-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/194\/2200x1467x80\/825f92e4e5f8e94a97e368bb5a270792"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":194,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1950-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1950-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1950-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/194\/2200x1467x80\/825f92e4e5f8e94a97e368bb5a270792"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1962-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1962-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/193\/2200x1467x80\/c263a46489c2ba42b5fab79eb2687170"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":193,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1962-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1962-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1962-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/193\/2200x1467x80\/c263a46489c2ba42b5fab79eb2687170"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1974-Block172-Gadetsaki-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1974-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/195\/2200x1467x80\/f55d45085fe6231afcf47204c141c428"},"use_hdpi":true,"title":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","description":"block 172 | 10\u03b7 \u03b1\u03bd\u03ac\u03c3\u03b1, AGNUS DEI","image_id":195,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/thumbs\/thumbs-1974-Block172-Gadetsaki-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1974-Block172-Gadetsaki-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/block-172-dancespace\/1974-Block172-Gadetsaki-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/195\/2200x1467x80\/f55d45085fe6231afcf47204c141c428"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2002-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2002-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/103\/2200x1467x80\/3fc7453466d2188d42c1caf6edcb84cd"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":103,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2002-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2002-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2002-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/103\/2200x1467x80\/3fc7453466d2188d42c1caf6edcb84cd"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2009-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2009-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/101\/2200x1467x80\/d0738279d0d0ba49fb8a2cd4dc9279de"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":101,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2009-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2009-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2009-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/101\/2200x1467x80\/d0738279d0d0ba49fb8a2cd4dc9279de"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/2010-livorno.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/2010-livorno.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/2010-livorno.jpg-nggid0264-ngg0dyn-350x350x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"2010-livorno","description":"","image_id":64,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-2010-livorno.jpg","width":350,"height":350,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/2010-livorno.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/2010-livorno.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/2010-livorno.jpg-nggid0264-ngg0dyn-350x350x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2015-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2015-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/72\/2200x1467x80\/c03af4e3c99234155a8ec91f3b360c7b"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":72,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2015-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2015-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2015-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/72\/2200x1467x80\/c03af4e3c99234155a8ec91f3b360c7b"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2021-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2021-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2021-JAPAN-20191213.jpg-nggid0269-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":69,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2021-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2021-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2021-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2021-JAPAN-20191213.jpg-nggid0269-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2023-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2023-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2023-JAPAN-20191213.jpg-nggid0271-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":71,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2023-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2023-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2023-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2023-JAPAN-20191213.jpg-nggid0271-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2031-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2031-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/65\/2200x1467x80\/34f6d76cccd5dbb4bf308b93e7bf09c8"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":65,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2031-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2031-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2031-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/65\/2200x1467x80\/34f6d76cccd5dbb4bf308b93e7bf09c8"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2051-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2051-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2051-JAPAN-20191213.jpg-nggid0266-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":66,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2051-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2051-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2051-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2051-JAPAN-20191213.jpg-nggid0266-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2069-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2069-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/70\/2200x1467x80\/766f7732bad25d509504f27b9d8d43f0"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":70,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2069-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2069-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2069-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/70\/2200x1467x80\/766f7732bad25d509504f27b9d8d43f0"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2094-JAPAN-20191213.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2094-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2094-JAPAN-20191213.jpg-nggid0267-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":67,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2094-JAPAN-20191213.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2094-JAPAN-20191213.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2094-JAPAN-20191213.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2094-JAPAN-20191213.jpg-nggid0267-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2112-JAPAN-20191215.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2112-JAPAN-20191215.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2112-JAPAN-20191215.jpg-nggid0268-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":68,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2112-JAPAN-20191215.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2112-JAPAN-20191215.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2112-JAPAN-20191215.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2112-JAPAN-20191215.jpg-nggid0268-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2142-JAPAN-20191215.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2142-JAPAN-20191215.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/73\/2200x1467x80\/74fae2bca1bb9f1fb3ce475e0c0a9966"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":73,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2142-JAPAN-20191215.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2142-JAPAN-20191215.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2142-JAPAN-20191215.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/73\/2200x1467x80\/74fae2bca1bb9f1fb3ce475e0c0a9966"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2202-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2202-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2202-JAPAN-20191226.jpg-nggid0274-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":74,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2202-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2202-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2202-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2202-JAPAN-20191226.jpg-nggid0274-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2209-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2209-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2209-JAPAN-20191226.jpg-nggid0275-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":75,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2209-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2209-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2209-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2209-JAPAN-20191226.jpg-nggid0275-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2222-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2222-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2222-JAPAN-20191226.jpg-nggid0276-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":76,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2222-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2222-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2222-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2222-JAPAN-20191226.jpg-nggid0276-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2224-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2224-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/77\/2200x1467x80\/f6606fb1ee20a996ef472218148cbecc"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":77,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2224-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2224-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2224-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/77\/2200x1467x80\/f6606fb1ee20a996ef472218148cbecc"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2248-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2248-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2248-JAPAN-20191226.jpg-nggid0278-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":78,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2248-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2248-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2248-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2248-JAPAN-20191226.jpg-nggid0278-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2254-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2254-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/79\/2200x1467x80\/d6a9383e1f6f7caff2b5d58cc781a3d0"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":79,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2254-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2254-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2254-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/79\/2200x1467x80\/d6a9383e1f6f7caff2b5d58cc781a3d0"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2277-JAPAN-20191226-scaled-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2277-JAPAN-20191226-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/80\/1066x1600x80\/73532cf3b806614ab7c50c05cf447528"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":80,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2277-JAPAN-20191226-scaled-1.jpg","width":533,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2277-JAPAN-20191226-scaled-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2277-JAPAN-20191226-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/80\/1066x1600x80\/73532cf3b806614ab7c50c05cf447528"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2303-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2303-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/81\/2200x1467x80\/f29dfffbff83393247c45f16e1246416"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":81,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2303-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2303-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2303-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/81\/2200x1467x80\/f29dfffbff83393247c45f16e1246416"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2332-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2332-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/82\/2200x1467x80\/e25b743f924afc48618abbda5545a693"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":82,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2332-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2332-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2332-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/82\/2200x1467x80\/e25b743f924afc48618abbda5545a693"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2333-JAPAN-20191226.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2333-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/83\/2200x1467x80\/a7c5e2d3946821584df7d66b42a31110"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":83,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2333-JAPAN-20191226.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2333-JAPAN-20191226.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2333-JAPAN-20191226.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/83\/2200x1467x80\/a7c5e2d3946821584df7d66b42a31110"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2424-JAPAN-20191227-scaled-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2424-JAPAN-20191227-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/85\/1066x1600x80\/ba0f7307778d69c1ad744d16cf00eef6"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":85,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2424-JAPAN-20191227-scaled-1.jpg","width":533,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2424-JAPAN-20191227-scaled-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2424-JAPAN-20191227-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/85\/1066x1600x80\/ba0f7307778d69c1ad744d16cf00eef6"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2475-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2475-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/84\/2200x1467x80\/839b27a4509088d622fcb1256b4d2767"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":84,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2475-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2475-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2475-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/84\/2200x1467x80\/839b27a4509088d622fcb1256b4d2767"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2488-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2488-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2488-JAPAN-20191227.jpg-nggid0286-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":86,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2488-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2488-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2488-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2488-JAPAN-20191227.jpg-nggid0286-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2503-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2503-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2503-JAPAN-20191227.jpg-nggid0287-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":87,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2503-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2503-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2503-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2503-JAPAN-20191227.jpg-nggid0287-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2508-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2508-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2508-JAPAN-20191227.jpg-nggid0289-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":89,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2508-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2508-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2508-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2508-JAPAN-20191227.jpg-nggid0289-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2537-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2537-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2537-JAPAN-20191227.jpg-nggid0288-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":88,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2537-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2537-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2537-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2537-JAPAN-20191227.jpg-nggid0288-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2604-JAPAN-20191227.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2604-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/90\/2200x1467x80\/ffacaab738f052821e7c8387dc13de62"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":90,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2604-JAPAN-20191227.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2604-JAPAN-20191227.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2604-JAPAN-20191227.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/90\/2200x1467x80\/ffacaab738f052821e7c8387dc13de62"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2697-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2697-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/91\/2200x1467x80\/a026dd4d787b453beed2c948d47a7de1"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":91,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2697-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2697-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2697-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/91\/2200x1467x80\/a026dd4d787b453beed2c948d47a7de1"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2734-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2734-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2734-JAPAN-20191228.jpg-nggid0292-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":92,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2734-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2734-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2734-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2734-JAPAN-20191228.jpg-nggid0292-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2761-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2761-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/93\/2200x1467x80\/dc7f09a80c7239f53b15b0837716a122"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":93,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2761-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2761-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2761-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/93\/2200x1467x80\/dc7f09a80c7239f53b15b0837716a122"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2818-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2818-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/94\/2200x1467x80\/47916985521dcc626816859666a1b005"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":94,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2818-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2818-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2818-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/94\/2200x1467x80\/47916985521dcc626816859666a1b005"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2831-JAPAN-20191228-scaled-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2831-JAPAN-20191228-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2831-JAPAN-20191228-scaled-1.jpg-nggid0296-ngg0dyn-1066x1600x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":96,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2831-JAPAN-20191228-scaled-1.jpg","width":533,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2831-JAPAN-20191228-scaled-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2831-JAPAN-20191228-scaled-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2831-JAPAN-20191228-scaled-1.jpg-nggid0296-ngg0dyn-1066x1600x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2884-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2884-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2884-JAPAN-20191228.jpg-nggid0295-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":95,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-2884-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2884-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/2884-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/2884-JAPAN-20191228.jpg-nggid0295-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3008-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3008-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/97\/2200x1467x80\/110dedc187162390efa03492980224a6"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":97,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-3008-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3008-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3008-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/97\/2200x1467x80\/110dedc187162390efa03492980224a6"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3054-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3054-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/98\/2200x1467x80\/4f12a1dc326b6561162739092e3a5410"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":98,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-3054-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3054-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3054-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/98\/2200x1467x80\/4f12a1dc326b6561162739092e3a5410"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3152-JAPAN-20191228.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3152-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/99\/2200x1467x80\/c1e09e0b84de65bf28cae0a706247648"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":99,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-3152-JAPAN-20191228.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3152-JAPAN-20191228.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/3152-JAPAN-20191228.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/99\/2200x1467x80\/c1e09e0b84de65bf28cae0a706247648"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cover-japan.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cover-japan.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/cover-japan.jpg-nggid03100-ngg0dyn-1920x1080x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":100,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-cover-japan.jpg","width":1200,"height":675,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cover-japan.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cover-japan.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/cache\/cover-japan.jpg-nggid03100-ngg0dyn-1920x1080x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/japan-cover.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/japan-cover.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/102\/1200x675x80\/1b29df33a492a6bd01756bdb70b40a32"},"use_hdpi":true,"title":"dancespace","description":"\u03c4\u03b1 \u03b2\u03b1\u03b8\u03cd\u03c4\u03b5\u03c1\u03b1 \u03c0\u03bf\u03c4\u03ac\u03bc\u03b9\u03b1 \u03c1\u03ad\u03bf\u03c5\u03bd \u03c3\u03b9\u03c9\u03c0\u03b7\u03bb\u03ac @giorgos.go_click","image_id":102,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/thumbs\/thumbs-japan-cover.jpg","width":1200,"height":675,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/japan-cover.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/japan-stories-dancespace\/japan-cover.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/102\/1200x675x80\/1b29df33a492a6bd01756bdb70b40a32"},"thumb_dimensions":{"width":240,"height":160}}];
galleries.gallery_c67b30e590df5e8dbaf1f8455f596065.images_list_limit = "";
galleries.gallery_c67b30e590df5e8dbaf1f8455f596065.images_list_count = 190;
galleries.gallery_c67b30e590df5e8dbaf1f8455f596065.captions_enabled = false;
galleries.gallery_f91ecd5ddf6ce8ada5c70ef86d21926c = {"id":null,"source":"galleries","container_ids":["2"],"gallery_ids":[],"album_ids":[],"tag_ids":[],"display_type":"photocrati-nextgen_pro_thumbnail_grid","exclusions":[],"order_by":"filename","order_direction":"ASC","image_ids":[],"entity_ids":[],"tagcloud":false,"returns":"included","slug":null,"sortorder":[],"display_settings":{"override_thumbnail_settings":"0","thumbnail_width":"240","thumbnail_height":"160","thumbnail_crop":"0","images_per_page":"36","border_size":"0","border_color":"#eeeeee","spacing":"2","number_of_columns":"0","display_type_view":"default","ngg_triggers_display":"never","ngg_proofing_display":"0","captions_enabled":"0","captions_display_sharing":"1","captions_display_title":"1","captions_display_description":"1","captions_animation":"slideup","is_ecommerce_enabled":"1","use_lightbox_effect":true,"thumbnail_quality":100,"thumbnail_watermark":0,"disable_pagination":0,"_errors":[]},"excluded_container_ids":[],"maximum_entity_count":500,"__defaults_set":true,"_errors":[],"ID":"f91ecd5ddf6ce8ada5c70ef86d21926c"};
galleries.gallery_f91ecd5ddf6ce8ada5c70ef86d21926c.wordpress_page_root = "https:\/\/orders.snapix.gr\/%cf%84%ce%b1-%ce%b2%ce%b1%ce%b8%cf%8d%cf%84%ce%b5%cf%81%ce%b1-%cf%80%ce%bf%cf%84%ce%ac%ce%bc%ce%b9%ce%b1-%cf%81%ce%ad%ce%bf%cf%85%ce%bd-%cf%83%ce%b9%cf%89%cf%80%ce%b7%ce%bb%ce%ac-dancespace\/";
var nextgen_lightbox_settings = {"static_path":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/nextgen-gallery\/products\/photocrati_nextgen\/modules\/lightbox\/static\/{placeholder}","context":"nextgen_images"};
galleries.gallery_f91ecd5ddf6ce8ada5c70ef86d21926c.images_list = [{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0009-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0009-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0009-PROVA-D.jpg-nggid0215-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0009-PROVA-D","description":"","image_id":15,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0009-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0009-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0009-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0009-PROVA-D.jpg-nggid0215-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/001-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/001-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/001-8TH-RULE.jpg-nggid017-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":7,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-001-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/001-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/001-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/001-8TH-RULE.jpg-nggid017-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0010-PROVA-D-2-1.jpg-nggid0218-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0010-PROVA-D-2-1","description":"","image_id":18,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0010-PROVA-D-2-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0010-PROVA-D-2-1.jpg-nggid0218-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0010-PROVA-D-2.jpg-nggid0217-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0010-PROVA-D-2","description":"","image_id":17,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0010-PROVA-D-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0010-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0010-PROVA-D-2.jpg-nggid0217-ngg0dyn-2200x1467x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/002-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/002-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/8\/1200x800x80\/607fd4d153d23b03d217dc981e93ec60"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":8,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-002-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/002-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/002-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/8\/1200x800x80\/607fd4d153d23b03d217dc981e93ec60"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0026-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0026-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/35\/1200x800x80\/19ab5a82067dd1980f5e4f44926cb260"},"use_hdpi":true,"title":"0026-PROVA-D","description":"","image_id":35,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0026-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0026-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0026-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/35\/1200x800x80\/19ab5a82067dd1980f5e4f44926cb260"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/003-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/003-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/9\/1200x800x80\/287652204969997adf62901251a60942"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":9,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-003-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/003-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/003-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/9\/1200x800x80\/287652204969997adf62901251a60942"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2-scaled-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2-scaled-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/44\/2048x1366x80\/28b66a3523af1dc12261f4de2b0ed1ae"},"use_hdpi":true,"title":"0033-PROVA-D-2-scaled-2","description":"","image_id":44,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0033-PROVA-D-2-scaled-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2-scaled-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2-scaled-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/44\/2048x1366x80\/28b66a3523af1dc12261f4de2b0ed1ae"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/43\/1200x800x80\/e6b5f16592f9023980aea0df3762816e"},"use_hdpi":true,"title":"0033-PROVA-D-2","description":"","image_id":43,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0033-PROVA-D-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0033-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/43\/1200x800x80\/e6b5f16592f9023980aea0df3762816e"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0034-PROVA-D-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0034-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/46\/1200x800x80\/a13508139e960a5cbd5b1ac8b914ff6e"},"use_hdpi":true,"title":"0034-PROVA-D-2","description":"","image_id":46,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0034-PROVA-D-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0034-PROVA-D-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0034-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/46\/1200x800x80\/a13508139e960a5cbd5b1ac8b914ff6e"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/004-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/004-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/10\/1200x800x80\/08187b41e9b5f58ae96b9c70ffa0bfcc"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":10,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-004-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/004-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/004-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/10\/1200x800x80\/08187b41e9b5f58ae96b9c70ffa0bfcc"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/005-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/005-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/005-8TH-RULE.jpg-nggid0211-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":11,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-005-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/005-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/005-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/005-8TH-RULE.jpg-nggid0211-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/006-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/006-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/006-8TH-RULE.jpg-nggid0212-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":12,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-006-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/006-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/006-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/006-8TH-RULE.jpg-nggid0212-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/007-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/007-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/007-8TH-RULE.jpg-nggid0213-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":13,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-007-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/007-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/007-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/007-8TH-RULE.jpg-nggid0213-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0071-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0071-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0071-PROVA-D.jpg-nggid0251-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0071-PROVA-D","description":"","image_id":51,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0071-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0071-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0071-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0071-PROVA-D.jpg-nggid0251-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D-1.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/53\/1200x800x80\/ca1eb1a1308a6788160594aa7a89f523"},"use_hdpi":true,"title":"0079-PROVA-D-1","description":"","image_id":53,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0079-PROVA-D-1.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D-1.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D-1.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/53\/1200x800x80\/ca1eb1a1308a6788160594aa7a89f523"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/52\/1200x800x80\/4c4ae8210d4fd4745a7a20c07ee1962b"},"use_hdpi":true,"title":"0079-PROVA-D","description":"","image_id":52,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0079-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0079-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/52\/1200x800x80\/4c4ae8210d4fd4745a7a20c07ee1962b"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/008-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/008-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/008-8TH-RULE.jpg-nggid0214-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":14,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-008-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/008-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/008-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/008-8TH-RULE.jpg-nggid0214-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/009-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/009-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/009-8TH-RULE.jpg-nggid0216-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":16,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-009-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/009-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/009-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/009-8TH-RULE.jpg-nggid0216-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/010-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/010-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/010-8TH-RULE.jpg-nggid0219-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":19,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-010-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/010-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/010-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/010-8TH-RULE.jpg-nggid0219-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/011-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/011-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/20\/1200x800x80\/1fcc301970b995e25e2f4ba7c9a63456"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":20,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-011-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/011-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/011-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/20\/1200x800x80\/1fcc301970b995e25e2f4ba7c9a63456"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0119-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0119-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0119-PROVA-D.jpg-nggid0254-ngg0dyn-350x350x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0119-PROVA-D","description":"","image_id":54,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0119-PROVA-D.jpg","width":350,"height":350,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0119-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0119-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0119-PROVA-D.jpg-nggid0254-ngg0dyn-350x350x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/012-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/012-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/21\/1200x800x80\/c912b6c018e06051f8ab29724dc7dcc9"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":21,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-012-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/012-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/012-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/21\/1200x800x80\/c912b6c018e06051f8ab29724dc7dcc9"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0129-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0129-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/55\/1200x800x80\/3ae1bd8f2708f0fe1ef8b872cefcc327"},"use_hdpi":true,"title":"0129-PROVA-D","description":"","image_id":55,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0129-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0129-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0129-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/55\/1200x800x80\/3ae1bd8f2708f0fe1ef8b872cefcc327"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/013-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/013-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/22\/1200x800x80\/b4e53191848bcdbb31706f5916f33980"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":22,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-013-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/013-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/013-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/22\/1200x800x80\/b4e53191848bcdbb31706f5916f33980"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0131-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0131-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/56\/1200x800x80\/d16e3690bb3e07ef4e4a60af4172c7e4"},"use_hdpi":true,"title":"0131-PROVA-D","description":"","image_id":56,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0131-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0131-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0131-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/56\/1200x800x80\/d16e3690bb3e07ef4e4a60af4172c7e4"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/014-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/014-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/014-8TH-RULE.jpg-nggid0223-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":23,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-014-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/014-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/014-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/014-8TH-RULE.jpg-nggid0223-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0140-PROVA-D-2.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0140-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/57\/1200x800x80\/e28c705ec0d05d5d0516614f71d06252"},"use_hdpi":true,"title":"0140-PROVA-D-2","description":"","image_id":57,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0140-PROVA-D-2.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0140-PROVA-D-2.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0140-PROVA-D-2.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/57\/1200x800x80\/e28c705ec0d05d5d0516614f71d06252"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/015-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/015-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/24\/1200x800x80\/5735daef1ce0690aec7be812d63e1611"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":24,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-015-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/015-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/015-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/24\/1200x800x80\/5735daef1ce0690aec7be812d63e1611"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0152-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0152-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0152-PROVA-D.jpg-nggid0258-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0152-PROVA-D","description":"","image_id":58,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0152-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0152-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0152-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0152-PROVA-D.jpg-nggid0258-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/016-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/016-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/25\/1200x800x80\/9cc832521a1b8ff28668b7e2d4f0e256"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":25,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-016-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/016-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/016-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/25\/1200x800x80\/9cc832521a1b8ff28668b7e2d4f0e256"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0164-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0164-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/59\/1200x800x80\/c8ea5f7c04823918bf91b4b015bcf040"},"use_hdpi":true,"title":"0164-PROVA-D","description":"","image_id":59,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0164-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0164-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0164-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/59\/1200x800x80\/c8ea5f7c04823918bf91b4b015bcf040"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/017-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/017-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/017-8TH-RULE.jpg-nggid0226-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":26,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-017-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/017-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/017-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/017-8TH-RULE.jpg-nggid0226-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0171-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0171-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/60\/1200x800x80\/18861652fa7131e86030cd16c99cbc52"},"use_hdpi":true,"title":"0171-PROVA-D","description":"","image_id":60,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0171-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0171-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0171-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/60\/1200x800x80\/18861652fa7131e86030cd16c99cbc52"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/018-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/018-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/018-8TH-RULE.jpg-nggid0227-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":27,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-018-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/018-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/018-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/018-8TH-RULE.jpg-nggid0227-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/019-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/019-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/019-8TH-RULE.jpg-nggid0228-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":28,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-019-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/019-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/019-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/019-8TH-RULE.jpg-nggid0228-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0193-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0193-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/61\/1200x800x80\/8e92e7f8898ac78992bf171daa40b140"},"use_hdpi":true,"title":"0193-PROVA-D","description":"","image_id":61,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0193-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0193-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0193-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/61\/1200x800x80\/8e92e7f8898ac78992bf171daa40b140"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/020-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/020-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/020-8TH-RULE.jpg-nggid0229-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":29,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-020-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/020-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/020-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/020-8TH-RULE.jpg-nggid0229-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0205-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0205-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0205-PROVA-D.jpg-nggid0262-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0205-PROVA-D","description":"","image_id":62,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0205-PROVA-D.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0205-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0205-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0205-PROVA-D.jpg-nggid0262-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/021-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/021-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/021-8TH-RULE.jpg-nggid0230-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":30,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-021-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/021-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/021-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/021-8TH-RULE.jpg-nggid0230-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/022-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/022-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/022-8TH-RULE.jpg-nggid0231-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":31,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-022-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/022-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/022-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/022-8TH-RULE.jpg-nggid0231-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/023-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/023-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/32\/1200x800x80\/3b4b68bf6d2ac1199967466f913a1307"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":32,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-023-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/023-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/023-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/32\/1200x800x80\/3b4b68bf6d2ac1199967466f913a1307"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/024-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/024-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/024-8TH-RULE.jpg-nggid0233-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":33,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-024-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/024-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/024-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/024-8TH-RULE.jpg-nggid0233-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0249-PROVA-D.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0249-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0249-PROVA-D.jpg-nggid0263-ngg0dyn-450x450x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"0249-PROVA-D","description":"","image_id":63,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-0249-PROVA-D.jpg","width":450,"height":450,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0249-PROVA-D.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/0249-PROVA-D.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/0249-PROVA-D.jpg-nggid0263-ngg0dyn-450x450x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/025-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/025-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/34\/1200x800x80\/ab34f6cd34ff6cd863fdd98f20ead57f"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":34,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-025-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/025-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/025-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/34\/1200x800x80\/ab34f6cd34ff6cd863fdd98f20ead57f"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/026-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/026-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/026-8TH-RULE.jpg-nggid0236-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":36,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-026-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/026-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/026-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/026-8TH-RULE.jpg-nggid0236-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/027-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/027-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/027-8TH-RULE.jpg-nggid0237-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":37,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-027-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/027-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/027-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/027-8TH-RULE.jpg-nggid0237-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/028-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/028-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/38\/1200x800x80\/9bad4b69ee7d41ac4de91b18e14da5e2"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":38,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-028-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/028-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/028-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/38\/1200x800x80\/9bad4b69ee7d41ac4de91b18e14da5e2"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/029-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/029-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/029-8TH-RULE.jpg-nggid0239-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":39,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-029-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/029-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/029-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/029-8TH-RULE.jpg-nggid0239-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/030-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/030-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/030-8TH-RULE.jpg-nggid0240-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":40,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-030-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/030-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/030-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/030-8TH-RULE.jpg-nggid0240-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/031-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/031-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/031-8TH-RULE.jpg-nggid0241-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":41,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-031-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/031-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/031-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/031-8TH-RULE.jpg-nggid0241-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/032-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/032-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/42\/1200x800x80\/105124ec356a229d2f713ff8e562fe27"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":42,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-032-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/032-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/032-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/42\/1200x800x80\/105124ec356a229d2f713ff8e562fe27"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/033-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/033-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/033-8TH-RULE.jpg-nggid0245-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":45,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-033-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/033-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/033-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/033-8TH-RULE.jpg-nggid0245-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/034-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/034-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/034-8TH-RULE.jpg-nggid0247-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":47,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-034-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/034-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/034-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/034-8TH-RULE.jpg-nggid0247-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/035-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/035-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/035-8TH-RULE.jpg-nggid0248-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":48,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-035-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/035-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/035-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/035-8TH-RULE.jpg-nggid0248-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/036-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/036-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/49\/1200x800x80\/41917db2f7ea8dbcb58d922af84e015a"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":49,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-036-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/036-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/036-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/nextgen-image\/49\/1200x800x80\/41917db2f7ea8dbcb58d922af84e015a"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/037-8TH-RULE.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/037-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/037-8TH-RULE.jpg-nggid0250-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"making off - photography by Giorgos Gotsis","description":"making off - photography by Giorgos Gotsis","image_id":50,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-037-8TH-RULE.jpg","width":1200,"height":800,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/037-8TH-RULE.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/037-8TH-RULE.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/037-8TH-RULE.jpg-nggid0250-ngg0dyn-1200x800x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}},{"image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/2010-livorno.jpg","srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/2010-livorno.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/2010-livorno.jpg-nggid0264-ngg0dyn-350x350x80-00f0w010c010r110f110r010t010.jpg"},"use_hdpi":true,"title":"2010-livorno","description":"","image_id":64,"thumb":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/thumbs\/thumbs-2010-livorno.jpg","width":350,"height":350,"full_image":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/2010-livorno.jpg","full_use_hdpi":true,"full_srcsets":{"original":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/2010-livorno.jpg","hdpi":"https:\/\/orders.snapix.gr\/wp-content\/uploads\/sites\/3\/nggallery\/8cebfcf82-cebaceb1cf8ccebdceb1cf82\/cache\/2010-livorno.jpg-nggid0264-ngg0dyn-350x350x80-00f0w010c010r110f110r010t010.jpg"},"thumb_dimensions":{"width":240,"height":160}}];
galleries.gallery_f91ecd5ddf6ce8ada5c70ef86d21926c.images_list_limit = "";
galleries.gallery_f91ecd5ddf6ce8ada5c70ef86d21926c.images_list_count = 58;
galleries.gallery_f91ecd5ddf6ce8ada5c70ef86d21926c.captions_enabled = false;
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_gallery_display/static/common.js
var nggLastTimeoutVal = 1000;var nggRetryFailedImage = function(img) {
setTimeout(function(){
img.src = img.src;
}, nggLastTimeoutVal);
nggLastTimeoutVal += 500;
}var nggLastTimeoutVal = 1000;var nggRetryFailedImage = function(img) {
setTimeout(function(){
img.src = img.src;
}, nggLastTimeoutVal);
nggLastTimeoutVal += 500;
}var nggLastTimeoutVal = 1000;var nggRetryFailedImage = function(img) {
setTimeout(function(){
img.src = img.src;
}, nggLastTimeoutVal);
nggLastTimeoutVal += 500;
}
var nplModalSettings = {"style":"dark","background_color":"","sidebar_background_color":"","sidebar_button_color":"","sidebar_button_background":"","carousel_background_color":"","carousel_text_color":"","overlay_icon_color":"","icon_color":"","icon_background_enabled":"0","icon_background_rounded":"0","icon_background":"","padding":"","padding_unit":"px","image_crop":"true","image_pan":"0","enable_comments":"0","display_comments":"0","enable_sharing":"0","facebook_app_id":"","enable_twitter_cards":"0","twitter_username":"","display_carousel":"1","display_captions":"0","enable_carousel":"always","display_cart":0,"transition_effect":"fade","transition_speed":"","slideshow_speed":"","interaction_pause":"0","enable_routing":"1","router_slug":"gallery","localize_limit":"","touch_transition_effect":"slide","is_front_page":1,"share_url":"https:\/\/orders.snapix.gr\/nextgen-share\/{gallery_id}\/{image_id}\/{named_size}","wp_site_url":"https:\/\/orders.snapix.gr","protect_images":false,"i18n":{"toggle_social_sidebar":"Toggle social sidebar","play_pause":"Play \/ Pause","toggle_fullsize":"Toggle fullsize","toggle_image_info":"Toggle image info","close_window":"Close window","share":{"twitter":"Share on Twitter","facebook":"Share on Facebook","pinterest":"Share on Pinterest"}}};
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/lightbox/static/lightbox_context.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/nextgen_pro_lightbox/static/parsesrcset.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/ecommerce/static/nplmodal_overrides.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/galleria/static/galleria-1.6.1.js
var image_save_msg = 'You are not allowed to save images!';var no_menu_msg = 'Context menu disabled!';var smessage = "<b>Alert: </b>Content selection is disabled!!";"use strict";
/* This because search property "includes" does not supported by IE*/
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
if (typeof start !== 'number') {
start = 0;
}if (start + search.length > this.length) {
return false;
} else {
return this.indexOf(search, start) !== -1;
}
};
}
/*////////////////////////////////////*/
function disable_copy(e)
{
window.wccp_pro_iscontenteditable_flag = false;
wccp_pro_log_to_console_if_allowed("function", "disable_copy");
var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
var target = e.target || e.srcElement;var elemtype = e.target.nodeName;
elemtype = elemtype.toUpperCase();
if (apply_class_exclusion(e) == "Yes") return true;if(wccp_pro_iscontenteditable(e) == true) {return true;}
if(is_content_editable_element(current_clicked_element) == true) {return true;}
if (is_content_editable_element(current_clicked_element) == false)
{
if (smessage !== "" && e.detail == 2)
show_wccp_pro_message(smessage);
if (isSafari)
{
return true;
}
else
{
wccp_pro_clear_any_selection();
return false;
}
}
/*disable context menu when shift + right click is pressed*/
var shiftPressed = 0;
var evt = e?e:window.event;
if (parseInt(navigator.appVersion)>3) {
if (document.layers && navigator.appName=="Netscape")
shiftPressed = (e.modifiers-0>3);
else
shiftPressed = e.shiftKey;
if (shiftPressed) {
if (smessage !== "") show_wccp_pro_message(smessage);
var isFirefox = typeof InstallTrigger !== 'undefined'; /* Firefox 1.0+ */
if (isFirefox) {
evt.cancelBubble = true;
if (evt.stopPropagation) evt.stopPropagation();
if (evt.preventDefault()) evt.preventDefault();
show_wccp_pro_message (smessage);
wccp_pro_clear_any_selection();
return false;
}
wccp_pro_clear_any_selection();
return false;
}
}
if(e.which === 2 ){
var clickedTag_a = (e==null) ? event.srcElement.tagName : e.target.tagName;
show_wccp_pro_message(smessage);
wccp_pro_clear_any_selection(); return false;
}
var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
var checker_IMG = 'checked';
if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail == 2) {show_wccp_pro_message(alertMsg_IMG);wccp_pro_clear_any_selection();return false;}//elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
if (is_content_editable_element(elemtype) == false)
{
if (smessage !== "" && e.detail == 2)
show_wccp_pro_message(smessage);
if (isSafari)
{
return true;
}
else
{
wccp_pro_clear_any_selection(); return false;
}
}
else
{
return true;
}
}
////////////////////////////
function disable_copy_ie()
{
wccp_pro_log_to_console_if_allowed("function", "disable_copy_ie_function_started");
var e = e || window.event;
/*also there is no e.target property in IE.*/
/*instead IE uses window.event.srcElement*/
var target = e.target || e.srcElement;
var elemtype = window.event.srcElement.nodeName;
elemtype = elemtype.toUpperCase();if(wccp_pro_iscontenteditable(e) == true) return true;
if (apply_class_exclusion(e) == "Yes") return true;
if (elemtype == "IMG") {show_wccp_pro_message(alertMsg_IMG);return false;}
//elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
if (is_content_editable_element(elemtype) == false)
{
return false;
}
}
function disable_drag_text(e)
{
wccp_pro_log_to_console_if_allowed("function", "disable_drag_text");
/*var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);*/
/*if (isSafari) {show_wccp_pro_message(alertMsg_IMG);return false;}*/
var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement*/
var target = e.target || e.srcElement;
/*For contenteditable tags*/
if (apply_class_exclusion(e) == "Yes") return true;var elemtype = e.target.nodeName;
elemtype = elemtype.toUpperCase();
var disable_drag_text_drop = 'checked';
if (disable_drag_text_drop != "checked") return true;
if (window.location.href.indexOf("/user/") > -1) {
return true; /*To allow users to drag & drop images when editing thier profiles*/
}
return false;
}/*/////////////////special for safari Start////////////////*/
var onlongtouch;var timer;var touchduration = 1000; /*length of time we want the user to touch before we do something*/var elemtype = "";function touchstart(e)
{
wccp_pro_log_to_console_if_allowed("function", "touchstart");
var e = e || window.event;
/*also there is no e.target property in IE.*/
/*instead IE uses window.event.srcElement*/
var target = e.target || e.srcElement;
elemtype = window.event.srcElement.nodeName;
elemtype = elemtype.toUpperCase();
if(!wccp_pro_is_passive()) e.preventDefault();
if (!timer) {
timer = setTimeout(onlongtouch, touchduration);
}
}function touchend()
{
wccp_pro_log_to_console_if_allowed("function", "touchend");
/*stops short touches from firing the event*/
if (timer) {
clearTimeout(timer);
timer = null;
}
onlongtouch();
}onlongtouch = function(e)/*this will clear the current selection if any_not_editable_thing selected*/
{
wccp_pro_log_to_console_if_allowed("function", "onlongtouch");
if (is_content_editable_element(elemtype) == false)
{
if (window.getSelection) {
if (window.getSelection().empty) { /*Chrome*/
window.getSelection().empty();
} else if (window.getSelection().removeAllRanges) { /*Firefox*/
window.getSelection().removeAllRanges();
}
} else if (document.selection) { /*IE?*/
var textRange = document.body.createTextRange();
textRange.moveToElementText(element);
textRange.select();document.selection.empty();
}
return false;
}
};document.addEventListener("DOMContentLoaded", function(event)
{
window.addEventListener("touchstart", touchstart, false);
window.addEventListener("touchend", touchend, false);
});function wccp_pro_is_passive()
{
wccp_pro_log_to_console_if_allowed("function", "wccp_pro_is_passive");
var cold = false,
hike = function() {};try {
var aid = Object.defineProperty({}, 'passive', {
get() {cold = true}
});
window.addEventListener('test', hike, aid);
window.removeEventListener('test', hike, aid);
} catch (e) {}return cold;
}
/*/////////////////////////////////////////////////////////////////*/
function reEnable()
{
return true;
}if(navigator.userAgent.indexOf('MSIE')==-1) //If not IE
{
document.ondragstart = disable_drag_text;
document.onselectstart = disable_copy;
document.onselectionchange = disable_copy;
//document.onmousedown = disable_copy;
//document.addEventListener('click', disable_copy, false);
document.addEventListener('click', set_current_clicked_element, false);
document.addEventListener('mousedown', set_current_clicked_element, false);
//document.onclick = reEnable;
}else
{
document.onselectstart = disable_copy_ie;
}var current_clicked_element = "";var current_clicked_object = null;function set_current_clicked_element(e)
{
var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
var target = e.target || e.srcElement;var elemtype = e.target.nodeName;
elemtype = elemtype.toUpperCase();
current_clicked_element = elemtype;
}
/*****************For contenteditable tags***************/
var wccp_pro_iscontenteditable_flag = false;function wccp_pro_iscontenteditable(e)
{
var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
var target = e.target || e.srcElement;
var iscontenteditable = "false";
if(typeof target.getAttribute!="undefined" )
{
iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string
if(typeof target.hasAttribute!="undefined")
{
if(target.hasAttribute("contenteditable"))
iscontenteditable = true;
}
}
console.log("iscontenteditable:" + iscontenteditable);
var iscontenteditable2 = false;
if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as booleanif(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable;
if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true)
{
if(typeof target.style!="undefined" ) target.style.cursor = "text";
//wccp_pro_log_to_console_if_allowed("", iscontenteditable + " " + iscontenteditable2);
wccp_pro_iscontenteditable_flag = true;
wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: true");
return true;
}
wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: false");
//wccp_pro_iscontenteditable_flag = false;
}
/******************************************************/
function wccp_pro_clear_any_selection()
{
if(window.wccp_pro_iscontenteditable_flag == true) return;
wccp_pro_log_to_console_if_allowed("function", "wccp_pro_clear_any_selection");
var myName = wccp_pro_clear_any_selection.caller.toString();
myName = myName.substr('function '.length);
myName = myName.substr(0, myName.indexOf('('));console.log("called_by: " + myName);
if (window.getSelection)
{
if (window.getSelection().empty)
{ // Chrome
window.getSelection().empty();
} else if (window.getSelection().removeAllRanges)
{ // Firefox
window.getSelection().removeAllRanges();
}
} else if (document.selection)
{ // IE?
document.selection.empty();
}
//show_wccp_pro_message("You are not allowed to make this operation");
}/*Is content_editable element*/
function is_content_editable_element(element_name = "")
{
if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK")
{
wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: true >>" + element_name);
return true;
}
wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: false >>" + element_name);
return false;
}
/*Is selection enabled element*/
/*
function is_selection_enabled_element(element_name = "")
{
if (is_content_editable_element == true)
{
wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: true >>" + element_name);
return true;
}
wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: false >>" + element_name);
return false;
}
*/
/*Hot keys function */
function disable_hot_keys(e)
{
wccp_pro_log_to_console_if_allowed("function", "disable_hot_keys");
e = e || window.event;
//console.log(e);
if (!e) return;
var key;if(window.event)
key = window.event.keyCode; /*IE*/
else if (e.hasOwnProperty("which")) key = e.which; /*firefox (97)*/wccp_pro_log_to_console_if_allowed("Data:", key);
if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
var elemtype = e.target.tagName;
elemtype = elemtype.toUpperCase();
var sel = getSelectionTextAndContainerElement();
if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name *//*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/
if (is_content_editable_element(elemtype) == true)
{
elemtype = 'TEXT';
}
if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT';
if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/
{
copyTextToClipboard("");
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
if (e.ctrlKey || e.metaKey)
{
if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43))
{
show_wccp_pro_message('<b>Alert:</b> You are not allowed to copy content or view source');
return false;
}
if (elemtype!= 'TEXT')
{
if (key == 65)
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
if (key == 67)
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
if (key == 88)
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
if (key == 86)
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
if (key == 85)
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
} }
if (key == 80)
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
if (key == 44)
{
copyTextToClipboard("no");
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
if (key == 73)//F12 chrome developer key disable
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
}
if (key == 83)
{
show_wccp_pro_message('You are not allowed to do this action on the current page!!');
return false;
} }
return true;
}jQuery(document).bind("keyup keydown", disable_hot_keys);
function nocontext(e) {wccp_pro_log_to_console_if_allowed("function", "nocontext");
e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
if (apply_class_exclusion(e) == 'Yes') return true;
var exception_tags = 'NOTAG,';
var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;
//console.log("clickedTag: " + clickedTag);
var target = e.target || e.srcElement;
var parent_tag = ""; var parent_of_parent_tag = "";
if(target.parentElement != null)
{
parent_tag = target.parentElement.tagName;
if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName;
}
var checker = 'checked';
if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') {
if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG);
return false;
}else {exception_tags = exception_tags + 'IMG,';}
checker = '';
if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') {
if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO);
return false;
}else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';}
checker = 'checked';
if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') {
if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A);
return false;
}else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";}checker = 'checked';
if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" || clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') {
if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB);
return false;
}else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';}
checker = 'checked';
if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') {
if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT);
return false;
}else {exception_tags = exception_tags + 'INPUT,PASSWORD,';}
checker = 'checked';
if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') {
if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H);
return false;
}else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';}
checker = 'checked';
if (clickedTag == "TEXTAREA" && checker == 'checked') {
if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA);
return false;
}else {exception_tags = exception_tags + 'TEXTAREA,';}
checker = 'checked';
if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') {
if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces);
return false;
}
else
{
if (exception_tags.indexOf(clickedTag)!=-1)
{
return true;
}
else
return false;
}
}
function disable_drag_images(e)
{
wccp_pro_log_to_console_if_allowed("function", "disable_drag_images");
var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
var target = e.target || e.srcElement;
//For contenteditable tags
if (apply_class_exclusion(e) == "Yes") return true;var elemtype = e.target.nodeName;
if (elemtype != "IMG") {return;}
elemtype = elemtype.toUpperCase();
var disable_drag_drop_images = 'checked';
if (disable_drag_drop_images != "checked") return true;
if (window.location.href.indexOf("/user/") > -1) {
return true; //To allow users to drag & drop images when editing thier profiles
}
show_wccp_pro_message(alertMsg_IMG);
return false;
}
var alertMsg_IMG = "Alert: Protected image";
var alertMsg_A = "Alert: This link is protected";
var alertMsg_PB = "Alert: Right click on text is disabled";
var alertMsg_INPUT = "Alert: Right click is disabled";
var alertMsg_H = "Alert: Right click on headlines is disabled";
var alertMsg_TEXTAREA = "Alert: Right click is disabled";
var alertMsg_EmptySpaces = "Alert: Right click on empty spaces is disabled";
var alertMsg_VIDEO = "Alert: Right click on videos is disabled";
document.oncontextmenu=null;
document.oncontextmenu = nocontext;
document.addEventListener("contextmenu",nocontext);
window.addEventListener("contextmenu",nocontext);
document.ondragstart = disable_drag_images;
jQuery(document).ready(function(){
jQuery('img').each(function() {
jQuery(this).attr('draggable', false);
});
});
function wccp_pro_msieversion()
{
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE");
var msie2 = ua.indexOf("Edge");
var msie3 = ua.indexOf("Trident");if (msie > -1 || msie2 > -1 || msie3 > -1) // If Internet Explorer, return version number
{
return "IE";
}
else // If another browser, return 0
{
return "otherbrowser";
}
}
var e = document.getElementsByTagName('H1')[0];
if(e && wccp_pro_msieversion() == "IE")
{
e.setAttribute('unselectable',"on");
}
function copyToClipboard(elem) {
// create hidden text element, if it doesn't already exist
var targetId = "_wccp_pro_hiddenCopyText_";
{
// must use a temporary form element for the selection and copy
target = document.getElementById(targetId);
if (!target) {
var target = document.createElement("textarea");
target.style.position = "absolute";
target.style.left = "-9999px";
target.style.top = "0";
target.id = targetId;
document.body.appendChild(target);
}
target.textContent = elem.textContent;
}
// select the content
var currentFocus = document.activeElement;
target.focus();
target.setSelectionRange(0, target.value.length);
// copy the selection
var succeed;
try {
succeed = document.execCommand("copy");
} catch(e) {
succeed = false;
}// restore original focus
if (currentFocus && typeof currentFocus.focus === "function") {
currentFocus.focus();
}
// clear temporary content
target.textContent = "";
document.getElementsByTagName('span')[0].innerHTML = " ";
return succeed;
}
/**************************************************/
function wccp_pro_log_to_console_if_allowed(title = "title", data = "")
{
var myName = "";
if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString();
myName = myName.substr('function '.length);
myName = myName.substr(0, myName.indexOf('('));//console.log("function_name: " + myName);
}
/**************************************************/
function fallbackCopyTextToClipboard(text) {
var textArea = document.createElement("textarea");
textArea.value = text;
document.body.appendChild(textArea);
textArea.focus();
textArea.select();try {
var successful = document.execCommand("copy");
var msg = successful ? "successful" : "unsuccessful";
console.log("Fallback: Copying text command was " + msg);
} catch (err) {
console.error("Fallback: Oops, unable to copy", err);
}document.body.removeChild(textArea);
}
/*****************************************/
function copyTextToClipboard(text) {
if (!navigator.clipboard) {
fallbackCopyTextToClipboard(text);
return;
}
navigator.clipboard.writeText(text).then(
function() {
console.log("Async: Copying to clipboard was successful!");
},
function(err) {
console.error("Async: Could not copy text: ", err);
}
);
}
/*****************************************/
/*getSelectionTextAndContainerElement*/
function getSelectionTextAndContainerElement()
{
var text = "", containerElement = null;
if (typeof window.getSelection != "undefined") {
var sel = window.getSelection();
if (sel.rangeCount) {
var node = sel.getRangeAt(0).commonAncestorContainer;
containerElement = node.nodeType == 1 ? node : node.parentNode;
if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement;
text = sel.toString();
}
} else if (typeof document.selection != "undefined" && document.selection.type != "Control")
{
var textRange = document.selection.createRange();
containerElement = textRange.parentElement();
text = textRange.text;
}
return {
text: text,
containerElement: containerElement
};
}function getSelectionParentElement() {
var parentEl = null, sel;
if (window.getSelection) {
sel = window.getSelection();
if (sel.rangeCount) {
parentEl = sel.getRangeAt(0).commonAncestorContainer;
//sel.getRangeAt(0).startContainer.parentNode;
if (parentEl.nodeType != 1) {
parentEl = parentEl.parentNode;
}
}
} else if ( (sel = document.selection) && sel.type != "Control") {
parentEl = sel.createRange().parentElement();
}
let arr = new Array();
arr["nodeName"] = "cant_find_parent_element";
if(parentEl != null)
return parentEl;
else
return arr;
}
/*****************************************/
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
/*****************************************/
function apply_class_exclusion(e)
{
wccp_pro_log_to_console_if_allowed("function", "apply_class_exclusion" + e);
var my_return = 'No';
var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
var target = e.target || e.srcElement || 'nothing';
//if(target.parentElement != null) console.log (target.parentElement.className);
var excluded_classes = '' + '';
var class_to_exclude = "";
if(target.parentElement != null)
{
class_to_exclude = target.className + ' ' + target.parentElement.className || '';
}else{
class_to_exclude = target.className;
}
var class_to_exclude_array = Array();
//console.log(class_to_exclude);
if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" ");
//console.log (class_to_exclude_array);
class_to_exclude_array.forEach(function(item)
{
if(item != '' && excluded_classes.indexOf(item)>=0)
{
target.style.cursor = "text";
console.log ('Yes');
my_return = 'Yes';
}
});try {
class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || '';
}
catch(err)
{
class_to_exclude = '';
}
if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0)
{
target.style.cursor = "text";
my_return = 'Yes';
}return my_return;
}
Skip to content Καλώς ήρθατε στην ηλεκτρονική πλατφόρμα οπού μπορείτε να κατεβάσετε ή να παραγγείλετε εκτυπώσεις από τις εκδηλώσεις που έχουμε αναλάβει.
Σε περίπτωση που χρειάζεστε βοήθεια, δείτε τον οδηγό μας εδώ.
Φωτογραφίες από της παράστασης χορού με επιρροές από την ιαπωνική μυθολογία της σχολής Dancespace Μαρία Γαδετσάκη που έγινε στα Τρίκαλα.
Φωτογραφίες από της παράστασης χορού Block 172 της σχολής Dancespace Μαρία Γαδετσάκη που έγινε στα Τρίκαλα. Μπορείτε να επιλέξετε και να κατεβάσετε τις φωτογραφίες που σας ενδιαφέρουν.
Φωτογραφίες από τις πρόβες της παράστασης χορού της σχολής Dancespace Μαρία Γαδετσάκη που έγινε στα Τρίκαλα.
error: Alert: Content selection is disabled!!
!function(){"use strict";if("querySelector"in document&&"addEventListener"in window){var e=document.body;e.addEventListener("mousedown",function(){e.classList.add("using-mouse")}),e.addEventListener("keydown",function(){e.classList.remove("using-mouse")})}}();
var timeout_result;
function show_wccp_pro_message(smessage="", style="")
{
wccp_pro_log_to_console_if_allowed("function", "show_wccp_pro_message" + smessage);
timeout = 3000;
if(style == "") style = "warning-wpcp";
if (smessage !== "" && timeout!=0)
{
var smessage_text = smessage;
jquery_fadeTo();
document.getElementById("wpcp-error-message").innerHTML = smessage_text;
document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style;
clearTimeout(timeout_result);
timeout_result = setTimeout(hide_message, timeout);
}
else
{
clearTimeout(timeout_result);
timeout_result = setTimeout(hide_message, timeout);
}
}
function hide_message()
{
jquery_fadeOut();
document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme";
}
function jquery_fadeTo()
{
try {
jQuery("#wccp_pro_mask").fadeTo("slow", 0.3);
}
catch(err) {
//alert(err.message);
}
}
function jquery_fadeOut()
{
try {
jQuery("#wccp_pro_mask").fadeOut( "slow" );
}
catch(err) {}
}
https://orders.snapix.gr/wp-content/plugins/gp-premium/menu-plus/functions/js/sticky.js
https://orders.snapix.gr/wp-includes/js/underscore.min.js
https://orders.snapix.gr/wp-includes/js/backbone.min.js
var Ngg_Pro_Cart_Settings = {"currency_format":"<i class='fa fa-eur'><\/i> %.2f","checkout_url":"https:\/\/orders.snapix.gr\/shopping-cart\/","use_cookies":"false","country_list_json_url":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/nextgen-gallery-pro\/modules\/ecommerce\/static\/country_list.json","i18n":{"image_header":"Image","quantity_header":"Quantity","item_header":"Description","crop_button":"Edit Crop","crop_button_close":"Save Crop","price_header":"Price","total_header":"Totals","subtotal":"Subtotal:","shipping":"Shipping:","total":"Total:","no_items":"There have been no items added to your cart.","continue_shopping":"Continue shopping","empty_cart":"Empty cart","ship_to":"Ship to:","ship_via":"Ship via:","ship_elsewhere":"International","tax":"Tax:","update_shipping":"Update shipping & taxes","coupon_undiscounted_subtotal":"Subtotal before discount:","coupon_discount_amount":"Discount:","coupon_placeholder":"Coupon code","coupon_apply":"Apply","coupon_notice":"Coupon has been applied","shipping_name_label":"Full Name","shipping_name_tip":"Full Name","shipping_email_label":"Email","shipping_email_tip":"Email","shipping_street_address_label":"Address Line 1","shipping_street_address_tip":"Address Line 1","shipping_address_line_label":"Address Line 2","shipping_address_line_tip":"Address Line 2","shipping_city_label":"City","shipping_city_tip":"City","shipping_country_label":"Country","shipping_country_tip":"Country","shipping_state_label":"State \/ Region","shipping_state_tip":"State \/ Region","shipping_zip_label":"Postal Code","shipping_zip_tip":"Zip \/ Postal Code","shipping_phone_label":"Phone","shipping_phone_tip":"Phone","unshippable":"We're sorry, but one or more items you've selected cannot be shipped to this country.","tbd":"Please Add Address","select_country":"Select Country","select_region":"Select Region","error_empty":"%s cannot be empty.","error_minimum":"%s needs to be at least %s characters.","error_invalid":"%s is in an invalid format.","error_form_invalid":"Form contains errors, please correct all errors before submitting the order.","calculating":"Calculating...","pay_with_card":"Pay with Card","cancel_payment":"Cancel","choose_payment_method":"Choose method","submit_in_progress":"Processing...","submit_payment":"Submit order","button_text":"Free checkout","processing_msg":"Processing...","headline":"Shipping information","button_text_submit":"Place order","button_text_cancel":"Cancel","field_name":"Name","field_email":"Email","field_address":"Address","field_city":"City","field_state":"State","field_postal":"Zip","field_country":"Country"},"sources":{"ngg_whcc_pricelist":true,"ngg_manual_pricelist":false,"ngg_digital_downloads":false}};
var Ngg_Pro_Cart_Settings = {"currency_format":"<i class='fa fa-eur'><\/i> %.2f","checkout_url":"https:\/\/orders.snapix.gr\/shopping-cart\/","use_cookies":"false","country_list_json_url":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/nextgen-gallery-pro\/modules\/ecommerce\/static\/country_list.json","i18n":{"image_header":"Image","quantity_header":"Quantity","item_header":"Description","crop_button":"Edit Crop","crop_button_close":"Save Crop","price_header":"Price","total_header":"Totals","subtotal":"Subtotal:","shipping":"Shipping:","total":"Total:","no_items":"There have been no items added to your cart.","continue_shopping":"Continue shopping","empty_cart":"Empty cart","ship_to":"Ship to:","ship_via":"Ship via:","ship_elsewhere":"International","tax":"Tax:","update_shipping":"Update shipping & taxes","coupon_undiscounted_subtotal":"Subtotal before discount:","coupon_discount_amount":"Discount:","coupon_placeholder":"Coupon code","coupon_apply":"Apply","coupon_notice":"Coupon has been applied","shipping_name_label":"Full Name","shipping_name_tip":"Full Name","shipping_email_label":"Email","shipping_email_tip":"Email","shipping_street_address_label":"Address Line 1","shipping_street_address_tip":"Address Line 1","shipping_address_line_label":"Address Line 2","shipping_address_line_tip":"Address Line 2","shipping_city_label":"City","shipping_city_tip":"City","shipping_country_label":"Country","shipping_country_tip":"Country","shipping_state_label":"State \/ Region","shipping_state_tip":"State \/ Region","shipping_zip_label":"Postal Code","shipping_zip_tip":"Zip \/ Postal Code","shipping_phone_label":"Phone","shipping_phone_tip":"Phone","unshippable":"We're sorry, but one or more items you've selected cannot be shipped to this country.","tbd":"Please Add Address","select_country":"Select Country","select_region":"Select Region","error_empty":"%s cannot be empty.","error_minimum":"%s needs to be at least %s characters.","error_invalid":"%s is in an invalid format.","error_form_invalid":"Form contains errors, please correct all errors before submitting the order.","calculating":"Calculating...","pay_with_card":"Pay with Card","cancel_payment":"Cancel","choose_payment_method":"Choose method","submit_in_progress":"Processing...","submit_payment":"Submit order","button_text":"Free checkout","processing_msg":"Processing...","headline":"Shipping information","button_text_submit":"Place order","button_text_cancel":"Cancel","field_name":"Name","field_email":"Email","field_address":"Address","field_city":"City","field_state":"State","field_postal":"Zip","field_country":"Country"},"sources":{"ngg_whcc_pricelist":true,"ngg_manual_pricelist":false,"ngg_digital_downloads":false}};
var Ngg_Pro_Cart_Settings = {"currency_format":"<i class='fa fa-eur'><\/i> %.2f","checkout_url":"https:\/\/orders.snapix.gr\/shopping-cart\/","use_cookies":"false","country_list_json_url":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/nextgen-gallery-pro\/modules\/ecommerce\/static\/country_list.json","i18n":{"image_header":"Image","quantity_header":"Quantity","item_header":"Description","crop_button":"Edit Crop","crop_button_close":"Save Crop","price_header":"Price","total_header":"Totals","subtotal":"Subtotal:","shipping":"Shipping:","total":"Total:","no_items":"There have been no items added to your cart.","continue_shopping":"Continue shopping","empty_cart":"Empty cart","ship_to":"Ship to:","ship_via":"Ship via:","ship_elsewhere":"International","tax":"Tax:","update_shipping":"Update shipping & taxes","coupon_undiscounted_subtotal":"Subtotal before discount:","coupon_discount_amount":"Discount:","coupon_placeholder":"Coupon code","coupon_apply":"Apply","coupon_notice":"Coupon has been applied","shipping_name_label":"Full Name","shipping_name_tip":"Full Name","shipping_email_label":"Email","shipping_email_tip":"Email","shipping_street_address_label":"Address Line 1","shipping_street_address_tip":"Address Line 1","shipping_address_line_label":"Address Line 2","shipping_address_line_tip":"Address Line 2","shipping_city_label":"City","shipping_city_tip":"City","shipping_country_label":"Country","shipping_country_tip":"Country","shipping_state_label":"State \/ Region","shipping_state_tip":"State \/ Region","shipping_zip_label":"Postal Code","shipping_zip_tip":"Zip \/ Postal Code","shipping_phone_label":"Phone","shipping_phone_tip":"Phone","unshippable":"We're sorry, but one or more items you've selected cannot be shipped to this country.","tbd":"Please Add Address","select_country":"Select Country","select_region":"Select Region","error_empty":"%s cannot be empty.","error_minimum":"%s needs to be at least %s characters.","error_invalid":"%s is in an invalid format.","error_form_invalid":"Form contains errors, please correct all errors before submitting the order.","calculating":"Calculating...","pay_with_card":"Pay with Card","cancel_payment":"Cancel","choose_payment_method":"Choose method","submit_in_progress":"Processing...","submit_payment":"Submit order","button_text":"Free checkout","processing_msg":"Processing...","headline":"Shipping information","button_text_submit":"Place order","button_text_cancel":"Cancel","field_name":"Name","field_email":"Email","field_address":"Address","field_city":"City","field_state":"State","field_postal":"Zip","field_country":"Country"},"sources":{"ngg_whcc_pricelist":true,"ngg_manual_pricelist":false,"ngg_digital_downloads":false}};
var Ngg_Pro_Cart_Settings = {"currency_format":"<i class='fa fa-eur'><\/i> %.2f","checkout_url":"https:\/\/orders.snapix.gr\/shopping-cart\/","use_cookies":"false","country_list_json_url":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/nextgen-gallery-pro\/modules\/ecommerce\/static\/country_list.json","i18n":{"image_header":"Image","quantity_header":"Quantity","item_header":"Description","crop_button":"Edit Crop","crop_button_close":"Save Crop","price_header":"Price","total_header":"Totals","subtotal":"Subtotal:","shipping":"Shipping:","total":"Total:","no_items":"There have been no items added to your cart.","continue_shopping":"Continue shopping","empty_cart":"Empty cart","ship_to":"Ship to:","ship_via":"Ship via:","ship_elsewhere":"International","tax":"Tax:","update_shipping":"Update shipping & taxes","coupon_undiscounted_subtotal":"Subtotal before discount:","coupon_discount_amount":"Discount:","coupon_placeholder":"Coupon code","coupon_apply":"Apply","coupon_notice":"Coupon has been applied","shipping_name_label":"Full Name","shipping_name_tip":"Full Name","shipping_email_label":"Email","shipping_email_tip":"Email","shipping_street_address_label":"Address Line 1","shipping_street_address_tip":"Address Line 1","shipping_address_line_label":"Address Line 2","shipping_address_line_tip":"Address Line 2","shipping_city_label":"City","shipping_city_tip":"City","shipping_country_label":"Country","shipping_country_tip":"Country","shipping_state_label":"State \/ Region","shipping_state_tip":"State \/ Region","shipping_zip_label":"Postal Code","shipping_zip_tip":"Zip \/ Postal Code","shipping_phone_label":"Phone","shipping_phone_tip":"Phone","unshippable":"We're sorry, but one or more items you've selected cannot be shipped to this country.","tbd":"Please Add Address","select_country":"Select Country","select_region":"Select Region","error_empty":"%s cannot be empty.","error_minimum":"%s needs to be at least %s characters.","error_invalid":"%s is in an invalid format.","error_form_invalid":"Form contains errors, please correct all errors before submitting the order.","calculating":"Calculating...","pay_with_card":"Pay with Card","cancel_payment":"Cancel","choose_payment_method":"Choose method","submit_in_progress":"Processing...","submit_payment":"Submit order","button_text":"Free checkout","processing_msg":"Processing...","headline":"Shipping information","button_text_submit":"Place order","button_text_cancel":"Cancel","field_name":"Name","field_email":"Email","field_address":"Address","field_city":"City","field_state":"State","field_postal":"Zip","field_country":"Country"},"sources":{"ngg_whcc_pricelist":true,"ngg_manual_pricelist":false,"ngg_digital_downloads":false}};
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/ecommerce/static/cart.js
var smooth = {"elements":[".smooth-scroll","li.smooth-scroll a"],"duration":"800"};
https://orders.snapix.gr/wp-content/plugins/gp-premium/general/js/smooth-scroll.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/nextgen_pro_lightbox/static/nextgen_pro_lightbox.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/nextgen_pro_lightbox/static/theme/galleria.nextgen_pro_lightbox.js
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/ecommerce/static/lightbox_overrides.js
var ngg_proofing_settings = {"active_color":""};
https://orders.snapix.gr/wp-content/plugins/nextgen-gallery-pro/modules/nextgen_pro_proofing/static/lightbox_overrides.js
var generatepressMenu = {"toggleOpenedSubMenus":"1","openSubMenuLabel":"Open Sub-Menu","closeSubMenuLabel":"Close Sub-Menu"};
https://orders.snapix.gr/wp-content/themes/generatepress/assets/js/menu.js
var generatepressNavSearch = {"open":"Open Search Bar","close":"Close Search Bar"};
https://orders.snapix.gr/wp-content/themes/generatepress/assets/js/navigation-search.js
var generatepressBackToTop = {"smooth":"1"};
https://orders.snapix.gr/wp-content/themes/generatepress/assets/js/back-to-top.js
window.ASL = typeof window.ASL !== 'undefined' ? window.ASL : {}; window.ASL.wp_rocket_exception = "DOMContentLoaded"; window.ASL.ajaxurl = "https:\/\/orders.snapix.gr\/wp-admin\/admin-ajax.php"; window.ASL.backend_ajaxurl = "https:\/\/orders.snapix.gr\/wp-admin\/admin-ajax.php"; window.ASL.js_scope = "jQuery"; window.ASL.asl_url = "https:\/\/orders.snapix.gr\/wp-content\/plugins\/ajax-search-lite\/"; window.ASL.detect_ajax = 1; window.ASL.media_query = 4760; window.ASL.version = 4760; window.ASL.pageHTML = ""; window.ASL.additional_scripts = [{"handle":"wd-asl-ajaxsearchlite","src":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/ajax-search-lite\/js\/min\/plugin\/optimized\/asl-prereq.js","prereq":[]},{"handle":"wd-asl-ajaxsearchlite-core","src":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/ajax-search-lite\/js\/min\/plugin\/optimized\/asl-core.js","prereq":[]},{"handle":"wd-asl-ajaxsearchlite-vertical","src":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/ajax-search-lite\/js\/min\/plugin\/optimized\/asl-results-vertical.js","prereq":["wd-asl-ajaxsearchlite"]},{"handle":"wd-asl-ajaxsearchlite-load","src":"https:\/\/orders.snapix.gr\/wp-content\/plugins\/ajax-search-lite\/js\/min\/plugin\/optimized\/asl-load.js","prereq":["wd-asl-ajaxsearchlite-vertical"]}]; window.ASL.script_async_load = false; window.ASL.init_only_in_viewport = true; window.ASL.font_url = "https:\/\/orders.snapix.gr\/wp-content\/plugins\/ajax-search-lite\/css\/fonts\/icons2.woff2"; window.ASL.css_async = false; window.ASL.highlight = {"enabled":false,"data":[]}; window.ASL.analytics = {"method":0,"tracking_id":"","string":"?ajax_search={asl_term}","event":{"focus":{"active":1,"action":"focus","category":"ASL","label":"Input focus","value":"1"},"search_start":{"active":0,"action":"search_start","category":"ASL","label":"Phrase: {phrase}","value":"1"},"search_end":{"active":1,"action":"search_end","category":"ASL","label":"{phrase} | {results_count}","value":"1"},"magnifier":{"active":1,"action":"magnifier","category":"ASL","label":"Magnifier clicked","value":"1"},"return":{"active":1,"action":"return","category":"ASL","label":"Return button pressed","value":"1"},"facet_change":{"active":0,"action":"facet_change","category":"ASL","label":"{option_label} | {option_value}","value":"1"},"result_click":{"active":1,"action":"result_click","category":"ASL","label":"{result_title} | {result_url}","value":"1"}}};
window.ASL_INSTANCES = [];window.ASL_INSTANCES[1] = {"homeurl":"https:\/\/orders.snapix.gr\/","resultstype":"vertical","resultsposition":"hover","itemscount":4,"charcount":0,"highlight":0,"highlightwholewords":1,"singleHighlight":0,"scrollToResults":{"enabled":0,"offset":0},"resultareaclickable":1,"autocomplete":{"enabled":0,"lang":"en","trigger_charcount":0},"mobile":{"menu_selector":"#menu-toggle"},"trigger":{"click":"results_page","click_location":"same","update_href":0,"return":"results_page","return_location":"same","facet":1,"type":1,"redirect_url":"?s={phrase}","delay":300},"animations":{"pc":{"settings":{"anim":"fadedrop","dur":300},"results":{"anim":"fadedrop","dur":300},"items":"voidanim"},"mob":{"settings":{"anim":"fadedrop","dur":300},"results":{"anim":"fadedrop","dur":300},"items":"voidanim"}},"autop":{"state":"disabled","phrase":"","count":1},"resPage":{"useAjax":0,"selector":"#main","trigger_type":1,"trigger_facet":1,"trigger_magnifier":0,"trigger_return":0},"resultsSnapTo":"left","results":{"width":"auto","width_tablet":"auto","width_phone":"auto"},"settingsimagepos":"right","closeOnDocClick":1,"overridewpdefault":1,"override_method":"get"};
https://orders.snapix.gr/wp-content/plugins/ajax-search-lite/js/min/plugin/optimized/asl-prereq.js
https://orders.snapix.gr/wp-content/plugins/ajax-search-lite/js/min/plugin/optimized/asl-core.js
https://orders.snapix.gr/wp-content/plugins/ajax-search-lite/js/min/plugin/optimized/asl-results-vertical.js
https://orders.snapix.gr/wp-content/plugins/ajax-search-lite/js/min/plugin/optimized/asl-load.js
https://orders.snapix.gr/wp-content/plugins/ajax-search-lite/js/min/plugin/optimized/asl-wrapper.js
var ajax_object = {"ajaxurl":"https:\/\/orders.snapix.gr\/wp-admin\/admin-ajax.php","link":"https:\/\/orders.snapix.gr\/"};
https://orders.snapix.gr/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js
_stq = window._stq || [];
_stq.push([ "view", {v:'ext',blog:'176793547',post:'0',tz:'0',srv:'orders.snapix.gr',j:'1:12.6.1'} ]);
_stq.push([ "clickTrackerInit", "176793547", "0" ]);