{"pages":{"start":[{"if":{"condition":"!window.setTimeout \/* MPEM::setTimeout v1.7 *\/","commands":[{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-1"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-2"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-3"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-4"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-5"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-6"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-7"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-8"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-9"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-10"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-11"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-12"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-13"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-14"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-15"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-16"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-17"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-18"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-19"}},{"audio.play":{"locator":"file:1-minute-of-silence.mp3","volume":0,"background":true,"id":"timer-20"}},{"eval":{"script":"\/\/ Init native timer emulation\r\n\/******************************\r\n *  CHANGE LOG\r\n * ****************************\r\n * \r\n * v1.7\r\n *   - Simplify timer functions\r\n * \r\n * v1.6\r\n *   - Allow re-use of sound end event listener\r\n * \r\n * v1.5\r\n *   - More tweaks to deal with interruptions\r\n * \r\n * v1.4\r\n *   - Further adjustments for JS interpreter interruptions\r\n * \r\n * v1.3\r\n *   - Try to reduce errors in offet counters introduced\r\n *      by pauses between JS interpreter steps\r\n * \r\n * v1.1 - v1.2 \r\n *   - Try to improve performance\r\n * \r\n * v1.0\r\n *   - Initial release\r\n * \r\n *\/\r\n(function() {\r\n  \/\/ var debug = false\r\n  var timers = {}\r\n  var sounds = {}\r\n  var counter = 1\r\n  var timerError = 268 \/\/ Always seems to be around 268ms of error (issue with audio files?)\r\n  var maxTime = 60000 \/\/ Sound is 1 min long, so that's the max\r\n  var i = 1\r\n  var timerPool = []\r\n  \r\n  function listener() {\r\n    var id = this.__id\r\n    var timer = timers[id]\r\n    \/\/ this.stop()\r\n    this.__id = null \/\/ disable id\r\n    if (!timer) return\r\n    var opt = timer._opt\r\n    timerPool.unshift(timer) \/\/ Put timer back in queue\r\n    if ((opt.start + (opt.time * opt.iter)) - Date.now() > 20) {\r\n      \/\/ Not done.  We'll need to run again\r\n      doTimer(opt)\r\n      return\r\n    }\r\n    if (opt.interval) {\r\n      \/\/ Run again\r\n      opt.iter++\r\n      doTimer(opt)\r\n    } else {\r\n      delete timers[id]\r\n    }\r\n    try {\r\n      opt.fn()\r\n    } catch (e) {\r\n      console.error('Error in timer fn', e.toString())\r\n    }\r\n  }\r\n\r\n  var tSound = Sound.get('timer-' + i)\r\n  while (tSound) {\r\n    tSound.stop()\r\n    tSound.seek(maxTime-timerError)\r\n    tSound.play()\r\n    tSound.addEventListener('end', listener)\r\n    sounds[i] = tSound\r\n    var timer = {\r\n      sound: tSound,\r\n      index: i\r\n    }\r\n    timerPool.push(timer)\r\n    i++\r\n    tSound = Sound.get('timer-' + i)\r\n  }\r\n  var poolSize = timerPool.length\r\n\r\n  function doTimer(opt) {\r\n    var id = opt.id\r\n    var timer = timerPool.pop()\r\n    if (!timer) {\r\n      throw \"No timer sounds left in timer pool.  Add more if you need more than \" + poolSize + \" concurrent timers.\"\r\n    }\r\n    timer._opt = opt\r\n    var sound = timer.sound\r\n    sound.__id = id\r\n    timers[id] = timer\r\n    sound.seek(Math.max(1, timerError + (maxTime - Math.min(\r\n      (opt.start + (opt.time * opt.iter)) - Date.now(), \r\n      maxTime - 1000\r\n    ))) \/ 1000)\r\n    sound.play()\r\n    return id\r\n  }\r\n\r\n  function clearTimer(id) {\r\n    var timer = timers[id]\r\n    if (timer) {\r\n      delete timers[id]\r\n      var sound = timer.sound\r\n      sound.__id = null\r\n      sound.stop()\r\n      timerPool.unshift(timer)\r\n    }\r\n  }\r\n\r\n  window.setTimeout = function(fn, time) {\r\n    return doTimer({\r\n      id: counter++,\r\n      time: time || 0, \r\n      iter: 1,\r\n      fn: fn, \r\n      start: Date.now()\r\n      })\r\n  }\r\n\r\n  window.clearTimeout = function(id) {\r\n    return clearTimer(id)\r\n  }\r\n\r\n  window.setInterval = function(fn, time) {\r\n    return doTimer({\r\n      id: counter++,\r\n      time: time || 0, \r\n      iter: 1,\r\n      fn: fn, \r\n      interval: true,\r\n      start: Date.now()\r\n      })\r\n  }\r\n  \r\n  window.clearInterval = function(id) {\r\n    return clearTimer(id)\r\n  }\r\n})()\r\n"}}]}},{"if":{"condition":"!Sound.prototype.fadeTo","commands":[{"eval":{"script":"\/\/ Install Sound.prototype.fadeTo\r\n(function() {\r\n  \/\/ Get out if we're already installed\r\n  if (Sound.prototype.fadeTo) return\r\n\r\n  var defaultVolume = 0 \/\/ If we don't know the current volume, assume this\r\n  var stepSize = 20 \/\/ ms between volume change steps\r\n\r\n  \/\/ Hook existing setVolume to do some stuff\r\n  Sound.prototype._ft_setVolume = Sound.prototype.setVolume\r\n  Sound.prototype.setVolume = function(vol) {\r\n    this._ft_cv = vol\r\n    this._ft_setVolume(vol)\r\n    clearInterval(this._ft_interval)\r\n  }\r\n  \r\n  \/\/ Add a fadeTo function to Sound prototype\r\n  Sound.prototype.fadeTo = function(volume, time) {\r\n    volume = volume > 1 ? 1 : volume\r\n    volume = volume < 0 ? 0 : volume\r\n    this._ft_cv = this._ft_cv === undefined ? defaultVolume : this._ft_cv\r\n    clearInterval(this._ft_interval)\r\n    var step = 0\r\n    var steps = time \/ stepSize\r\n    var diff = volume - this._ft_cv\r\n    var inc = diff \/ steps\r\n    var _this = this\r\n    function stepper() {\r\n      step ++\r\n      var v = _this._ft_cv + inc\r\n      if ((inc > 0 && v >= volume) || \r\n        (inc < 0 && v <= volume) || \r\n        step >= steps) {\r\n          v = volume\r\n      }\r\n      _this._ft_cv = v\r\n      _this._ft_setVolume(v)\r\n      if (step >= steps) {\r\n        clearInterval(_this._ft_interval)\r\n      }\r\n    }\r\n    this._ft_interval = setInterval(stepper, stepSize)\r\n    stepper()\r\n  }\r\n})()\r\n"}}]}},{"audio.play":{"locator":"file:congo-a.mp3","loops":0,"background":true,"id":"test","volume":0}},{"say":{"label":"<p>This will fade the volume of a drum sound in and out.<\/p>"}},{"say":{"label":"<p>It uses a single drum beat sample played in a loop.  <\/p><p>Fade in\/out is done dynamically via script.<\/p>"}},{"choice":{"options":[{"label":"Okay, let's do it!","commands":[{"eval":{"script":"\/\/ Make sure we do at least one setTimeout right after a user's click to make sure things are started up correctly\r\nsetTimeout(function(){console.log('Started Timers')}, 0)"}},{"goto":{"target":"fade-in"}}]}]}}],"fade-in":[{"image":{"locator":"gallery:0c413d7c-c303-4ea6-a759-36c586f7ad73\/*"}},{"say":{"label":"<p>Fading in...<\/p>","mode":"instant"}},{"eval":{"script":"\/\/ If we haven't loaded our sound into a global variable, do it now\r\nif (!window.mySound) window.mySound = Sound.get('test')\r\n\/\/ !! Note !! We don't just do a Sound.get('test') each time because\r\n\/\/ Eos will return a new Sound object on each call, eliminating any \r\n\/\/ current fadeTo or volume state.  This is important because there is\r\n\/\/ no way to get the current volume of an Eos Sound object, and we need to\r\n\/\/ know the current volume to know what to fade from -> to.\r\n\/\/ By default, fadeTo will assume the current volume is zero on a new\r\n\/\/ Sound object, until obj.fadeTo(...) or obj.setVolume(...) is used.  \r\n\r\nmySound.fadeTo(1, 2000) \/\/ fade to full volume over 2 seconds"}},{"timer":{"duration":"5s"}},{"goto":{"target":"fade-out"}}],"fade-out":[{"say":{"label":"<p>Fading out...<\/p>","mode":"instant"}},{"eval":{"script":"\/\/ If we haven't loaded our sound into a global variable, do it now\r\nif (!window.mySound) window.mySound = Sound.get('test')\r\n\/\/ !! Note !! We don't just do a Sound.get('test') each time because\r\n\/\/ Eos will return a new Sound object on each call, eliminating any \r\n\/\/ current fadeTo or volume state.  This is important because there is\r\n\/\/ no way to get the current volume of an Eos Sound object, and we need to\r\n\/\/ know the current volume to know what to fade from -> to.\r\n\/\/ By default, fadeTo will assume the current volume is zero on a new\r\n\/\/ Sound object, until obj.fadeTo(...) or obj.setVolume(...) is used.\r\n\r\nmySound.fadeTo(0, 2000) \/\/ fade to silence over 2 seconds"}},{"timer":{"duration":"5s"}},{"goto":{"target":"fade-in"}}]},"modules":{"audio":{},"storage":{},"notification":{}},"files":{"congo-a.mp3":{"id":1357912,"hash":"5915e22586cfe3ed5575064ad428672ef633d230","size":8881,"type":"audio\/mpeg"},"1-minute-of-silence.mp3":{"id":1357916,"hash":"1092af7de1d0a7b87c79797d0adb47c8bdf1f91a","size":96246,"type":"audio\/mpeg"}},"galleries":{"0c413d7c-c303-4ea6-a759-36c586f7ad73":{"name":"Nikia A - Jbya","images":[{"id":1291833,"hash":"72716f013617b3953758019f0c04428425537337","size":1310735,"width":3000,"height":4500},{"id":1291834,"hash":"fbda64569fe30c7f4dbbb1f4c2e6d199c73522b8","size":1141612,"width":3000,"height":4500},{"id":1291835,"hash":"8e85143189bff5087e2afd7ae49bd9e452d43192","size":1194530,"width":3000,"height":4500},{"id":1291836,"hash":"94793f688d262e754a013fd84d835c82d1d70a03","size":1356304,"width":3000,"height":4500},{"id":1291837,"hash":"f2015b01b2b5454375ecf9cf34323d34ef5655a8","size":1190803,"width":4500,"height":3000},{"id":1291838,"hash":"7d30640690f8ca34c922ec5f48b4d7c56169e882","size":1253709,"width":3000,"height":4500},{"id":1291839,"hash":"7ed3f52bd9c3b8b18940e08b5f85e8ff204caf87","size":1324674,"width":3000,"height":4500},{"id":1291840,"hash":"fb40c65f03895ec37e3562e83e94b939f442789f","size":1242111,"width":3000,"height":4500},{"id":1291841,"hash":"119bfc3f501a6b0d78bcd3ae1f0bc5b973666bd4","size":1205451,"width":3000,"height":4500},{"id":1291842,"hash":"ba016d433de9c6575c671151a998b907ee5b27fa","size":1063963,"width":3000,"height":4500},{"id":1291843,"hash":"03ac61ace46c9c78a4ea1fa03cc16d8d8125bc13","size":1046918,"width":4500,"height":3000},{"id":1291844,"hash":"3bfc6f90acd29d8edce3ddcdf037a14190c4346b","size":1230380,"width":3000,"height":4500},{"id":1291845,"hash":"6e47344929dcaab9f2cd40f38ea40e0b0c854f00","size":1185466,"width":3000,"height":4500},{"id":1291846,"hash":"560f550705c3a46e58b0de05432e780db84544e5","size":1261227,"width":3000,"height":4500},{"id":1291847,"hash":"859b66437521694585666232616d9948cff37fbd","size":1195355,"width":3000,"height":4500},{"id":1291848,"hash":"a361c93fc3215eba93f27e9aec830a6554920aa0","size":1044860,"width":3000,"height":4500},{"id":1291849,"hash":"2155570922c475361252e4697daa44f35aa23ddd","size":992233,"width":3000,"height":4500},{"id":1291850,"hash":"1262d674c8dfdbe0fa24bfe219bce3058d2e4801","size":1582557,"width":3000,"height":4500},{"id":1291851,"hash":"37a9c3a000002ae296e3e81b92be1ffc9830f584","size":1317432,"width":3000,"height":4500},{"id":1291852,"hash":"f8ec3c7bd40caac0f6bc2bb0f5ba87ea0e77e15f","size":1071365,"width":3000,"height":4500},{"id":1291853,"hash":"1eca33cf11f02f0f607c249eeee5e4f8158b9089","size":1432937,"width":3000,"height":4500},{"id":1291854,"hash":"0c91d29971c0d51e1f0f09dd88eba65665cdf43f","size":1243305,"width":3000,"height":4500},{"id":1291855,"hash":"08307fdb48d2d8a329a0225c9a20501926d9e946","size":1235061,"width":3000,"height":4500},{"id":1291856,"hash":"c5c5bdfec84265a88bcfa936ee0ed0adb45f2e4f","size":1072021,"width":3000,"height":4500},{"id":1291857,"hash":"010027dcaf8c02cc58edc4a5dd30bde84bff14a9","size":951116,"width":3000,"height":4500},{"id":1291858,"hash":"dba7054fc4cd27a776ce1586f1371fa2cd89cc67","size":1160073,"width":3000,"height":4500},{"id":1291859,"hash":"bb1af5adf7cc527e233d957096b4b2c5addb5d47","size":964449,"width":3000,"height":4500},{"id":1291860,"hash":"8a42d48670f576f97d06d7f9b0eb438e6d05b188","size":1389458,"width":3000,"height":4500},{"id":1291861,"hash":"c90ae6ea8e97b07acfb9c9c7ef6831d329677551","size":1007745,"width":3000,"height":4500},{"id":1291862,"hash":"d3e21cb4376fb76d3c43dbffe3fad8259442ab18","size":991703,"width":3000,"height":4500},{"id":1291863,"hash":"2345dcacc2c5d9ba94e39d22c043e108998d8c0a","size":1039891,"width":3000,"height":4500},{"id":1291864,"hash":"0198c5b02a4a5d42586f20593b97bc395f8e86d6","size":1196069,"width":3000,"height":4500},{"id":1291865,"hash":"e8a778bbf0a597b47b4f4b75f15eeb954ac7295d","size":943076,"width":3000,"height":4500},{"id":1291866,"hash":"70e47cfae61e3b6ea13e4eff66235af186146d4a","size":1116956,"width":3000,"height":4500},{"id":1291867,"hash":"7f2242b11a7322b0ae072204743af41464a47423","size":1184602,"width":3000,"height":4500},{"id":1291868,"hash":"af068eb88f5f4d5455822ede0e1577e698defe3a","size":1095917,"width":3000,"height":4500},{"id":1291869,"hash":"3f633536332aa92e1a186ee5cc5d1f2e1d47856d","size":1563506,"width":3000,"height":4500},{"id":1291870,"hash":"8970aa0624a5794801665da4d13b4558b6a27c2b","size":1147225,"width":3000,"height":4500},{"id":1291871,"hash":"62655423f176ad4bb4ad554c8f56c0990045719e","size":1637319,"width":3000,"height":4500},{"id":1291872,"hash":"fd0b42a014e984dc46d9c88724f15e4ed64dbe33","size":1491127,"width":3000,"height":4500},{"id":1291873,"hash":"6fff0f1e89a9fcf0a364c8d50b07814a92795c81","size":1433992,"width":3000,"height":4500},{"id":1291874,"hash":"6e20a6d1c9ff8175b1b2e4ddf82b8a196d9952c3","size":1086695,"width":3000,"height":4500},{"id":1291875,"hash":"5d3eecab51e6aee8701af12ae1738e28ca6c3569","size":1267045,"width":3000,"height":4500},{"id":1291876,"hash":"ff652335610a95a3194743901eb2957ad7c43f99","size":1609263,"width":3000,"height":4500},{"id":1291877,"hash":"23a6be98d32784ba5617126cf840abef2ad36e51","size":1112566,"width":3000,"height":4500},{"id":1291878,"hash":"f112884b8c9fe97eec8b0fb2bca73be456887555","size":841389,"width":3000,"height":4500},{"id":1291879,"hash":"45f56d211ccba18103ba4fecca324d08b57d83e0","size":902131,"width":3000,"height":4500},{"id":1291880,"hash":"ea911424154efd326dde9877b3b3550feea1e39a","size":881262,"width":3000,"height":4500},{"id":1291881,"hash":"912e6a734386ce5566cb87748d2aaf169f041352","size":973362,"width":3000,"height":4500},{"id":1291882,"hash":"3f156ea9b0a1d0be0610791c10f3ed21d76de576","size":942644,"width":3000,"height":4500},{"id":1291883,"hash":"f87290e7a3ee8f306fc0349773e94d3b8d95dba5","size":1138837,"width":3000,"height":4500},{"id":1291884,"hash":"1926abbdcddd5ef035a3102498fdc5612f9f814b","size":1160394,"width":4500,"height":3000},{"id":1291885,"hash":"c0d4ee4cf510792e4d94ab64f452c61409587dc6","size":1210239,"width":4500,"height":3000},{"id":1291886,"hash":"68d2b5d517513c5be80609a4a27826a5e7d7f3aa","size":1165206,"width":4500,"height":3000},{"id":1291887,"hash":"07b90757c9366790e86682056f2ab6855eebf09d","size":1105078,"width":4500,"height":3000},{"id":1291888,"hash":"40c39a6c7277cc895a51c054df5bca8bf5a540c1","size":1190071,"width":3000,"height":4500},{"id":1291889,"hash":"75196076244b03afb782a0bc9c4258ba1103b338","size":1216017,"width":3000,"height":4500},{"id":1291890,"hash":"06761c7c3086b374d1de20e626ff674d0ea4cbdc","size":1129429,"width":3000,"height":4500},{"id":1291891,"hash":"ae72ee68c5374385e1b253cf80e2e60c8b15d0e0","size":1153551,"width":3000,"height":4500},{"id":1291892,"hash":"39b0e167f0feada72dfde3ec09b9b755cd2a3de9","size":990064,"width":4500,"height":3000},{"id":1291893,"hash":"a5f9736b6a83d869701e07b55c7393e89a35890c","size":1219951,"width":4500,"height":3000},{"id":1291894,"hash":"1705ad14012aae5f2bca590e6a0a5e9153badb02","size":1395044,"width":4500,"height":3000},{"id":1291895,"hash":"e07263032dbcb758ef0488a6cf9ae53d85f3f935","size":1428974,"width":4500,"height":3000},{"id":1291896,"hash":"a44631ea2142579a6088e322406a354b3e063f76","size":1064884,"width":4500,"height":3000},{"id":1291897,"hash":"a09c5e7c5d0c130e7bf7ec6da7b3f6e32b38a3c0","size":1130755,"width":4500,"height":3000},{"id":1291898,"hash":"64d31dbc558bd92091b8b7a2554d288dac0db483","size":857106,"width":4500,"height":3000},{"id":1291899,"hash":"237de9ad64e9bb294e110794ad73c08639b63d19","size":836044,"width":3000,"height":4500},{"id":1291900,"hash":"d218ac5cf874bf1845e84ed90a2cb5c20dab4738","size":905076,"width":4500,"height":3000},{"id":1291901,"hash":"911729d1cce7306ddcf49f3768220f071ca1a7f1","size":845121,"width":3000,"height":4500},{"id":1291902,"hash":"ef5d42769cb4a23d6d1aad438e84db3a8a094420","size":868832,"width":3000,"height":4500},{"id":1291903,"hash":"63a4563be186e0af1115268215781b0019dccc1f","size":1130718,"width":3000,"height":4500},{"id":1291904,"hash":"2298b2428f0806f373e7899c0f5c772531b2aff5","size":1143940,"width":3000,"height":4500},{"id":1291905,"hash":"ca3a142b30a83cc9845130b1225423b839cad7c0","size":1309726,"width":3000,"height":4500},{"id":1291906,"hash":"57f5446c3c012aaa747cfffc58bf940aaca278fb","size":1212156,"width":3000,"height":4500},{"id":1291907,"hash":"5091cf348b4fa783f61985e5e6162174b85bbc84","size":1184767,"width":3000,"height":4500},{"id":1291908,"hash":"434a16116f2c48b1d586e00f680bd3df5e6e595d","size":1199875,"width":3000,"height":4500},{"id":1291909,"hash":"d5d8b867039d72d1e54a6b68b97d32c4f59ce413","size":1123801,"width":3000,"height":4500},{"id":1291910,"hash":"fb74c2c4fd491ab4a71393a6bafda4e04f1b2737","size":1059388,"width":3000,"height":4500},{"id":1291911,"hash":"cd2ee17b9a124830f94d20aea3d12b78dfa514a1","size":1071329,"width":3000,"height":4500},{"id":1291912,"hash":"831b1bad40f873263641a478379eb516758e3dcf","size":1087303,"width":3000,"height":4500},{"id":1291913,"hash":"ace08441ac6c7e7376fd43b46f615a9c022df4b3","size":1018924,"width":3000,"height":4500},{"id":1291914,"hash":"87455853515d84705d3a1d2029aafaf71ace0fb6","size":1027510,"width":3000,"height":4500},{"id":1291915,"hash":"34c5096bd521dd77b8250f746cb103aab87651bf","size":978469,"width":3000,"height":4500},{"id":1291916,"hash":"37bff59348b57203593b430b66e26901c874c895","size":907868,"width":4500,"height":3000},{"id":1291917,"hash":"57a5dba742d5ad5a1ceac6b4bf19cc355583f747","size":951804,"width":3000,"height":4500},{"id":1291918,"hash":"b45f71e1f0afc184324dbdf7cda7f028c0c54b24","size":1107138,"width":3000,"height":4500},{"id":1291919,"hash":"8ab1fbc0bdc5acd4e71a28e9b04e4eea6316af7b","size":1011783,"width":3000,"height":4500},{"id":1291920,"hash":"5fa5da4c18fd6f9bdc993d73ee37aa9406f40ef2","size":1075257,"width":4500,"height":3000},{"id":1291921,"hash":"23c448718ab55b34447a67209d35973606a0e1b5","size":1180023,"width":4500,"height":3000},{"id":1291922,"hash":"fd2581c87310caf72219216b4541ae362d271ac8","size":1072827,"width":4500,"height":3000},{"id":1291923,"hash":"e5a675d655a1675543761d526bb0e7f586c054b3","size":923068,"width":4500,"height":3000},{"id":1291924,"hash":"9d62c5a391220b7dfb9f346dba5fb178f834f4ee","size":1096050,"width":4500,"height":3000},{"id":1291925,"hash":"8ec2c10a7d57291c0388e484c9b193a1db139e3d","size":1124374,"width":4500,"height":3000},{"id":1291926,"hash":"c849af430b901cc025ca84c6c03a1f81677afbb9","size":1027827,"width":4500,"height":3000},{"id":1291927,"hash":"ca1447f4c519f9f0e207e4c52c6dee4a2026b273","size":992255,"width":3000,"height":4500},{"id":1291928,"hash":"eb00d1ded87020853ae0acfe2264a59e00d07646","size":1165178,"width":3000,"height":4500},{"id":1291929,"hash":"f2817993030153053160fa6792103cf8fc28b88a","size":1145068,"width":3000,"height":4500},{"id":1291930,"hash":"c13e1fa420a0a73a16c8295af5b7c4368047fa88","size":1008259,"width":3000,"height":4500},{"id":1291931,"hash":"a7a5c0917d720fefb05c00501581a90c338ab461","size":1106221,"width":3000,"height":4500},{"id":1291932,"hash":"ffc4bf9de84636b8cd961f29e474b5413b28f84a","size":602640,"width":4500,"height":3000},{"id":1291933,"hash":"9c7fb1efd4ef369500b01a499f52145e5cacd4ae","size":1242799,"width":4500,"height":3000},{"id":1291934,"hash":"08698972ddc76f18c341ed27ddf7315a0683984d","size":1237970,"width":4500,"height":3000},{"id":1291935,"hash":"ac0b99bd13eb236e2bb9f3bc80f51d172f3802cb","size":725756,"width":4500,"height":3000},{"id":1291936,"hash":"4fef084c33c83d5f6c484171e7859e0374fe44b6","size":1562439,"width":3000,"height":4500},{"id":1291937,"hash":"2dafd66cd51dd894a4375e41caf77850f858b15e","size":1507988,"width":3000,"height":4500},{"id":1291938,"hash":"6577132ea950bc365485a05b84d02d6708020d5c","size":1223316,"width":3000,"height":4500},{"id":1291939,"hash":"c6092951e7f78d7f781ce3503f17a0c81c625343","size":1227483,"width":3000,"height":4500},{"id":1291940,"hash":"d4bf3daffffe3ad23b0dc04fac545e1afb97da72","size":1179697,"width":3000,"height":4500},{"id":1291941,"hash":"47228e9d4c795d8b06b660534a77c4f707a37679","size":1425569,"width":3000,"height":4500},{"id":1291942,"hash":"a8ce911965d58f42f532114ff8bb54ebeddbd982","size":1494596,"width":3000,"height":4500},{"id":1291943,"hash":"10bb4a813994f274e758f6afb706f1075c83cc77","size":1403018,"width":3000,"height":4500},{"id":1291944,"hash":"db5bc19f68857172b07f19d5d08b8897991e296f","size":1249411,"width":3000,"height":4500},{"id":1291945,"hash":"a8fd79d25520e6f27eef6e71def7954b5837f49f","size":1161873,"width":3000,"height":4500},{"id":1291946,"hash":"a7a62c3416f125cae0311288514b6bca4c7933ce","size":1057583,"width":3000,"height":4500},{"id":1291947,"hash":"ee1e49e678d603df57cf2f6c2865f2333fbd981e","size":1306665,"width":3000,"height":4500},{"id":1291948,"hash":"5f9ddc4925b39b4d2e85cec43e52a61da3fde3bb","size":1263356,"width":3000,"height":4500},{"id":1291949,"hash":"6d2018d84e51dd7417e33b6aa32b451d779a92ef","size":1113709,"width":3000,"height":4500},{"id":1291950,"hash":"722a9f077ecf54f3d56e307569ded4e322395591","size":1237595,"width":3000,"height":4500},{"id":1291951,"hash":"7dffd37a2467868d88e674406238802d17be9f97","size":1132737,"width":4500,"height":3000},{"id":1291952,"hash":"1d51ae7ab3849869611027c48f15414dbc2fd508","size":1160033,"width":4500,"height":3000},{"id":1291953,"hash":"c3290a922cbbe588a467025c0352f882ad59e972","size":1103760,"width":4500,"height":3000},{"id":1291954,"hash":"2c26e7617fbae44e7bcf27bc5daf7954c6a732ec","size":1127317,"width":4500,"height":3000},{"id":1291955,"hash":"71d03e66f29e5d55be01a479de2d0ff894336872","size":1022894,"width":4500,"height":3000},{"id":1291956,"hash":"7e21a0b78c5c4b622906626698cbf49fddfa2cd8","size":65065,"width":525,"height":790}]}},"editor":{"recentImages":[{"type":"gallery","mimeType":"image\/jpeg","galleryId":"0c413d7c-c303-4ea6-a759-36c586f7ad73","url":"gallery:0c413d7c-c303-4ea6-a759-36c586f7ad73\/*"}]}}