ne of ZLIB_ENCODING_* constants. * @return string The compressed string. * @throws ZlibException * */ function gzcompress(string $data, int $level = -1, int $encoding = ZLIB_ENCODING_DEFLATE): string { error_clear_last(); $result = \gzcompress($data, $level, $encoding); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * This function returns a decoded version of the input * data. * * @param string $data The data to decode, encoded by gzencode. * @param int $length The maximum length of data to decode. * @return string The decoded string. * @throws ZlibException * */ function gzdecode(string $data, int $length = null): string { error_clear_last(); if ($length !== null) { $result = \gzdecode($data, $length); } else { $result = \gzdecode($data); } if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * This function compresses the given string using the DEFLATE * data format. * * For details on the DEFLATE compression algorithm see the document * "DEFLATE Compressed Data Format * Specification version 1.3" (RFC 1951). * * @param string $data The data to deflate. * @param int $level The level of compression. Can be given as 0 for no compression up to 9 * for maximum compression. If not given, the default compression level will * be the default compression level of the zlib library. * @param int $encoding One of ZLIB_ENCODING_* constants. * @return string The deflated string. * @throws ZlibException * */ function gzdeflate(string $data, int $level = -1, int $encoding = ZLIB_ENCODING_RAW): string { error_clear_last(); $result = \gzdeflate($data, $level, $encoding); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * This function returns a compressed version of the input * data compatible with the output of the * gzip program. * * For more information on the GZIP file format, see the document: * GZIP file format specification * version 4.3 (RFC 1952). * * @param string $data The data to encode. * @param int $level The level of compression. Can be given as 0 for no compression up to 9 * for maximum compression. If not given, the default compression level will * be the default compression level of the zlib library. * @param int $encoding_mode The encoding mode. Can be FORCE_GZIP (the default) * or FORCE_DEFLATE. * * Prior to PHP 5.4.0, using FORCE_DEFLATE results in * a standard zlib deflated string (inclusive zlib headers) after a gzip * file header but without the trailing crc32 checksum. * * In PHP 5.4.0 and later, FORCE_DEFLATE generates * RFC 1950 compliant output, consisting of a zlib header, the deflated * data, and an Adler checksum. * @return string The encoded string. * @throws ZlibException * */ function gzencode(string $data, int $level = -1, int $encoding_mode = FORCE_GZIP): string { error_clear_last(); $result = \gzencode($data, $level, $encoding_mode); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Gets a (uncompressed) string of up to length - 1 bytes read from the given * file pointer. Reading ends when length - 1 bytes have been read, on a * newline, or on EOF (whichever comes first). * * @param resource $zp The gz-file pointer. It must be valid, and must point to a file * successfully opened by gzopen. * @param int $length The length of data to get. * @return string The uncompressed string. * @throws ZlibException * */ function gzgets($zp, int $length = null): string { error_clear_last(); if ($length !== null) { $result = \gzgets($zp, $length); } else { $result = \gzgets($zp); } if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Identical to gzgets, except that * gzgetss attempts to strip any HTML and PHP * tags from the text it reads. * * @param resource $zp The gz-file pointer. It must be valid, and must point to a file * successfully opened by gzopen. * @param int $length The length of data to get. * @param string $allowable_tags You can use this optional parameter to specify tags which should not * be stripped. * @return string The uncompressed and stripped string. * @throws ZlibException * */ function gzgetss($zp, int $length, string $allowable_tags = null): string { error_clear_last(); if ($allowable_tags !== null) { $result = \gzgetss($zp, $length, $allowable_tags); } else { $result = \gzgetss($zp, $length); } if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * This function inflates a deflated string. * * @param string $data The data compressed by gzdeflate. * @param int $length The maximum length of data to decode. * @return string The original uncompressed data. * * The function will return an error if the uncompressed data is more than * 32768 times the length of the compressed input data * or more than the optional parameter length. * @throws ZlibException * */ function gzinflate(string $data, int $length = 0): string { error_clear_last(); $result = \gzinflate($data, $length); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Reads to EOF on the given gz-file pointer from the current position and * writes the (uncompressed) results to standard output. * * @param resource $zp The gz-file pointer. It must be valid, and must point to a file * successfully opened by gzopen. * @return int The number of uncompressed characters read from gz * and passed through to the input. * @throws ZlibException * */ function gzpassthru($zp): int { error_clear_last(); $result = \gzpassthru($zp); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Sets the file position indicator of the given gz-file pointer to the * beginning of the file stream. * * @param resource $zp The gz-file pointer. It must be valid, and must point to a file * successfully opened by gzopen. * @throws ZlibException * */ function gzrewind($zp): void { error_clear_last(); $result = \gzrewind($zp); if ($result === false) { throw ZlibException::createFromPhpError(); } } /** * This function uncompress a compressed string. * * @param string $data The data compressed by gzcompress. * @param int $length The maximum length of data to decode. * @return string The original uncompressed data. * * The function will return an error if the uncompressed data is more than * 32768 times the length of the compressed input data * or more than the optional parameter length. * @throws ZlibException * */ function gzuncompress(string $data, int $length = 0): string { error_clear_last(); $result = \gzuncompress($data, $length); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * * * @param resource $resource * @return int Returns number of bytes read so far. * @throws ZlibException * */ function inflate_get_read_len($resource): int { error_clear_last(); $result = \inflate_get_read_len($resource); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Usually returns either ZLIB_OK or ZLIB_STREAM_END. * * @param resource $resource * @return int Returns decompression status. * @throws ZlibException * */ function inflate_get_status($resource): int { error_clear_last(); $result = \inflate_get_status($resource); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Incrementally inflates encoded data in the specified context. * * Limitation: header information from GZIP compressed data are not made * available. * * @param resource $context A context created with inflate_init. * @param string $encoded_data A chunk of compressed data. * @param int $flush_mode One of ZLIB_BLOCK, * ZLIB_NO_FLUSH, * ZLIB_PARTIAL_FLUSH, * ZLIB_SYNC_FLUSH (default), * ZLIB_FULL_FLUSH, ZLIB_FINISH. * Normally you will want to set ZLIB_NO_FLUSH to * maximize compression, and ZLIB_FINISH to terminate * with the last chunk of data. See the zlib manual for a * detailed description of these constants. * @return string Returns a chunk of uncompressed data. * @throws ZlibException * */ function inflate_add($context, string $encoded_data, int $flush_mode = ZLIB_SYNC_FLUSH): string { error_clear_last(); $result = \inflate_add($context, $encoded_data, $flush_mode); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Initialize an incremental inflate context with the specified * encoding. * * @param int $encoding One of the ZLIB_ENCODING_* constants. * @param array $options An associative array which may contain the following elements: * * * level * * * The compression level in range -1..9; defaults to -1. * * * * * memory * * * The compression memory level in range 1..9; defaults to 8. * * * * * window * * * The zlib window size (logarithmic) in range 8..15; defaults to 15. * * * * * strategy * * * One of ZLIB_FILTERED, * ZLIB_HUFFMAN_ONLY, ZLIB_RLE, * ZLIB_FIXED or * ZLIB_DEFAULT_STRATEGY (the default). * * * * * dictionary * * * A string or an array of strings * of the preset dictionary (default: no preset dictionary). * * * * * * The compression level in range -1..9; defaults to -1. * * The compression memory level in range 1..9; defaults to 8. * * The zlib window size (logarithmic) in range 8..15; defaults to 15. * * One of ZLIB_FILTERED, * ZLIB_HUFFMAN_ONLY, ZLIB_RLE, * ZLIB_FIXED or * ZLIB_DEFAULT_STRATEGY (the default). * * A string or an array of strings * of the preset dictionary (default: no preset dictionary). * @return resource Returns an inflate context resource (zlib.inflate) on * success. * @throws ZlibException * */ function inflate_init(int $encoding, array $options = null) { error_clear_last(); $result = \inflate_init($encoding, $options); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Reads a file, decompresses it and writes it to standard output. * * readgzfile can be used to read a file which is not in * gzip format; in this case readgzfile will directly * read from the file without decompression. * * @param string $filename The file name. This file will be opened from the filesystem and its * contents written to standard output. * @param int $use_include_path You can set this optional parameter to 1, if you * want to search for the file in the include_path too. * @return int Returns the number of (uncompressed) bytes read from the file on success * @throws ZlibException * */ function readgzfile(string $filename, int $use_include_path = 0): int { error_clear_last(); $result = \readgzfile($filename, $use_include_path); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Uncompress any raw/gzip/zlib encoded data. * * @param string $data * @param int $max_decoded_len * @return string Returns the uncompressed data. * @throws ZlibException * */ function zlib_decode(string $data, int $max_decoded_len = null): string { error_clear_last(); if ($max_decoded_len !== null) { $result = \zlib_decode($data, $max_decoded_len); } else { $result = \zlib_decode($data); } if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; }{"id":9645,"date":"2014-02-19T12:32:21","date_gmt":"2014-02-19T10:32:21","guid":{"rendered":"https:\/\/andyandszerdi.wpmudev.host\/?p=9645"},"modified":"2015-01-31T21:39:21","modified_gmt":"2015-01-31T21:39:21","slug":"adventures-in-peru-the-sacred-valley","status":"publish","type":"post","link":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/","title":{"rendered":"Peru – The Sacred Valley"},"content":{"rendered":"

The Sacred Valley was our first port of call in Peru. From the research we did it seems many people fly through the Sacred Valley on their way to Macchu Picchu. We decided to base ourselves in the Incan town of Ollantaytambo and used it as our base to explore the Sacred Valley. The Sacred Valley was not only exquisitely beautiful with the bulging Urubamba river flowing through the green mountainous countryside but is\u00a0 also steeped in both Incan and colonial history. Our hostel was in an old Incan ruin and from our balcony we had views of the impressive Incan ruins that tourists flock to by the busful every day which were the location of last Incan stand against the blood thirsty Spanish. The town was remarkable and we spent ages just wandering around it looking at the impressive canal systems and gigantic Incan rock walls.<\/p>\n

\"Ollantaytambo-1\" \"Ollantaytambo-2\" \"Ollantaytambo-3\" \"Ollantaytambo-4\"<\/p>\n

Peru and Bolivia were both filled with some of the cutest dogs we have ever seen! This little guy particularly caught Andy’s attention.<\/p>\n

\"Ollantaytambo-5\" \"Ollantaytambo-6\" \"Ollantaytambo-7\" \"Ollantaytambo-8\" \"Ollantaytambo-9\" \"Ollantaytambo-10\" \"Ollantaytambo-11\"<\/p>\n

The centuries old canals built by the Incans and still flow with water.<\/p>\n

\"Ollantaytambo-12\" \"Ollantaytambo-13\" \"Ollantaytambo-14\" \"Ollantaytambo-15\" \"Ollantaytambo-16\" \"Ollantaytambo-17\" \"Ollantaytambo-18\"<\/p>\n

Most houses have these two bulls on top of them. These were originally llamas but were changed to bulls and became Catholic symbols\u00a0 after the Spanish invaded. They are supposed to guard the house and protect it from the “evil eye”.<\/p>\n

\"Ollantaytambo-19\" \"Ollantaytambo-20\" \"Ollantaytambo-21\"<\/p>\n

We left exploring the city’s ruins till late afternoon when many of the dozens of tourist busses which pour in on the hour every hour had left so although it was getting a bit dark, we largely had the ruins to ourselves which was great for all our photos as hoardes of American and Japenese tourists generally ruin pics for us ;)<\/p>\n

\"Ollantaytambo-22\" \"Ollantaytambo-23\" \"Ollantaytambo-24\" \"Ollantaytambo-25\" \"Ollantaytambo-26\" \"Ollantaytambo-27\"<\/p>\n

The insane Incan brickwork has still not been replicated even with the use of modern technology. Some rocks are fused so perfectly that you caneven slip a piece of paper between the seams!<\/p>\n

\"Ollantaytambo-28\" \"Ollantaytambo-29\" \"Ollantaytambo-30\" \"Ollantaytambo-31\" \"Ollantaytambo-32\" \"Ollantaytambo-33\"View of Ollantaytambo town from the ruins. This was definitely one of our favourite towns we stayed in on our trip. \"Ollantaytambo-34\" \"Ollantaytambo-35\" \"Ollantaytambo-36\" \"Ollantaytambo-37\" \"Ollantaytambo-38\" \"Ollantaytambo-39\" \"Ollantaytambo-40\" \"Ollantaytambo-41\" \"Ollantaytambo-43\" \"Ollantaytambo-44\" \"Ollantaytambo-45\" \"Ollantaytambo-46\" \"Ollantaytambo-47\" \"Ollantaytambo-48\" \"Ollantaytambo-49\" \"Ollantaytambo-50\" \"Ollantaytambo-51\" \"Ollantaytambo-52\" \"Ollantaytambo-53\" \"Ollantaytambo-54\" \"Ollantaytambo-55\" The salt pans of Maras in the Sacred Valley was somewhere we were dying to see! From all the pics we had seen it was a surreal white landscape where farmers had been harvesting salt for centuries. What we didnt realise was during the rainy season(which is when we were there),\u00a0 the\u00a0 sheer white salt pans go orange with the mud that flows down in the rain from the surrounding hills. Despite not having the white terraces we had pictured, they were still something remarkable to see in real life and had their own orangey beauty to them! \"SacredValley-3\"\"SacredValley-2\"\u00a0 \"SacredValley-4\" \"SacredValley-5\" \"SacredValley-6\" \"SacredValley-8\" \"SacredValley-9\"Andy sampling the salty spring water from which the salt is harvested. In case you were wondering, yup, it was pretty damn salty! \"SacredValley-10\" \"SacredValley-11\" \"SacredValley-12\" \"SacredValley-13\" \"SacredValley-14\" \"SacredValley-15\" \"SacredValley-16\" The Incan ruins of Moray were probably some of the most unusual and spectacular that we had seen! The purpose of this butternut shaped series of terraces is believed to have been and agricultural experiment. The largest of the depressions\u00a0 is about 30\u00a0m deep. Apparently the depth and orientation of these terraces with respect to wind and sun creates a temperature difference of as much as 15 \u00b0C between the top and bottom. This large temperature difference was possibly used by the Inca to study the effects of different climatic conditions on crops. Truly amazing stuff!\"SacredValley-17\" \"SacredValley-18\" \"SacredValley-21\" \"SacredValley-22\" \"SacredValley-23\" \"SacredValley-24\" \"SacredValley-25\" \"SacredValley-26\" \"SacredValley-27\" \"SacredValley-29\" \"SacredValley-30\" \"SacredValley-31\" \"SacredValley-32\" \"SacredValley-33\"Andy will kill me for putting up this photographic evidence of this hat that he quickly whipped off whenever I aimed my camera in his direction! \"SacredValley-34\" \"SacredValley-35\"Potato flowers. \"SacredValley-36\" \"SacredValley-37\" \"SacredValley-38\" \"SacredValley-39\" \"SacredValley-40\" \"SacredValley-41\" \"SacredValley-42\" \"SacredValley-43\"<\/p>\n","protected":false},"excerpt":{"rendered":"

The Sacred Valley was our first port of call in Peru. From the research we<\/p>\n","protected":false},"author":3,"featured_media":35770,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"advgb_blocks_editor_width":"","advgb_blocks_columns_visual_guide":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[12],"tags":[],"class_list":["post-9645","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-adventures-travel-photography"],"acf":[],"yoast_head":"\nPeru - The Sacred Valley - Andy & Szerdi Photography<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Peru - The Sacred Valley - Andy & Szerdi Photography\" \/>\n<meta property=\"og:description\" content=\"The Sacred Valley was our first port of call in Peru. From the research we\" \/>\n<meta property=\"og:url\" content=\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/\" \/>\n<meta property=\"og:site_name\" content=\"Andy & Szerdi Photography\" \/>\n<meta property=\"article:published_time\" content=\"2014-02-19T10:32:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-01-31T21:39:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"427\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Szerdi\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Szerdi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/\",\"url\":\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/\",\"name\":\"Peru - The Sacred Valley - Andy & Szerdi Photography\",\"isPartOf\":{\"@id\":\"https:\/\/andyandszerdi.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg\",\"datePublished\":\"2014-02-19T10:32:21+00:00\",\"dateModified\":\"2015-01-31T21:39:21+00:00\",\"author\":{\"@id\":\"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7\"},\"breadcrumb\":{\"@id\":\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#primaryimage\",\"url\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg\",\"contentUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg\",\"width\":640,\"height\":427},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/andyandszerdi.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Peru – The Sacred Valley\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/andyandszerdi.com\/#website\",\"url\":\"https:\/\/andyandszerdi.com\/\",\"name\":\"Andy & Szerdi Photography\",\"description\":\"Destination Wedding Photographers and Videographers\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/andyandszerdi.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7\",\"name\":\"Szerdi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/andyandszerdi.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/andyandszerdi.com\/wp-content\/wphb-cache\/gravatar\/b0b\/b0bfc7bd6510f22e6eefc0dfe5e1ae3cx96.jpg\",\"contentUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/wphb-cache\/gravatar\/b0b\/b0bfc7bd6510f22e6eefc0dfe5e1ae3cx96.jpg\",\"caption\":\"Szerdi\"},\"url\":\"https:\/\/andyandszerdi.com\/author\/szerdi\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Peru - The Sacred Valley - Andy & Szerdi Photography","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/","og_locale":"en_US","og_type":"article","og_title":"Peru - The Sacred Valley - Andy & Szerdi Photography","og_description":"The Sacred Valley was our first port of call in Peru. From the research we","og_url":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/","og_site_name":"Andy & Szerdi Photography","article_published_time":"2014-02-19T10:32:21+00:00","article_modified_time":"2015-01-31T21:39:21+00:00","og_image":[{"width":640,"height":427,"url":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg","type":"image\/jpeg"}],"author":"Szerdi","twitter_misc":{"Written by":"Szerdi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/","url":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/","name":"Peru - The Sacred Valley - Andy & Szerdi Photography","isPartOf":{"@id":"https:\/\/andyandszerdi.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#primaryimage"},"image":{"@id":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#primaryimage"},"thumbnailUrl":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg","datePublished":"2014-02-19T10:32:21+00:00","dateModified":"2015-01-31T21:39:21+00:00","author":{"@id":"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7"},"breadcrumb":{"@id":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#primaryimage","url":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg","contentUrl":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg","width":640,"height":427},{"@type":"BreadcrumbList","@id":"https:\/\/andyandszerdi.com\/adventures-in-peru-the-sacred-valley\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/andyandszerdi.com\/"},{"@type":"ListItem","position":2,"name":"Peru – The Sacred Valley"}]},{"@type":"WebSite","@id":"https:\/\/andyandszerdi.com\/#website","url":"https:\/\/andyandszerdi.com\/","name":"Andy & Szerdi Photography","description":"Destination Wedding Photographers and Videographers","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/andyandszerdi.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7","name":"Szerdi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/andyandszerdi.com\/#\/schema\/person\/image\/","url":"https:\/\/andyandszerdi.com\/wp-content\/wphb-cache\/gravatar\/b0b\/b0bfc7bd6510f22e6eefc0dfe5e1ae3cx96.jpg","contentUrl":"https:\/\/andyandszerdi.com\/wp-content\/wphb-cache\/gravatar\/b0b\/b0bfc7bd6510f22e6eefc0dfe5e1ae3cx96.jpg","caption":"Szerdi"},"url":"https:\/\/andyandszerdi.com\/author\/szerdi\/"}]}},"author_meta":{"display_name":"Szerdi","author_link":"https:\/\/andyandszerdi.com\/author\/szerdi\/"},"featured_img":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2014\/02\/Ollantaytambo-211.jpg","coauthors":[],"tax_additional":{"categories":{"linked":["<a href=\"https:\/\/andyandszerdi.com\/category\/adventures-travel-photography\/\" class=\"advgb-post-tax-term\">Adventures<\/a>"],"unlinked":["<span class=\"advgb-post-tax-term\">Adventures<\/span>"]}},"comment_count":"0","relative_dates":{"created":"Posted 11 years ago","modified":"Updated 10 years ago"},"absolute_dates":{"created":"Posted on February 19, 2014","modified":"Updated on January 31, 2015"},"absolute_dates_time":{"created":"Posted on February 19, 2014 12:32 pm","modified":"Updated on January 31, 2015 9:39 pm"},"featured_img_caption":"","series_order":"","_links":{"self":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/posts\/9645","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/comments?post=9645"}],"version-history":[{"count":0,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/posts\/9645\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/media\/35770"}],"wp:attachment":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/media?parent=9645"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/categories?post=9645"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/tags?post=9645"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}