<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>dbut2</title>
    <link>https://dylanbutler.dev/</link>
    <description>Recent content on dbut2</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Wed, 08 Apr 2026 00:00:00 +1000</lastBuildDate>
    <atom:link href="https://dylanbutler.dev/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Protect Your Shed</title>
      <link>https://dylanbutler.dev/blog/protect-your-shed/</link>
      <pubDate>Wed, 08 Apr 2026 00:00:00 +1000</pubDate>
      <guid>https://dylanbutler.dev/blog/protect-your-shed/</guid>
      <description>&lt;p&gt;Constructing a skyscraper is a massive undertaking. You need architectural blueprints, council permits, and safety audits before the first piece of steel is even ordered. It requires hundreds of people coordinating over months or years. You can&amp;rsquo;t just throw up some drywall and hope the building holds weight.&lt;/p&gt;&#xA;&lt;p&gt;Then there is the backyard shed. No blueprints, no permits, no audits. You just grab some timber, a saw, and start hammering. It might be a little drafty, and the roof might leak if it rains too hard, but you built it yourself in a single weekend.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Building a GBA Emulator in Go</title>
      <link>https://dylanbutler.dev/blog/sapphire/</link>
      <pubDate>Mon, 16 Feb 2026 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/blog/sapphire/</guid>
      <description>&lt;p&gt;Before you read on, stop and play for a second. What you&amp;rsquo;re seeing here is the emulator written in Go running inside of WASM inside your browser, everything here is local!&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;div style=&#34;text-align:center;&#34;&gt;&#xA;    &lt;canvas id=&#34;-sapphirewasm&#34; style=&#34;width:100%;max-width:720px;height:auto;aspect-ratio:720/480;image-rendering:pixelated;&#34;&gt;&lt;/canvas&gt;&#xA;    &#xA;    &lt;script src=&#34;https://dylanbutler.dev/sapphire-wasm-exec.js&#34;&gt;&lt;/script&gt;&#xA;    &lt;script&gt;&#xA;        (function() {&#xA;            const go = new Go();&#xA;            go.argv = [&#34;wasm&#34;, &#34;--canvas&#34;, &#34;-sapphirewasm&#34;];&#xA;            WebAssembly.instantiateStreaming(fetch(&#34;\/sapphire.wasm&#34;), go.importObject).then((result) =&gt; {&#xA;                go.run(result.instance);&#xA;            });&#xA;        })();&#xA;    &lt;/script&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;div id=&#34;-sapphirewasm-controls&#34; class=&#34;gba-controls&#34; style=&#34;text-align:center;&#34;&gt;&#xA;    &lt;div class=&#34;gba-controls-bumpers&#34;&gt;&#xA;        &lt;button data-key=&#34;KeyA&#34; data-label=&#34;L&#34;&gt;&lt;/button&gt;&#xA;        &lt;button data-key=&#34;KeyS&#34; data-label=&#34;R&#34;&gt;&lt;/button&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;gba-controls-main&#34;&gt;&#xA;        &lt;div class=&#34;gba-dpad&#34;&gt;&#xA;            &lt;button data-key=&#34;ArrowUp&#34; data-label=&#34;&amp;#x2191;&#34; class=&#34;gba-dpad-up&#34;&gt;&lt;/button&gt;&#xA;            &lt;button data-key=&#34;ArrowLeft&#34; data-label=&#34;&amp;#x2190;&#34; class=&#34;gba-dpad-left&#34;&gt;&lt;/button&gt;&#xA;            &lt;button data-key=&#34;ArrowRight&#34; data-label=&#34;&amp;#x2192;&#34; class=&#34;gba-dpad-right&#34;&gt;&lt;/button&gt;&#xA;            &lt;button data-key=&#34;ArrowDown&#34; data-label=&#34;&amp;#x2193;&#34; class=&#34;gba-dpad-down&#34;&gt;&lt;/button&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div class=&#34;gba-ab&#34;&gt;&#xA;            &lt;button data-key=&#34;KeyX&#34; data-label=&#34;B&#34; class=&#34;gba-btn-round&#34;&gt;&lt;/button&gt;&#xA;            &lt;button data-key=&#34;KeyZ&#34; data-label=&#34;A&#34; class=&#34;gba-btn-round&#34;&gt;&lt;/button&gt;&#xA;        &lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;gba-menu&#34;&gt;&#xA;        &lt;button id=&#34;-sapphirewasm-mute-btn&#34;&gt;&amp;#x1F50A;&lt;/button&gt;&#xA;        &lt;button data-key=&#34;Backspace&#34; data-label=&#34;SELECT&#34; class=&#34;gba-btn-small&#34;&gt;&lt;/button&gt;&#xA;        &lt;button data-key=&#34;Enter&#34; data-label=&#34;START&#34; class=&#34;gba-btn-small&#34;&gt;&lt;/button&gt;&#xA;        &lt;button id=&#34;-sapphirewasm-toggle-btn&#34;&gt;&amp;#x26F6;&lt;/button&gt;&#xA;    &lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;style&gt;&#xA;    .gba-controls {&#xA;        display: none;&#xA;    }&#xA;    @media (pointer: coarse) {&#xA;        .keyboard-controls-hint {&#xA;            display: none;&#xA;        }&#xA;        .gba-controls {&#xA;            display: block;&#xA;            max-width: 720px;&#xA;            margin: 16px auto 0;&#xA;            padding: 12px 8px;&#xA;            user-select: none;&#xA;            -webkit-user-select: none;&#xA;            touch-action: manipulation;&#xA;        }&#xA;    }&#xA;    .gba-controls button::after {&#xA;        content: attr(data-label);&#xA;    }&#xA;    .gba-controls button {&#xA;        background: #2a2a2a;&#xA;        color: #ccc;&#xA;        border: 1px solid #444;&#xA;        border-radius: 6px;&#xA;        font-family: monospace;&#xA;        font-size: 14px;&#xA;        font-weight: bold;&#xA;        touch-action: manipulation;&#xA;        -webkit-tap-highlight-color: transparent;&#xA;    }&#xA;    .gba-controls button:active {&#xA;        background: #555;&#xA;    }&#xA;    .gba-controls-bumpers {&#xA;        display: flex;&#xA;        justify-content: space-between;&#xA;        margin-bottom: 18px;&#xA;        padding: 0 8px;&#xA;    }&#xA;    .gba-controls-bumpers button {&#xA;        width: 72px;&#xA;        height: 36px;&#xA;    }&#xA;    .gba-controls-main {&#xA;        display: flex;&#xA;        align-items: center;&#xA;        justify-content: space-between;&#xA;    }&#xA;    .gba-dpad {&#xA;        display: grid;&#xA;        grid-template-columns: 50px 50px 50px;&#xA;        grid-template-rows: 50px 50px 50px;&#xA;        gap: 3px;&#xA;    }&#xA;    .gba-dpad-up    { grid-column: 2; grid-row: 1; }&#xA;    .gba-dpad-left  { grid-column: 1; grid-row: 2; }&#xA;    .gba-dpad-right { grid-column: 3; grid-row: 2; }&#xA;    .gba-dpad-down  { grid-column: 2; grid-row: 3; }&#xA;    .gba-dpad button {&#xA;        width: 50px;&#xA;        height: 50px;&#xA;        font-size: 20px;&#xA;        border-radius: 8px;&#xA;    }&#xA;    .gba-menu {&#xA;        display: flex;&#xA;        justify-content: center;&#xA;        align-items: center;&#xA;        gap: 12px;&#xA;        margin-top: 14px;&#xA;        position: relative;&#xA;    }&#xA;    .gba-btn-small {&#xA;        width: 56px;&#xA;        height: 28px;&#xA;        font-size: 10px !important;&#xA;        border-radius: 12px !important;&#xA;    }&#xA;    .gba-ab {&#xA;        display: flex;&#xA;        gap: 12px;&#xA;        align-items: center;&#xA;    }&#xA;    .gba-btn-round {&#xA;        width: 54px;&#xA;        height: 54px;&#xA;        border-radius: 50% !important;&#xA;        font-size: 16px !important;&#xA;    }&#xA;&#xA;     &#xA;    #-sapphirewasm-toggle-btn,&#xA;    #-sapphirewasm-mute-btn {&#xA;        display: none;&#xA;    }&#xA;    @media (pointer: coarse) {&#xA;        #-sapphirewasm-toggle-btn {&#xA;            display: block;&#xA;            position: absolute;&#xA;            right: 8px;&#xA;            width: 36px;&#xA;            height: 28px;&#xA;            padding: 0;&#xA;            font-size: 14px;&#xA;        }&#xA;        #-sapphirewasm-mute-btn {&#xA;            display: block;&#xA;            position: absolute;&#xA;            left: 8px;&#xA;            width: 36px;&#xA;            height: 28px;&#xA;            padding: 0;&#xA;            font-size: 14px;&#xA;        }&#xA;    }&#xA;&#xA;     &#xA;    #gba-fullscreen-overlay {&#xA;        position: fixed;&#xA;        inset: 0;&#xA;        z-index: 9999;&#xA;        background: #000;&#xA;        display: flex;&#xA;        flex-direction: column;&#xA;        align-items: stretch;&#xA;        overflow: hidden;&#xA;        touch-action: none;&#xA;         &#xA;        padding-top: env(safe-area-inset-top);&#xA;        padding-bottom: env(safe-area-inset-bottom);&#xA;        padding-left: env(safe-area-inset-left);&#xA;        padding-right: env(safe-area-inset-right);&#xA;    }&#xA;&#xA;    #gba-fullscreen-overlay canvas {&#xA;        display: block;&#xA;        width: 100% !important;&#xA;        max-width: 100% !important;&#xA;        height: auto !important;&#xA;        image-rendering: pixelated;&#xA;        flex-shrink: 0;&#xA;    }&#xA;&#xA;    #gba-fullscreen-overlay .gba-controls {&#xA;        display: block !important;&#xA;        width: 100%;&#xA;        max-width: none;&#xA;        margin: 0;&#xA;        padding: 8px;&#xA;        flex-shrink: 0;&#xA;    }&#xA;&lt;/style&gt;&#xA;&#xA;&lt;script&gt;&#xA;    (function() {&#xA;        var controlsEl = document.getElementById(&#34;-sapphirewasm-controls&#34;);&#xA;        controlsEl.querySelectorAll(&#34;button[data-key]&#34;).forEach(function(btn) {&#xA;            var code = btn.getAttribute(&#34;data-key&#34;);&#xA;            btn.addEventListener(&#34;touchstart&#34;, function(e) {&#xA;                e.preventDefault();&#xA;                document.dispatchEvent(new KeyboardEvent(&#34;keydown&#34;, { code: code, bubbles: true }));&#xA;            }, { passive: false });&#xA;            btn.addEventListener(&#34;touchend&#34;, function(e) {&#xA;                e.preventDefault();&#xA;                document.dispatchEvent(new KeyboardEvent(&#34;keyup&#34;, { code: code, bubbles: true }));&#xA;            }, { passive: false });&#xA;            btn.addEventListener(&#34;touchcancel&#34;, function(e) {&#xA;                e.preventDefault();&#xA;                document.dispatchEvent(new KeyboardEvent(&#34;keyup&#34;, { code: code, bubbles: true }));&#xA;            }, { passive: false });&#xA;        });&#xA;    })();&#xA;&#xA;    (function() {&#xA;        var muteBtn = document.getElementById(&#34;-sapphirewasm-mute-btn&#34;);&#xA;        if (muteBtn) {&#xA;            muteBtn.addEventListener(&#34;click&#34;, function(e) {&#xA;                e.preventDefault();&#xA;                var muted = false;&#xA;                if (typeof window.sapphireToggleMute === &#34;function&#34;) {&#xA;                    muted = window.sapphireToggleMute();&#xA;                }&#xA;                muteBtn.innerHTML = muted ? &#34;&amp;#x1F507;&#34; : &#34;&amp;#x1F50A;&#34;;&#xA;            }, { passive: false });&#xA;        }&#xA;    })();&#xA;&#xA;    (function() {&#xA;        var canvas    = document.getElementById(&#34;-sapphirewasm&#34;);&#xA;        var controls  = document.getElementById(&#34;-sapphirewasm-controls&#34;);&#xA;        var toggleBtn = document.getElementById(&#34;-sapphirewasm-toggle-btn&#34;);&#xA;&#xA;        if (!canvas || !controls || !toggleBtn) return;&#xA;        if (!window.matchMedia(&#39;(pointer: coarse)&#39;).matches) return;&#xA;&#xA;        var canvasParent        = canvas.parentNode;&#xA;        var canvasNextSibling   = canvas.nextSibling;&#xA;        var controlsParent      = controls.parentNode;&#xA;        var controlsNextSibling = controls.nextSibling;&#xA;        var savedScrollY        = 0;&#xA;        var locked              = false;&#xA;        var savedCanvasMaxWidth = canvas.style.maxWidth;&#xA;&#xA;        var viewportMeta     = document.querySelector(&#39;meta[name=&#34;viewport&#34;]&#39;);&#xA;        var originalViewport = viewportMeta ? viewportMeta.content : null;&#xA;&#xA;        var overlay = document.createElement(&#39;div&#39;);&#xA;        overlay.id  = &#39;gba-fullscreen-overlay&#39;;&#xA;&#xA;        function lock() {&#xA;            savedScrollY = window.scrollY;&#xA;            locked = true;&#xA;&#xA;            overlay.appendChild(canvas);&#xA;            overlay.appendChild(controls);&#xA;            document.body.appendChild(overlay);&#xA;&#xA;            &#xA;            canvas.style.maxWidth = &#39;100%&#39;;&#xA;            &#xA;            controls.style.marginTop = &#39;auto&#39;;&#xA;&#xA;            document.body.style.overflow = &#39;hidden&#39;;&#xA;            document.body.style.position = &#39;fixed&#39;;&#xA;            document.body.style.width    = &#39;100%&#39;;&#xA;            document.body.style.top      = &#39;-&#39; + savedScrollY + &#39;px&#39;;&#xA;&#xA;            if (viewportMeta) {&#xA;                viewportMeta.content =&#xA;                    &#39;width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover&#39;;&#xA;            }&#xA;&#xA;            var fs = overlay.requestFullscreen || overlay.webkitRequestFullscreen;&#xA;            if (fs) fs.call(overlay).catch(function(){});&#xA;        }&#xA;&#xA;        function unlock() {&#xA;            locked = false;&#xA;&#xA;            if (document.fullscreenElement || document.webkitFullscreenElement) {&#xA;                var exitFs = document.exitFullscreen || document.webkitExitFullscreen;&#xA;                if (exitFs) exitFs.call(document).catch(function(){});&#xA;            }&#xA;&#xA;            canvasParent.insertBefore(canvas, canvasNextSibling);&#xA;            controlsParent.insertBefore(controls, controlsNextSibling);&#xA;&#xA;            if (overlay.parentNode) overlay.parentNode.removeChild(overlay);&#xA;&#xA;            canvas.style.maxWidth    = savedCanvasMaxWidth;&#xA;            controls.style.marginTop = &#39;&#39;;&#xA;&#xA;            document.body.style.overflow = &#39;&#39;;&#xA;            document.body.style.position = &#39;&#39;;&#xA;            document.body.style.width    = &#39;&#39;;&#xA;            document.body.style.top      = &#39;&#39;;&#xA;            window.scrollTo(0, savedScrollY);&#xA;&#xA;            if (viewportMeta &amp;&amp; originalViewport) {&#xA;                viewportMeta.content = originalViewport;&#xA;            }&#xA;        }&#xA;&#xA;        toggleBtn.addEventListener(&#39;click&#39;, function() {&#xA;            if (locked) unlock(); else lock();&#xA;        }, { passive: false });&#xA;&#xA;        document.addEventListener(&#39;fullscreenchange&#39;, function() {&#xA;            if (!document.fullscreenElement &amp;&amp; locked) unlock();&#xA;        });&#xA;        document.addEventListener(&#39;keydown&#39;, function(e) {&#xA;            if (e.key === &#39;Escape&#39; &amp;&amp; locked) unlock();&#xA;        });&#xA;&#xA;        &#xA;        if (window.navigator.standalone) {&#xA;            window.addEventListener(&#39;load&#39;, lock);&#xA;        }&#xA;    })();&#xA;&lt;/script&gt;&#xA;&#xA;&lt;span class=&#34;keyboard-controls-hint&#34;&gt;&#xA;&lt;p&gt;&lt;strong&gt;Controls:&lt;/strong&gt; Z=A, X=B, A=L, S=R, Enter=Start, Backspace=Select, M=Mute&lt;/p&gt;</description>
    </item>
    <item>
      <title>Leg Amputation</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-11-08/</link>
      <pubDate>Sat, 08 Nov 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-11-08/</guid>
      <description>&lt;p&gt;Today I finally after much effort completed my cycle trip. Today was probably the hardest of them all but that probably just makes it all the more worth it, right.&lt;/p&gt;&#xA;&lt;img src=&#34;https://dylanbutler.dev/travel/japan-2025/2025-11-08/6cf4de62-0a86-4fa3-83a6-b43945abae42_hu_f29c4bca0dabeb47.jpg&#34; alt=&#34;image&#34; width=&#34;716&#34; height=&#34;955&#34; loading=&#34;lazy&#34;&gt;&lt;p&gt;I started today off with an early start having already decided to do parkrun in Otsu. I planned the route around doing this months ago so by this point I couldn&amp;rsquo;t let old me down and had to go for the run, even if I knew I was going to pay for it later. The run was nice and the sun was out and shining, making the &amp;ldquo;Sunshine Beach&amp;rdquo; parkrun really work for its name.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Back on the road</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-11-07/</link>
      <pubDate>Fri, 07 Nov 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-11-07/</guid>
      <description>&lt;p&gt;Yesterday was a rest day because I bailed on previous plans to head to Tsuruga so was instead now in Takashima for two nights. I also needed to buy more spare tubes thanks to the flats I got the day before. My legs were quite thankful for the rest day as they are starting to feel quite heavy and tired.&lt;/p&gt;&#xA;&lt;img src=&#34;https://dylanbutler.dev/travel/japan-2025/2025-11-07/97981758-eacc-4742-9e36-868662c30486_hu_5c7a3231ca03138e.jpg&#34; alt=&#34;image&#34; width=&#34;716&#34; height=&#34;955&#34; loading=&#34;lazy&#34;&gt;&lt;p&gt;I knew today was going to be a long day, although it was going to be quite flat, so the plan was to just head out and slog out the distance. The ride started out riding through the last of the farms and villages that I would experience before eventually heading back into civilisation where it felt comparatively like I was in the middle of the city.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Stranded in Takashima</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-11-05/</link>
      <pubDate>Wed, 05 Nov 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-11-05/</guid>
      <description>&lt;p&gt;Today has been almost the opposite experience to what I had days ago. The day had started well with an early wake up and strolling ride through the farms and villages of the quiet Nagahama as I took the 5k ride to the nearest konbini. I stocked up on some more water and grabbed myself some breakfast before heading back.&lt;/p&gt;&#xA;&lt;p&gt;I had finally got the camera working I had thought so I was excited to get back on the road and start filming the adventures. There was no one else at the guesthouse except for me so I just packed my bags and sent the host a message saying I had left. I headed off for the mountains and was having such a peaceful and joyous ride that I had forgotten to start my watch. If it wasn&amp;rsquo;t for the power save notification I don&amp;rsquo;t think I would have ever noticed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Ah, the serenity!</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-11-04/</link>
      <pubDate>Tue, 04 Nov 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-11-04/</guid>
      <description>&lt;p&gt;Today can best be described serenity. Not only because the farms, plains, mountains, and the lake surrounding me were all beautiful and peaceful, but I stopped in to purchase two spare inner tubes so I was mentally at peace as well! Today I discovered the true peacefulness Japan&amp;rsquo;s countryside has to offer, seemingly leaving civilisation altogether.&lt;/p&gt;&#xA;&lt;p&gt;This morning started out quite calm. Unlike yesterday I had gotten up early enough to stop into Lawson to buy a quick breakfast and stock up some water for the ride, a lesson harshly learnt before. There was no rain, but the sun wasn&amp;rsquo;t burning down either so I was looking to a rather calm ride without needing to worry about the weather too much.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The Plains of Shiga</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-11-03/</link>
      <pubDate>Mon, 03 Nov 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-11-03/</guid>
      <description>&lt;p&gt;This morning I woke up and had been dreading getting up and leaving since last night. I had gotten a puncture while I was strolling along the lake&amp;rsquo;s edge and after walking the bike back and placing in garage I knew I would have to fix it in the morning. The garage was small, and the guesthouse was small and intimate so I decided to just checkout and I would fix it before stating my ride.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The Mighty Hills of Otanacho</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-11-02/</link>
      <pubDate>Sun, 02 Nov 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-11-02/</guid>
      <description>&lt;p&gt;Today was the first day of my Lake Biwa bicycle adventure. I woke up nice and early, eager to back on the bike and set off towards Ōtsu.&lt;/p&gt;&#xA;&lt;p&gt;I first picked my bike up, the lady at the shop was so lovely, we were talking how the weather will be very good which is a change from all the rain there has been recently. We almost forgot my helmet but luckily she remembered just as I was leaving and called me  back.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tilted Tokyo</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-11-01/</link>
      <pubDate>Sat, 01 Nov 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-11-01/</guid>
      <description>&lt;p&gt;I write today&amp;rsquo;s post perched on a step along the Dotonbori River in Osaka after a short two days in Tokyo. The streets are busy, the crowds are out, and there&amp;rsquo;s a nice smog of bbq smoke that has settled on the river.&lt;/p&gt;&#xA;&lt;p&gt;Today I spent most of the day travelling, on trams, trains, and the Shinkansen, ready to start my cycle around Lake Biwa from tomorrow.&lt;/p&gt;&#xA;&lt;p&gt;Tokyo started by meeting up with the remainder of the devhouse group after we had checked into the airbnb. Our first stop was a nice little cafe run by a very chatty man. Amongst many of the conversations we had with him, he gave us some recommendations for some food and drinks we could get that night, we were eager to try them out.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Matsushima and a cruise in the ocean</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-10-27/</link>
      <pubDate>Mon, 27 Oct 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-10-27/</guid>
      <description>&lt;p&gt;Despite a fairly rough and tiring day yesterday, the sun gleaming into my bedroom at 7:30 in the morning was enough to wake me up from a short sleep and to kick start my day.&lt;/p&gt;&#xA;&lt;p&gt;Today we decided to head down to a town a couple train stops away that had been recommended by friends because of its scenic bay views. A stop in the conbini as a natural waking action for an iced coffee started the day before we packed our bags and headed out.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The great migration</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-10-26/</link>
      <pubDate>Sun, 26 Oct 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-10-26/</guid>
      <description>&lt;p&gt;This morning I had a sleepless night as my immense excitement for travelling to Japan grew. I woke up nice and early and finally started packing my bags, I almost couldn&amp;rsquo;t find my passport last night so I was a little stressed but I knew it would be fine.&lt;/p&gt;&#xA;&lt;p&gt;My first stop when we got to the airport was to head down to the lounge. I had a pass that I had linked and so it only made sense to get the most bang for my buck and start drinking some beers. I smashed down 3 and then headed to board the plane with Bailey and Damian where I planned to down some more inflight.&lt;/p&gt;</description>
    </item>
    <item>
      <title>devhouse 2!!!</title>
      <link>https://dylanbutler.dev/travel/japan-2025/2025-10-20/</link>
      <pubDate>Mon, 20 Oct 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2025/2025-10-20/</guid>
      <description>&lt;p&gt;As I write this I&amp;rsquo;m getting the last of my preparations in order for the next devhouse trip which starts from this Sunday! After last years success, I think this year is going to be at least as fun and exciting.&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;m excited particularly this year for the variance in adventures that each member of devhouse will be embarking on, and I think this will lead to a lot of interesting stories at the end of our trip.&lt;/p&gt;</description>
    </item>
    <item>
      <title>12 Months On: Self-Hosting</title>
      <link>https://dylanbutler.dev/blog/homelab-in-review/</link>
      <pubDate>Fri, 30 May 2025 00:00:00 +1000</pubDate>
      <guid>https://dylanbutler.dev/blog/homelab-in-review/</guid>
      <description>&lt;p&gt;This is kind of a review on the past 12 months since moving my cloud hosted services to all self-hosted, and the sequence of upgrades and changes to my homelab throughout the process.&lt;/p&gt;&#xA;&lt;p&gt;After a few months of increasingly larger GCP bills, and a final month of accidentally leaving a Cloud Workstation running for a little too long, I decided to give the old self-hosted world a try again after having most of my projects running somewhere in the cloud for the past 5 years, and seeing if I could pull off a $0 GCP bill by the end of the next month.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Japan in Film 2025</title>
      <link>https://dylanbutler.dev/photography/japan-in-film-2025/</link>
      <pubDate>Mon, 10 Feb 2025 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/photography/japan-in-film-2025/</guid>
      <description>&lt;p&gt;A short escape from home&amp;rsquo;s warm weather to the cold of Tokyo, Mt Fuji, and the snowy quiet of Sapporo.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#x9;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#x9;&#xA;&#x9;&#xA;&#xA;&#x9;&#xA;&#x9;&#x9;&lt;script src=&#34;https://dylanbutler.dev/shortcode-gallery/jquery-3.7.1.min.js&#34;&gt;&lt;/script&gt;&#xA;&#x9;&#xA;&#xA;&#x9;&#xA;&#x9;&#x9;&lt;script src=&#34;https://dylanbutler.dev/shortcode-gallery/lazy/jquery.lazy.min.js&#34;&gt;&lt;/script&gt;&#xA;&#x9;&#xA;&#xA;&#x9;&lt;script src=&#34;https://dylanbutler.dev/shortcode-gallery/swipebox/js/jquery.swipebox.min.js&#34;&gt;&lt;/script&gt;&#xA;&#x9;&lt;link rel=&#34;stylesheet&#34; href=&#34;https://dylanbutler.dev/shortcode-gallery/swipebox/css/swipebox.min.css&#34;&gt;&#xA;&#xA;&#x9;&lt;script src=&#34;https://dylanbutler.dev/shortcode-gallery/justified_gallery/jquery.justifiedGallery.min.js&#34;&gt;&lt;/script&gt;&#xA;&#x9;&lt;link rel=&#34;stylesheet&#34; href=&#34;https://dylanbutler.dev/shortcode-gallery/justified_gallery/justifiedGallery.min.css&#34;/&gt;&#xA;&#xA;&#xA;&lt;style&gt;&#xA;&#x9;&#xA;&#xA;&#x9;&#xA;&lt;/style&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;div id=&#34;gallery-90b87d04efe66bd3dfe1ad90cc220aea-0-wrapper&#34; class=&#34;gallery-wrapper&#34;&gt;&#xA;&lt;div id=&#34;gallery-90b87d04efe66bd3dfe1ad90cc220aea-0&#34; class=&#34;justified-gallery&#34;&gt;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7793.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;400&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGJatf0gIAAA//8EOQIlJ87M1gAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7793_hu_f7a2e3acb58732be.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7796.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;400&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKaOrEHEAAA//8DeQG1QfeuVgAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7796_hu_8877b8898c449601.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7800.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;400&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGI6cXAvIAAA//8EowJJg2HGpwAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7800_hu_e30c8aef109c3258.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7819.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;400&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKq6Z4OCAAA//8DLQGh4qpGxgAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7819_hu_b7bd1f1187202409.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7838.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;400&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGIqyCkCBAAA//8CpgFRo43txAAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2025/images/IMG_7838_hu_305e8cbffac262b2.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;script&gt;&#xA;&#x9;if (!(&#34;HSCGjQuery&#34; in window)) {&#xA;&#x9;&#x9;if (!window.jQuery) {&#xA;&#x9;&#x9;&#x9;throw new Error(&#34;jQuery is not loaded, hugo-shortcode-gallery wont work without it!&#34;);&#xA;&#x9;&#x9;}&#xA;&#x9;&#x9;window.HSCGjQuery = window.jQuery.noConflict(true);&#xA;&#x9;}&#xA;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;;(function($) {&#xA;&#xA;&#x9;&#x9;$( document ).ready(() =&gt; {&#xA;&#x9;&#x9;&#x9;const gallery = $(&#34;#gallery-90b87d04efe66bd3dfe1ad90cc220aea-0&#34;);&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;let swipeboxInstance = null;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;gallery.on(&#39;jg.complete&#39;, () =&gt; {&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;$(() =&gt; {&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;$(&#39;.lazy&#39;).Lazy({&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;visibleOnly: true,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;afterLoad: element =&gt; element.css({filter: &#34;none&#34;, transition: &#34;filter 1.0s ease-in-out&#34;})&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;});&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;});&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;swipeboxInstance = $(&#39;.galleryImg&#39;).swipebox(&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;$.extend({},&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;{  }&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;)&#xA;&#x9;&#x9;&#x9;&#x9;);&#xA;&#x9;&#x9;&#x9;});&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;gallery.justifiedGallery($.extend(&#xA;&#x9;&#x9;&#x9;&#x9;{&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;rowHeight : &#34;360&#34;,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;margins : &#34;15&#34;,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;border : 0,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;randomize :  true ,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;waitThumbnailsLoad : false,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;lastRow : &#34;justify&#34;,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;captions : false,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;},&#xA;&#x9;&#x9;&#x9;&#x9;{  }&#xA;&#x9;&#x9;&#x9;));&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;});&#xA;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;})(window.HSCGjQuery)&#xA;&lt;/script&gt;</description>
    </item>
    <item>
      <title>Adding GPUs to Docker Swarm and Running GPU-Enabled Services</title>
      <link>https://dylanbutler.dev/blog/swarm-gpus/</link>
      <pubDate>Thu, 26 Sep 2024 00:00:00 +1000</pubDate>
      <guid>https://dylanbutler.dev/blog/swarm-gpus/</guid>
      <description>&lt;h2 id=&#34;introduction&#34;&gt;Introduction&lt;/h2&gt;&#xA;&lt;p&gt;This guide will walk you through the process of attaching GPUs to a Docker Swarm node and running services that can utilize these GPUs. This setup is particularly useful for running GPU-intensive workloads in a distributed environment.&lt;/p&gt;&#xA;&lt;h2 id=&#34;assumptions&#34;&gt;Assumptions&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;You are running a recent version of Ubuntu (Noble 24.04 LTS in this case).&lt;/li&gt;&#xA;&lt;li&gt;You have NVIDIA drivers already installed (preferably the &lt;code&gt;-server&lt;/code&gt; version).&#xA;&lt;ul&gt;&#xA;&lt;li&gt;If not, follow the instructions at &lt;a href=&#34;https://ubuntu.com/server/docs/nvidia-drivers-installation&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Ubuntu&amp;rsquo;s NVIDIA driver installation guide&lt;span aria-hidden=&#34;true&#34;&gt; ↗&lt;/span&gt;&lt;/a&gt;&#xA;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;You have the NVIDIA Container Toolkit installed.&#xA;&lt;ul&gt;&#xA;&lt;li&gt;If not, follow the instructions at &lt;a href=&#34;https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;NVIDIA&amp;rsquo;s container toolkit installation guide&lt;span aria-hidden=&#34;true&#34;&gt; ↗&lt;/span&gt;&lt;/a&gt;&#xA;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;You have Docker and Docker Swarm already set up on your system.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;steps-to-add-gpus-to-docker-swarm&#34;&gt;Steps to Add GPUs to Docker Swarm&lt;/h2&gt;&#xA;&lt;h3 id=&#34;1-identify-your-gpu&#34;&gt;1 Identify Your GPU&lt;/h3&gt;&#xA;&lt;p&gt;First, we need to find the UUID of the GPU you want to attach to Docker Swarm.&lt;/p&gt;</description>
    </item>
    <item>
      <title>App debugging not in prod</title>
      <link>https://dylanbutler.dev/blog/app-debugging-not-in-prod/</link>
      <pubDate>Thu, 06 Jun 2024 00:00:00 +1000</pubDate>
      <guid>https://dylanbutler.dev/blog/app-debugging-not-in-prod/</guid>
      <description>&lt;p&gt;Building a Game Boy Advance emulator has gotten difficult, currently stuck on what appears to be I/O Registers not outputting their correct values and when a game is loaded in the gamepak, the device runs into a boot-loop.&lt;/p&gt;&#xA;&lt;p&gt;Investigating memory data and it&amp;rsquo;s meaning is difficult, converting binary data to something meaningful, then tracing that to another address if it&amp;rsquo;s a pointer and the cycle repeats. Doing these steps for every CPU cycle to investigate how data is changing is cumbersome and led to the project collecting dust for a few months as I gained the courage to dive into this.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Self-Dependant, Self-Hosted GitHub Runners</title>
      <link>https://dylanbutler.dev/blog/self-dependant-self-hosted-github-runners/</link>
      <pubDate>Wed, 05 Jun 2024 00:00:00 +1000</pubDate>
      <guid>https://dylanbutler.dev/blog/self-dependant-self-hosted-github-runners/</guid>
      <description>&lt;p&gt;On the journey of self hosting, one thing I want to get automated and running locally was my deployments. Having all of my services defined as Docker Compose services would be ideal. Wanting to keep this configuration held in GitHub, alongside my other code, this raises the next question, how do I propagate these changes to my local machine and redeploy my services?&lt;/p&gt;&#xA;&lt;p&gt;My initial thoughts were to try to find a CI/CD platform that was able to be ran as a self-hosted setup, and also support Docker deployments, specifically supporting Compose as I wanted to keep my configs simple and familiar.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Go range over funcs</title>
      <link>https://dylanbutler.dev/blog/go-range-over-funcs/</link>
      <pubDate>Tue, 14 May 2024 00:00:00 +1000</pubDate>
      <guid>https://dylanbutler.dev/blog/go-range-over-funcs/</guid>
      <description>&lt;p&gt;Following discussions and read throughs on the following proposal, I hadn&amp;rsquo;t fully understood what the use case for this was or what the value of being able to range over functions would be.&lt;/p&gt;&#xA;&lt;p&gt;spec: add range over int, range over func · Issue #61405 · golang/go&lt;br&gt;&#xA;Following discussion on #56413, I propose to add two new types that a for-range statement can range over: integers and functions. In the spec, the table that begins the section would have a few mor…&lt;br&gt;&#xA;GitHubgolangGo Wiki: Rangefunc Experiment - The Go Programming Language&lt;br&gt;&#xA;Google logo&lt;/p&gt;</description>
    </item>
    <item>
      <title>Self-hosted traffic ingress</title>
      <link>https://dylanbutler.dev/blog/self-hosted-traefik-ingress/</link>
      <pubDate>Mon, 13 May 2024 00:00:00 +1000</pubDate>
      <guid>https://dylanbutler.dev/blog/self-hosted-traefik-ingress/</guid>
      <description>&lt;p&gt;A quick snippet of my docker compose config for managing traffic ingress into my self-hosted setup.&lt;/p&gt;&#xA;&lt;p&gt;Cloudflare Zero Trust tunnel is being used to manage forwarding traffic from the public internet to my machine as I didn’t want to expose my network directly.&lt;/p&gt;&#xA;&lt;p&gt;Exiting the tunnel, cloudflare has been setup to direct all traffic to &lt;code&gt;traefik:80&lt;/code&gt; which is exposed on the ingress network.&lt;/p&gt;&#xA;&lt;p&gt;Based on rules defined on each service, traefik will the route the traffic to each of those services:&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-04-02/</link>
      <pubDate>Tue, 02 Apr 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-04-02/</guid>
      <description>&lt;p&gt;Good morning! Today I write this entry alone because yesterday was officially the last day of devhouse. We started off the day by cleaning up the house and packing our bags. Damian and Bailey had already left in the early hours before we woke up.&lt;/p&gt;&#xA;&lt;p&gt;Once devhouse was all tidy and our bags were all packed, we said our fairwells to the house and locked the keys away. Our first stop for the day was to go straight to the train station and book tickets for the Shinkansen back to Tokyo as James, Elise and I all had the be back there.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-04-01/</link>
      <pubDate>Mon, 01 Apr 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-04-01/</guid>
      <description>&lt;p&gt;Good day! Yesterday was a bit of a slower day. I had a bit of a sleep in after another huge night the previous day. I woke up at around midday and went for the daily morning walk to the nearby conbini to get my day started.&lt;/p&gt;&#xA;&lt;p&gt;After some time James, Elise and I went for a walk to grab some lunch. Though when were getting food James got distracted on the way and ran to go on the ferris wheel. Elise and I just went to the conbini to get some lunch and went back to devhouse.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-03-31/</link>
      <pubDate>Sun, 31 Mar 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-03-31/</guid>
      <description>&lt;p&gt;Good morning! Yesterday was another big day. When I woke up I still had a headache from the night before and I woke up early at 7am because I couldn&amp;rsquo;t sleep. I was surprised when I got up and not even Damian was awake yet, normally he is first, but he did get up not long after.&lt;/p&gt;&#xA;&lt;p&gt;I spent the morning hanging out at devhouse while doing some coding on the devhouse website. I needed to fix a few bugs but it also turned out I had created some more so that was fun!&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-03-30/</link>
      <pubDate>Sat, 30 Mar 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-03-30/</guid>
      <description>&lt;p&gt;Good morning. Yesterday was a late start for the day because I had been up until 4am the day before drinking strong zeros at devhouse. When I woke up Damian had already left to start his day. He likes to get up early and go exploring, I wish I had that energy. It had been a few days since the last time I had gone for a run, and knowing the weekend was going to be busy I planned to go for a run today.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-03-29/</link>
      <pubDate>Fri, 29 Mar 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-03-29/</guid>
      <description>&lt;p&gt;Good morning! Yesterday we spent basically the entire day at Universal Studios. It was amazing! Learning from last time, I knew we needed to get there early so that would could reserve a time slot for Super Nintendo World before it all got sold out. We left devhouse before 9am so that we could get there early and then the first thing we would do when we got there was reserve the slot.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-03-28/</link>
      <pubDate>Thu, 28 Mar 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-03-28/</guid>
      <description>&lt;p&gt;I have forgotten to post for a few days I have been busy coding. Sorry.&lt;/p&gt;&#xA;&lt;p&gt;Monday night we went to akihabara.&lt;/p&gt;&#xA;&lt;p&gt;Tuesday shibuya.&lt;/p&gt;&#xA;&lt;p&gt;Wednesday night we caught the Shinkansen from Tokyo to Osaka. We checked into our booking and found a nearby yakinuki and whiskey bar where we&amp;rsquo;ll be spending a lot of time.&lt;/p&gt;&#xA;&lt;p&gt;Today we head off to Universal Studios.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-03-24/</link>
      <pubDate>Sun, 24 Mar 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-03-24/</guid>
      <description>&lt;p&gt;Today was a bit of a rest day after a big night last night. I stayed in devhouse and wrote my blogs for the past couple of days.&lt;/p&gt;&#xA;&lt;p&gt;For dinner we went to have some yakinuki and it was delicious. We had one of the servers come at point and he cooked a massive slice of delicious beef. It was the best piece of meat I have ever had.&lt;/p&gt;&#xA;&lt;p&gt;I later went for a quick 5k run near our airbnb and I went to rainbow bridge. The bridge is so big, it was amazing.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-03-23/</link>
      <pubDate>Sat, 23 Mar 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-03-23/</guid>
      <description>&lt;p&gt;This morning we started the day early, preparing ourselves for a huge day ahead. We had already booked a pub crawl for tonight yesterday, which would take us late into the night, and I had promised that I would do parkrun in the morning, starting my day early. My alarm went off at 6am, I was not ready. Alas though I pulled myself out of bed and was greeted by an already awake James who said he&amp;rsquo;d be joining me for parkrun.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://dylanbutler.dev/travel/japan-2024/2024-03-22/</link>
      <pubDate>Fri, 22 Mar 2024 00:00:00 +1100</pubDate>
      <guid>https://dylanbutler.dev/travel/japan-2024/2024-03-22/</guid>
      <description>&lt;p&gt;Good morning, this post comes from the day after because I forgot/was too tired yesterday to manage to pull together a post.&lt;/p&gt;&#xA;&lt;p&gt;We started the day by landing into Tokyo in the early hours of Friday morning, approximately around 5am in the morning. It was a rough start. I had maybe 2-3 hours of sleep on the plane, though it was very uncomfortable because the seats are so small and I am so large so I didn&amp;rsquo;t get too much rest.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Japan in Film 2023</title>
      <link>https://dylanbutler.dev/photography/japan-in-film-2023/</link>
      <pubDate>Mon, 14 Aug 2023 00:00:00 +1000</pubDate>
      <guid>https://dylanbutler.dev/photography/japan-in-film-2023/</guid>
      <description>&lt;p&gt;A collection of film images taken on my Canon F-1, purchased during a trip to Japan in 2023.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#x9;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#x9;&#xA;&#x9;&#xA;&#xA;&#x9;&#xA;&#x9;&#x9;&lt;script src=&#34;https://dylanbutler.dev/shortcode-gallery/jquery-3.7.1.min.js&#34;&gt;&lt;/script&gt;&#xA;&#x9;&#xA;&#xA;&#x9;&#xA;&#x9;&#x9;&lt;script src=&#34;https://dylanbutler.dev/shortcode-gallery/lazy/jquery.lazy.min.js&#34;&gt;&lt;/script&gt;&#xA;&#x9;&#xA;&#xA;&#x9;&lt;script src=&#34;https://dylanbutler.dev/shortcode-gallery/swipebox/js/jquery.swipebox.min.js&#34;&gt;&lt;/script&gt;&#xA;&#x9;&lt;link rel=&#34;stylesheet&#34; href=&#34;https://dylanbutler.dev/shortcode-gallery/swipebox/css/swipebox.min.css&#34;&gt;&#xA;&#xA;&#x9;&lt;script src=&#34;https://dylanbutler.dev/shortcode-gallery/justified_gallery/jquery.justifiedGallery.min.js&#34;&gt;&lt;/script&gt;&#xA;&#x9;&lt;link rel=&#34;stylesheet&#34; href=&#34;https://dylanbutler.dev/shortcode-gallery/justified_gallery/justifiedGallery.min.css&#34;/&gt;&#xA;&#xA;&#xA;&lt;style&gt;&#xA;&#x9;&#xA;&#xA;&#x9;&#xA;&lt;/style&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;div id=&#34;gallery-1314d98193fe06a8de95cd4bb6f2f8c6-0-wrapper&#34; class=&#34;gallery-wrapper&#34;&gt;&#xA;&lt;div id=&#34;gallery-1314d98193fe06a8de95cd4bb6f2f8c6-0&#34; class=&#34;justified-gallery&#34;&gt;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7124.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGLq6&amp;#43;sFBAAA//8DXwGsC3l/IwAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7124_hu_f05e3bdf857249a1.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7158.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKqra0ABAAA//8C9QF1IiIx0wAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7158_hu_84f895d69e0bad92.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7161.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGLatnUzIAAA//8ESwIhoZmtJwAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7161_hu_d09b87f2c00538c4.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7175.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKaN282IAAA//8DvQHaYNoHhAAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7175_hu_f74be738f58cd840.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7183.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGLqbq4EBAAA//8DLAGKP3rqtAAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7183_hu_c925adeb1b0bc307.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7184.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGLauH4NIAAA//8EKQIPijZZdwAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7184_hu_e0c04bb754a3f9dc.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7194.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGIqLy0ABAAA//8CywFfjBvRaAAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7194_hu_5d366872a09d2a59.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7201.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;600&#34; height=&#34;400&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGJatnw2IAAA//8D5wHrgb6ZIQAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7201_hu_f26b1d329cc9d08b.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7225.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKy9s0ABAAA//8BvwDzo2Oc8gAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7225_hu_328935e5f97219c7.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7226.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;600&#34; height=&#34;400&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKqak0HBAAA//8C6wFpwU5qpwAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7226_hu_f1469db42321ab5b.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7229.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;600&#34; height=&#34;400&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGJKdHMABAAA//8B&amp;#43;wDqcQc/KgAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7229_hu_1804bdc165e216dc.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7238.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGJat34dIAAA//8EIgIOBDS9jgAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7238_hu_2f800017a3cecfc1.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7242.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;600&#34; height=&#34;400&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGIq8TQCBAAA//8CLADy9Qk12AAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7242_hu_de07907d1b82aaa7.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7243.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGLqaIoCBAAA//8DAgFnB3Q2aQAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7243_hu_4a393c62c8c4a78f.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7247.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGJavn4dIAAA//8EDQIH01A&amp;#43;ZgAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7247_hu_49e91446a8c4360e.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7269.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGLS09cABAAA//8BHACIfbI9hgAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7269_hu_5f4347c32f3c144.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7286.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;600&#34; height=&#34;400&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGLatHkTIAAA//8EOgIa7N1J7AAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7286_hu_cfc4dc5b50316551.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7288.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;600&#34; height=&#34;400&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKaMi0VEAAA//8DWQGSKuoZZQAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7288_hu_6f66ea17abcf5234.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7290.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;600&#34; height=&#34;400&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGJqro8BBAAA//8C7wFhcgL4bAAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7290_hu_7931104a5cdd212b.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7293.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGI6unsTIAAA//8EgwI1kkckvAAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7293_hu_fc5e01605d942e08.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7295.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGLq6&amp;#43;kCBAAA//8DWAGnI1QSlgAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7295_hu_f579f9f3c6a9e067.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7302.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKaOaMGEAAA//8DgwGw5whoGwAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7302_hu_85b39f724e64941b.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7304.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKqrI4GBAAA//8CyAFSIl4nhQAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7304_hu_907fb87972b45a61.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7306.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKaOWcOIAAA//8DqwHUtx8F1gAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7306_hu_9e60647bc1c5421d.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7321.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGIK8LUHBAAA//8B1QDfYOuonQAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7321_hu_40e6d6dd43bae5d6.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7347.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;600&#34; height=&#34;400&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKaMqsTEAAA//8DhQG6CYbyUAAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7347_hu_b5d7bf9a0a7c67ed.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7353.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGIqqM4HBAAA//8CwQFdJ9ZtIgAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7353_hu_17dfd0c433eaf429.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7367.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGJKTYoABAAA//8CVwEiRHoafwAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7367_hu_b54de6c3918d6317.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&lt;div&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;a href=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7373.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;galleryImg&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-description=&#34;SP500&lt;br/&gt; &#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;img&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;width=&#34;401&#34; height=&#34;600&#34;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;src=&#34;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAEElEQVR4nGKqrssCBAAA//8C4wFmdT3xeQAAAABJRU5ErkJggg==&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;class=&#34;lazy&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;data-src=&#34;https://dylanbutler.dev/photography/japan-in-film-2023/images/IMG_7373_hu_2aa336364b43b5b0.JPG&#34;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&lt;/a&gt;&#xA;&#x9;&#x9;&#x9;&lt;/div&gt;&#xA;&#x9;&#x9;&#xA;&#x9;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;script&gt;&#xA;&#x9;if (!(&#34;HSCGjQuery&#34; in window)) {&#xA;&#x9;&#x9;if (!window.jQuery) {&#xA;&#x9;&#x9;&#x9;throw new Error(&#34;jQuery is not loaded, hugo-shortcode-gallery wont work without it!&#34;);&#xA;&#x9;&#x9;}&#xA;&#x9;&#x9;window.HSCGjQuery = window.jQuery.noConflict(true);&#xA;&#x9;}&#xA;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;;(function($) {&#xA;&#xA;&#x9;&#x9;$( document ).ready(() =&gt; {&#xA;&#x9;&#x9;&#x9;const gallery = $(&#34;#gallery-1314d98193fe06a8de95cd4bb6f2f8c6-0&#34;);&#xA;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;let swipeboxInstance = null;&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;gallery.on(&#39;jg.complete&#39;, () =&gt; {&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;$(() =&gt; {&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;$(&#39;.lazy&#39;).Lazy({&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;visibleOnly: true,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;afterLoad: element =&gt; element.css({filter: &#34;none&#34;, transition: &#34;filter 1.0s ease-in-out&#34;})&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;});&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;});&#xA;&#x9;&#x9;&#x9;&#x9;&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;swipeboxInstance = $(&#39;.galleryImg&#39;).swipebox(&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;$.extend({},&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;{  }&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;)&#xA;&#x9;&#x9;&#x9;&#x9;);&#xA;&#x9;&#x9;&#x9;});&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;gallery.justifiedGallery($.extend(&#xA;&#x9;&#x9;&#x9;&#x9;{&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;rowHeight : &#34;360&#34;,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;margins : &#34;15&#34;,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;border : 0,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;randomize :  true ,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;waitThumbnailsLoad : false,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;lastRow : &#34;justify&#34;,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;captions : false,&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#x9;},&#xA;&#x9;&#x9;&#x9;&#x9;{  }&#xA;&#x9;&#x9;&#x9;));&#xA;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;});&#xA;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;&#xA;&#x9;})(window.HSCGjQuery)&#xA;&lt;/script&gt;</description>
    </item>
  </channel>
</rss>
