wa2k.com-Website/www/gallery.html
2026-05-08 16:43:33 -07:00

1643 lines
No EOL
175 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>WA2000 — Gallery</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link type="text/css" rel="stylesheet" href="./style.css">
<style>
/* ── Gallery layout ── */
.gallery-wrap {
width: min(880px, 88%);
margin: 0 auto;
padding: 0 0 4rem;
display: flex;
flex-direction: column;
gap: 16px;
}
#photo-list {
display: flex;
flex-direction: column;
gap: 16px;
}
/* Photo card — matches .card glass style */
.photo-item {
position: relative;
width: 100%;
border-radius: 18px;
overflow: hidden;
cursor: zoom-in;
border: 4px solid rgba(196, 214, 226, 0.9);
box-shadow:
0 2px 8px rgba(0,0,0,0.15),
inset 0 0 2px rgba(0,0,0,0.2);
background: rgba(242, 242, 243, 0.6);
backdrop-filter: blur(8px) saturate(1.4) brightness(1.02);
-webkit-backdrop-filter: blur(8px) saturate(1.4) brightness(1.02);
}
/* Glass rim highlight — same as .card::after */
.photo-item::after {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
box-shadow:
inset 1px 1px 0 rgba(196, 214, 226, 0.8),
inset -1px -1px 0 rgba(0,0,0,0.08);
}
.photo-item img {
display: block;
width: 100%;
height: auto;
border-radius: 14px; /* slightly inset from card border-radius */
user-select: none;
pointer-events: none;
}
.meta-field {
display: flex;
flex-direction: column;
gap: 1px;
}
.meta-label {
font-size: 0.6rem;
text-transform: uppercase;
letter-spacing: 0.12em;
color: rgba(35, 38, 41, 0.45);
font-weight: 400;
}
.meta-value {
font-size: 0.72rem;
color: rgba(35, 38, 41, 0.88);
font-weight: 300;
letter-spacing: 0.04em;
}
/* ── Pagination ── */
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 1.5rem 0 0.5rem;
flex-wrap: wrap;
}
.page-btn {
background: rgba(242, 242, 243, 0.6);
border: 4px solid rgba(196, 214, 226, 0.9);
color: rgba(35, 38, 41, 0.75);
font-size: 0.72rem;
letter-spacing: 0.08em;
padding: 0.3rem 0.8rem;
border-radius: 999px;
cursor: pointer;
backdrop-filter: blur(8px);
box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 0 2px rgba(0,0,0,0.15);
transition: background 0.15s, color 0.15s, border-color 0.15s;
font-weight: 300;
}
.page-btn:hover {
background: rgba(196, 214, 226, 0.55);
color: rgba(35, 38, 41, 0.95);
}
.page-btn.active {
background: rgba(137, 180, 250, 0.35);
border-color: rgba(137, 180, 250, 0.9);
color: rgba(35, 38, 41, 0.95);
}
.page-btn:disabled {
opacity: 0.3;
cursor: default;
}
.page-info {
font-size: 0.7rem;
color: rgba(35, 38, 41, 0.4);
letter-spacing: 0.08em;
padding: 0 0.3rem;
font-weight: 300;
}
/* ── Discord-style image viewer ── */
#viewer-backdrop {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(12px) saturate(0.8);
-webkit-backdrop-filter: blur(12px) saturate(0.8);
z-index: 200;
align-items: center;
justify-content: center;
flex-direction: column;
}
#viewer-backdrop.open {
display: flex;
animation: vFadeIn 0.18s ease;
}
@keyframes vFadeIn { from { opacity: 0 } to { opacity: 1 } }
#viewer-img-wrap {
position: relative;
max-width: 90vw;
max-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
}
#viewer-img {
max-width: 90vw;
max-height: 85vh;
object-fit: contain;
border-radius: 12px;
border: 4px solid rgba(196, 214, 226, 0.5);
box-shadow: 0 8px 40px rgba(0,0,0,0.6);
animation: vImgIn 0.2s cubic-bezier(0.4,0,0.2,1);
cursor: default;
}
@keyframes vImgIn {
from { transform: scale(0.94); opacity: 0 }
to { transform: scale(1); opacity: 1 }
}
/* Metadata toolbar below the viewer image */
#viewer-toolbar {
margin-top: 12px;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.35rem 1.2rem;
background: rgba(242, 242, 243, 0.92);
border: 1px solid rgba(196, 214, 226, 0.9);
border-radius: 16px;
padding: 10px 18px;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
max-width: 90vw;
}
/* Close button top-right */
#viewer-close {
position: fixed;
top: 1.2rem;
right: 1.4rem;
background: rgba(242,242,243,0.18);
border: 1px solid rgba(196,214,226,0.35);
color: rgba(255,255,255,0.8);
width: 36px;
height: 36px;
border-radius: 50%;
font-size: 1.1rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(8px);
transition: background 0.15s;
z-index: 201;
}
#viewer-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
/* Prev / Next arrow buttons */
.viewer-arrow {
position: fixed;
top: 50%;
transform: translateY(-50%);
background: rgba(242,242,243,0.18);
border: 1px solid rgba(196,214,226,0.35);
color: rgba(255,255,255,0.8);
width: 44px;
height: 44px;
border-radius: 50%;
font-size: 1.2rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(8px);
transition: background 0.15s;
z-index: 201;
}
.viewer-arrow:hover { background: rgba(255,255,255,0.2); color: #fff; }
.viewer-arrow:disabled { opacity: 0.2; cursor: default; }
#viewer-prev { left: 1rem; }
#viewer-next { right: 1rem; }
/* ── Back to top (inline, centered at bottom of gallery) ── */
.pagination-bottom {
display: flex;
justify-content: center;
padding: 1rem 0 0.5rem;
}
#back-top {
background: rgba(242, 242, 243, 0.6);
border: 4px solid rgba(196, 214, 226, 0.9);
color: rgba(35, 38, 41, 0.75);
font-size: 0.7rem;
letter-spacing: 0.1em;
padding: 0.4rem 0.85rem;
border-radius: 999px;
cursor: pointer;
backdrop-filter: blur(8px);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: background 0.15s;
}
#back-top:hover { background: rgba(196,214,226,0.5); }
.gallery-empty {
text-align: center;
padding: 5rem 2rem;
font-size: 0.85rem;
color: rgba(35, 38, 41, 0.4);
letter-spacing: 0.12em;
}
</style>
</head>
<body>
<div class="banner">
<img src="banner.png" alt="banner"/>
</div>
<div class="nav-wrap">
<a href="https://www.youtube.com/@universebow" target="_blank" rel="noopener noreferrer">
<img src="./youtube.svg" alt="YouTube">
</a>
<div style="width:2%;"></div>
<div class="nav-pill" id="nav-pill">
<div class="nav-pill-bar" id="nav-pill-bar">
<span class="nav-logo">WA2000</span>
<svg class="nav-chevron" id="nav-chevron" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<polyline points="5,7 10,13 15,7" stroke="rgba(255,255,255,0.7)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="nav-dropdown" id="nav-dropdown">
<div class="nav-divider"></div>
<a href="" class="nav-link">------</a>
<a href="about.html" class="nav-link">About</a>
<a href="gallery.html" class="nav-link">Gallery</a>
<a href="#" class="nav-link">Contact</a>
</div>
</div>
<div style="width:2%;"></div>
<a href="https://www.youtube.com/@universebow" target="_blank" rel="noopener noreferrer">
<img src="./youtube.svg" alt="YouTube" width="43" height="43">
</a>
</div>
<div class="nav-placeholder" id="nav-placeholder"></div>
<svg id="liquid-glass-svg" xmlns="http://www.w3.org/2000/svg" style="position:absolute;width:0;height:0;overflow:hidden;">
<defs>
<filter id="liquid-glass-nav" x="0" y="0" width="100%" height="100%" color-interpolation-filters="sRGB">
<feImage id="nav-disp-img" result="disp_map"/>
<feDisplacementMap in="SourceGraphic" in2="disp_map" id="nav-disp-filter" xChannelSelector="R" yChannelSelector="G" result="refracted"/>
<feImage id="nav-spec-img" result="spec_map"/>
<feBlend in="refracted" in2="spec_map" mode="screen" result="with_specular"/>
<feComposite in="with_specular" in2="SourceGraphic" operator="atop"/>
</filter>
<filter id="liquid-glass" x="0" y="0" width="100%" height="100%" color-interpolation-filters="sRGB">
<feImage id="displacement-map-img" result="disp_map"/>
<feDisplacementMap in="SourceGraphic" in2="disp_map" id="displacement-map-filter" xChannelSelector="R" yChannelSelector="G" result="refracted"/>
<feImage id="specular-map-img" result="spec_map"/>
<feBlend in="refracted" in2="spec_map" mode="screen" result="with_specular"/>
<feComposite in="with_specular" in2="SourceGraphic" operator="atop"/>
</filter>
</defs>
</svg>
<!-- Gallery -->
<div class="gallery-wrap">
<div class="pagination" id="pagination"></div>
<div id="photo-list"></div>
<div class="pagination-bottom">
<button id="back-top" onclick="window.scrollTo({top:0,behavior:'smooth'})">↑ top</button>
</div>
</div>
<!-- Discord-style viewer -->
<div id="viewer-backdrop">
<button id="viewer-close" aria-label="Close"></button>
<button class="viewer-arrow" id="viewer-prev" aria-label="Previous"></button>
<div id="viewer-img-wrap">
<img id="viewer-img" src="" alt="">
</div>
<div id="viewer-toolbar"><!-- populated by updateViewer() --></div>
<button class="viewer-arrow" id="viewer-next" aria-label="Next"></button>
</div>
<script src="./script.js"></script>
<script>
// ═══════════════════════════════════════════════
// CONFIGURATION
// ═══════════════════════════════════════════════
const PHOTOS_PER_PAGE = 25; // 25 × ~8 MB = ~200 MB max per page
// Populate with your photos. See fish shell script below comments.
// Each entry: { file, date, time, camera, focal, aperture, iso, shutter }
const ALL_PHOTOS = [
{ file:"3W0A4327.JPG", date:"2026-04-29", time:"04:54 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4328.JPG", date:"2026-04-29", time:"04:55 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/5.6", iso:"125", shutter:"1/250" },
{ file:"3W0A4329.JPG", date:"2026-04-29", time:"05:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"160", shutter:"1/320" },
{ file:"3W0A4330.JPG", date:"2026-04-29", time:"05:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/320" },
{ file:"3W0A4331.JPG", date:"2026-04-29", time:"05:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"160", shutter:"1/320" },
{ file:"3W0A4332.JPG", date:"2026-04-29", time:"05:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"160", shutter:"1/320" },
{ file:"3W0A4333.JPG", date:"2026-04-29", time:"05:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"160", shutter:"1/320" },
{ file:"3W0A4334.JPG", date:"2026-04-29", time:"05:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/320" },
{ file:"3W0A4335.JPG", date:"2026-04-29", time:"05:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"160", shutter:"1/320" },
{ file:"3W0A4336.JPG", date:"2026-04-29", time:"05:03 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4337.JPG", date:"2026-04-29", time:"05:03 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4338.JPG", date:"2026-04-29", time:"05:06 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"640", shutter:"1/500" },
{ file:"3W0A4339.JPG", date:"2026-04-29", time:"05:07 PM", camera:"Canon EOS R7", focal:"29.0 mm", aperture:"f/4.5", iso:"160", shutter:"1/100" },
{ file:"3W0A4340.JPG", date:"2026-04-29", time:"05:07 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4341.JPG", date:"2026-04-29", time:"05:07 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4342.JPG", date:"2026-04-29", time:"05:08 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4344.JPG", date:"2026-04-29", time:"05:08 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4345.JPG", date:"2026-04-29", time:"05:08 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4346.JPG", date:"2026-04-29", time:"05:08 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4347.JPG", date:"2026-04-29", time:"05:08 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/9.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4348.JPG", date:"2026-04-29", time:"05:09 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4349.JPG", date:"2026-04-29", time:"05:09 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4350.JPG", date:"2026-04-29", time:"05:09 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4351.JPG", date:"2026-04-29", time:"05:09 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4352.JPG", date:"2026-04-29", time:"05:10 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4353.JPG", date:"2026-04-29", time:"05:10 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4354.JPG", date:"2026-04-29", time:"05:10 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A4355.JPG", date:"2026-04-29", time:"05:10 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"160", shutter:"1/1250" },
{ file:"3W0A4356.JPG", date:"2026-04-29", time:"05:10 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4357.JPG", date:"2026-04-29", time:"05:12 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4358.JPG", date:"2026-04-29", time:"05:12 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4359.JPG", date:"2026-04-29", time:"05:12 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4360.JPG", date:"2026-04-29", time:"05:16 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4361.JPG", date:"2026-04-29", time:"05:17 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/400" },
{ file:"3W0A4362.JPG", date:"2026-04-29", time:"05:17 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/400" },
{ file:"3W0A4363.JPG", date:"2026-04-29", time:"05:22 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4364.JPG", date:"2026-04-29", time:"05:22 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4365.JPG", date:"2026-04-29", time:"05:22 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4366.JPG", date:"2026-04-29", time:"05:22 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/8.0", iso:"125", shutter:"1/400" },
{ file:"3W0A4367.JPG", date:"2026-04-29", time:"05:23 PM", camera:"Canon EOS R7", focal:"132.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4368.JPG", date:"2026-04-29", time:"05:23 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4369.JPG", date:"2026-04-29", time:"05:31 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4370.JPG", date:"2026-04-29", time:"05:31 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4371.JPG", date:"2026-04-29", time:"05:31 PM", camera:"Canon EOS R7", focal:"95.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4372.JPG", date:"2026-04-29", time:"05:31 PM", camera:"Canon EOS R7", focal:"95.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4373.JPG", date:"2026-04-29", time:"05:31 PM", camera:"Canon EOS R7", focal:"95.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4374.JPG", date:"2026-04-29", time:"05:31 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4375.JPG", date:"2026-04-29", time:"05:32 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4376.JPG", date:"2026-04-29", time:"05:49 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4377.JPG", date:"2026-04-29", time:"05:49 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4378.JPG", date:"2026-04-29", time:"05:49 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4379.JPG", date:"2026-04-29", time:"05:49 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4380.JPG", date:"2026-04-29", time:"05:50 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4381.JPG", date:"2026-04-29", time:"05:50 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4382.JPG", date:"2026-04-29", time:"05:50 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4383.JPG", date:"2026-04-29", time:"05:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4384.JPG", date:"2026-04-29", time:"05:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4385.JPG", date:"2026-04-29", time:"05:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4386.JPG", date:"2026-04-29", time:"05:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4387.JPG", date:"2026-04-29", time:"05:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4388.JPG", date:"2026-04-29", time:"05:51 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4389.JPG", date:"2026-04-29", time:"05:51 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4390.JPG", date:"2026-04-29", time:"05:51 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4391.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4392.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4393.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4394.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4395.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4396.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4397.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4398.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4399.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4400.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4401.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4402.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4403.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4404.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4405.JPG", date:"2026-04-29", time:"05:52 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4406.JPG", date:"2026-04-29", time:"05:58 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4407.JPG", date:"2026-04-29", time:"05:58 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4408.JPG", date:"2026-04-29", time:"05:58 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4409.JPG", date:"2026-04-29", time:"06:12 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4410.JPG", date:"2026-04-29", time:"06:12 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4411.JPG", date:"2026-04-29", time:"06:12 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4412.JPG", date:"2026-04-29", time:"06:12 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4413.JPG", date:"2026-04-29", time:"06:12 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4414.JPG", date:"2026-04-29", time:"06:14 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/250" },
{ file:"3W0A4415.JPG", date:"2026-04-29", time:"06:14 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4416.JPG", date:"2026-04-29", time:"06:14 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4417.JPG", date:"2026-04-29", time:"06:14 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4418.JPG", date:"2026-04-29", time:"06:23 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4419.JPG", date:"2026-04-29", time:"06:23 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/400" },
{ file:"3W0A4420.JPG", date:"2026-04-29", time:"06:23 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/400" },
{ file:"3W0A4421.JPG", date:"2026-04-29", time:"06:24 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/8.0", iso:"160", shutter:"1/400" },
{ file:"3W0A4422.JPG", date:"2026-04-29", time:"06:24 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/400" },
{ file:"3W0A4423.JPG", date:"2026-04-29", time:"06:24 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/400" },
{ file:"3W0A4424.JPG", date:"2026-04-29", time:"06:24 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4425.JPG", date:"2026-04-29", time:"06:24 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4426.JPG", date:"2026-04-29", time:"06:24 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4427.JPG", date:"2026-04-29", time:"06:25 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4428.JPG", date:"2026-04-29", time:"06:25 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4429.JPG", date:"2026-04-29", time:"06:25 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"160", shutter:"1/320" },
{ file:"3W0A4430.JPG", date:"2026-04-29", time:"06:25 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4431.JPG", date:"2026-04-29", time:"06:27 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"125", shutter:"1/320" },
{ file:"3W0A4432.JPG", date:"2026-04-29", time:"06:27 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"125", shutter:"1/320" },
{ file:"3W0A4433.JPG", date:"2026-04-29", time:"06:27 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/5.6", iso:"250", shutter:"1/1250" },
{ file:"3W0A4434.JPG", date:"2026-04-29", time:"06:27 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4435.JPG", date:"2026-04-29", time:"06:27 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4436.JPG", date:"2026-04-29", time:"06:27 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4437.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4438.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4439.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4440.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4441.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/5.6", iso:"250", shutter:"1/1250" },
{ file:"3W0A4442.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4443.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4444.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4445.JPG", date:"2026-04-29", time:"06:29 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/320" },
{ file:"3W0A4446.JPG", date:"2026-04-29", time:"06:30 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4447.JPG", date:"2026-04-29", time:"06:30 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4448.JPG", date:"2026-04-29", time:"06:30 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4449.JPG", date:"2026-04-29", time:"06:30 PM", camera:"Canon EOS R7", focal:"29.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/125" },
{ file:"3W0A4450.JPG", date:"2026-04-29", time:"06:30 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/4.5", iso:"100", shutter:"1/125" },
{ file:"3W0A4451.JPG", date:"2026-04-29", time:"06:30 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/125" },
{ file:"3W0A4452.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/125" },
{ file:"3W0A4453.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4454.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4455.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4456.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4457.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/125" },
{ file:"3W0A4458.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/4.5", iso:"100", shutter:"1/100" },
{ file:"3W0A4459.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/4.5", iso:"100", shutter:"1/80" },
{ file:"3W0A4460.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4461.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/125" },
{ file:"3W0A4462.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/125" },
{ file:"3W0A4463.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4464.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4465.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4466.JPG", date:"2026-04-29", time:"06:31 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.0", iso:"100", shutter:"1/80" },
{ file:"3W0A4467.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.0", iso:"100", shutter:"1/100" },
{ file:"3W0A4468.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/125" },
{ file:"3W0A4469.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4470.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4471.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4472.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4473.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4474.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/5.6", iso:"125", shutter:"1/200" },
{ file:"3W0A4475.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/5.6", iso:"125", shutter:"1/200" },
{ file:"3W0A4476.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/6.3", iso:"320", shutter:"1/250" },
{ file:"3W0A4477.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/6.3", iso:"320", shutter:"1/250" },
{ file:"3W0A4478.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/6.3", iso:"400", shutter:"1/250" },
{ file:"3W0A4479.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/5.0", iso:"250", shutter:"1/125" },
{ file:"3W0A4480.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"320", shutter:"1/125" },
{ file:"3W0A4481.JPG", date:"2026-04-29", time:"06:32 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/5.0", iso:"200", shutter:"1/125" },
{ file:"3W0A4482.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/4.5", iso:"100", shutter:"1/100" },
{ file:"3W0A4483.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/125" },
{ file:"3W0A4484.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"29.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4485.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/4.5", iso:"125", shutter:"1/160" },
{ file:"3W0A4486.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/5.0", iso:"125", shutter:"1/160" },
{ file:"3W0A4487.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/5.0", iso:"160", shutter:"1/160" },
{ file:"3W0A4488.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/250" },
{ file:"3W0A4489.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"125", shutter:"1/125" },
{ file:"3W0A4490.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/5.6", iso:"320", shutter:"1/200" },
{ file:"3W0A4491.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.5", iso:"100", shutter:"1/80" },
{ file:"3W0A4492.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.5", iso:"100", shutter:"1/100" },
{ file:"3W0A4493.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.5", iso:"100", shutter:"1/100" },
{ file:"3W0A4494.JPG", date:"2026-04-29", time:"06:33 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4495.JPG", date:"2026-04-29", time:"06:34 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4496.JPG", date:"2026-04-29", time:"06:34 PM", camera:"Canon EOS R7", focal:"28.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4497.JPG", date:"2026-04-29", time:"06:34 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4498.JPG", date:"2026-04-29", time:"06:34 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4499.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4500.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4501.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4502.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4503.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4504.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4505.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4506.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4507.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4508.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4509.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4510.JPG", date:"2026-04-29", time:"06:35 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/5.6", iso:"200", shutter:"1/1250" },
{ file:"3W0A4511.JPG", date:"2026-04-29", time:"06:36 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4512.JPG", date:"2026-04-29", time:"06:37 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4513.JPG", date:"2026-04-29", time:"06:37 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4514.JPG", date:"2026-04-29", time:"06:37 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4515.JPG", date:"2026-04-29", time:"06:37 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4516.JPG", date:"2026-04-29", time:"06:37 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4517.JPG", date:"2026-04-29", time:"06:37 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4518.JPG", date:"2026-04-29", time:"06:38 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4519.JPG", date:"2026-04-29", time:"06:38 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4520.JPG", date:"2026-04-29", time:"06:38 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A4521.JPG", date:"2026-04-29", time:"06:38 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4522.JPG", date:"2026-04-29", time:"06:44 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/6.3", iso:"125", shutter:"1/250" },
{ file:"3W0A4523.JPG", date:"2026-04-29", time:"06:44 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/320" },
{ file:"3W0A4524.JPG", date:"2026-04-29", time:"06:44 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/320" },
{ file:"3W0A4525.JPG", date:"2026-04-29", time:"06:44 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4526.JPG", date:"2026-04-29", time:"06:44 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4527.JPG", date:"2026-04-29", time:"06:44 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4528.JPG", date:"2026-04-29", time:"06:44 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4529.JPG", date:"2026-04-29", time:"07:28 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/4.0", iso:"100", shutter:"1/80" },
{ file:"3W0A4530.JPG", date:"2026-04-29", time:"07:28 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/4.0", iso:"100", shutter:"1/80" },
{ file:"3W0A4531.JPG", date:"2026-04-29", time:"07:28 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/5.0", iso:"250", shutter:"1/200" },
{ file:"3W0A4532.JPG", date:"2026-04-29", time:"07:28 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/7.1", iso:"1600", shutter:"1/250" },
{ file:"3W0A4533.JPG", date:"2026-04-29", time:"07:56 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/5.6", iso:"6400", shutter:"1/80" },
{ file:"3W0A4534.JPG", date:"2026-04-29", time:"07:56 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"6400", shutter:"1/80" },
{ file:"3W0A4535.JPG", date:"2026-04-29", time:"07:56 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"6400", shutter:"1/30" },
{ file:"3W0A4536.JPG", date:"2026-04-29", time:"09:54 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/5.6", iso:"6400", shutter:"1" },
{ file:"3W0A4537.JPG", date:"2026-04-29", time:"09:54 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/5.6", iso:"6400", shutter:"0.8" },
{ file:"3W0A4538.JPG", date:"2026-04-29", time:"09:55 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/6.3", iso:"6400", shutter:"0.4" },
{ file:"3W0A4539.JPG", date:"2026-04-30", time:"11:59 AM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"6400", shutter:"1/8" },
{ file:"3W0A4540.JPG", date:"2026-04-30", time:"12:00 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"6400", shutter:"1/20" },
{ file:"3W0A4541.JPG", date:"2026-04-30", time:"12:00 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"6400", shutter:"1/30" },
{ file:"3W0A4542.JPG", date:"2026-04-30", time:"12:00 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"6400", shutter:"1/30" },
{ file:"3W0A4543.JPG", date:"2026-04-30", time:"12:00 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"6400", shutter:"1/8" },
{ file:"3W0A4545.JPG", date:"2026-04-30", time:"12:01 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"6400", shutter:"1/8" },
{ file:"3W0A4546.JPG", date:"2026-04-30", time:"12:03 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"5000", shutter:"1/60" },
{ file:"3W0A4547.JPG", date:"2026-05-02", time:"01:33 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"400", shutter:"1/1250" },
{ file:"3W0A4548.JPG", date:"2026-05-02", time:"01:33 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4549.JPG", date:"2026-05-02", time:"01:33 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4550.JPG", date:"2026-05-02", time:"01:34 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4551.JPG", date:"2026-05-02", time:"01:34 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4552.JPG", date:"2026-05-02", time:"01:34 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4553.JPG", date:"2026-05-02", time:"01:34 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4554.JPG", date:"2026-05-02", time:"01:34 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4555.JPG", date:"2026-05-02", time:"01:35 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4556.JPG", date:"2026-05-02", time:"01:35 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4557.JPG", date:"2026-05-02", time:"01:35 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4558.JPG", date:"2026-05-02", time:"01:35 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"160", shutter:"1/1250" },
{ file:"3W0A4559.JPG", date:"2026-05-02", time:"01:36 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4560.JPG", date:"2026-05-02", time:"01:36 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4561.JPG", date:"2026-05-02", time:"01:36 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4562.JPG", date:"2026-05-02", time:"01:36 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4563.JPG", date:"2026-05-02", time:"01:36 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4564.JPG", date:"2026-05-02", time:"01:36 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4565.JPG", date:"2026-05-02", time:"01:36 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4566.JPG", date:"2026-05-02", time:"01:36 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4567.JPG", date:"2026-05-02", time:"01:39 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4568.JPG", date:"2026-05-02", time:"01:39 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/250" },
{ file:"3W0A4569.JPG", date:"2026-05-02", time:"01:40 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4570.JPG", date:"2026-05-02", time:"01:40 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"160", shutter:"1/1250" },
{ file:"3W0A4571.JPG", date:"2026-05-02", time:"01:40 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"200", shutter:"1/1250" },
{ file:"3W0A4572.JPG", date:"2026-05-02", time:"01:40 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4573.JPG", date:"2026-05-02", time:"01:40 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4574.JPG", date:"2026-05-02", time:"01:40 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4575.JPG", date:"2026-05-02", time:"01:41 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A4576.JPG", date:"2026-05-02", time:"01:41 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4577.JPG", date:"2026-05-02", time:"01:42 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4578.JPG", date:"2026-05-02", time:"01:42 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4579.JPG", date:"2026-05-02", time:"01:42 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4580.JPG", date:"2026-05-02", time:"01:42 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4581.JPG", date:"2026-05-02", time:"01:43 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4582.JPG", date:"2026-05-02", time:"01:43 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4583.JPG", date:"2026-05-02", time:"01:43 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4584.JPG", date:"2026-05-02", time:"01:44 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A4585.JPG", date:"2026-05-02", time:"01:44 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4586.JPG", date:"2026-05-02", time:"01:44 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4587.JPG", date:"2026-05-02", time:"01:44 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4588.JPG", date:"2026-05-02", time:"01:46 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A4589.JPG", date:"2026-05-02", time:"01:46 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4590.JPG", date:"2026-05-02", time:"01:47 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4591.JPG", date:"2026-05-02", time:"01:49 PM", camera:"Canon EOS R7", focal:"31.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/500" },
{ file:"3W0A4592.JPG", date:"2026-05-02", time:"01:50 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4593.JPG", date:"2026-05-02", time:"01:50 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1250" },
{ file:"3W0A4594.JPG", date:"2026-05-02", time:"01:51 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4595.JPG", date:"2026-05-02", time:"01:51 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4596.JPG", date:"2026-05-02", time:"01:52 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4597.JPG", date:"2026-05-02", time:"01:52 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4598.JPG", date:"2026-05-02", time:"01:52 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4599.JPG", date:"2026-05-02", time:"01:53 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4600.JPG", date:"2026-05-02", time:"01:53 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/13.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4601.JPG", date:"2026-05-02", time:"01:53 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4602.JPG", date:"2026-05-02", time:"01:53 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/13.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4603.JPG", date:"2026-05-02", time:"01:53 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4604.JPG", date:"2026-05-02", time:"01:53 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4605.JPG", date:"2026-05-02", time:"01:53 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4606.JPG", date:"2026-05-02", time:"01:53 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4607.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/10.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4608.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4609.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4610.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4611.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4612.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4613.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4614.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4615.JPG", date:"2026-05-02", time:"01:54 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4616.JPG", date:"2026-05-02", time:"01:55 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1250" },
{ file:"3W0A4617.JPG", date:"2026-05-02", time:"01:55 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1250" },
{ file:"3W0A4618.JPG", date:"2026-05-02", time:"01:55 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1250" },
{ file:"3W0A4619.JPG", date:"2026-05-02", time:"01:55 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1250" },
{ file:"3W0A4620.JPG", date:"2026-05-02", time:"01:55 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4621.JPG", date:"2026-05-02", time:"01:55 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4622.JPG", date:"2026-05-02", time:"01:56 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/2000" },
{ file:"3W0A4623.JPG", date:"2026-05-02", time:"01:56 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1600" },
{ file:"3W0A4624.JPG", date:"2026-05-02", time:"01:56 PM", camera:"Canon EOS R7", focal:"28.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1600" },
{ file:"3W0A4625.JPG", date:"2026-05-02", time:"01:56 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1600" },
{ file:"3W0A4626.JPG", date:"2026-05-02", time:"01:56 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1600" },
{ file:"3W0A4627.JPG", date:"2026-05-02", time:"01:56 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1600" },
{ file:"3W0A4628.JPG", date:"2026-05-02", time:"01:56 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1600" },
{ file:"3W0A4629.JPG", date:"2026-05-02", time:"01:56 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1600" },
{ file:"3W0A4630.JPG", date:"2026-05-02", time:"01:58 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/13.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4631.JPG", date:"2026-05-02", time:"01:58 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/640" },
{ file:"3W0A4632.JPG", date:"2026-05-02", time:"01:58 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/14.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4633.JPG", date:"2026-05-02", time:"01:59 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/13.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4634.JPG", date:"2026-05-02", time:"01:59 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/13.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4635.JPG", date:"2026-05-02", time:"02:36 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/320" },
{ file:"3W0A4636.JPG", date:"2026-05-02", time:"02:36 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/11.0", iso:"640", shutter:"1/320" },
{ file:"3W0A4637.JPG", date:"2026-05-02", time:"05:49 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/800" },
{ file:"3W0A4638.JPG", date:"2026-05-02", time:"05:49 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4639.JPG", date:"2026-05-02", time:"05:49 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4640.JPG", date:"2026-05-02", time:"05:49 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4641.JPG", date:"2026-05-02", time:"05:50 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/16.0", iso:"640", shutter:"1/1000" },
{ file:"3W0A4642.JPG", date:"2026-05-02", time:"07:13 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"640", shutter:"0.5" },
{ file:"3W0A4643.JPG", date:"2026-05-02", time:"07:13 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"640", shutter:"1" },
{ file:"3W0A4644.JPG", date:"2026-05-03", time:"07:47 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"640", shutter:"1/40" },
{ file:"3W0A4645.JPG", date:"2026-05-03", time:"07:47 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/4.5", iso:"640", shutter:"1/30" },
{ file:"3W0A4646.JPG", date:"2026-05-03", time:"07:47 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/4.5", iso:"640", shutter:"1/25" },
{ file:"3W0A4647.JPG", date:"2026-05-03", time:"07:51 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"640", shutter:"1/40" },
{ file:"3W0A4648.JPG", date:"2026-05-03", time:"07:51 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"640", shutter:"1/30" },
{ file:"3W0A4649.JPG", date:"2026-05-03", time:"07:52 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"3200", shutter:"1/125" },
{ file:"3W0A4650.JPG", date:"2026-05-03", time:"07:52 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"4000", shutter:"1/125" },
{ file:"3W0A4651.JPG", date:"2026-05-03", time:"07:52 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"6400", shutter:"1/100" },
{ file:"3W0A4652.JPG", date:"2026-05-04", time:"12:15 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"800", shutter:"1/80" },
{ file:"3W0A4653.JPG", date:"2026-05-04", time:"12:15 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"640", shutter:"1/80" },
{ file:"3W0A4654.JPG", date:"2026-05-04", time:"12:59 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4655.JPG", date:"2026-05-04", time:"12:59 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4656.JPG", date:"2026-05-04", time:"12:59 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4657.JPG", date:"2026-05-04", time:"12:59 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4658.JPG", date:"2026-05-04", time:"01:10 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4659.JPG", date:"2026-05-04", time:"01:10 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4660.JPG", date:"2026-05-04", time:"01:11 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4661.JPG", date:"2026-05-04", time:"01:11 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4662.JPG", date:"2026-05-04", time:"01:11 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/500" },
{ file:"3W0A4663.JPG", date:"2026-05-04", time:"01:11 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"320", shutter:"1/500" },
{ file:"3W0A4664.JPG", date:"2026-05-04", time:"01:12 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/5.0", iso:"250", shutter:"1/1250" },
{ file:"3W0A4665.JPG", date:"2026-05-04", time:"01:13 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"1000", shutter:"1/640" },
{ file:"3W0A4666.JPG", date:"2026-05-04", time:"01:13 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"320", shutter:"1/640" },
{ file:"3W0A4667.JPG", date:"2026-05-04", time:"01:14 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"3200", shutter:"1/500" },
{ file:"3W0A4668.JPG", date:"2026-05-04", time:"01:14 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"1600", shutter:"1/500" },
{ file:"3W0A4669.JPG", date:"2026-05-04", time:"01:14 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"1600", shutter:"1/500" },
{ file:"3W0A4670.JPG", date:"2026-05-04", time:"01:15 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"6400", shutter:"1/500" },
{ file:"3W0A4671.JPG", date:"2026-05-04", time:"07:50 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"400", shutter:"1/60" },
{ file:"3W0A4672.JPG", date:"2026-05-04", time:"07:50 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"800", shutter:"1/80" },
{ file:"3W0A4673.JPG", date:"2026-05-04", time:"07:51 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/6.3", iso:"6400", shutter:"1/250" },
{ file:"3W0A4674.JPG", date:"2026-05-04", time:"07:52 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"6400", shutter:"1/80" },
{ file:"3W0A4675.JPG", date:"2026-05-04", time:"07:52 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/6.3", iso:"6400", shutter:"1/100" },
{ file:"3W0A4676.JPG", date:"2026-05-04", time:"07:53 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/6.3", iso:"6400", shutter:"1/60" },
{ file:"3W0A4677.JPG", date:"2026-05-04", time:"07:54 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"320", shutter:"1/160" },
{ file:"3W0A4678.JPG", date:"2026-05-04", time:"07:54 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"1600", shutter:"1/125" },
{ file:"3W0A4679.JPG", date:"2026-05-04", time:"07:56 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"2500", shutter:"1/60" },
{ file:"3W0A4680.JPG", date:"2026-05-04", time:"07:56 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"2500", shutter:"1/60" },
{ file:"3W0A4681.JPG", date:"2026-05-04", time:"08:01 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"4000", shutter:"1/60" },
{ file:"3W0A4682.JPG", date:"2026-05-04", time:"08:07 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/4.0", iso:"2500", shutter:"1/60" },
{ file:"3W0A4683.JPG", date:"2026-05-04", time:"08:20 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"2000", shutter:"1/60" },
{ file:"3W0A4684.JPG", date:"2026-05-04", time:"08:20 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/4.0", iso:"2000", shutter:"1/60" },
{ file:"3W0A4685.JPG", date:"2026-05-05", time:"08:15 AM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"3200", shutter:"1/500" },
{ file:"3W0A4686.JPG", date:"2026-05-05", time:"08:39 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/4.0", iso:"2500", shutter:"1/60" },
{ file:"3W0A4687.JPG", date:"2026-05-05", time:"08:39 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.5", iso:"4000", shutter:"1/80" },
{ file:"3W0A4688.JPG", date:"2026-05-05", time:"08:40 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.5", iso:"4000", shutter:"1/80" },
{ file:"3W0A4689.JPG", date:"2026-05-06", time:"11:35 AM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4690.JPG", date:"2026-05-06", time:"11:35 AM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4691.JPG", date:"2026-05-06", time:"11:35 AM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4692.JPG", date:"2026-05-06", time:"11:35 AM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4693.JPG", date:"2026-05-06", time:"11:35 AM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/6.3", iso:"800", shutter:"1/400" },
{ file:"3W0A4694.JPG", date:"2026-05-06", time:"11:36 AM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4695.JPG", date:"2026-05-06", time:"11:36 AM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/9.0", iso:"160", shutter:"1/400" },
{ file:"3W0A4696.JPG", date:"2026-05-06", time:"11:41 AM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4697.JPG", date:"2026-05-06", time:"11:41 AM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4698.JPG", date:"2026-05-06", time:"11:41 AM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4699.JPG", date:"2026-05-06", time:"11:41 AM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4700.JPG", date:"2026-05-06", time:"11:41 AM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4701.JPG", date:"2026-05-06", time:"11:42 AM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4702.JPG", date:"2026-05-06", time:"11:42 AM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4703.JPG", date:"2026-05-06", time:"11:42 AM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4704.JPG", date:"2026-05-06", time:"11:42 AM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4705.JPG", date:"2026-05-06", time:"11:45 AM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4706.JPG", date:"2026-05-06", time:"11:45 AM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4707.JPG", date:"2026-05-06", time:"11:45 AM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4708.JPG", date:"2026-05-06", time:"11:45 AM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4709.JPG", date:"2026-05-06", time:"11:45 AM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4710.JPG", date:"2026-05-06", time:"11:55 AM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4711.JPG", date:"2026-05-06", time:"11:55 AM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4712.JPG", date:"2026-05-06", time:"11:55 AM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4713.JPG", date:"2026-05-06", time:"12:01 PM", camera:"Canon EOS R7", focal:"31.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4714.JPG", date:"2026-05-06", time:"12:01 PM", camera:"Canon EOS R7", focal:"31.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4715.JPG", date:"2026-05-06", time:"12:01 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4716.JPG", date:"2026-05-06", time:"12:01 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4717.JPG", date:"2026-05-06", time:"12:01 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4718.JPG", date:"2026-05-06", time:"12:01 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4719.JPG", date:"2026-05-06", time:"12:01 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4720.JPG", date:"2026-05-06", time:"12:10 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4721.JPG", date:"2026-05-06", time:"12:10 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4722.JPG", date:"2026-05-06", time:"12:21 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/6.3", iso:"500", shutter:"1/250" },
{ file:"3W0A4723.JPG", date:"2026-05-06", time:"12:21 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4724.JPG", date:"2026-05-06", time:"12:21 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4725.JPG", date:"2026-05-06", time:"12:21 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4726.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4727.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4728.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4729.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4730.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4731.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4732.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4733.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4734.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4735.JPG", date:"2026-05-06", time:"12:25 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4736.JPG", date:"2026-05-06", time:"12:26 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4737.JPG", date:"2026-05-06", time:"12:26 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4738.JPG", date:"2026-05-06", time:"12:26 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4739.JPG", date:"2026-05-06", time:"12:26 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4740.JPG", date:"2026-05-06", time:"12:26 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"125", shutter:"1/500" },
{ file:"3W0A4741.JPG", date:"2026-05-06", time:"12:26 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4742.JPG", date:"2026-05-06", time:"12:27 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4743.JPG", date:"2026-05-06", time:"12:27 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4744.JPG", date:"2026-05-06", time:"12:27 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/9.0", iso:"125", shutter:"1/500" },
{ file:"3W0A4745.JPG", date:"2026-05-06", time:"12:27 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/500" },
{ file:"3W0A4746.JPG", date:"2026-05-06", time:"12:28 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4747.JPG", date:"2026-05-06", time:"12:28 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4748.JPG", date:"2026-05-06", time:"12:28 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4749.JPG", date:"2026-05-06", time:"12:29 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4750.JPG", date:"2026-05-06", time:"12:29 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4751.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4752.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4753.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4754.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4755.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"125", shutter:"1/320" },
{ file:"3W0A4756.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4757.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4758.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4759.JPG", date:"2026-05-06", time:"12:30 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4760.JPG", date:"2026-05-06", time:"12:31 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4761.JPG", date:"2026-05-06", time:"12:31 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4762.JPG", date:"2026-05-06", time:"12:31 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4763.JPG", date:"2026-05-06", time:"12:31 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4764.JPG", date:"2026-05-06", time:"12:34 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4765.JPG", date:"2026-05-06", time:"12:34 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4766.JPG", date:"2026-05-06", time:"12:34 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4767.JPG", date:"2026-05-06", time:"12:34 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4768.JPG", date:"2026-05-06", time:"12:40 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4769.JPG", date:"2026-05-06", time:"12:40 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4770.JPG", date:"2026-05-06", time:"12:40 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4771.JPG", date:"2026-05-06", time:"12:40 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4772.JPG", date:"2026-05-06", time:"12:40 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4773.JPG", date:"2026-05-06", time:"12:40 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4774.JPG", date:"2026-05-06", time:"12:40 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4775.JPG", date:"2026-05-06", time:"12:42 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4776.JPG", date:"2026-05-06", time:"12:42 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4777.JPG", date:"2026-05-06", time:"12:42 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4778.JPG", date:"2026-05-06", time:"12:42 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4779.JPG", date:"2026-05-06", time:"12:42 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4780.JPG", date:"2026-05-06", time:"12:44 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4781.JPG", date:"2026-05-06", time:"12:44 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4782.JPG", date:"2026-05-06", time:"12:45 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4783.JPG", date:"2026-05-06", time:"12:45 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4784.JPG", date:"2026-05-06", time:"12:46 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4785.JPG", date:"2026-05-06", time:"12:46 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4786.JPG", date:"2026-05-06", time:"12:46 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4787.JPG", date:"2026-05-06", time:"12:46 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4788.JPG", date:"2026-05-06", time:"12:47 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4789.JPG", date:"2026-05-06", time:"12:47 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4790.JPG", date:"2026-05-06", time:"12:47 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4791.JPG", date:"2026-05-06", time:"12:47 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4792.JPG", date:"2026-05-06", time:"12:47 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4793.JPG", date:"2026-05-06", time:"12:47 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4794.JPG", date:"2026-05-06", time:"12:48 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4795.JPG", date:"2026-05-06", time:"12:49 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4796.JPG", date:"2026-05-06", time:"12:49 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4797.JPG", date:"2026-05-06", time:"12:49 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4798.JPG", date:"2026-05-06", time:"12:49 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4799.JPG", date:"2026-05-06", time:"12:49 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4800.JPG", date:"2026-05-06", time:"12:49 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4801.JPG", date:"2026-05-06", time:"12:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4802.JPG", date:"2026-05-06", time:"12:50 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4803.JPG", date:"2026-05-06", time:"12:50 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4804.JPG", date:"2026-05-06", time:"12:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4805.JPG", date:"2026-05-06", time:"12:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4806.JPG", date:"2026-05-06", time:"12:51 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4807.JPG", date:"2026-05-06", time:"12:51 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A4808.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/9.0", iso:"125", shutter:"1/400" },
{ file:"3W0A4809.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4810.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4811.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4812.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4813.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4814.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4815.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A4816.JPG", date:"2026-05-06", time:"12:52 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4817.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4818.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4819.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4820.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4821.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4822.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4823.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4824.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4825.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/500" },
{ file:"3W0A4826.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4827.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4828.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4829.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4830.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4831.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4832.JPG", date:"2026-05-06", time:"12:53 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/500" },
{ file:"3W0A4833.JPG", date:"2026-05-06", time:"12:54 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"1250", shutter:"1/640" },
{ file:"3W0A4834.JPG", date:"2026-05-06", time:"12:55 PM", camera:"Canon EOS R7", focal:"28.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4835.JPG", date:"2026-05-06", time:"12:55 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4836.JPG", date:"2026-05-06", time:"12:55 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4837.JPG", date:"2026-05-06", time:"01:18 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4838.JPG", date:"2026-05-06", time:"01:18 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4839.JPG", date:"2026-05-06", time:"01:18 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/8.0", iso:"125", shutter:"1/400" },
{ file:"3W0A4840.JPG", date:"2026-05-06", time:"01:18 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4841.JPG", date:"2026-05-06", time:"01:19 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/400" },
{ file:"3W0A4842.JPG", date:"2026-05-06", time:"01:28 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4843.JPG", date:"2026-05-06", time:"01:28 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4844.JPG", date:"2026-05-06", time:"01:28 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4845.JPG", date:"2026-05-06", time:"01:28 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4846.JPG", date:"2026-05-06", time:"01:28 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4847.JPG", date:"2026-05-06", time:"01:30 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4848.JPG", date:"2026-05-06", time:"01:30 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4849.JPG", date:"2026-05-06", time:"01:34 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4850.JPG", date:"2026-05-06", time:"01:35 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4851.JPG", date:"2026-05-06", time:"01:35 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4852.JPG", date:"2026-05-06", time:"01:36 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4853.JPG", date:"2026-05-06", time:"01:36 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4854.JPG", date:"2026-05-06", time:"01:36 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4855.JPG", date:"2026-05-06", time:"01:36 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4856.JPG", date:"2026-05-06", time:"01:36 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4857.JPG", date:"2026-05-06", time:"01:41 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4858.JPG", date:"2026-05-06", time:"01:41 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4859.JPG", date:"2026-05-06", time:"01:41 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4860.JPG", date:"2026-05-06", time:"01:41 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4861.JPG", date:"2026-05-06", time:"01:43 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4862.JPG", date:"2026-05-06", time:"01:43 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4863.JPG", date:"2026-05-06", time:"01:43 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4864.JPG", date:"2026-05-06", time:"01:43 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4865.JPG", date:"2026-05-06", time:"01:49 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4866.JPG", date:"2026-05-06", time:"01:49 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4867.JPG", date:"2026-05-06", time:"01:49 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4868.JPG", date:"2026-05-06", time:"01:49 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4869.JPG", date:"2026-05-06", time:"01:50 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4870.JPG", date:"2026-05-06", time:"01:59 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4871.JPG", date:"2026-05-06", time:"01:59 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4872.JPG", date:"2026-05-06", time:"01:59 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4873.JPG", date:"2026-05-06", time:"01:59 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4874.JPG", date:"2026-05-06", time:"02:02 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4875.JPG", date:"2026-05-06", time:"02:03 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4876.JPG", date:"2026-05-06", time:"02:03 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/10.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4877.JPG", date:"2026-05-06", time:"02:03 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4878.JPG", date:"2026-05-06", time:"02:03 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4879.JPG", date:"2026-05-06", time:"02:03 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4880.JPG", date:"2026-05-06", time:"02:04 PM", camera:"Canon EOS R7", focal:"141.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/500" },
{ file:"3W0A4881.JPG", date:"2026-05-06", time:"02:04 PM", camera:"Canon EOS R7", focal:"141.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4882.JPG", date:"2026-05-06", time:"02:05 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4883.JPG", date:"2026-05-06", time:"02:05 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4884.JPG", date:"2026-05-06", time:"02:05 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4885.JPG", date:"2026-05-06", time:"02:05 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4886.JPG", date:"2026-05-06", time:"02:05 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/5.6", iso:"160", shutter:"1/1250" },
{ file:"3W0A4887.JPG", date:"2026-05-06", time:"02:05 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4888.JPG", date:"2026-05-06", time:"02:15 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4889.JPG", date:"2026-05-06", time:"02:15 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4890.JPG", date:"2026-05-06", time:"02:15 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4891.JPG", date:"2026-05-06", time:"02:16 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4892.JPG", date:"2026-05-06", time:"02:16 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4893.JPG", date:"2026-05-06", time:"02:16 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4894.JPG", date:"2026-05-06", time:"02:16 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4895.JPG", date:"2026-05-06", time:"02:16 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4896.JPG", date:"2026-05-06", time:"02:19 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4897.JPG", date:"2026-05-06", time:"02:19 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4898.JPG", date:"2026-05-06", time:"02:19 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4899.JPG", date:"2026-05-06", time:"02:19 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4900.JPG", date:"2026-05-06", time:"02:19 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A4901.JPG", date:"2026-05-06", time:"02:28 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4902.JPG", date:"2026-05-06", time:"02:28 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4903.JPG", date:"2026-05-06", time:"02:28 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/5.6", iso:"125", shutter:"1/1250" },
{ file:"3W0A4904.JPG", date:"2026-05-06", time:"02:28 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/5.6", iso:"125", shutter:"1/1250" },
{ file:"3W0A4905.JPG", date:"2026-05-06", time:"02:28 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/5.6", iso:"125", shutter:"1/1250" },
{ file:"3W0A4906.JPG", date:"2026-05-06", time:"02:30 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4907.JPG", date:"2026-05-06", time:"02:30 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4908.JPG", date:"2026-05-06", time:"02:30 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4909.JPG", date:"2026-05-06", time:"02:30 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4910.JPG", date:"2026-05-06", time:"02:34 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/320" },
{ file:"3W0A4911.JPG", date:"2026-05-06", time:"02:34 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4912.JPG", date:"2026-05-06", time:"02:34 PM", camera:"Canon EOS R7", focal:"28.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A4913.JPG", date:"2026-05-06", time:"02:34 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4914.JPG", date:"2026-05-06", time:"02:34 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4915.JPG", date:"2026-05-06", time:"02:34 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4916.JPG", date:"2026-05-06", time:"02:34 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4917.JPG", date:"2026-05-06", time:"02:35 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4918.JPG", date:"2026-05-06", time:"02:35 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4919.JPG", date:"2026-05-06", time:"02:35 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4920.JPG", date:"2026-05-06", time:"02:35 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A4921.JPG", date:"2026-05-06", time:"02:36 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4922.JPG", date:"2026-05-06", time:"02:36 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4923.JPG", date:"2026-05-06", time:"02:36 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4924.JPG", date:"2026-05-06", time:"02:38 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4925.JPG", date:"2026-05-06", time:"02:38 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4926.JPG", date:"2026-05-06", time:"02:38 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4927.JPG", date:"2026-05-06", time:"02:38 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4928.JPG", date:"2026-05-06", time:"02:38 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4929.JPG", date:"2026-05-06", time:"02:38 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/5.6", iso:"200", shutter:"1/1250" },
{ file:"3W0A4930.JPG", date:"2026-05-06", time:"02:39 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4931.JPG", date:"2026-05-06", time:"02:39 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/320" },
{ file:"3W0A4932.JPG", date:"2026-05-06", time:"02:39 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/320" },
{ file:"3W0A4933.JPG", date:"2026-05-06", time:"02:39 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/320" },
{ file:"3W0A4934.JPG", date:"2026-05-06", time:"02:39 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/6.3", iso:"250", shutter:"1/500" },
{ file:"3W0A4935.JPG", date:"2026-05-06", time:"02:39 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4936.JPG", date:"2026-05-06", time:"02:39 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4937.JPG", date:"2026-05-06", time:"02:39 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4938.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4939.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4940.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4941.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4942.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4943.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4944.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4945.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4946.JPG", date:"2026-05-06", time:"02:40 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4947.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4948.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"29.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4949.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"29.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4950.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4951.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4952.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4953.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A4954.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4955.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4956.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4957.JPG", date:"2026-05-06", time:"02:41 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4958.JPG", date:"2026-05-06", time:"02:42 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4959.JPG", date:"2026-05-06", time:"02:44 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4960.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"125", shutter:"1/400" },
{ file:"3W0A4961.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A4962.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A4963.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A4964.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"160", shutter:"1/500" },
{ file:"3W0A4965.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4966.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A4967.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4968.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4969.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4970.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4971.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.0", iso:"125", shutter:"1/1250" },
{ file:"3W0A4972.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"160", shutter:"1/1250" },
{ file:"3W0A4973.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"160", shutter:"1/1250" },
{ file:"3W0A4974.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"160", shutter:"1/1250" },
{ file:"3W0A4975.JPG", date:"2026-05-06", time:"02:45 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4976.JPG", date:"2026-05-06", time:"02:46 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4977.JPG", date:"2026-05-06", time:"02:46 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4978.JPG", date:"2026-05-06", time:"02:46 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4979.JPG", date:"2026-05-06", time:"02:46 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/9.0", iso:"125", shutter:"1/400" },
{ file:"3W0A4980.JPG", date:"2026-05-06", time:"02:46 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/9.0", iso:"125", shutter:"1/400" },
{ file:"3W0A4981.JPG", date:"2026-05-06", time:"02:46 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/9.0", iso:"125", shutter:"1/400" },
{ file:"3W0A4982.JPG", date:"2026-05-06", time:"02:46 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A4983.JPG", date:"2026-05-06", time:"02:47 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/6.3", iso:"250", shutter:"1/1250" },
{ file:"3W0A4984.JPG", date:"2026-05-06", time:"02:47 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"250", shutter:"1/1250" },
{ file:"3W0A4985.JPG", date:"2026-05-06", time:"02:47 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"250", shutter:"1/1250" },
{ file:"3W0A4986.JPG", date:"2026-05-06", time:"02:47 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4987.JPG", date:"2026-05-06", time:"02:47 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4988.JPG", date:"2026-05-06", time:"02:47 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4989.JPG", date:"2026-05-06", time:"02:47 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4990.JPG", date:"2026-05-06", time:"02:47 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4991.JPG", date:"2026-05-06", time:"02:48 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4992.JPG", date:"2026-05-06", time:"02:48 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4993.JPG", date:"2026-05-06", time:"02:48 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A4994.JPG", date:"2026-05-06", time:"02:48 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A4995.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4996.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4997.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4998.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A4999.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5000.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5001.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/4.0", iso:"100", shutter:"1/1250" },
{ file:"3W0A5002.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5003.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5004.JPG", date:"2026-05-06", time:"02:49 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5005.JPG", date:"2026-05-06", time:"02:50 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5006.JPG", date:"2026-05-06", time:"02:50 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5007.JPG", date:"2026-05-06", time:"02:50 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5008.JPG", date:"2026-05-06", time:"02:50 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5009.JPG", date:"2026-05-06", time:"02:50 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5010.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5011.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5012.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5013.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5014.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5015.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5016.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5017.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5018.JPG", date:"2026-05-06", time:"02:51 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5019.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5020.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5021.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"29.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5022.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5023.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5024.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5025.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5026.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5027.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5028.JPG", date:"2026-05-06", time:"02:53 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5029.JPG", date:"2026-05-06", time:"02:54 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5030.JPG", date:"2026-05-06", time:"02:54 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5031.JPG", date:"2026-05-06", time:"02:54 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5032.JPG", date:"2026-05-06", time:"02:54 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5033.JPG", date:"2026-05-06", time:"02:54 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5034.JPG", date:"2026-05-06", time:"02:54 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5035.JPG", date:"2026-05-06", time:"02:54 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5036.JPG", date:"2026-05-06", time:"02:54 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5037.JPG", date:"2026-05-06", time:"02:55 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5038.JPG", date:"2026-05-06", time:"02:55 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/320" },
{ file:"3W0A5039.JPG", date:"2026-05-06", time:"02:55 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5040.JPG", date:"2026-05-06", time:"02:55 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5041.JPG", date:"2026-05-06", time:"02:55 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5042.JPG", date:"2026-05-06", time:"02:55 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5043.JPG", date:"2026-05-06", time:"02:55 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5044.JPG", date:"2026-05-06", time:"03:03 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5045.JPG", date:"2026-05-06", time:"03:03 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5046.JPG", date:"2026-05-06", time:"03:03 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5047.JPG", date:"2026-05-06", time:"03:03 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5048.JPG", date:"2026-05-06", time:"03:03 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5049.JPG", date:"2026-05-06", time:"03:03 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5050.JPG", date:"2026-05-06", time:"03:03 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5051.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/6.3", iso:"320", shutter:"1/1250" },
{ file:"3W0A5052.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/6.3", iso:"250", shutter:"1/1250" },
{ file:"3W0A5053.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/6.3", iso:"320", shutter:"1/1250" },
{ file:"3W0A5054.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5055.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5056.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5057.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5058.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5059.JPG", date:"2026-05-06", time:"03:04 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5060.JPG", date:"2026-05-06", time:"03:05 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5061.JPG", date:"2026-05-06", time:"03:05 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5062.JPG", date:"2026-05-06", time:"03:05 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5063.JPG", date:"2026-05-06", time:"03:07 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5064.JPG", date:"2026-05-06", time:"03:07 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5065.JPG", date:"2026-05-06", time:"03:07 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5066.JPG", date:"2026-05-06", time:"03:07 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5067.JPG", date:"2026-05-06", time:"03:08 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5068.JPG", date:"2026-05-06", time:"03:08 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5069.JPG", date:"2026-05-06", time:"03:08 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5070.JPG", date:"2026-05-06", time:"03:08 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5071.JPG", date:"2026-05-06", time:"03:08 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5072.JPG", date:"2026-05-06", time:"03:08 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5073.JPG", date:"2026-05-06", time:"03:08 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5074.JPG", date:"2026-05-06", time:"03:09 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5075.JPG", date:"2026-05-06", time:"03:09 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5076.JPG", date:"2026-05-06", time:"03:09 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5077.JPG", date:"2026-05-06", time:"03:09 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5078.JPG", date:"2026-05-06", time:"03:09 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5079.JPG", date:"2026-05-06", time:"03:09 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5080.JPG", date:"2026-05-06", time:"03:09 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5081.JPG", date:"2026-05-06", time:"03:09 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5082.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5083.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5084.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5085.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5086.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5087.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5088.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5089.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5090.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5091.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5092.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5093.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5094.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5095.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5096.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5097.JPG", date:"2026-05-06", time:"03:10 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5098.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/160" },
{ file:"3W0A5099.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5100.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5101.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5102.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/9.0", iso:"125", shutter:"1/400" },
{ file:"3W0A5103.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5104.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5105.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5106.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5107.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"95.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5108.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/6.3", iso:"400", shutter:"1/1250" },
{ file:"3W0A5109.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"400", shutter:"1/1250" },
{ file:"3W0A5110.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/5.6", iso:"250", shutter:"1/1250" },
{ file:"3W0A5111.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/5.0", iso:"160", shutter:"1/1250" },
{ file:"3W0A5112.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5113.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5114.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5115.JPG", date:"2026-05-06", time:"03:11 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5116.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5117.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5118.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5119.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5120.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A5121.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5122.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5123.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5124.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5125.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5126.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5127.JPG", date:"2026-05-06", time:"03:12 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5128.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5129.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5130.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5131.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5132.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5133.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5134.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5135.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5136.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/400" },
{ file:"3W0A5137.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/400" },
{ file:"3W0A5138.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"95.0 mm", aperture:"f/8.0", iso:"160", shutter:"1/320" },
{ file:"3W0A5139.JPG", date:"2026-05-06", time:"03:13 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5140.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5141.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/400" },
{ file:"3W0A5142.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5143.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5144.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5145.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5146.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5147.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5148.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5149.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5150.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5151.JPG", date:"2026-05-06", time:"03:14 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5152.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A5153.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/320" },
{ file:"3W0A5154.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/320" },
{ file:"3W0A5155.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5156.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5157.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5158.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5159.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/320" },
{ file:"3W0A5160.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5161.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5162.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/400" },
{ file:"3W0A5163.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A5164.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"160", shutter:"1/320" },
{ file:"3W0A5165.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/8.0", iso:"125", shutter:"1/400" },
{ file:"3W0A5166.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5167.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5168.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5169.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5170.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5171.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/400" },
{ file:"3W0A5172.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/400" },
{ file:"3W0A5173.JPG", date:"2026-05-06", time:"03:15 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5174.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5175.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5176.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"50.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5177.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5178.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"160", shutter:"1/320" },
{ file:"3W0A5179.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5180.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5181.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5182.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5183.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5184.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5185.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A5186.JPG", date:"2026-05-06", time:"03:16 PM", camera:"Canon EOS R7", focal:"43.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5187.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5188.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5189.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/320" },
{ file:"3W0A5190.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/8.0", iso:"160", shutter:"1/320" },
{ file:"3W0A5191.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A5192.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/6.3", iso:"400", shutter:"1/400" },
{ file:"3W0A5193.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"64.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5194.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5195.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5196.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"31.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5197.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"31.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5198.JPG", date:"2026-05-06", time:"03:17 PM", camera:"Canon EOS R7", focal:"31.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5199.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"31.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5200.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5201.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/320" },
{ file:"3W0A5202.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/320" },
{ file:"3W0A5203.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/7.1", iso:"160", shutter:"1/320" },
{ file:"3W0A5204.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5205.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A5206.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5207.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"29.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5208.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5209.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A5210.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A5211.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A5212.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A5213.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"31.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/200" },
{ file:"3W0A5214.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5215.JPG", date:"2026-05-06", time:"03:18 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"160", shutter:"1/1250" },
{ file:"3W0A5216.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5217.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5218.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"41.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5219.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5220.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5221.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5222.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5223.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"24.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5224.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/250" },
{ file:"3W0A5225.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A5226.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"54.0 mm", aperture:"f/5.6", iso:"160", shutter:"1/200" },
{ file:"3W0A5227.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/5.0", iso:"125", shutter:"1/200" },
{ file:"3W0A5228.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"39.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/250" },
{ file:"3W0A5229.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5230.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5231.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5232.JPG", date:"2026-05-06", time:"03:19 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.6", iso:"100", shutter:"1/200" },
{ file:"3W0A5233.JPG", date:"2026-05-06", time:"03:20 PM", camera:"Canon EOS R7", focal:"66.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5234.JPG", date:"2026-05-06", time:"03:20 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5235.JPG", date:"2026-05-06", time:"03:20 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5236.JPG", date:"2026-05-06", time:"03:20 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5237.JPG", date:"2026-05-06", time:"03:20 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5238.JPG", date:"2026-05-06", time:"03:20 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/7.1", iso:"125", shutter:"1/320" },
{ file:"3W0A5239.JPG", date:"2026-05-06", time:"03:23 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5240.JPG", date:"2026-05-06", time:"03:23 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5241.JPG", date:"2026-05-06", time:"03:24 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5242.JPG", date:"2026-05-06", time:"03:24 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5243.JPG", date:"2026-05-06", time:"03:24 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5244.JPG", date:"2026-05-06", time:"03:31 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/400" },
{ file:"3W0A5245.JPG", date:"2026-05-06", time:"03:32 PM", camera:"Canon EOS R7", focal:"95.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5246.JPG", date:"2026-05-06", time:"03:32 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"160", shutter:"1/1250" },
{ file:"3W0A5247.JPG", date:"2026-05-06", time:"03:32 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/5.6", iso:"125", shutter:"1/1250" },
{ file:"3W0A5248.JPG", date:"2026-05-06", time:"03:32 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/5.6", iso:"160", shutter:"1/1250" },
{ file:"3W0A5249.JPG", date:"2026-05-06", time:"03:32 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5250.JPG", date:"2026-05-06", time:"03:32 PM", camera:"Canon EOS R7", focal:"32.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5251.JPG", date:"2026-05-06", time:"03:32 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5252.JPG", date:"2026-05-06", time:"03:35 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/8.0", iso:"125", shutter:"1/400" },
{ file:"3W0A5253.JPG", date:"2026-05-06", time:"03:35 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5254.JPG", date:"2026-05-06", time:"03:35 PM", camera:"Canon EOS R7", focal:"95.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5255.JPG", date:"2026-05-06", time:"03:35 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5256.JPG", date:"2026-05-06", time:"03:35 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5257.JPG", date:"2026-05-06", time:"03:35 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5258.JPG", date:"2026-05-06", time:"03:35 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5259.JPG", date:"2026-05-06", time:"03:35 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5260.JPG", date:"2026-05-06", time:"03:36 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5261.JPG", date:"2026-05-06", time:"03:36 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5262.JPG", date:"2026-05-06", time:"03:36 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5263.JPG", date:"2026-05-06", time:"03:36 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5264.JPG", date:"2026-05-06", time:"03:36 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5265.JPG", date:"2026-05-06", time:"03:36 PM", camera:"Canon EOS R7", focal:"45.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5266.JPG", date:"2026-05-06", time:"03:36 PM", camera:"Canon EOS R7", focal:"44.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5267.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5268.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5269.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5270.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5271.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5272.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/7.1", iso:"100", shutter:"1/320" },
{ file:"3W0A5273.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"59.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5274.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5275.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5276.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5277.JPG", date:"2026-05-06", time:"03:38 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5278.JPG", date:"2026-05-06", time:"03:39 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5279.JPG", date:"2026-05-06", time:"03:39 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5280.JPG", date:"2026-05-06", time:"03:39 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5281.JPG", date:"2026-05-06", time:"03:39 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5282.JPG", date:"2026-05-06", time:"03:41 PM", camera:"Canon EOS R7", focal:"40.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/1000" },
{ file:"3W0A5283.JPG", date:"2026-05-06", time:"03:41 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/5.0", iso:"100", shutter:"1/1250" },
{ file:"3W0A5284.JPG", date:"2026-05-06", time:"03:41 PM", camera:"Canon EOS R7", focal:"35.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5285.JPG", date:"2026-05-06", time:"03:41 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5286.JPG", date:"2026-05-06", time:"03:41 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5287.JPG", date:"2026-05-06", time:"03:41 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5288.JPG", date:"2026-05-06", time:"03:41 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5289.JPG", date:"2026-05-06", time:"03:41 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5290.JPG", date:"2026-05-06", time:"03:42 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5291.JPG", date:"2026-05-06", time:"03:42 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"125", shutter:"1/500" },
{ file:"3W0A5292.JPG", date:"2026-05-06", time:"03:42 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"125", shutter:"1/500" },
{ file:"3W0A5293.JPG", date:"2026-05-06", time:"03:42 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"125", shutter:"1/500" },
{ file:"3W0A5294.JPG", date:"2026-05-06", time:"03:43 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5295.JPG", date:"2026-05-06", time:"03:43 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5296.JPG", date:"2026-05-06", time:"03:43 PM", camera:"Canon EOS R7", focal:"47.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5297.JPG", date:"2026-05-06", time:"03:44 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5298.JPG", date:"2026-05-06", time:"03:44 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5299.JPG", date:"2026-05-06", time:"03:44 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5300.JPG", date:"2026-05-06", time:"03:44 PM", camera:"Canon EOS R7", focal:"95.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5301.JPG", date:"2026-05-06", time:"03:44 PM", camera:"Canon EOS R7", focal:"92.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5302.JPG", date:"2026-05-06", time:"03:44 PM", camera:"Canon EOS R7", focal:"125.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5303.JPG", date:"2026-05-06", time:"03:44 PM", camera:"Canon EOS R7", focal:"125.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5304.JPG", date:"2026-05-06", time:"03:44 PM", camera:"Canon EOS R7", focal:"76.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5305.JPG", date:"2026-05-06", time:"03:47 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/6.3", iso:"100", shutter:"1/1000" },
{ file:"3W0A5306.JPG", date:"2026-05-06", time:"03:47 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5307.JPG", date:"2026-05-06", time:"03:47 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5308.JPG", date:"2026-05-06", time:"03:47 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5309.JPG", date:"2026-05-06", time:"03:47 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5310.JPG", date:"2026-05-06", time:"03:47 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5311.JPG", date:"2026-05-06", time:"03:49 PM", camera:"Canon EOS R7", focal:"62.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5312.JPG", date:"2026-05-06", time:"03:49 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"250", shutter:"1/1250" },
{ file:"3W0A5313.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A5314.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A5315.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A5316.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"250", shutter:"1/1250" },
{ file:"3W0A5317.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A5318.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/6.3", iso:"320", shutter:"1/1250" },
{ file:"3W0A5319.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/6.3", iso:"200", shutter:"1/1250" },
{ file:"3W0A5320.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/6.3", iso:"320", shutter:"1/1250" },
{ file:"3W0A5321.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"111.0 mm", aperture:"f/6.3", iso:"160", shutter:"1/1250" },
{ file:"3W0A5322.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/6.3", iso:"160", shutter:"1/1250" },
{ file:"3W0A5323.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/6.3", iso:"160", shutter:"1/1250" },
{ file:"3W0A5324.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/6.3", iso:"160", shutter:"1/1250" },
{ file:"3W0A5325.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"79.0 mm", aperture:"f/6.3", iso:"125", shutter:"1/1250" },
{ file:"3W0A5326.JPG", date:"2026-05-06", time:"03:50 PM", camera:"Canon EOS R7", focal:"70.0 mm", aperture:"f/6.3", iso:"160", shutter:"1/1250" },
{ file:"3W0A5327.JPG", date:"2026-05-06", time:"03:51 PM", camera:"Canon EOS R7", focal:"115.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/400" },
{ file:"3W0A5328.JPG", date:"2026-05-06", time:"03:51 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5329.JPG", date:"2026-05-06", time:"03:51 PM", camera:"Canon EOS R7", focal:"141.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5330.JPG", date:"2026-05-06", time:"03:51 PM", camera:"Canon EOS R7", focal:"141.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5331.JPG", date:"2026-05-06", time:"03:53 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5332.JPG", date:"2026-05-06", time:"03:53 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5333.JPG", date:"2026-05-06", time:"03:53 PM", camera:"Canon EOS R7", focal:"84.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5334.JPG", date:"2026-05-06", time:"03:53 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5335.JPG", date:"2026-05-06", time:"03:53 PM", camera:"Canon EOS R7", focal:"129.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5336.JPG", date:"2026-05-06", time:"03:55 PM", camera:"Canon EOS R7", focal:"30.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/320" },
{ file:"3W0A5337.JPG", date:"2026-05-06", time:"03:55 PM", camera:"Canon EOS R7", focal:"125.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5338.JPG", date:"2026-05-06", time:"03:55 PM", camera:"Canon EOS R7", focal:"125.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5339.JPG", date:"2026-05-06", time:"03:55 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"125", shutter:"1/500" },
{ file:"3W0A5340.JPG", date:"2026-05-06", time:"03:55 PM", camera:"Canon EOS R7", focal:"138.0 mm", aperture:"f/10.0", iso:"125", shutter:"1/500" },
{ file:"3W0A5341.JPG", date:"2026-05-06", time:"03:56 PM", camera:"Canon EOS R7", focal:"138.0 mm", aperture:"f/6.3", iso:"125", shutter:"1/500" },
{ file:"3W0A5342.JPG", date:"2026-05-06", time:"03:56 PM", camera:"Canon EOS R7", focal:"138.0 mm", aperture:"f/6.3", iso:"125", shutter:"1/500" },
{ file:"3W0A5343.JPG", date:"2026-05-06", time:"03:56 PM", camera:"Canon EOS R7", focal:"138.0 mm", aperture:"f/6.3", iso:"125", shutter:"1/500" },
{ file:"3W0A5344.JPG", date:"2026-05-06", time:"03:56 PM", camera:"Canon EOS R7", focal:"138.0 mm", aperture:"f/6.3", iso:"125", shutter:"1/500" },
{ file:"3W0A5345.JPG", date:"2026-05-06", time:"03:56 PM", camera:"Canon EOS R7", focal:"138.0 mm", aperture:"f/9.0", iso:"125", shutter:"1/500" },
{ file:"3W0A5346.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5347.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5348.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"86.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5349.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5350.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5351.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/9.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5352.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5353.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/9.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5354.JPG", date:"2026-05-06", time:"03:58 PM", camera:"Canon EOS R7", focal:"135.0 mm", aperture:"f/9.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5355.JPG", date:"2026-05-06", time:"04:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5356.JPG", date:"2026-05-06", time:"04:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5357.JPG", date:"2026-05-06", time:"04:00 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5358.JPG", date:"2026-05-06", time:"04:00 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/500" },
{ file:"3W0A5359.JPG", date:"2026-05-06", time:"04:00 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/7.1", iso:"200", shutter:"1/500" },
{ file:"3W0A5360.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5361.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5362.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5363.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5364.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5365.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5366.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5367.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5368.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"118.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5369.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5370.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5371.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5372.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5373.JPG", date:"2026-05-06", time:"04:04 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5375.JPG", date:"2026-05-06", time:"04:08 PM", camera:"Canon EOS R7", focal:"60.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5376.JPG", date:"2026-05-06", time:"04:08 PM", camera:"Canon EOS R7", focal:"81.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5377.JPG", date:"2026-05-06", time:"04:08 PM", camera:"Canon EOS R7", focal:"89.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/500" },
{ file:"3W0A5378.JPG", date:"2026-05-06", time:"04:08 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5379.JPG", date:"2026-05-06", time:"04:08 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5380.JPG", date:"2026-05-06", time:"04:08 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/8.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5381.JPG", date:"2026-05-06", time:"04:12 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5382.JPG", date:"2026-05-06", time:"04:12 PM", camera:"Canon EOS R7", focal:"57.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5383.JPG", date:"2026-05-06", time:"04:12 PM", camera:"Canon EOS R7", focal:"56.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5384.JPG", date:"2026-05-06", time:"04:12 PM", camera:"Canon EOS R7", focal:"122.0 mm", aperture:"f/6.3", iso:"250", shutter:"1/1250" },
{ file:"3W0A5385.JPG", date:"2026-05-06", time:"04:12 PM", camera:"Canon EOS R7", focal:"100.0 mm", aperture:"f/8.0", iso:"100", shutter:"1/400" },
{ file:"3W0A5386.JPG", date:"2026-05-06", time:"04:16 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5387.JPG", date:"2026-05-06", time:"04:16 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5388.JPG", date:"2026-05-06", time:"04:16 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"125", shutter:"1/500" },
{ file:"3W0A5389.JPG", date:"2026-05-06", time:"04:16 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/9.0", iso:"100", shutter:"1/640" },
{ file:"3W0A5390.JPG", date:"2026-05-06", time:"04:19 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5391.JPG", date:"2026-05-06", time:"04:19 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"160", shutter:"1/500" },
{ file:"3W0A5392.JPG", date:"2026-05-06", time:"04:20 PM", camera:"Canon EOS R7", focal:"132.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5393.JPG", date:"2026-05-06", time:"04:20 PM", camera:"Canon EOS R7", focal:"132.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5394.JPG", date:"2026-05-06", time:"04:20 PM", camera:"Canon EOS R7", focal:"132.0 mm", aperture:"f/9.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5395.JPG", date:"2026-05-06", time:"04:20 PM", camera:"Canon EOS R7", focal:"132.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5396.JPG", date:"2026-05-06", time:"04:20 PM", camera:"Canon EOS R7", focal:"150.0 mm", aperture:"f/10.0", iso:"200", shutter:"1/500" },
{ file:"3W0A5397.JPG", date:"2026-05-07", time:"11:35 AM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"2500", shutter:"1/60" },
{ file:"3W0A5398.JPG", date:"2026-05-07", time:"11:35 AM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"2500", shutter:"1/60" },
{ file:"3W0A5399.JPG", date:"2026-05-07", time:"11:35 AM", camera:"Canon EOS R7", focal:"18.0 mm", aperture:"f/3.5", iso:"1600", shutter:"1/60" }
];
// ═══════════════════════════════════════════════
// STATE
// ═══════════════════════════════════════════════
let currentPage = 1;
let viewerIndex = -1; // index within current page
function totalPages() { return Math.max(1, Math.ceil(ALL_PHOTOS.length / PHOTOS_PER_PAGE)); }
function getPagePhotos(page) {
const start = (page - 1) * PHOTOS_PER_PAGE;
return ALL_PHOTOS.slice(start, start + PHOTOS_PER_PAGE);
}
// ═══════════════════════════════════════════════
// GALLERY RENDER
// ═══════════════════════════════════════════════
function buildPhotoItem(photo, pageIndex) {
const item = document.createElement('div');
item.className = 'photo-item';
item.dataset.index = pageIndex;
const img = document.createElement('img');
img.alt = photo.file;
img.loading = 'lazy';
img.decoding = 'async';
img.src = `./photos/${photo.file}`;
item.appendChild(img);
item.addEventListener('click', () => openViewer(pageIndex));
return item;
}
function renderPage(page) {
currentPage = page;
const list = document.getElementById('photo-list');
list.innerHTML = '';
const photos = getPagePhotos(page);
if (photos.length === 0) {
list.innerHTML = '<div class="gallery-empty">NO PHOTOS — add entries to ALL_PHOTOS in gallery.html</div>';
} else {
const frag = document.createDocumentFragment();
photos.forEach((p, i) => frag.appendChild(buildPhotoItem(p, i)));
list.appendChild(frag);
}
renderPagination();
window.scrollTo({ top: 0, behavior: 'smooth' });
}
function renderPagination() {
const container = document.getElementById('pagination');
container.innerHTML = '';
const total = totalPages();
if (total <= 1) return;
function btn(label, page, disabled, active) {
const b = document.createElement('button');
b.className = 'page-btn' + (active ? ' active' : '');
b.textContent = label;
b.disabled = !!disabled;
if (!disabled) b.addEventListener('click', () => renderPage(page));
return b;
}
function ellipsis() {
const s = document.createElement('span');
s.className = 'page-info'; s.textContent = '…'; return s;
}
container.appendChild(btn('← prev', currentPage - 1, currentPage === 1));
const WIN = 5;
let lo = Math.max(1, currentPage - Math.floor(WIN / 2));
let hi = Math.min(total, lo + WIN - 1);
if (hi - lo < WIN - 1) lo = Math.max(1, hi - WIN + 1);
if (lo > 1) { container.appendChild(btn('1', 1)); if (lo > 2) container.appendChild(ellipsis()); }
for (let p = lo; p <= hi; p++) container.appendChild(btn(String(p), p, false, p === currentPage));
if (hi < total) { if (hi < total - 1) container.appendChild(ellipsis()); container.appendChild(btn(String(total), total)); }
container.appendChild(btn('next →', currentPage + 1, currentPage === total));
const info = document.createElement('span');
info.className = 'page-info';
info.textContent = `${ALL_PHOTOS.length} photos`;
container.appendChild(info);
}
// ═══════════════════════════════════════════════
// DISCORD-STYLE VIEWER
// ═══════════════════════════════════════════════
const backdrop = document.getElementById('viewer-backdrop');
const viewerImg = document.getElementById('viewer-img');
const prevBtn = document.getElementById('viewer-prev');
const nextBtn = document.getElementById('viewer-next');
const toolbar = document.getElementById('viewer-toolbar');
function openViewer(pageIndex) {
viewerIndex = pageIndex;
updateViewer();
backdrop.classList.add('open');
document.body.style.overflow = 'hidden';
}
function closeViewer() {
backdrop.classList.remove('open');
document.body.style.overflow = '';
viewerImg.src = '';
viewerIndex = -1;
}
function updateViewer() {
const photos = getPagePhotos(currentPage);
const photo = photos[viewerIndex];
if (!photo) return;
viewerImg.src = `./photos/${photo.file}`;
viewerImg.alt = photo.file;
// Populate toolbar with metadata
const fields = [
{ label: 'File', value: photo.file || '—' },
{ label: 'Date', value: photo.date || '—' },
{ label: 'Time', value: photo.time || '—' },
{ label: 'Camera', value: photo.camera || '—' },
{ label: 'Focal', value: photo.focal || '—' },
{ label: 'Aperture', value: photo.aperture || '—' },
{ label: 'ISO', value: photo.iso || '—' },
{ label: 'Shutter', value: photo.shutter || '—' },
];
toolbar.innerHTML = fields.map(f =>
`<div class="meta-field">
<span class="meta-label">${f.label}</span>
<span class="meta-value">${f.value}</span>
</div>`
).join('');
prevBtn.disabled = viewerIndex === 0 && currentPage === 1;
nextBtn.disabled = viewerIndex === photos.length - 1 && currentPage === totalPages();
}
prevBtn.addEventListener('click', () => {
if (viewerIndex > 0) {
viewerIndex--;
updateViewer();
} else if (currentPage > 1) {
renderPage(currentPage - 1);
viewerIndex = PHOTOS_PER_PAGE - 1;
updateViewer();
}
});
nextBtn.addEventListener('click', () => {
const photos = getPagePhotos(currentPage);
if (viewerIndex < photos.length - 1) {
viewerIndex++;
updateViewer();
} else if (currentPage < totalPages()) {
renderPage(currentPage + 1);
viewerIndex = 0;
updateViewer();
}
});
document.getElementById('viewer-close').addEventListener('click', closeViewer);
// Click outside image = close
backdrop.addEventListener('click', (e) => {
if (e.target === backdrop || e.target.id === 'viewer-img-wrap') closeViewer();
});
// Keyboard: arrows to navigate, Escape to close
document.addEventListener('keydown', (e) => {
if (!backdrop.classList.contains('open')) return;
if (e.key === 'Escape') closeViewer();
if (e.key === 'ArrowLeft') prevBtn.click();
if (e.key === 'ArrowRight') nextBtn.click();
});
renderPage(1);
</script>
<!--
╔══════════════════════════════════════════════════════════════════╗
║ FISH SHELL — generate ALL_PHOTOS from EXIF ║
╠══════════════════════════════════════════════════════════════════╣
║ ║
║ paru -S perl-image-exiftool (if not already installed) ║
║ ║
║ Run from your site root (where gallery.html lives): ║
║ ║
║ for f in photos/*.jpg photos/*.JPG photos/*.jpeg ║
║ set d (exiftool -d "%Y-%m-%d" -DateTimeOriginal -s3 $f) ║
║ set t (exiftool -d "%H:%M" -DateTimeOriginal -s3 $f) ║
║ set c (exiftool -Model -s3 $f) ║
║ set fl (exiftool -FocalLength -s3 $f) ║
║ set ap (exiftool -Aperture -s3 $f) ║
║ set is (exiftool -ISO -s3 $f) ║
║ set sh (exiftool -ShutterSpeed -s3 $f) ║
║ set bn (basename $f) ║
║ echo " { file:\"$bn\", date:\"$d\", time:\"$t\"," ║
║ echo " camera:\"$c\", focal:\"$fl\"," ║
║ echo " aperture:\"f/$ap\", iso:\"$is\"," ║
║ echo " shutter:\"$sh\" }," ║
║ end > photos_list.txt ║
║ ║
║ Then paste photos_list.txt contents into ALL_PHOTOS above. ║
╚══════════════════════════════════════════════════════════════════╝
-->
</body>
</html>