k5bss.com/k5bss.html

1081 lines
520 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="referrer" content="strict-origin-when-cross-origin">
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data:; connect-src 'none'; frame-src 'none'; object-src 'none'; base-uri 'self'; form-action 'none'; upgrade-insecure-requests">
<title>K5BSS — Justin Frasier · Ham Radio Station</title>
<link rel="sitemap" type="application/xml" href="/sitemap.xml">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="64x64" href="/favicon-64x64.png">
<link rel="icon" type="image/png" sizes="256x256" href="/favicon-256x256.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&family=Barlow:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0c10;
--surface: #111418;
--surface2: #181c22;
--border: #1e2530;
--green: #00ff88;
--green2: #00cc6a;
--amber: #ffaa00;
--red: #ff4455;
--blue: #4499ff;
--cyan: #00ddff;
--text: #c8d8e8;
--muted: #5a7080;
--font-mono: 'Share Tech Mono', monospace;
--font-display: 'Orbitron', sans-serif;
--font-body: 'Barlow', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-weight: 300;
min-height: 100vh;
overflow-x: hidden;
}
/* Scanline overlay */
body::before {
content: '';
position: fixed;
inset: 0;
background: repeating-linear-gradient(
to bottom,
transparent 0px,
transparent 2px,
rgba(0,0,0,0.07) 2px,
rgba(0,0,0,0.07) 4px
);
pointer-events: none;
z-index: 9999;
}
/* ─── HEADER ─── */
header {
position: relative;
background: var(--surface);
border-bottom: 1px solid var(--border);
padding: 0 2rem;
overflow: hidden;
}
header::after {
content: '';
position: absolute;
bottom: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
animation: scanH 4s linear infinite;
}
@keyframes scanH {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.header-inner {
max-width: 1400px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.5rem 0;
gap: 2rem;
flex-wrap: wrap;
}
.callsign-block {
display: flex;
align-items: baseline;
gap: 1rem;
}
.callsign {
font-family: var(--font-display);
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 900;
color: var(--green);
text-shadow: 0 0 30px rgba(0,255,136,0.5), 0 0 60px rgba(0,255,136,0.2);
letter-spacing: 0.05em;
line-height: 1;
}
.op-name {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--muted);
letter-spacing: 0.15em;
}
.header-status {
display: flex;
gap: 2rem;
flex-wrap: wrap;
}
.status-item {
text-align: center;
}
.status-val {
font-family: var(--font-display);
font-size: 1.6rem;
font-weight: 700;
color: var(--amber);
text-shadow: 0 0 20px rgba(255,170,0,0.4);
display: block;
}
.status-lbl {
font-family: var(--font-mono);
font-size: 0.65rem;
color: var(--muted);
letter-spacing: 0.2em;
text-transform: uppercase;
}
.online-badge {
display: flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-mono);
font-size: 0.75rem;
color: var(--green);
padding: 0.4rem 1rem;
border: 1px solid var(--green);
border-radius: 2px;
background: rgba(0,255,136,0.05);
letter-spacing: 0.1em;
}
.pulse-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--green);
box-shadow: 0 0 8px var(--green);
animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.4; transform: scale(0.7); }
}
/* ─── NAV ─── */
nav {
background: var(--surface2);
border-bottom: 1px solid var(--border);
}
.nav-inner {
max-width: 1400px;
margin: 0 auto;
display: flex;
gap: 0;
padding: 0 2rem;
}
.nav-btn {
font-family: var(--font-mono);
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--muted);
padding: 0.9rem 1.5rem;
background: none;
border: none;
border-bottom: 2px solid transparent;
cursor: pointer;
transition: all 0.2s;
white-space: nowrap;
}
.nav-btn:hover { color: var(--text); }
.nav-btn.active { color: var(--green); border-bottom-color: var(--green); }
/* ─── MAIN ─── */
main {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
}
.section { display: none; }
.section.active { display: block; }
/* ─── DASHBOARD ─── */
.dash-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1.5rem;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
}
.card.green::before { background: linear-gradient(90deg, var(--green), transparent); }
.card.amber::before { background: linear-gradient(90deg, var(--amber), transparent); }
.card.blue::before { background: linear-gradient(90deg, var(--blue), transparent); }
.card.cyan::before { background: linear-gradient(90deg, var(--cyan), transparent); }
.card.red::before { background: linear-gradient(90deg, var(--red), transparent); }
.card-title {
font-family: var(--font-mono);
font-size: 0.7rem;
letter-spacing: 0.2em;
color: var(--muted);
text-transform: uppercase;
margin-bottom: 1rem;
}
.bar-chart { display: flex; flex-direction: column; gap: 0.5rem; }
.bar-row {
display: grid;
grid-template-columns: 80px 1fr 40px;
align-items: center;
gap: 0.5rem;
}
.bar-label {
font-family: var(--font-mono);
font-size: 0.75rem;
color: var(--text);
text-align: right;
}
.bar-track {
height: 16px;
background: var(--surface2);
border-radius: 2px;
overflow: hidden;
position: relative;
}
.bar-fill {
height: 100%;
border-radius: 2px;
transition: width 1s cubic-bezier(0.4,0,0.2,1);
}
.bar-count {
font-family: var(--font-mono);
font-size: 0.7rem;
color: var(--muted);
}
.country-list {
display: flex;
flex-direction: column;
gap: 0.4rem;
max-height: 220px;
overflow-y: auto;
}
.country-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.3rem 0;
border-bottom: 1px solid var(--border);
font-family: var(--font-mono);
font-size: 0.75rem;
}
.country-name { color: var(--text); }
.country-count {
color: var(--amber);
background: rgba(255,170,0,0.1);
padding: 0.1rem 0.4rem;
border-radius: 2px;
font-size: 0.7rem;
}
/* ─── ACTIVITY CHART ─── */
.activity-card { grid-column: 1 / -1; }
#activityCanvas {
width: 100%;
height: 120px;
display: block;
}
/* ─── LOGBOOK TABLE ─── */
.log-controls {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
align-items: center;
}
.search-input {
font-family: var(--font-mono);
font-size: 0.85rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 2px;
color: var(--text);
padding: 0.5rem 1rem;
flex: 1;
min-width: 200px;
outline: none;
transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--green); }
.search-input::placeholder { color: var(--muted); }
.filter-select {
font-family: var(--font-mono);
font-size: 0.8rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 2px;
color: var(--text);
padding: 0.5rem 0.75rem;
outline: none;
cursor: pointer;
}
.filter-select option { background: var(--surface2); }
.log-meta {
font-family: var(--font-mono);
font-size: 0.75rem;
color: var(--muted);
margin-left: auto;
white-space: nowrap;
}
.table-wrap {
overflow-x: auto;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 4px;
}
table {
width: 100%;
border-collapse: collapse;
font-family: var(--font-mono);
font-size: 0.8rem;
}
thead th {
background: var(--surface2);
padding: 0.75rem 1rem;
text-align: left;
color: var(--muted);
letter-spacing: 0.15em;
font-size: 0.7rem;
text-transform: uppercase;
border-bottom: 1px solid var(--border);
white-space: nowrap;
cursor: pointer;
user-select: none;
transition: color 0.2s;
}
thead th:hover { color: var(--green); }
thead th.sort-asc::after { content: ' ▲'; font-size: 0.6rem; }
thead th.sort-desc::after { content: ' ▼'; font-size: 0.6rem; }
tbody tr {
border-bottom: 1px solid rgba(30,37,48,0.5);
transition: background 0.15s;
}
tbody tr:hover { background: rgba(0,255,136,0.03); }
tbody td {
padding: 0.6rem 1rem;
color: var(--text);
white-space: nowrap;
}
.call-cell {
color: var(--cyan);
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 0.05em;
}
.band-badge {
display: inline-block;
padding: 0.15rem 0.5rem;
border-radius: 2px;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.05em;
}
.band-20M, .band-20m { background: rgba(68,153,255,0.15); color: var(--blue); }
.band-40M, .band-40m { background: rgba(0,255,136,0.12); color: var(--green); }
.band-80M, .band-80m { background: rgba(255,68,85,0.12); color: var(--red); }
.band-10M, .band-10m { background: rgba(0,221,255,0.12); color: var(--cyan); }
.band-default { background: rgba(90,112,128,0.2); color: var(--muted); }
.mode-cell { color: var(--amber); font-size: 0.75rem; letter-spacing: 0.1em; }
.lotw-y { color: var(--green); }
.lotw-n { color: var(--muted); }
.rst-cell { color: var(--text); font-size: 0.75rem; }
.dist-cell { color: var(--muted); font-size: 0.75rem; }
/* Pagination */
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-top: 1.5rem;
font-family: var(--font-mono);
font-size: 0.8rem;
flex-wrap: wrap;
}
.page-btn {
background: var(--surface);
border: 1px solid var(--border);
color: var(--text);
padding: 0.4rem 0.8rem;
border-radius: 2px;
cursor: pointer;
transition: all 0.2s;
}
.page-btn:hover { border-color: var(--green); color: var(--green); }
.page-btn.active { background: rgba(0,255,136,0.1); border-color: var(--green); color: var(--green); }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.page-info { color: var(--muted); padding: 0.4rem 0.5rem; }
/* ─── ABOUT ─── */
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
@media (max-width: 768px) {
.about-grid { grid-template-columns: 1fr; }
}
.info-block { margin-bottom: 1.5rem; }
.info-label {
font-family: var(--font-mono);
font-size: 0.65rem;
letter-spacing: 0.2em;
color: var(--muted);
text-transform: uppercase;
margin-bottom: 0.3rem;
}
.info-value {
font-family: var(--font-body);
font-size: 1.1rem;
color: var(--text);
font-weight: 600;
}
.info-value a { color: var(--cyan); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }
.tag-list {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 0.5rem;
}
.tag {
font-family: var(--font-mono);
font-size: 0.7rem;
letter-spacing: 0.1em;
padding: 0.3rem 0.7rem;
border: 1px solid var(--border);
border-radius: 2px;
color: var(--text);
background: var(--surface2);
}
/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--surface2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }
/* ─── FOOTER ─── */
footer {
text-align: center;
padding: 2rem;
font-family: var(--font-mono);
font-size: 0.7rem;
color: var(--muted);
border-top: 1px solid var(--border);
margin-top: 3rem;
letter-spacing: 0.15em;
}
footer span { color: var(--green); }
/* ─── LOADING ─── */
.loading {
display: flex;
align-items: center;
justify-content: center;
padding: 3rem;
gap: 0.5rem;
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--muted);
}
.spinner {
width: 16px; height: 16px;
border: 2px solid var(--border);
border-top-color: var(--green);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 600px) {
.header-inner { padding: 1rem 0; }
.callsign { font-size: 2rem; }
.status-val { font-size: 1.2rem; }
main { padding: 1rem; }
.log-controls { gap: 0.5rem; }
.nav-btn { padding: 0.75rem 1rem; font-size: 0.7rem; }
}
</style>
</head>
<body>
<header>
<div class="header-inner">
<div class="callsign-block">
<div>
<div class="callsign">K5BSS</div>
<div class="op-name">JUSTIN A FRASIER · BOSSIER CITY, LA · EM32</div>
</div>
</div>
<div class="header-status">
<div class="status-item">
<span class="status-val" id="stat-qso">2,112</span>
<span class="status-lbl">QSOs Logged</span>
</div>
<div class="status-item">
<span class="status-val" id="stat-dxcc"></span>
<span class="status-lbl">Countries</span>
</div>
<div class="status-item">
<span class="status-val" id="stat-states"></span>
<span class="status-lbl">States</span>
</div>
<div class="online-badge">
<span class="pulse-dot"></span>
STATION ONLINE
</div>
</div>
</div>
</header>
<nav>
<div class="nav-inner">
<button class="nav-btn active" onclick="showSection('dashboard', this)">◈ DASHBOARD</button>
<button class="nav-btn" onclick="showSection('logbook', this)">▤ LOGBOOK</button>
<button class="nav-btn" onclick="showSection('about', this)">◉ ABOUT</button>
</div>
</nav>
<main>
<!-- DASHBOARD -->
<div id="section-dashboard" class="section active">
<div class="dash-grid">
<div class="card amber" id="card-modes">
<div class="card-title">▶ Modes</div>
<div class="bar-chart" id="modes-chart"></div>
</div>
<div class="card blue" id="card-bands">
<div class="card-title">▶ Bands</div>
<div class="bar-chart" id="bands-chart"></div>
</div>
<div class="card cyan" id="card-countries">
<div class="card-title">▶ Top Countries</div>
<div class="country-list" id="countries-list"></div>
</div>
<div class="card green activity-card">
<div class="card-title">▶ QSO Activity by Month</div>
<canvas id="activityCanvas"></canvas>
</div>
</div>
</div>
<!-- LOGBOOK -->
<div id="section-logbook" class="section">
<div class="log-controls">
<input class="search-input" id="search-input" type="text" placeholder="Search callsign, name, country, QTH..." oninput="applyFilters()">
<select class="filter-select" id="filter-band" onchange="applyFilters()">
<option value="">All Bands</option>
</select>
<select class="filter-select" id="filter-mode" onchange="applyFilters()">
<option value="">All Modes</option>
</select>
<select class="filter-select" id="filter-lotw" onchange="applyFilters()">
<option value="">LoTW: All</option>
<option value="Y">LoTW: Confirmed</option>
<option value="N">LoTW: Not Confirmed</option>
</select>
<span class="log-meta" id="log-meta">Loading...</span>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th onclick="sortTable('call')">Call</th>
<th onclick="sortTable('name')">Name</th>
<th onclick="sortTable('date')">Date</th>
<th onclick="sortTable('time')">Time (UTC)</th>
<th onclick="sortTable('band')">Band</th>
<th onclick="sortTable('mode')">Mode</th>
<th onclick="sortTable('rst_sent')">RST S/R</th>
<th onclick="sortTable('country')">Country</th>
<th onclick="sortTable('dist')">Dist (mi)</th>
<th onclick="sortTable('lotw')">LoTW</th>
</tr>
</thead>
<tbody id="log-tbody">
<tr><td colspan="10"><div class="loading"><div class="spinner"></div>Loading logbook...</div></td></tr>
</tbody>
</table>
</div>
<div class="pagination" id="pagination"></div>
</div>
<!-- ABOUT -->
<div id="section-about" class="section">
<div class="about-grid">
<div class="card green">
<div class="card-title">▶ Station Info</div>
<div class="info-block">
<div class="info-label">Call Sign</div>
<div class="info-value">K5BSS</div>
</div>
<div class="info-block">
<div class="info-label">Operator</div>
<div class="info-value">Justin A Frasier</div>
</div>
<div class="info-block">
<div class="info-label">Location</div>
<div class="info-value">Bossier City, Louisiana</div>
</div>
<div class="info-block">
<div class="info-label">Grid Square</div>
<div class="info-value">EM32</div>
</div>
<div class="info-block">
<div class="info-label">County</div>
<div class="info-value">Bossier County, LA</div>
</div>
<div class="info-block">
<div class="info-label">CQ Zone / ITU Zone</div>
<div class="info-value">5 / 6</div>
</div>
<div class="info-block">
<div class="info-label">QRZ Profile</div>
<div class="info-value"><a href="https://www.qrz.com/db/K5BSS" target="_blank">qrz.com/db/K5BSS ↗</a></div>
</div>
</div>
<div class="card blue">
<div class="card-title">▶ Operating Preferences</div>
<div class="info-block">
<div class="info-label">Primary Modes</div>
<div class="tag-list">
<span class="tag">FT8</span>
<span class="tag">FT4</span>
<span class="tag">DIG</span>
<span class="tag">USB/SSB</span>
<span class="tag">RTTY</span>
</div>
</div>
<div class="info-block">
<div class="info-label">Primary Bands</div>
<div class="tag-list">
<span class="tag">20m</span>
<span class="tag">40m</span>
<span class="tag">80m</span>
<span class="tag">30m</span>
<span class="tag">17m</span>
<span class="tag">15m</span>
</div>
</div>
<div class="info-block">
<div class="info-label">Logging Software</div>
<div class="info-value">QRZ Logbook</div>
</div>
<div class="info-block">
<div class="info-label">LoTW / eQSL</div>
<div class="info-value">Active on both</div>
</div>
<div class="info-block">
<div class="info-label">Log Period</div>
<div class="info-value">Jan 2021 May 2023</div>
</div>
<div class="info-block">
<div class="info-label">Total QSOs</div>
<div class="info-value" style="color:var(--green);font-size:1.5rem;font-family:var(--font-display)">2,112</div>
</div>
</div>
</div>
</div>
</main>
<footer>
<span>K5BSS</span> · JUSTIN A FRASIER · BOSSIER CITY, LA ·
GRID EM32 · CQ5 · ALL TIMES UTC ·
LOGBOOK GENERATED FROM ADIF EXPORT
</footer>
<script>
// ─── DATA ───────────────────────────────────────────────────
const RAW_DATA = [{"call":"WE2M","name":"ROBERT A HOGUE","date":"2021-01-24","time":"0553","band":"40M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-10","country":"United States","state":"WA","qth":"E WENATCHEE","lotw":"Y","dist":"2782","grid":"CN97UJ"},{"call":"WD8AXA","name":"CHARLES D AGOSTI","date":"2021-01-24","time":"0555","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-11","country":"United States","state":"MI","qth":"PORTAGE","lotw":"N","dist":"1291","grid":"EN72ef"},{"call":"KG4IXS","name":"RICHARD A VAUGHAN","date":"2021-01-24","time":"0558","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-13","country":"United States","state":"VA","qth":"CHATHAM","lotw":"Y","dist":"1390","grid":"FM06HU"},{"call":"KE0DC","name":"","date":"2021-01-24","time":"0600","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-09","country":"United States","state":"CO","qth":"AURORA","lotw":"Y","dist":"1274","grid":"DM79OQ"},{"call":"KC0HHN","name":"","date":"2021-01-24","time":"0604","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"IA","qth":"","lotw":"N","dist":"","grid":"EN31"},{"call":"WB0OEW","name":"JAMES D VOGT","date":"2021-01-24","time":"0606","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-15","country":"United States","state":"MO","qth":"CAMDENTON","lotw":"Y","dist":"747","grid":"EM37TH"},{"call":"N4JKO","name":"GARY E HORTON","date":"2021-01-24","time":"0608","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-15","country":"United States","state":"TN","qth":"","lotw":"N","dist":"","grid":"EM65RT"},{"call":"WW4LL","name":"LESTER P LEEPER","date":"2021-01-24","time":"0610","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-13","country":"United States","state":"GA","qth":"BOWDON","lotw":"Y","dist":"575","grid":"EM73DS"},{"call":"K0MBT","name":"MICHAEL B TEDESCO","date":"2021-01-24","time":"0612","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-18","country":"United States","state":"MN","qth":"SHAKOPEE","lotw":"Y","dist":"1247","grid":"EN34HE"},{"call":"WB4LHD","name":"ROY A MCDANIEL","date":"2021-01-24","time":"0618","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-12","country":"United States","state":"NC","qth":"SANFORD","lotw":"Y","dist":"1118","grid":"FM03HF"},{"call":"N0KJA","name":"FRANK O KORANDA","date":"2021-01-24","time":"0620","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-14","country":"United States","state":"KS","qth":"WICHITA","lotw":"Y","dist":"641","grid":"EM17PT"},{"call":"W9JML","name":"JAMES M LAURENDEAU","date":"2021-01-24","time":"0623","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-16","country":"United States","state":"IL","qth":"COLLINSVILLE","lotw":"Y","dist":"668","grid":"EM58GI"},{"call":"K9ADV","name":"DWIGHT A VANDERLINDEN","date":"2021-01-24","time":"0625","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"IN","qth":"INDIANAPOLIS","lotw":"Y","dist":"929","grid":"EM79MF"},{"call":"WB8YYY","name":"ERNEST E MUENZER","date":"2021-01-24","time":"0628","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-05","country":"United States","state":"MI","qth":"","lotw":"Y","dist":"","grid":"EN72"},{"call":"KD2UKS","name":"RAYMOND JOSEPH MCDERMOTT","date":"2021-01-24","time":"0641","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-15","country":"United States","state":"NY","qth":"MASTIC","lotw":"N","dist":"1561","grid":"FN30HT"},{"call":"KD8IYI","name":"JEFFREY C WHITLEY","date":"2021-01-24","time":"0644","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-13","country":"United States","state":"OH","qth":"","lotw":"Y","dist":"","grid":"EM89LG"},{"call":"K9DW","name":"DAN WELBORN","date":"2021-01-24","time":"0647","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-06","country":"United States","state":"AL","qth":"DOTHAN","lotw":"Y","dist":"435","grid":"EM64SA"},{"call":"K8DO","name":"DEAN L OSTERMAN","date":"2021-01-24","time":"0649","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-10","country":"United States","state":"MI","qth":"ALLENDALE","lotw":"Y","dist":"1298","grid":"EN62OX"},{"call":"K6VMV","name":"VICTOR M VALADEZ","date":"2021-01-24","time":"0651","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-12","country":"United States","state":"CA","qth":"MANTECA","lotw":"N","dist":"1954","grid":"CM97KC"},{"call":"W0ULF","name":"MIKE WOLFE","date":"2021-01-24","time":"0653","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"NE","qth":"OMAHA","lotw":"Y","dist":"1012","grid":"EN21WC"}];
// We'll load more data dynamically
let ALL_DATA = [];
let filteredData = [];
let sortKey = 'date';
let sortDir = -1; // -1 = desc
let currentPage = 1;
const PAGE_SIZE = 50;
// ─── FULL DATA EMBEDDED ──────────────────────────────────────
// Data will be injected here
const FULL_LOG = [{"call":"WE2M","name":"ROBERT A HOGUE","date":"2021-01-24","time":"0553","band":"40M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-10","country":"United States","state":"WA","qth":"E WENATCHEE","lotw":"Y","dist":"2782","grid":"CN97UJ"},{"call":"WD8AXA","name":"CHARLES D AGOSTI","date":"2021-01-24","time":"0555","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-11","country":"United States","state":"MI","qth":"PORTAGE","lotw":"N","dist":"1291","grid":"EN72ef"},{"call":"KG4IXS","name":"RICHARD A VAUGHAN","date":"2021-01-24","time":"0558","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-13","country":"United States","state":"VA","qth":"CHATHAM","lotw":"Y","dist":"1390","grid":"FM06HU"},{"call":"KE0DC","name":"DOUGLAS J COMER","date":"2021-01-24","time":"0600","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-09","country":"United States","state":"CO","qth":"AURORA","lotw":"Y","dist":"1274","grid":"DM79OQ"},{"call":"KC2DUX","name":"John W Hamann, Jr","date":"2021-01-24","time":"0608","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-11","country":"United States","state":"NJ","qth":"Dennisville","lotw":"N","dist":"1850","grid":"FM29oe"},{"call":"N3XLS","name":"Joseph C Raymer","date":"2021-01-24","time":"0613","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-15","country":"United States","state":"PA","qth":"North Abington Twp","lotw":"Y","dist":"1880","grid":"FN21DN"},{"call":"HK1O","name":"Juan Guillermo Ochoa P","date":"2021-01-24","time":"0617","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-15","country":"Colombia","state":"","qth":"Puerto Colombia","lotw":"Y","dist":"3071","grid":"FK21NA"},{"call":"WJ9E","name":"Michael D Elder","date":"2021-01-24","time":"0645","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-14","country":"United States","state":"IN","qth":"Rushville","lotw":"Y","dist":"1081","grid":"EM79GO"},{"call":"K8TE","name":"WILLIAM A MADER, JR","date":"2021-01-24","time":"0647","band":"40M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-05","country":"United States","state":"NM","qth":"RIO RANCHO","lotw":"Y","dist":"1230","grid":"DM65QG"},{"call":"N1UL","name":"ULRICH L ROHDE, PhD","date":"2021-01-24","time":"0703","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-11","country":"United States","state":"FL","qth":"MARCO ISLAND","lotw":"Y","dist":"1373","grid":"EL95DW"},{"call":"K9IHM","name":"JERROLD L JOHNSON","date":"2021-01-24","time":"0708","band":"40M","mode":"FT8","rst_sent":"+11","rst_rcvd":"+07","country":"United States","state":"TN","qth":"NEW MARKET","lotw":"Y","dist":"1010","grid":"EM86FC"},{"call":"WB7WUQ","name":"Malcolm A Clark","date":"2021-01-24","time":"0710","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-10","country":"United States","state":"WA","qth":"Inchelium","lotw":"Y","dist":"2714","grid":"DN08RG"},{"call":"N6AKO","name":"Luis Dimagiba","date":"2021-01-24","time":"0717","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"+05","country":"United States","state":"CA","qth":"Arleta","lotw":"Y","dist":"2299","grid":"DM04SG"},{"call":"KC2DUX","name":"John W Hamann, Jr","date":"2021-01-24","time":"0719","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-04","country":"United States","state":"NJ","qth":"Dennisville","lotw":"Y","dist":"1850","grid":"FM29OE"},{"call":"KA9FOX","name":"SCOTT E NEADER","date":"2021-01-24","time":"0721","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+03","country":"United States","state":"WI","qth":"LA CROSSE","lotw":"Y","dist":"1271","grid":"EN43KS"},{"call":"KI3N","name":"Kenneth A Yates","date":"2021-01-24","time":"0723","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-03","country":"United States","state":"AL","qth":"Oxford","lotw":"Y","dist":"742","grid":"EM73CN"},{"call":"KA4NIV","name":"MAURICE E RICE, JR","date":"2021-01-24","time":"0725","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"+07","country":"United States","state":"SC","qth":"SIMPSONVILLE","lotw":"Y","dist":"1087","grid":"EM84UT"},{"call":"KB1EFS","name":"Steven J Henchy","date":"2021-01-24","time":"0727","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-06","country":"United States","state":"MA","qth":"Franklin","lotw":"Y","dist":"2230","grid":"FN42HC"},{"call":"NR5G","name":"LEE E SWANSON","date":"2021-01-24","time":"0728","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-06","country":"United States","state":"GA","qth":"WARNER ROBINS","lotw":"N","dist":"943","grid":"EM82ep"},{"call":"KO4ARA","name":"David W Hunt, Jr","date":"2021-01-24","time":"0733","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-05","country":"United States","state":"VA","qth":"Annandale","lotw":"Y","dist":"1642","grid":"FM18JT"},{"call":"N7FN","name":"FRANKLIN B NORAGON","date":"2021-01-26","time":"1334","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-09","country":"United States","state":"AZ","qth":"Buckeye","lotw":"N","dist":"1765","grid":"DM33qq"},{"call":"N0DOW","name":"Richard W Shell","date":"2021-01-26","time":"1344","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-09","country":"United States","state":"MN","qth":"Brainerd","lotw":"Y","dist":"1534","grid":"EN26VH"},{"call":"KP2B","name":"ST Croix VI Contest Groups","date":"2021-01-26","time":"1358","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-06","country":"US Virgin Islands","state":"VI","qth":"Christiansted","lotw":"Y","dist":"3329","grid":"FK77PS"},{"call":"NM3B","name":"Wayne G Ginther","date":"2021-01-26","time":"1400","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-13","country":"United States","state":"PA","qth":"Saint Marys","lotw":"N","dist":"1672","grid":"FN01sk"},{"call":"KO4EUY","name":"Joseph M Pekala, Jr","date":"2021-01-26","time":"1404","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-14","country":"United States","state":"VA","qth":"Ashburn","lotw":"Y","dist":"1628","grid":"FM19GB"},{"call":"NK0V","name":"AREND SCHUURMAN","date":"2021-01-26","time":"1413","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-06","country":"United States","state":"SD","qth":"ELKTON","lotw":"Y","dist":"1323","grid":"EN14SF"},{"call":"K3ABE","name":"William M Snyder","date":"2021-01-26","time":"1418","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"United States","state":"PA","qth":"Coplay","lotw":"Y","dist":"1849","grid":"FN20FQ"},{"call":"W4FLX","name":"Frank H Lane","date":"2021-01-26","time":"1419","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-08","country":"United States","state":"VA","qth":"Rocky Mount","lotw":"Y","dist":"1360","grid":"FM06CW"},{"call":"VA3ATW","name":"Alan MacKay","date":"2021-01-26","time":"1421","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-01","country":"Canada","state":"ON","qth":"ATWOOD","lotw":"Y","dist":"1658","grid":"EN93LP"},{"call":"KC3NYT","name":"James I Gyle","date":"2021-01-26","time":"1422","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-10","country":"United States","state":"MD","qth":"Columbia","lotw":"Y","dist":"1689","grid":"FM19OF"},{"call":"NP4WW","name":"URIS MONGE-VIVES","date":"2021-01-26","time":"1427","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"Puerto Rico","state":"","qth":"TOA ALTA","lotw":"Y","dist":"3159","grid":"FK68VJ"},{"call":"KC9ZZU","name":"Leonard J Matulewicz","date":"2021-01-26","time":"1437","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-07","country":"United States","state":"IL","qth":"Oswego","lotw":"Y","dist":"1124","grid":"EN51UQ"},{"call":"NP3DM","name":"RAMON SUAREZ SANCHEZ","date":"2021-01-26","time":"1450","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-13","country":"Puerto Rico","state":"","qth":"CAYEY","lotw":"Y","dist":"3155","grid":"FK68WD"},{"call":"KE6BAP","name":"David N Kampfer","date":"2021-01-26","time":"1453","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-04","country":"United States","state":"DE","qth":"Bear","lotw":"N","dist":"1418","grid":"FM19vo"},{"call":"W9LTN","name":"JOHN E KLEIN","date":"2021-01-26","time":"1501","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-07","country":"United States","state":"IN","qth":"AUBURN","lotw":"Y","dist":"1241","grid":"EN71MG"},{"call":"N7SMD","name":"Scott M Downard","date":"2021-01-26","time":"1506","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-09","country":"United States","state":"AZ","qth":"Williams","lotw":"Y","dist":"1683","grid":"DM35vg"},{"call":"KC4ZYO","name":"BRIAN M WHITE","date":"2021-01-26","time":"1510","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-17","country":"United States","state":"NC","qth":"MINT HILL","lotw":"Y","dist":"1237","grid":"EM95QD"},{"call":"N2SS","name":"ANTHONY R GARGANO","date":"2021-01-26","time":"1527","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-01","country":"United States","state":"FL","qth":"Estero","lotw":"Y","dist":"1339","grid":"EL96CJ"},{"call":"NS4M","name":"STEPHEN P MASLIN","date":"2021-01-26","time":"1531","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-08","country":"United States","state":"FL","qth":"Valrico","lotw":"N","dist":"1214","grid":"EL87vw"},{"call":"AE9DR","name":"Robert W Anderton","date":"2021-01-26","time":"1534","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-08","country":"United States","state":"IN","qth":"TERRE HAUTE","lotw":"Y","dist":"958","grid":"EN80HF"},{"call":"N1MVV","name":"EUGENE B RAYMOND","date":"2021-01-26","time":"1537","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-14","country":"United States","state":"FL","qth":"Sun City Center","lotw":"Y","dist":"1213","grid":"EL87TQ"},{"call":"KD8JSP","name":"JOHN P St Peter","date":"2021-01-26","time":"1547","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-12","country":"United States","state":"MI","qth":"Plymouth","lotw":"Y","dist":"1419","grid":"EN82GJ"},{"call":"VE3YV","name":"George William Gorsline Jr","date":"2021-01-26","time":"1550","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"Canada","state":"ON","qth":"TORONTO","lotw":"Y","dist":"1756","grid":"FN03HQ"},{"call":"NP4JL","name":"JOSE L LOPEZ","date":"2021-01-26","time":"1553","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-03","country":"United States","state":"FL","qth":"Land O Lakes","lotw":"Y","dist":"1173","grid":"EL88RF"},{"call":"N0VVH","name":"RONALD E MC AFEE","date":"2021-01-26","time":"1554","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-13","country":"United States","state":"AZ","qth":"GREEN VALLEY","lotw":"Y","dist":"1627","grid":"DM41LU"},{"call":"KB9YDI","name":"Daniel A Darnieder","date":"2021-01-26","time":"1558","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-22","country":"United States","state":"WI","qth":"Milwaukee","lotw":"Y","dist":"1278","grid":"EN63BB"},{"call":"XE2GRM","name":"Gildardo Rosas Meza.","date":"2021-01-26","time":"1601","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-15","country":"Mexico","state":"BC","qth":"Ensenada","lotw":"Y","dist":"2154","grid":"DM11QU"},{"call":"WM6Y","name":"Philomen P Leonelli, Jr","date":"2021-01-26","time":"1611","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-16","country":"United States","state":"CA","qth":"Fallbrook","lotw":"Y","dist":"2191","grid":"DM13JI"},{"call":"AA9JS","name":"GARY R SMITH","date":"2021-01-26","time":"1613","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"+00","country":"United States","state":"IL","qth":"NAPERVILLE","lotw":"Y","dist":"1138","grid":"EN51WS"},{"call":"KT3P","name":"THOMAS J PRYTS","date":"2021-01-26","time":"1615","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-06","country":"United States","state":"PA","qth":"HERMITAGE","lotw":"Y","dist":"1526","grid":"EN91TG"},{"call":"N3CGK","name":"EDWARD P BAILEY, JR","date":"2021-01-26","time":"1618","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-11","country":"United States","state":"PA","qth":"SHARON","lotw":"Y","dist":"1519","grid":"EN91SF"},{"call":"KA0BOJ","name":"MATTHEW N ANDERSON","date":"2021-01-26","time":"1627","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-14","country":"United States","state":"NE","qth":"Raymond","lotw":"Y","dist":"975","grid":"EN10NW"},{"call":"XE2W","name":"Luis Carlos Yepiz Ruiz","date":"2021-01-26","time":"1628","band":"20M","mode":"FT8","rst_sent":"+15","rst_rcvd":"+01","country":"Mexico","state":"","qth":"Monterrey","lotw":"Y","dist":"1000","grid":"DL95UO"},{"call":"W9CSX","name":"THOMAS G CARROLL","date":"2021-01-26","time":"1636","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-18","country":"United States","state":"IN","qth":"WHITELAND","lotw":"Y","dist":"1037","grid":"EM69XN"},{"call":"K9XP","name":"JAMES J NEVITT","date":"2021-01-26","time":"1639","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-11","country":"United States","state":"IL","qth":"North Aurora","lotw":"Y","dist":"1137","grid":"EN51UT"},{"call":"W4LUF","name":"LEONIDES USIN FREIRE","date":"2021-01-26","time":"1643","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-14","country":"United States","state":"FL","qth":"HIALEAH","lotw":"Y","dist":"1493","grid":"EL95UV"},{"call":"KA1LD","name":"Konrad Kristensen","date":"2021-01-26","time":"1650","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-15","country":"United States","state":"OH","qth":"Cincinnati","lotw":"N","dist":"1127","grid":"EM79tg"},{"call":"KP4AF","name":"CARLOS R GUZMAN","date":"2021-01-26","time":"1652","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-04","country":"Puerto Rico","state":"","qth":"PONCE","lotw":"Y","dist":"3150","grid":"FK68QA"},{"call":"AB9B","name":"Robert F Sims","date":"2021-01-26","time":"1654","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-08","country":"United States","state":"IL","qth":"East Peoria","lotw":"Y","dist":"973","grid":"EN50FP"},{"call":"N9EXL","name":"Lyndel L Emrick","date":"2021-01-26","time":"1700","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-11","country":"United States","state":"IL","qth":"Mount Pulaski","lotw":"Y","dist":"920","grid":"EN50IA"},{"call":"CO2CW","name":"CARLOS MARTINEZ","date":"2021-01-26","time":"1702","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-13","country":"Cuba","state":"","qth":"HABANA 10600","lotw":"Y","dist":"1481","grid":"EL83WW"},{"call":"KD2NOM","name":"Mark W Steele","date":"2021-01-26","time":"1703","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-12","country":"United States","state":"NJ","qth":"Monroe Township","lotw":"Y","dist":"1927","grid":"FN20TI"},{"call":"KI7SKT","name":"Mark J Richardson","date":"2021-01-26","time":"1705","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-16","country":"United States","state":"WA","qth":"Monroe","lotw":"Y","dist":"2919","grid":"CN87XT"},{"call":"WZ4M","name":"THOMAS Z MITCHELL, III","date":"2021-01-26","time":"1714","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-12","country":"United States","state":"NC","qth":"Davidson","lotw":"Y","dist":"1229","grid":"EM95OK"},{"call":"AI9F","name":"ALAN M HUFF","date":"2021-01-26","time":"1715","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-17","country":"United States","state":"IL","qth":"FLORA","lotw":"Y","dist":"829","grid":"EM58SQ"},{"call":"WE2LEW","name":"Lewis E Ellwanger","date":"2021-01-26","time":"1719","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-17","country":"United States","state":"NY","qth":"ROSE","lotw":"N","dist":"1876","grid":"FN13nd"},{"call":"KE7BMG","name":"David J La Bier","date":"2021-01-26","time":"1720","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+04","country":"United States","state":"FL","qth":"Eustis","lotw":"Y","dist":"1215","grid":"EL98DV"},{"call":"W4UWC","name":"GEORGE M DOMINICK","date":"2021-01-26","time":"1722","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-03","country":"United States","state":"KY","qth":"NICHOLASVILLE","lotw":"Y","dist":"1011","grid":"EM77QT"},{"call":"W2RHS","name":"Richard H Subers","date":"2021-01-26","time":"1726","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-16","country":"United States","state":"NJ","qth":"Clayton","lotw":"Y","dist":"1845","grid":"FM29KP"},{"call":"KP4SE","name":"JORGE L RODRIGUEZ","date":"2021-01-26","time":"1728","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-09","country":"Puerto Rico","state":"","qth":"PONCE","lotw":"Y","dist":"3153","grid":"FK67QX"},{"call":"WJ9E","name":"Michael D Elder","date":"2021-01-26","time":"1737","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-01","country":"United States","state":"IN","qth":"Rushville","lotw":"N","dist":"1081","grid":"EM79"},{"call":"N9DWH","name":"Dennis W Henry","date":"2021-01-26","time":"1740","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-12","country":"United States","state":"IN","qth":"Goshen","lotw":"Y","dist":"1221","grid":"EN71CN"},{"call":"W4RJP","name":"ROBERT J PEARSALL","date":"2021-01-26","time":"1744","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-03","country":"United States","state":"FL","qth":"Port St Lucie","lotw":"Y","dist":"1413","grid":"EL97UH"},{"call":"AC8KK","name":"BOBBY D PRATER","date":"2021-01-26","time":"1745","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-08","country":"United States","state":"MI","qth":"GRAND LEDGE","lotw":"N","dist":"1360","grid":"EN72nn"},{"call":"HI3CMM","name":"Cesar Martinez","date":"2021-01-26","time":"1749","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+00","country":"Dominican Republic","state":"","qth":"SANTIAGO","lotw":"Y","dist":"2707","grid":"FK49PL35"},{"call":"N8AWG","name":"William Gentry, Mr.","date":"2021-01-26","time":"1753","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"","country":"United States","state":"OH","qth":"Norwalk","lotw":"N","dist":"1340","grid":"EN81qf"},{"call":"W4NLD","name":"James A Scheer","date":"2021-01-26","time":"1756","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-04","country":"United States","state":"NC","qth":"New Bern","lotw":"N","dist":"1488","grid":"FM15jb"},{"call":"WD4FJF","name":"HAROLD E FEIGEL","date":"2021-01-26","time":"1758","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-09","country":"United States","state":"MI","qth":"CEDAR","lotw":"N","dist":"1528","grid":"EN74BU"},{"call":"K8SJM","name":"STEVE MILLER","date":"2021-01-26","time":"1802","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-01","country":"United States","state":"OH","qth":"Dayton","lotw":"Y","dist":"1168","grid":"EM79WP"},{"call":"AC3D","name":"Scott Newland, EdD","date":"2021-01-26","time":"1804","band":"20M","mode":"FT8","rst_sent":"+14","rst_rcvd":"+12","country":"United States","state":"TN","qth":"Chuckey","lotw":"Y","dist":"1114","grid":"EM86QC"},{"call":"K3ZK","name":"GEORGE A MIKLOSI","date":"2021-01-26","time":"1815","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-08","country":"United States","state":"PA","qth":"NANTICOKE","lotw":"Y","dist":"1841","grid":"FN21AE"},{"call":"W4RNO","name":"RICHARD N OWENS","date":"2021-01-26","time":"1817","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+05","country":"United States","state":"FL","qth":"The Villages","lotw":"N","dist":"1112","grid":"EL98"},{"call":"W2AXR","name":"ALEXANDER RANALDI","date":"2021-01-26","time":"1819","band":"20M","mode":"FT8","rst_sent":"+15","rst_rcvd":"+05","country":"United States","state":"NY","qth":"SYRACUSE","lotw":"Y","dist":"1930","grid":"FN03NG"},{"call":"W4MUP","name":"DANNY E BAKER","date":"2021-01-26","time":"1822","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-07","country":"United States","state":"NC","qth":"Rural Hall","lotw":"Y","dist":"1297","grid":"EM96UF"},{"call":"KF0CSL","name":"Gerald J Allen","date":"2021-01-26","time":"1823","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"NE","qth":"Mitchell","lotw":"Y","dist":"1375","grid":"DN81CX"},{"call":"VE2GSO","name":"Gilles Soucy","date":"2021-01-26","time":"1829","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-15","country":"Canada","state":"","qth":"Rimouski","lotw":"Y","dist":"2750","grid":"FN58SL"},{"call":"W8LVN","name":"WILLIAM LEDERER","date":"2021-01-26","time":"1832","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-15","country":"United States","state":"IL","qth":"WINTHROP HARBOR","lotw":"Y","dist":"1221","grid":"EN62cl"},{"call":"NC4SB","name":"John L Zalar","date":"2021-01-26","time":"1834","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-18","country":"United States","state":"NC","qth":"Sunset Beach","lotw":"N","dist":"1419","grid":"FM03rv"},{"call":"N3RC","name":"Roger M Cooper","date":"2021-01-26","time":"1836","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-06","country":"United States","state":"CA","qth":"sebastopol","lotw":"Y","dist":"2703","grid":"CM88OJ"},{"call":"N3XLS","name":"Joseph C Raymer","date":"2021-01-26","time":"1843","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+02","country":"United States","state":"PA","qth":"North Abington Twp","lotw":"Y","dist":"1880","grid":"FN21DN"},{"call":"K8BCL","name":"BRIAN P CLEMANS","date":"2021-01-26","time":"1845","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-04","country":"United States","state":"OH","qth":"HILLIARD","lotw":"Y","dist":"1262","grid":"EN80KB"},{"call":"K2HRT","name":"WILLIAM J RILEY, JR","date":"2021-01-26","time":"1846","band":"20M","mode":"FT8","rst_sent":"+10","rst_rcvd":"-01","country":"United States","state":"SC","qth":"Beaufort","lotw":"Y","dist":"1224","grid":"EM92QJ"},{"call":"G4UJS","name":"Rob Harrison","date":"2021-01-26","time":"1848","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-20","country":"England","state":"","qth":"Whixall, Shropshire.","lotw":"Y","dist":"7244","grid":"IO82pv"},{"call":"W4SCT","name":"BRAD R COOK","date":"2021-01-26","time":"1850","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-05","country":"United States","state":"NC","qth":"LENOIR","lotw":"Y","dist":"1166","grid":"EM95DV"},{"call":"KD2FYG","name":"Peter C Fayter","date":"2021-01-26","time":"1852","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-10","country":"United States","state":"NJ","qth":"Collings Lakes","lotw":"Y","dist":"1860","grid":"FM29NO"},{"call":"ND8G","name":"BERNARD M HIGHTOWER, JR","date":"2021-01-26","time":"1855","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-17","country":"United States","state":"IL","qth":"AURORA","lotw":"Y","dist":"1133","grid":"EM77FV"},{"call":"K7AAK","name":"ROBERT C CHESEBRO","date":"2021-01-26","time":"1858","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-13","country":"United States","state":"AZ","qth":"LAKE HAVASU CITY","lotw":"Y","dist":"1924","grid":"DM24TM"},{"call":"KY0R","name":"HAROLD R GRUSE, JR","date":"2021-01-26","time":"1901","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-22","country":"United States","state":"CO","qth":"PUEBLO","lotw":"Y","dist":"1178","grid":"DM78PF"},{"call":"N4NF","name":"MICHAEL S COPPER","date":"2021-01-26","time":"1909","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-09","country":"United States","state":"FL","qth":"DELRAY BEACH","lotw":"N","dist":"1477","grid":"EL96WL"},{"call":"NE3F","name":"STEPHEN M DOBBS","date":"2021-01-26","time":"1912","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-05","country":"United States","state":"PA","qth":"READING","lotw":"Y","dist":"1793","grid":"FN10XG"},{"call":"WA8YEG","name":"Teddy L Donaldson","date":"2021-01-26","time":"1916","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+02","country":"United States","state":"OH","qth":"Dennison","lotw":"Y","dist":"1409","grid":"EN90IK"},{"call":"WB0N","name":"BERT F BENJAMINSON","date":"2021-01-26","time":"1917","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-20","country":"United States","state":"MN","qth":"BLOOMINGTON","lotw":"Y","dist":"1367","grid":"EN34HT"},{"call":"K5EK","name":"EDWARD J KUEBERT","date":"2021-01-26","time":"1919","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-05","country":"United States","state":"NC","qth":"Southport","lotw":"Y","dist":"1456","grid":"FM03WW"},{"call":"KK4YW","name":"LOWELL W PLUM","date":"2021-01-26","time":"1921","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-07","country":"United States","state":"NC","qth":"ASHEBORO","lotw":"Y","dist":"1319","grid":"FM05CM"},{"call":"KF2GQ","name":"ROBERT M PURRINSON","date":"2021-01-26","time":"1924","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-06","country":"United States","state":"FL","qth":"Jupiter","lotw":"Y","dist":"1450","grid":"EL96WV"},{"call":"WA3VHL","name":"GLENN BLOCK","date":"2021-01-26","time":"1928","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-01","country":"United States","state":"PA","qth":"ALLENTOWN","lotw":"N","dist":"1847","grid":"FN20FO"},{"call":"KD7SSP","name":"Jeffrey R Carpenter","date":"2021-01-26","time":"1931","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-16","country":"United States","state":"AZ","qth":"Valley Farms","lotw":"N","dist":"1658","grid":"DM42GX"},{"call":"K1DLT","name":"Dale L Trisch","date":"2021-01-26","time":"1933","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-12","country":"United States","state":"MI","qth":"Bay City","lotw":"Y","dist":"1498","grid":"EN83BO"},{"call":"N2EIK","name":"JOHN D MAZZONE","date":"2021-01-26","time":"1944","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-10","country":"United States","state":"NY","qth":"KINGSTON","lotw":"Y","dist":"2023","grid":"FN21XW"},{"call":"NG3Y","name":"Tadeusz Robak","date":"2021-01-26","time":"1946","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-10","country":"United States","state":"MD","qth":"COCKEYSVILLE","lotw":"Y","dist":"1715","grid":"FM19QL"},{"call":"W4MGL","name":"Marc G Lamb","date":"2021-01-26","time":"1949","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-20","country":"United States","state":"VA","qth":"Chesapeake","lotw":"Y","dist":"1660","grid":"FM16UR"},{"call":"K9JP","name":"JEFFREY E PETERS","date":"2021-01-26","time":"1951","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-02","country":"United States","state":"MI","qth":"Brownstown Township","lotw":"Y","dist":"1406","grid":"EN82ID"},{"call":"N1UL","name":"ULRICH L ROHDE, PhD","date":"2021-01-26","time":"1953","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-12","country":"United States","state":"FL","qth":"MARCO ISLAND","lotw":"Y","dist":"1373","grid":"FN21"},{"call":"KB8VUM","name":"Larry K Thomas","date":"2021-01-26","time":"1957","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-19","country":"United States","state":"OH","qth":"Washington Court Hou","lotw":"N","dist":"1205","grid":"EM89GM"},{"call":"KC1NYY","name":"DAVID M LAVOIE","date":"2021-01-26","time":"1959","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-17","country":"United States","state":"NH","qth":"PETERBOROUGH","lotw":"Y","dist":"2220","grid":"FN42AV"},{"call":"VE2ZWA","name":"Alain Brulotte","date":"2021-01-26","time":"2026","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-18","country":"Canada","state":"","qth":"SAINT-HENRI-DE-LEVIS","lotw":"Y","dist":"2484","grid":"FN46LQ"},{"call":"WA2HIP","name":"JOHN R PETROCELLI","date":"2021-01-26","time":"2031","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-18","country":"United States","state":"ME","qth":"Brewer","lotw":"Y","dist":"2541","grid":"FN54ot"},{"call":"KE8ERH","name":"Robert J Harris","date":"2021-01-26","time":"2037","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-15","country":"United States","state":"MI","qth":"Burton","lotw":"N","dist":"1435","grid":"EN83fa"},{"call":"KN4LYF","name":"Warren C Yursik, Jr","date":"2021-01-26","time":"2043","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-15","country":"United States","state":"VA","qth":"Charlottesville","lotw":"Y","dist":"1442","grid":"FM08qb"},{"call":"WB2FVR","name":"MICHAEL F DINAN","date":"2021-01-26","time":"2053","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-15","country":"United States","state":"FL","qth":"Plant City","lotw":"Y","dist":"1217","grid":"EL87WX"},{"call":"N8RAW","name":"MICHAEL J KASPER","date":"2021-01-26","time":"2110","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"+08","country":"United States","state":"MI","qth":"Jenison","lotw":"Y","dist":"1346","grid":"EN72CW"},{"call":"VA3TPS","name":"Steve McEdwards","date":"2021-01-26","time":"2112","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-10","country":"Canada","state":"","qth":"Fenelon Falls","lotw":"Y","dist":"1858","grid":"FN04PN"},{"call":"WN8J","name":"JEFFREY L SEIBERT","date":"2021-01-26","time":"2118","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-07","country":"United States","state":"MI","qth":"FENTON","lotw":"N","dist":"1442","grid":"EN82DT"},{"call":"YV5OIE","name":"ANTONIO MARLON GONCALVES","date":"2021-01-26","time":"2123","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-11","country":"Venezuela","state":"","qth":"Caracas Los Ruices 1071-A","lotw":"Y","dist":"3704","grid":"FK60ql"},{"call":"VE2MMW","name":"MARIO WILLIAMS","date":"2021-01-26","time":"2129","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-11","country":"Canada","state":"QC","qth":"SAINT-LIN-LAURENTIDES","lotw":"N","dist":"2259","grid":"FN35dt"},{"call":"KE8ESJ","name":"Matthew R Shoemaker","date":"2021-01-26","time":"2140","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-05","country":"United States","state":"OH","qth":"Miamisburg","lotw":"Y","dist":"1159","grid":"EM79UP"},{"call":"K4SWE","name":"STEVE W EDWARDS","date":"2021-01-26","time":"2147","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"+06","country":"United States","state":"TN","qth":"KNOXVILLE","lotw":"N","dist":"906","grid":"EM75xw"},{"call":"KG4FVR","name":"Joseph J Gollattscheck","date":"2021-01-26","time":"2212","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-04","country":"United States","state":"FL","qth":"MIAMI","lotw":"Y","dist":"1499","grid":"EL95VV"},{"call":"N6VNI","name":"GEORGE T JACOB, JR","date":"2021-01-26","time":"2213","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-05","country":"United States","state":"CA","qth":"LA HABRA","lotw":"Y","dist":"2257","grid":"DM13AW"},{"call":"K9IHM","name":"JERROLD L JOHNSON","date":"2021-01-26","time":"2215","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"-12","country":"United States","state":"TN","qth":"NEW MARKET","lotw":"N","dist":"1010","grid":"EM86fc"},{"call":"K4ILA","name":"FREDERICK N PESSARO, JR","date":"2021-01-26","time":"2216","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-12","country":"United States","state":"CO","qth":"MONUMENT","lotw":"Y","dist":"1238","grid":"DM79"},{"call":"CO7MTL","name":"Manuel Tello Luaces","date":"2021-01-26","time":"2229","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-24","country":"Cuba","state":"","qth":"Rpto Victoria de Giron Camag\ufffde","lotw":"N","dist":"1604","grid":"FL11"},{"call":"K2CMC","name":"Charles M Cacioppo","date":"2021-01-26","time":"2231","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+14","country":"United States","state":"FL","qth":"Wesley Chapel","lotw":"Y","dist":"1194","grid":"EL88UE"},{"call":"WB9JOX","name":"THEODORE A ORANT","date":"2021-01-26","time":"2233","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-03","country":"United States","state":"IL","qth":"PALOS HEIGHTS","lotw":"N","dist":"1141","grid":"EN61cp"},{"call":"N6ZT","name":"SCOT L RIDDLE","date":"2021-01-26","time":"2239","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-06","country":"United States","state":"CA","qth":"CANYON COUNTRY","lotw":"Y","dist":"2296","grid":"DM04"},{"call":"WE8L","name":"Jason G Warren","date":"2021-01-26","time":"2243","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+01","country":"United States","state":"OH","qth":"Fairfield","lotw":"Y","dist":"1118","grid":"EM79RH"},{"call":"WD8EOL","name":"JOHN M KOVACS","date":"2021-01-26","time":"2245","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-12","country":"United States","state":"OH","qth":"Vandalia","lotw":"Y","dist":"1181","grid":"EM79VV"},{"call":"N9NTC","name":"Michael L Blake","date":"2021-01-26","time":"2246","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-14","country":"United States","state":"WI","qth":"Mc Farland","lotw":"Y","dist":"1224","grid":"EN52IX"},{"call":"K5VYT","name":"RICHARD L BROCAW","date":"2021-01-26","time":"2255","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-19","country":"United States","state":"CO","qth":"ARVADA","lotw":"N","dist":"1307","grid":"DM79ku"},{"call":"K9ID","name":"RONALD N KRITZMAN","date":"2021-01-26","time":"2257","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-03","country":"United States","state":"IL","qth":"BUFFALO GROVE","lotw":"Y","dist":"1184","grid":"EN62AE"},{"call":"CO2YQ","name":"Joel Izquierdo Valdes","date":"2021-01-26","time":"2303","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-11","country":"Cuba","state":"","qth":"Habana","lotw":"Y","dist":"1604","grid":"EL83UA"},{"call":"PP5DZ","name":"Daniel Fernandes","date":"2021-01-26","time":"2308","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-12","country":"Brazil","state":"","qth":"S\ufffdo Miguel do Oeste","lotw":"Y","dist":"7843","grid":"GG33FG"},{"call":"N7JFF","name":"JEFFREY G BRUBAKER","date":"2021-01-26","time":"2309","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-13","country":"United States","state":"MT","qth":"HELENA","lotw":"Y","dist":"2198","grid":"DN46BO"},{"call":"PY2IQ","name":"FABIANO GOES ( LEX )","date":"2021-01-26","time":"2313","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-11","country":"Brazil","state":"","qth":"09061-060","lotw":"Y","dist":"8004","grid":"GG66RI"},{"call":"VE3BX","name":"Jason Belanger","date":"2021-01-26","time":"2321","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-04","country":"Canada","state":"","qth":"Lasalle","lotw":"Y","dist":"1426","grid":"EN82LF"},{"call":"WD4IXD","name":"PETER W FOUNTAIN","date":"2021-01-26","time":"2326","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-11","country":"United States","state":"CO","qth":"LITTLETON","lotw":"Y","dist":"1277","grid":"DM79LM"},{"call":"WD5COV","name":"David A Jorgensen","date":"2021-01-26","time":"2331","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+00","country":"United States","state":"NM","qth":"Deming","lotw":"Y","dist":"1317","grid":"DM62DA"},{"call":"KE0DC","name":"DOUGLAS J COMER","date":"2021-01-26","time":"2337","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-09","country":"United States","state":"CO","qth":"AURORA","lotw":"Y","dist":"1274","grid":"DM79OQ"},{"call":"K2LNS","name":"Herbert G Krumich, Jr","date":"2021-01-27","time":"0100","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-11","country":"United States","state":"PA","qth":"Wilkes Barre","lotw":"Y","dist":"1861","grid":"FN21DE"},{"call":"KW4UM","name":"Naaman D Smith","date":"2021-01-27","time":"0120","band":"40M","mode":"FT8","rst_sent":"+08","rst_rcvd":"+04","country":"United States","state":"GA","qth":"Jasper","lotw":"Y","dist":"894","grid":"EM74TL"},{"call":"N4TQ","name":"ROBERT W JOHNSTON","date":"2021-01-27","time":"0138","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-14","country":"United States","state":"NC","qth":"GREENSBORO","lotw":"N","dist":"1327","grid":"FM06bd"},{"call":"NO7BS","name":"KIRK A NEMZER","date":"2021-01-27","time":"0210","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-18","country":"United States","state":"NV","qth":"LAS VEGAS","lotw":"N","dist":"2015","grid":"DM26"},{"call":"K9UFA","name":"Alfred C Mc Intosh, Jr","date":"2021-01-27","time":"1627","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-09","country":"United States","state":"IL","qth":"Mount Carroll","lotw":"Y","dist":"1112","grid":"EN52"},{"call":"WU0U","name":"DAVID A GAULRAPP","date":"2021-01-27","time":"1637","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-08","country":"United States","state":"IA","qth":"CLINTON","lotw":"N","dist":"1080","grid":"EN41vu"},{"call":"KY6J","name":"MICHAEL P DECKMAN","date":"2021-01-27","time":"1640","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-09","country":"United States","state":"NM","qth":"Las Cruces","lotw":"N","dist":"1228","grid":"DM62og"},{"call":"K7CTV","name":"Igor Dorovskoy","date":"2021-01-27","time":"1641","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-13","country":"United States","state":"AZ","qth":"Tucson","lotw":"Y","dist":"1611","grid":"DM42NL"},{"call":"F2YT","name":"PAUL-JOEL HERBET","date":"2021-01-27","time":"1643","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-14","country":"France","state":"","qth":"62690 - ESTREE-CAUCHY","lotw":"N","dist":"7754","grid":"JO10"},{"call":"W0CBF","name":"CHARLES A FREEMAN","date":"2021-01-27","time":"1646","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-14","country":"United States","state":"KS","qth":"SHAWNEE MISSION","lotw":"N","dist":"743","grid":"EM29pa"},{"call":"KE8NKV","name":"James F Hill","date":"2021-01-27","time":"1659","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-12","country":"United States","state":"OH","qth":"Steubenville","lotw":"N","dist":"1457","grid":"EN90QK"},{"call":"KD9OQK","name":"Thomas J Tierney","date":"2021-01-27","time":"1711","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-17","country":"United States","state":"WI","qth":"Wausau","lotw":"Y","dist":"1426","grid":"EN54DX"},{"call":"WE9PP","name":"James L Stolpman","date":"2021-01-27","time":"1731","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-12","country":"United States","state":"IL","qth":"Bloomingdale","lotw":"Y","dist":"1159","grid":"EN51XW"},{"call":"WD8RLJ","name":"RICHARD L MILLER","date":"2021-01-27","time":"1734","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-14","country":"United States","state":"WV","qth":"ONA","lotw":"Y","dist":"1227","grid":"EM88VK"},{"call":"F2YT","name":"PAUL-JOEL HERBET","date":"2021-01-27","time":"1743","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-13","country":"France","state":"","qth":"62690 - ESTREE-CAUCHY","lotw":"N","dist":"7754","grid":"JO10"},{"call":"W8CTO","name":"Alex Harnocz, Mr","date":"2021-01-27","time":"1751","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-07","country":"United States","state":"OH","qth":"SEVEN HILLS","lotw":"Y","dist":"1450","grid":"EN91EI"},{"call":"KB9WZH","name":"JEFFREY S HAGLOCH","date":"2021-01-27","time":"1754","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"+00","country":"United States","state":"IN","qth":"INDIANAPOLIS","lotw":"Y","dist":"1030","grid":"EM69xv"},{"call":"KO4EFS","name":"Ian J Hickin","date":"2021-01-27","time":"1759","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-06","country":"United States","state":"FL","qth":"North Fort Myers","lotw":"Y","dist":"1313","grid":"EL96BR"},{"call":"K3OD","name":"JOHN R MARTINELLI","date":"2021-01-27","time":"1823","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-04","country":"United States","state":"PA","qth":"BELLE VERNON","lotw":"Y","dist":"1498","grid":"FN00BC"},{"call":"WB8ZHU","name":"THOMAS L OTTE","date":"2021-01-27","time":"1826","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-14","country":"United States","state":"OH","qth":"BOWLING GREEN","lotw":"Y","dist":"1325","grid":"EN81DJ"},{"call":"AG8A","name":"Randall L Brunner I","date":"2021-01-27","time":"1828","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"+03","country":"United States","state":"FL","qth":"Parrish","lotw":"Y","dist":"1214","grid":"EL87SN"},{"call":"W8DWS","name":"DONALD W STEMEN, JR","date":"2021-01-27","time":"1832","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-06","country":"United States","state":"OH","qth":"NORTH BALTIMORE","lotw":"Y","dist":"1308","grid":"EN81DE"},{"call":"KB9RP","name":"Richard J Puent","date":"2021-01-27","time":"1834","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-13","country":"United States","state":"WI","qth":"Sparta","lotw":"Y","dist":"1286","grid":"EN43NV"},{"call":"KO4GGA","name":"Roberto Varela Lucio","date":"2021-01-27","time":"1837","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+01","country":"United States","state":"FL","qth":"Naples","lotw":"Y","dist":"1361","grid":"EL96FI"},{"call":"N4AXN","name":"GARY G GARDNER","date":"2021-01-27","time":"1838","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-08","country":"United States","state":"FL","qth":"CRYSTAL RIVER","lotw":"Y","dist":"1142","grid":"EL88RV"},{"call":"K3NVI","name":"Dennis L Cooper","date":"2021-01-27","time":"1841","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-05","country":"United States","state":"PA","qth":"York","lotw":"Y","dist":"1731","grid":"FM19PX"},{"call":"WB8UFC","name":"KENNETH C MILLER","date":"2021-01-27","time":"1845","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-15","country":"United States","state":"FL","qth":"Dade City","lotw":"Y","dist":"1188","grid":"EL88UI"},{"call":"VE3UC","name":"William Court","date":"2021-01-27","time":"1850","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-17","country":"Canada","state":"","qth":"MIDLAND","lotw":"N","dist":"1772","grid":"FN04br"},{"call":"W2DEA","name":"RAYMOND S LUKACS","date":"2021-01-27","time":"1853","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-14","country":"United States","state":"NY","qth":"BROOKLYN","lotw":"Y","dist":"1975","grid":"FN30AP"},{"call":"KA7B","name":"BRUCE H RICHARDSON","date":"2021-01-27","time":"1855","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-11","country":"United States","state":"WI","qth":"Eau Claire","lotw":"Y","dist":"1375","grid":"EN44GS"},{"call":"KE8NAN","name":"Thomas M Cupal","date":"2021-01-27","time":"1905","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-17","country":"United States","state":"MI","qth":"Saline","lotw":"N","dist":"1349","grid":"EN82cd"},{"call":"KA9FOX","name":"SCOTT E NEADER","date":"2021-01-27","time":"1909","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+04","country":"United States","state":"WI","qth":"LA CROSSE","lotw":"Y","dist":"1271","grid":"EN43KS"},{"call":"KW4IG","name":"MICHAEL J LEACH","date":"2021-01-27","time":"1913","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+10","country":"United States","state":"FL","qth":"KISSIMMEE","lotw":"Y","dist":"1275","grid":"EL98HG"},{"call":"KF2VX","name":"THOMAS M TOFT","date":"2021-01-27","time":"1917","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-06","country":"United States","state":"NY","qth":"EAST AURORA","lotw":"Y","dist":"1745","grid":"FN02QS"},{"call":"KD9BJZ","name":"William H Dargis","date":"2021-01-27","time":"1926","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-07","country":"United States","state":"WI","qth":"Milwaukee","lotw":"Y","dist":"1268","grid":"EN63AA"},{"call":"K2FK","name":"JOHN R TYO","date":"2021-01-27","time":"1928","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-05","country":"United States","state":"NY","qth":"OSWEGO","lotw":"N","dist":"1873","grid":"FN13qj"},{"call":"KY4JW","name":"JAMES WHITAKER","date":"2021-01-27","time":"1946","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-14","country":"United States","state":"KY","qth":"MONTICELLO","lotw":"Y","dist":"939","grid":"EM76NU"},{"call":"AD5ZT","name":"RAY J BUREAU","date":"2021-01-27","time":"1948","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-13","country":"United States","state":"LA","qth":"BOSSIER CITY","lotw":"Y","dist":"9","grid":"EM32DK"},{"call":"KE8LCM","name":"ROGER T RADCLIFF","date":"2021-01-27","time":"1952","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-12","country":"United States","state":"WV","qth":"PARKERSBURG","lotw":"Y","dist":"1320","grid":"EM99EF"},{"call":"AA4MY","name":"Phil A Jensen","date":"2021-01-27","time":"1959","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"NC","qth":"Catawba","lotw":"Y","dist":"1213","grid":"EM95"},{"call":"N7XG","name":"Dean W Davis","date":"2021-01-27","time":"2019","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-24","country":"United States","state":"OR","qth":"Salem","lotw":"Y","dist":"2871","grid":"CN84LV"},{"call":"K7WFP","name":"Walter F Peters","date":"2021-01-27","time":"2023","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-15","country":"United States","state":"AZ","qth":"Sun City","lotw":"Y","dist":"1734","grid":"DM33UP"},{"call":"KE0YAG","name":"Sean A Chapin","date":"2021-01-27","time":"2029","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-14","country":"United States","state":"CO","qth":"Fort Collins","lotw":"N","dist":"1345","grid":"DN70MN"},{"call":"VE3XN","name":"Garry Vernon Hammond","date":"2021-01-27","time":"2032","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"+01","country":"Canada","state":"ON","qth":"LISTOWEL","lotw":"Y","dist":"1667","grid":"EN93MR"},{"call":"K2YYD","name":"MICHAEL BLANC","date":"2021-01-27","time":"2040","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-17","country":"United States","state":"NY","qth":"SYOSSET","lotw":"Y","dist":"2015","grid":"FN30FS"},{"call":"VA3SB","name":"Serge Bertuzzo","date":"2021-01-27","time":"2054","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+00","country":"Canada","state":"ON","qth":"MISSISSAUGA","lotw":"Y","dist":"1729","grid":"FN03DN"},{"call":"W4ABF","name":"Phillip L Hare","date":"2021-01-27","time":"2100","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-10","country":"United States","state":"NC","qth":"Cary","lotw":"Y","dist":"1417","grid":"FM05OT"},{"call":"K7CTR","name":"Timothy J Mason","date":"2021-01-27","time":"2102","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-15","country":"United States","state":"WA","qth":"Gig Harbor","lotw":"N","dist":"2936","grid":"EM77ph"},{"call":"KB8MTZ","name":"ALLEN D TUCHOLSKI","date":"2021-01-27","time":"2105","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-03","country":"United States","state":"OH","qth":"GARFIELD HEIGHTS","lotw":"N","dist":"1456","grid":"EN91ek"},{"call":"CO8MCL","name":"Miguel Jos\ufffd Cortina L\ufffdpez","date":"2021-01-27","time":"2125","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-08","country":"Cuba","state":"","qth":"Micro 1B, Reparto Abel Santamar\ufffda, Santiago de Cuba","lotw":"Y","dist":"2260","grid":"FL20"},{"call":"AC6GO","name":"ROBERT S FRENCH","date":"2021-01-27","time":"2128","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-13","country":"United States","state":"CA","qth":"Sunnyvale","lotw":"Y","dist":"2626","grid":"CM87XI"},{"call":"N9PGG","name":"GREG R GABRY","date":"2021-01-27","time":"2158","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"+00","country":"United States","state":"NC","qth":"WILLOW SPRING","lotw":"Y","dist":"1420","grid":"FM05PN"},{"call":"AA4VV","name":"Thomas E Berry","date":"2021-01-27","time":"2203","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-06","country":"United States","state":"NC","qth":"Lexington","lotw":"Y","dist":"1290","grid":"EM95UU"},{"call":"N2OO","name":"ROBERT W SCHENCK","date":"2021-01-27","time":"2205","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-11","country":"United States","state":"NJ","qth":"TUCKERTON","lotw":"Y","dist":"1909","grid":"FM29UP"},{"call":"NF3R","name":"Joel R Rubincam","date":"2021-01-27","time":"2209","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-08","country":"United States","state":"PA","qth":"Pottstown","lotw":"Y","dist":"1823","grid":"FN20DG"},{"call":"N8USY","name":"Stefano A M Lassini","date":"2021-01-27","time":"2212","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-08","country":"United States","state":"MI","qth":"Lowell","lotw":"Y","dist":"1366","grid":"EN72HV"},{"call":"CO3WMF","name":"Ariel Navarro Cordovi","date":"2021-01-27","time":"2215","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-16","country":"Cuba","state":"","qth":"Madruga, Mayabeque","lotw":"Y","dist":"1580","grid":"EL92BV"},{"call":"K3JGJ","name":"JOSEPH H MC CONAGHY","date":"2021-01-27","time":"2216","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-13","country":"United States","state":"PA","qth":"Downingtown","lotw":"Y","dist":"1807","grid":"FM29DX"},{"call":"KB9AVX","name":"Scott A Baker","date":"2021-01-27","time":"2225","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-09","country":"United States","state":"WI","qth":"Niagara","lotw":"N","dist":"1538","grid":"EN55xs"},{"call":"WA2VCQ","name":"LAWRENCE J GARUTI","date":"2021-01-27","time":"2226","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-10","country":"United States","state":"FL","qth":"SEMINOLE","lotw":"Y","dist":"1168","grid":"EL87OU"},{"call":"VE3BOE","name":"Marc Belanger","date":"2021-01-27","time":"2234","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-08","country":"Canada","state":"ON","qth":"Metcalfe","lotw":"Y","dist":"2110","grid":"FN25GG"},{"call":"WB2WGH","name":"RONALD R PANETTA","date":"2021-01-27","time":"2248","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-13","country":"United States","state":"NY","qth":"LIVERPOOL","lotw":"Y","dist":"1933","grid":"FN13VD"},{"call":"VE3CT","name":"Mark Magner","date":"2021-01-27","time":"2250","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-02","country":"Canada","state":"","qth":"Everett","lotw":"N","dist":"1762","grid":"FN04ae"},{"call":"N3CLZ","name":"GARY A OKULA","date":"2021-01-27","time":"2256","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-05","country":"United States","state":"NH","qth":"LONDONDERRY","lotw":"Y","dist":"2264","grid":"FN42HT"},{"call":"AC2SB","name":"Paul E Kudla","date":"2021-01-27","time":"2258","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-17","country":"United States","state":"NY","qth":"North Tonawanda","lotw":"Y","dist":"1745","grid":"FN03NA"},{"call":"WB0TAX","name":"DENNIS D WATTERS","date":"2021-01-27","time":"2303","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-04","country":"United States","state":"LA","qth":"ELM GROVE","lotw":"Y","dist":"27","grid":"EM32GI"},{"call":"K0VN","name":"GENE I GELLER","date":"2021-01-27","time":"2315","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-07","country":"United States","state":"AZ","qth":"Scottsdale","lotw":"Y","dist":"1693","grid":"DM43BO"},{"call":"PP5FZ","name":"Fabio Luis GUEDES","date":"2021-01-27","time":"2316","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-16","country":"Brazil","state":"","qth":"Lages","lotw":"Y","dist":"8125","grid":"GG42UF"},{"call":"AI4FR","name":"JOHN R WHITT, JR","date":"2021-01-27","time":"2319","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-12","country":"United States","state":"FL","qth":"Dade City","lotw":"Y","dist":"1180","grid":"EL88TJ"},{"call":"KB8EE","name":"DAVID L TUCKER","date":"2021-01-27","time":"2335","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-13","country":"United States","state":"OH","qth":"PICKERINGTON","lotw":"Y","dist":"1277","grid":"DM42"},{"call":"KB7SAT","name":"RICHARD G DITTMER, SR","date":"2021-01-27","time":"2344","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-14","country":"United States","state":"NV","qth":"Las Vegas","lotw":"Y","dist":"2012","grid":"DM26JG"},{"call":"WQ1E","name":"DONALD R STEVENS","date":"2021-01-27","time":"2348","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-14","country":"United States","state":"AZ","qth":"Sun Lakes","lotw":"N","dist":"1696","grid":"DM43BE"},{"call":"N0LNK","name":"BRIAN S FARLEIGH","date":"2021-01-28","time":"0021","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"+00","country":"United States","state":"NE","qth":"LINCOLN","lotw":"Y","dist":"956","grid":"EN10QT"},{"call":"WB8UFC","name":"KENNETH C MILLER","date":"2021-01-28","time":"0024","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-03","country":"United States","state":"FL","qth":"Dade City","lotw":"Y","dist":"1188","grid":"EL88UI"},{"call":"KA3NAM","name":"JOSEPH E BENNETT","date":"2021-01-28","time":"0027","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+06","country":"United States","state":"KS","qth":"OLATHE","lotw":"Y","dist":"714","grid":"EM28OV"},{"call":"KK3KK","name":"Stanislaw G Galonski","date":"2021-01-28","time":"0032","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-03","country":"United States","state":"CA","qth":"Big Bear City","lotw":"N","dist":"2262","grid":"DM14ng"},{"call":"WM8Q","name":"John A Van Tol","date":"2021-01-28","time":"0041","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-14","country":"United States","state":"WY","qth":"Saratoga","lotw":"N","dist":"1575","grid":"DN61ok"},{"call":"KK2M","name":"ARTHUR M BROOME, JR","date":"2021-01-28","time":"0057","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-13","country":"United States","state":"NY","qth":"EAST AMHERST","lotw":"Y","dist":"1755","grid":"FN03PA"},{"call":"K4YT","name":"KARL J RENZ","date":"2021-01-28","time":"0103","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-07","country":"United States","state":"VA","qth":"Great Falls","lotw":"N","dist":"1640","grid":"FM19ia"},{"call":"K6ER","name":"ERICK I STEINBERG","date":"2021-01-28","time":"0106","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-15","country":"United States","state":"CA","qth":"MILL VALLEY","lotw":"Y","dist":"2675","grid":"CM87RV"},{"call":"AA1SU","name":"PAUL N GAYET","date":"2021-01-28","time":"0108","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-16","country":"United States","state":"VT","qth":"ESSEX JUNCTION","lotw":"Y","dist":"2220","grid":"FN34KL"},{"call":"KF7VAW","name":"Rick Fallows","date":"2021-01-28","time":"0114","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-09","country":"United States","state":"UT","qth":"Ogden","lotw":"Y","dist":"1892","grid":"DN41AH"},{"call":"W4IOE","name":"SIDNEY R HENDRICKS","date":"2021-01-28","time":"0116","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-09","country":"United States","state":"NC","qth":"FLETCHER","lotw":"Y","dist":"1085","grid":"EM85SK"},{"call":"KO4FYC","name":"William C Buser","date":"2021-01-28","time":"0118","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-02","country":"United States","state":"KY","qth":"Maysville","lotw":"Y","dist":"1118","grid":"EM88DM"},{"call":"W4IEE","name":"THOMAS PORADA","date":"2021-01-28","time":"0125","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-06","country":"United States","state":"FL","qth":"Venice","lotw":"Y","dist":"1253","grid":"EL87TB"},{"call":"VE2ATS","name":"Tony Ojeda","date":"2021-01-28","time":"0132","band":"40M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-23","country":"Canada","state":"","qth":"Chateauguay","lotw":"Y","dist":"2229","grid":"FN35DJ"},{"call":"KO4O","name":"ROGER D COOK","date":"2021-01-28","time":"0135","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-07","country":"United States","state":"AL","qth":"TRINITY","lotw":"N","dist":"646","grid":"EM64LO"},{"call":"WM8Q","name":"John A Van Tol","date":"2021-01-28","time":"0140","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-12","country":"United States","state":"WY","qth":"Saratoga","lotw":"Y","dist":"1526","grid":"DN61OK"},{"call":"K8BL","name":"BOB LIDDY","date":"2021-01-28","time":"0142","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-03","country":"United States","state":"OH","qth":"MENTOR","lotw":"Y","dist":"1489","grid":"EN91HP"},{"call":"N4TQ","name":"ROBERT W JOHNSTON","date":"2021-01-28","time":"0144","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-12","country":"United States","state":"NC","qth":"GREENSBORO","lotw":"Y","dist":"1327","grid":"FM06BD"},{"call":"N0QX","name":"MARTIN A POOL","date":"2021-01-28","time":"0152","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-10","country":"United States","state":"TX","qth":"BROWNSVILLE","lotw":"N","dist":"821","grid":"EL15gw"},{"call":"KF5F","name":"Eugene J Wyble","date":"2021-01-28","time":"0202","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"+01","country":"United States","state":"TX","qth":"killeen","lotw":"Y","dist":"419","grid":"EM46FG"},{"call":"W5BV","name":"WILLIAM A VENABLE","date":"2021-01-28","time":"0212","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"United States","state":"TX","qth":"PEARLAND","lotw":"Y","dist":"366","grid":"EL29IN"},{"call":"KB2AMY","name":"EVAN K SMITH","date":"2021-01-28","time":"0225","band":"40M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-14","country":"United States","state":"NY","qth":"WESTBURY","lotw":"Y","dist":"2008","grid":"FN30FS"},{"call":"KA4UMA","name":"ROBERT P WRIGHT","date":"2021-01-28","time":"0228","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-12","country":"United States","state":"NC","qth":"HAMPSTEAD","lotw":"N","dist":"1507","grid":"FM14ek"},{"call":"AE4IN","name":"STEVEN V WATERS","date":"2021-01-28","time":"0235","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-13","country":"United States","state":"AL","qth":"EQUALITY","lotw":"Y","dist":"710","grid":"EM62WR"},{"call":"KG5SCN","name":"CHARLES D WOLFSON","date":"2021-01-28","time":"0237","band":"40M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-08","country":"United States","state":"TX","qth":"AUSTIN","lotw":"Y","dist":"456","grid":"EM10CJ"},{"call":"K4WQ","name":"GILBERT KUNSTER, JR","date":"2021-01-28","time":"0238","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"+04","country":"United States","state":"FL","qth":"Belle Isle","lotw":"Y","dist":"1265","grid":"EL98HK"},{"call":"KG5SCN","name":"CHARLES D WOLFSON","date":"2021-01-28","time":"0244","band":"40M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-12","country":"United States","state":"TX","qth":"AUSTIN","lotw":"Y","dist":"456","grid":"EM10"},{"call":"K5UHF","name":"Jeff Tostenrude","date":"2021-01-28","time":"0246","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-09","country":"United States","state":"TX","qth":"LEANDER","lotw":"Y","dist":"446","grid":"EM10cn"},{"call":"KD4IE","name":"EARLE W RICHARDSON, JR","date":"2021-01-28","time":"0301","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-03","country":"United States","state":"FL","qth":"Winter Haven","lotw":"N","dist":"1249","grid":"EL98CB"},{"call":"KZ4ZZ","name":"ROBERT E BOONE","date":"2021-01-28","time":"0309","band":"40M","mode":"FT8","rst_sent":"+12","rst_rcvd":"-09","country":"United States","state":"FL","qth":"BRADENTON","lotw":"Y","dist":"1206","grid":"EL87"},{"call":"WD4CNO","name":"CHARLES H HOFFMAN","date":"2021-01-28","time":"0313","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"+05","country":"United States","state":"FL","qth":"TAMPA","lotw":"Y","dist":"1190","grid":"EL87RW"},{"call":"W4MEP","name":"Michael E Polt","date":"2021-01-28","time":"0326","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-07","country":"United States","state":"VA","qth":"Chesapeake","lotw":"Y","dist":"1648","grid":"FM16TT"},{"call":"WB2WGH","name":"RONALD R PANETTA","date":"2021-01-28","time":"0333","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-03","country":"United States","state":"NY","qth":"LIVERPOOL","lotw":"Y","dist":"1933","grid":"FN13VD"},{"call":"K1RVH","name":"RANDY A BAKER","date":"2021-01-28","time":"0340","band":"40M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-15","country":"United States","state":"CA","qth":"MANTECA","lotw":"N","dist":"2561","grid":"CM97"},{"call":"W8HAW","name":"Herbert A Whitlatch, II","date":"2021-01-28","time":"0343","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-11","country":"United States","state":"OH","qth":"Amesville","lotw":"Y","dist":"1311","grid":"EM99BK"},{"call":"N2YNF","name":"HECTOR APONTE","date":"2021-01-28","time":"0345","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-18","country":"United States","state":"NJ","qth":"CLARK","lotw":"N","dist":"1947","grid":"FN20up"},{"call":"N4LV","name":"Glenn E Everest","date":"2021-01-28","time":"0347","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-01","country":"United States","state":"NC","qth":"Oriental","lotw":"Y","dist":"1592","grid":"FM15PA"},{"call":"KG7CL","name":"TIM E HOLLEMBAEK","date":"2021-01-28","time":"0359","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-16","country":"United States","state":"NV","qth":"Pahrump","lotw":"Y","dist":"2084","grid":"DM16XF"},{"call":"KD2QFW","name":"Thomas M Keefe","date":"2021-01-28","time":"0409","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-13","country":"United States","state":"NY","qth":"Troy","lotw":"Y","dist":"2087","grid":"FN32DR"},{"call":"W3WYM","name":"WILLIAM J HUSTER, JR","date":"2021-01-28","time":"0413","band":"40M","mode":"FT8","rst_sent":"-21","rst_rcvd":"+05","country":"United States","state":"DC","qth":"WASHINGTON","lotw":"Y","dist":"1664","grid":"FM18"},{"call":"K4RGN","name":"CHARLES L TILL, JR","date":"2021-01-28","time":"0418","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+00","country":"United States","state":"NC","qth":"RALEIGH","lotw":"Y","dist":"1428","grid":"FM05PV"},{"call":"KG4IXS","name":"RICHARD A VAUGHAN","date":"2021-01-29","time":"1502","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-19","country":"United States","state":"VA","qth":"CHATHAM","lotw":"Y","dist":"1390","grid":"FM06HU"},{"call":"KE8IOL","name":"DAVID J GRUBER","date":"2021-01-29","time":"1509","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-09","country":"United States","state":"MI","qth":"Rochester Hills","lotw":"Y","dist":"1458","grid":"EN82KP"},{"call":"AA4CB","name":"CHRISTOPHER G BLOXSOM","date":"2021-01-29","time":"1543","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-03","country":"United States","state":"FL","qth":"Deltona","lotw":"Y","dist":"1189","grid":"EL98IV"},{"call":"W8KFW","name":"KARL F WEITZMAN","date":"2021-01-29","time":"1547","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-20","country":"United States","state":"OH","qth":"RAVENNA","lotw":"N","dist":"1458","grid":"EN91JD"},{"call":"KG4IJS","name":"MITCHELL B ROTHMAN","date":"2021-01-29","time":"1549","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-04","country":"United States","state":"FL","qth":"Lake Wales","lotw":"N","dist":"1285","grid":"EL97"},{"call":"K2PS","name":"PETER A STAFFORD","date":"2021-01-29","time":"1555","band":"20M","mode":"FT8","rst_sent":"+15","rst_rcvd":"+03","country":"United States","state":"FL","qth":"The Villages","lotw":"Y","dist":"1192","grid":"EL98AV"},{"call":"WA2EXZ","name":"ROBERT L ROSS","date":"2021-01-29","time":"1607","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-06","country":"United States","state":"GA","qth":"ROSWELL","lotw":"Y","dist":"886","grid":"EM74"},{"call":"AF5FH","name":"JAMES KAJDER","date":"2021-01-29","time":"1609","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-12","country":"United States","state":"NM","qth":"Albuquerque","lotw":"Y","dist":"1215","grid":"DM65SC"},{"call":"KB8CBY","name":"RONALD D KUNEY","date":"2021-01-29","time":"1621","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+05","country":"United States","state":"OH","qth":"FAYETTE","lotw":"Y","dist":"1321","grid":"EN71VQ"},{"call":"K8ZRY","name":"Zachary F Raubinger","date":"2021-01-29","time":"1624","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-12","country":"United States","state":"MI","qth":"Livonia","lotw":"Y","dist":"1427","grid":"EN82HK"},{"call":"W3IQ","name":"John C Householder, Jr","date":"2021-01-29","time":"1636","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"United States","state":"OH","qth":"Sebring","lotw":"Y","dist":"1462","grid":"EN90LV"},{"call":"WK4G","name":"Gerardo Gonzalez Pichardo","date":"2021-01-29","time":"1645","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-14","country":"United States","state":"FL","qth":"Hialeah","lotw":"Y","dist":"1497","grid":"EL95UU"},{"call":"WK2X","name":"WILLIAM E CROSSLEY","date":"2021-01-29","time":"1659","band":"20M","mode":"FT8","rst_sent":"+09","rst_rcvd":"-02","country":"United States","state":"MI","qth":"Canton","lotw":"Y","dist":"1413","grid":"EN82GI"},{"call":"KW4JY","name":"CALVIN E WHITT, JR","date":"2021-01-29","time":"1716","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-07","country":"United States","state":"NC","qth":"CHAPEL HILL","lotw":"N","dist":"1384","grid":"FM05JW"},{"call":"W8JY","name":"JESSE C YOUNG","date":"2021-01-29","time":"1727","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+01","country":"United States","state":"MI","qth":"AuGres","lotw":"Y","dist":"1544","grid":"EN84DA"},{"call":"KR7DX","name":"LESTER R FRIES","date":"2021-01-29","time":"1729","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-14","country":"United States","state":"AZ","qth":"Yuma","lotw":"Y","dist":"1941","grid":"DM22SQ"},{"call":"KU4Y","name":"JOSE M NIEVES","date":"2021-01-29","time":"1751","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-14","country":"United States","state":"FL","qth":"LE HIGH ACRES","lotw":"N","dist":"1342","grid":"EL96dn"},{"call":"WF8D","name":"DANNY CATENACCI","date":"2021-01-29","time":"1809","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+10","country":"United States","state":"MI","qth":"MACOMB","lotw":"Y","dist":"1471","grid":"EN82MQ"},{"call":"WM8Q","name":"John A Van Tol","date":"2021-01-29","time":"1814","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-15","country":"United States","state":"WY","qth":"Saratoga","lotw":"Y","dist":"1526","grid":"DN61OK"},{"call":"WB8EYE","name":"JAMES C NORCROSS","date":"2021-01-29","time":"1821","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-10","country":"United States","state":"MI","qth":"GAINES","lotw":"Y","dist":"1434","grid":"EN82BU"},{"call":"KD3PC","name":"David M Dabay","date":"2021-01-29","time":"1823","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-11","country":"United States","state":"VA","qth":"Heathsville","lotw":"N","dist":"1607","grid":"FM17rv"},{"call":"KN4DUX","name":"Stephen Lotta","date":"2021-01-29","time":"1837","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-07","country":"United States","state":"NC","qth":"Charlotte","lotw":"Y","dist":"1228","grid":"EM95OI"},{"call":"K4UX","name":"Albert P Bianchi","date":"2021-01-29","time":"1848","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-19","country":"United States","state":"VA","qth":"Virginia Beach","lotw":"N","dist":"1683","grid":"FM16xv"},{"call":"KB4RRN","name":"Kevin Barron","date":"2021-01-29","time":"1852","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-01","country":"United States","state":"FL","qth":"Jacksonville","lotw":"Y","dist":"1176","grid":"EM90EG"},{"call":"KN4ANO","name":"Gahan M Hagerty","date":"2021-01-31","time":"1859","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-09","country":"United States","state":"VA","qth":"Fredericksburg","lotw":"N","dist":"1596","grid":"FM18FI"},{"call":"NC7L","name":"ROBERT D ADLER","date":"2021-01-31","time":"1900","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-07","country":"United States","state":"AZ","qth":"sun city","lotw":"Y","dist":"1733","grid":"DM33UO"},{"call":"W4RBH","name":"RICHARD B HARRELL","date":"2021-01-31","time":"1912","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"United States","state":"VA","qth":"SMITHFIELD","lotw":"N","dist":"1632","grid":"FM16qx"},{"call":"K4EWR","name":"EUGENE W ROSENBLUTH","date":"2021-01-31","time":"1915","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-15","country":"United States","state":"VA","qth":"Falls Church","lotw":"Y","dist":"1644","grid":"FM18JU"},{"call":"AC3EK","name":"HARRY B RUNDALL, III","date":"2021-01-31","time":"1925","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-10","country":"United States","state":"MD","qth":"Baltimore","lotw":"Y","dist":"1717","grid":"FM19RI"},{"call":"KB3NG","name":"RICHARD D BATTLE","date":"2021-01-31","time":"1926","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-12","country":"United States","state":"FL","qth":"Vero Beach","lotw":"Y","dist":"1391","grid":"EL97TO"},{"call":"KF4NUO","name":"TAREQ S TAHBOUB","date":"2021-01-31","time":"1928","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"+08","country":"United States","state":"DC","qth":"Washington","lotw":"Y","dist":"1665","grid":"FM18MV"},{"call":"ND4R","name":"Ron E FRANKLIN","date":"2021-01-31","time":"1930","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-19","country":"United States","state":"VA","qth":"VIRGINIA BEACH","lotw":"Y","dist":"1669","grid":"FM16VU"},{"call":"W1YTF","name":"Scott M Fetters","date":"2021-01-31","time":"1951","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-07","country":"United States","state":"RI","qth":"Warwick","lotw":"N","dist":"2214","grid":"FN41gr"},{"call":"KK6BJU","name":"LEETA W OBERMOELLER","date":"2021-01-31","time":"2000","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-06","country":"United States","state":"MN","qth":"Ely","lotw":"Y","dist":"1715","grid":"EN47BV"},{"call":"AD4DN","name":"WILLIAM W MURRELL, JR","date":"2021-01-31","time":"2001","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-19","country":"United States","state":"NC","qth":"Ivanhoe","lotw":"Y","dist":"1458","grid":"FM04WO"},{"call":"K0HMZ","name":"Robert L Evjen","date":"2021-01-31","time":"2008","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-03","country":"United States","state":"ND","qth":"Williston","lotw":"Y","dist":"1927","grid":"DN88"},{"call":"K4NYX","name":"Michael J Lettera","date":"2021-01-31","time":"2013","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-13","country":"United States","state":"FL","qth":"Port Saint Lucie","lotw":"Y","dist":"1409","grid":"EL97TG"},{"call":"VA3KGB","name":"Clifford JA Chapman","date":"2021-01-31","time":"2017","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"+10","country":"Canada","state":"ON","qth":"Yarker","lotw":"Y","dist":"1970","grid":"FN14OI"},{"call":"VA3BJD","name":"Barry Delong","date":"2021-01-31","time":"2042","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-02","country":"Canada","state":"ON","qth":"OAKVILLE","lotw":"Y","dist":"1724","grid":"FN03DL"},{"call":"N7LD","name":"LEE M DUSBABEK","date":"2021-01-31","time":"2051","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+00","country":"United States","state":"NV","qth":"LAS VEGAS","lotw":"Y","dist":"2020","grid":"DM26IF"},{"call":"K4DBZ","name":"David R Arthur","date":"2021-01-31","time":"2053","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+05","country":"United States","state":"NC","qth":"Wake Forest","lotw":"Y","dist":"1444","grid":"FM06RB"},{"call":"NG4C","name":"CONNIE A MERCER, JR","date":"2021-01-31","time":"2111","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-05","country":"United States","state":"NC","qth":"ELIZABETH CITY","lotw":"Y","dist":"1642","grid":"FM16TJ"},{"call":"KA9WAR","name":"Arden D Nelson","date":"2021-01-31","time":"2122","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-15","country":"United States","state":"WI","qth":"Peshtigo","lotw":"Y","dist":"1483","grid":"EN65CB"},{"call":"N8ZVT","name":"DOUGLAS R BARBIER","date":"2021-01-31","time":"2128","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-11","country":"United States","state":"MI","qth":"Harbor Springs","lotw":"Y","dist":"1622","grid":"EN75ML"},{"call":"N3JD","name":"JEFFREY D DESALVO","date":"2021-01-31","time":"2145","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+05","country":"United States","state":"PA","qth":"NEW CASTLE","lotw":"N","dist":"1520","grid":"EN91UA"},{"call":"K6JDC","name":"Jason D Corbin","date":"2021-01-31","time":"2201","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-14","country":"United States","state":"VA","qth":"Zion Crossroads","lotw":"Y","dist":"1529","grid":"FM07VX"},{"call":"LU3DLY","name":"CARLOS ALBERTO GRANDICH","date":"2021-01-31","time":"2203","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-23","country":"Argentina","state":"","qth":"MAGDALENA BA 1913","lotw":"N","dist":"8410","grid":"GF14fw"},{"call":"K2FJ","name":"James B Ewings","date":"2021-01-31","time":"2216","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-08","country":"United States","state":"NJ","qth":"Montvale","lotw":"Y","dist":"1984","grid":"FN21XB"},{"call":"K4GNE","name":"Gene A Damon","date":"2021-01-31","time":"2217","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-09","country":"United States","state":"VA","qth":"Richmond","lotw":"N","dist":"1567","grid":"FM17en"},{"call":"N3DGE","name":"MICHAEL C TRACHTENBERG","date":"2021-01-31","time":"2222","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-17","country":"United States","state":"PA","qth":"Philadelphia","lotw":"Y","dist":"1849","grid":"FN20JA"},{"call":"WI4EE","name":"James E Rosseau","date":"2021-03-18","time":"0049","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-05","country":"United States","state":"VA","qth":"Manassas","lotw":"Y","dist":"1614","grid":"FM18FS"},{"call":"WB8JUI","name":"RICHARD A CARRIER","date":"2021-03-18","time":"0051","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-17","country":"United States","state":"OH","qth":"BELLEVUE","lotw":"Y","dist":"1361","grid":"EN81NF"},{"call":"W4CNA","name":"JOHN H LONDON","date":"2021-03-18","time":"0056","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-13","country":"United States","state":"NC","qth":"ASHEVILLE","lotw":"N","dist":"1081","grid":"EM85RM"},{"call":"K4JAF","name":"James D Cox","date":"2021-03-18","time":"0058","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-07","country":"United States","state":"FL","qth":"Panama City Beach","lotw":"Y","dist":"780","grid":"EM70AF"},{"call":"WD9ICU","name":"GARRY D MILLS","date":"2021-03-18","time":"0100","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"IN","qth":"CRAWFORDSVILLE","lotw":"Y","dist":"1032","grid":"EN60MB"},{"call":"W7GSR","name":"Gregory S Rogers","date":"2021-03-18","time":"0106","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-11","country":"United States","state":"UT","qth":"Hurricane","lotw":"Y","dist":"1862","grid":"DM37HE"},{"call":"AA8SW","name":"Steven W Weeks","date":"2021-03-18","time":"0110","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-15","country":"United States","state":"OH","qth":"Cincinnati","lotw":"Y","dist":"1113","grid":"EM79TD"},{"call":"N7SE","name":"STEVEN C ENGSBERG","date":"2021-03-18","time":"0114","band":"40M","mode":"FT8","rst_sent":"-24","rst_rcvd":"-13","country":"United States","state":"CO","qth":"MONTROSE","lotw":"Y","dist":"1436","grid":"DM68BL"},{"call":"W1DOH","name":"Charles A Lukas, Jr","date":"2021-03-18","time":"0121","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-10","country":"United States","state":"FL","qth":"Dunnellon","lotw":"N","dist":"1141","grid":"EL89sc"},{"call":"K4P","name":"The Spirit of Radio","date":"2021-03-18","time":"0132","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-11","country":"United States","state":"MI","qth":"MIO","lotw":"N","dist":"1010","grid":"FN00"},{"call":"AC9XW","name":"DOUGLAS S IVERSON","date":"2021-03-18","time":"0146","band":"40M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-09","country":"United States","state":"WI","qth":"RIPON","lotw":"Y","dist":"1326","grid":"EN53OU"},{"call":"KP4IA","name":"ANTONIO R SANTIAGO","date":"2021-03-18","time":"0147","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-11","country":"Puerto Rico","state":"","qth":"TOA ALTA","lotw":"N","dist":"3162","grid":"FK68VJ"},{"call":"N9RJX","name":"ANSON A MOUNT, III","date":"2021-03-18","time":"0151","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-09","country":"United States","state":"IL","qth":"Trout Valley","lotw":"Y","dist":"1176","grid":"EN52"},{"call":"N3GX","name":"Alejandro Gonzalez","date":"2021-03-18","time":"0158","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-18","country":"United States","state":"VA","qth":"Chesapeake","lotw":"N","dist":"1657","grid":"FM16ur"},{"call":"N9AAA","name":"NORBERT P AURIT, JR","date":"2021-03-18","time":"0202","band":"40M","mode":"FT8","rst_sent":"+09","rst_rcvd":"-02","country":"United States","state":"WI","qth":"JANESVILLE","lotw":"Y","dist":"1204","grid":"EN52MQ"},{"call":"AD8GN","name":"JEROMY D ALEXANDER","date":"2021-03-18","time":"0209","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-03","country":"United States","state":"MI","qth":"JACKSON","lotw":"Y","dist":"1355","grid":"EN72TG"},{"call":"VA3MJR","name":"David Ross","date":"2021-03-18","time":"0212","band":"40M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-18","country":"Canada","state":"","qth":"HAMILTON","lotw":"Y","dist":"1696","grid":"FN03BF"},{"call":"KC2WUF","name":"David A Bean","date":"2021-03-18","time":"0214","band":"40M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-15","country":"United States","state":"NJ","qth":"Morristown","lotw":"Y","dist":"1937","grid":"FN20RT"},{"call":"WD8PPW","name":"RICKY L STEMM","date":"2021-03-18","time":"0229","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-02","country":"United States","state":"OH","qth":"HOPEWELL","lotw":"Y","dist":"1319","grid":"EM89VX"},{"call":"WA8LRW","name":"KENWOOD H HALL","date":"2021-03-18","time":"0245","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-07","country":"United States","state":"OH","qth":"Kent","lotw":"Y","dist":"1456","grid":"EN91HE"},{"call":"W7OM","name":"RODNEY L LINKOUS","date":"2021-03-18","time":"0252","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-22","country":"United States","state":"WA","qth":"SEATTLE","lotw":"N","dist":"2931","grid":"CN87tn"},{"call":"K0WWX","name":"Michael A Lombardi","date":"2021-03-18","time":"0255","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-11","country":"United States","state":"CO","qth":"Broomfield","lotw":"Y","dist":"1307","grid":"DM79LW"},{"call":"K7EAZ","name":"KENNETH A BUNZEY","date":"2021-03-18","time":"0301","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-12","country":"United States","state":"AZ","qth":"TUCSON","lotw":"Y","dist":"1619","grid":"DM42MK"},{"call":"KZ5AT","name":"Arden L Bennett","date":"2021-03-18","time":"0303","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-11","country":"United States","state":"CA","qth":"Oceanside","lotw":"Y","dist":"2198","grid":"DM13IF"},{"call":"KA2PPL","name":"David R Kappler","date":"2021-03-18","time":"0304","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-19","country":"United States","state":"NJ","qth":"Magnolia","lotw":"N","dist":"1857","grid":"FM29lu"},{"call":"N2ZZ","name":"JAMES F BOEHNER","date":"2021-03-18","time":"0308","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-21","country":"United States","state":"SC","qth":"AIKEN","lotw":"Y","dist":"1121","grid":"EM93DN"},{"call":"W2PRB","name":"ALEXANDER H MAC DONALD","date":"2021-03-18","time":"0317","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-09","country":"United States","state":"WV","qth":"BERKELEY SPRINGS","lotw":"Y","dist":"1593","grid":"FM09VM"},{"call":"WJ3EP","name":"Jay S Frumkin","date":"2021-03-18","time":"0319","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-15","country":"United States","state":"NV","qth":"Henderson","lotw":"Y","dist":"1987","grid":"DM26MB"},{"call":"WD4CVK","name":"JAMES F GORMAN","date":"2021-03-18","time":"0329","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-09","country":"United States","state":"GA","qth":"BLAIRSVILLE","lotw":"Y","dist":"929","grid":"EM74XU"},{"call":"N2LHW","name":"PETER A HOLBUS","date":"2021-03-18","time":"0337","band":"40M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-20","country":"United States","state":"NY","qth":"APALACHIN","lotw":"N","dist":"1830","grid":"FN12wb"},{"call":"N2NWK","name":"ARCHIBALD A DELFISH","date":"2021-03-18","time":"0341","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-05","country":"United States","state":"DC","qth":"WASHINGTON","lotw":"Y","dist":"1663","grid":"FM19"},{"call":"W4AFY","name":"VANCE K THOMAS","date":"2021-03-18","time":"0402","band":"40M","mode":"FT8","rst_sent":"+15","rst_rcvd":"+04","country":"United States","state":"LA","qth":"BOSSIER CITY","lotw":"Y","dist":"9","grid":"EM32EK"},{"call":"XE2MAM","name":"MARIO","date":"2021-03-18","time":"0403","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-10","country":"Mexico","state":"","qth":"CIUDAD JUAREZ","lotw":"N","dist":"10355","grid":"DM61"},{"call":"KC3IDZ","name":"Ronald P Lapina","date":"2021-03-18","time":"0409","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-17","country":"United States","state":"PA","qth":"Cranberry Township","lotw":"N","dist":"1510","grid":"EN90wq"},{"call":"N3EA","name":"ALAN M MASLIN","date":"2021-03-18","time":"0424","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-10","country":"United States","state":"FL","qth":"Lake Worth","lotw":"Y","dist":"1465","grid":"EL96VN"},{"call":"KC3PVP","name":"ROBERT P PHILLIPS, JR","date":"2021-03-18","time":"0429","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"United States","state":"MD","qth":"CHESTERTOWN","lotw":"Y","dist":"1750","grid":"FM19XF"},{"call":"W4IPC","name":"Connor J Black","date":"2021-03-18","time":"0431","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-07","country":"United States","state":"VA","qth":"Chesapeake","lotw":"N","dist":"1658","grid":"FM16uq"},{"call":"VA3RDO","name":"Mark Kimber","date":"2021-04-01","time":"2045","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-02","country":"Canada","state":"","qth":"FORT ERIE","lotw":"Y","dist":"1732","grid":"FN04"},{"call":"W1OP","name":"PROVIDENCE RADIO ASSOCIATION INC","date":"2021-04-01","time":"2047","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-02","country":"United States","state":"RI","qth":"Johnston","lotw":"Y","dist":"2214","grid":"FN41GT"},{"call":"AB2RR","name":"German Montalvo, Jr","date":"2021-04-01","time":"2050","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-18","country":"United States","state":"NY","qth":"ALDEN","lotw":"N","dist":"1758","grid":"FN02RV"},{"call":"N1UL","name":"ULRICH L ROHDE, PhD","date":"2021-04-01","time":"2053","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-05","country":"United States","state":"FL","qth":"MARCO ISLAND","lotw":"Y","dist":"1373","grid":"FN21"},{"call":"AF6O","name":"RONALD J FORSYTH","date":"2021-04-01","time":"2114","band":"20M","mode":"FT8","rst_sent":"+16","rst_rcvd":"-02","country":"United States","state":"CA","qth":"PINON HILLS","lotw":"Y","dist":"2224","grid":"DM14ej"},{"call":"N7TJH","name":"THADIUS HUNTER","date":"2021-04-01","time":"2116","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+00","country":"United States","state":"UT","qth":"VINEYARD","lotw":"Y","dist":"1825","grid":"DN40DH"},{"call":"N7WRH","name":"WADE R HOLGUIN","date":"2021-04-01","time":"2133","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-18","country":"United States","state":"AZ","qth":"Peoria","lotw":"Y","dist":"1738","grid":"DM33TR"},{"call":"AD6HR","name":"WILLIAM H ROGERS","date":"2021-04-01","time":"2138","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-16","country":"United States","state":"UT","qth":"Saint George","lotw":"Y","dist":"1872","grid":"DM37FA"},{"call":"K1SMD","name":"SILAS MOECKEL","date":"2021-04-01","time":"2148","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-03","country":"United States","state":"CT","qth":"WATERTOWN","lotw":"Y","dist":"2077","grid":"FN31KO"},{"call":"KC2DUX","name":"John W Hamann, Jr","date":"2021-04-01","time":"2158","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-06","country":"United States","state":"NJ","qth":"Dennisville","lotw":"Y","dist":"1850","grid":"FM29OE"},{"call":"NA8W","name":"DARL E DEEDS","date":"2021-04-01","time":"2206","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-02","country":"United States","state":"OH","qth":"FINDLAY","lotw":"Y","dist":"1292","grid":"EL97"},{"call":"N2HLJ","name":"THOMAS M MARONGELLI","date":"2021-04-01","time":"2220","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-13","country":"United States","state":"VA","qth":"YORKTOWN","lotw":"Y","dist":"1653","grid":"FM17SC"},{"call":"KI0E","name":"KIM E GROSS","date":"2021-04-01","time":"2227","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-17","country":"United States","state":"ID","qth":"NAMPA","lotw":"Y","dist":"2337","grid":"DN13RN"},{"call":"WA2HIP","name":"JOHN R PETROCELLI","date":"2021-04-01","time":"2230","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-20","country":"United States","state":"ME","qth":"Brewer","lotw":"Y","dist":"2541","grid":"FN54ot"},{"call":"N7DBS","name":"Daniel B Soper","date":"2021-04-01","time":"2236","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-13","country":"United States","state":"NV","qth":"Pahrump","lotw":"Y","dist":"2084","grid":"DM26"},{"call":"N3BEN","name":"BENJAMIN J SOPER","date":"2021-04-01","time":"2239","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"+03","country":"United States","state":"CA","qth":"Rocklin","lotw":"Y","dist":"2571","grid":"CM98JT"},{"call":"W6YXY","name":"James R Keller","date":"2021-04-01","time":"2245","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-12","country":"United States","state":"CA","qth":"Oceanside","lotw":"Y","dist":"2197","grid":"DM13IE"},{"call":"K7HRT","name":"PATRICK P O DEA","date":"2021-04-01","time":"2246","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"United States","state":"WA","qth":"GREENACRES","lotw":"Y","dist":"2589","grid":"DN17KP"},{"call":"K4RCG","name":"Robert A Stohlman","date":"2021-04-01","time":"2252","band":"20M","mode":"FT8","rst_sent":"-23","rst_rcvd":"-03","country":"United States","state":"VA","qth":"Stanardsville","lotw":"N","dist":"1522","grid":"FM08si"},{"call":"KE8NI","name":"ROBERT B GRAY","date":"2021-04-01","time":"2317","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-07","country":"United States","state":"OH","qth":"CAMBRIDGE","lotw":"N","dist":"1365","grid":"EN90ea"},{"call":"WA8US","name":"JOHN F BROCK","date":"2021-04-01","time":"2320","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+04","country":"United States","state":"OH","qth":"HUDSON","lotw":"N","dist":"1455","grid":"EN91gf"},{"call":"WA6GXQ","name":"Barry K Kelly","date":"2021-04-01","time":"2324","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-02","country":"United States","state":"NC","qth":"Durham","lotw":"Y","dist":"1411","grid":"FM06NA"},{"call":"VA3RMV","name":"Marinus Robertus Vanderminnen","date":"2021-04-01","time":"2334","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-06","country":"Canada","state":"","qth":"STRATHROY","lotw":"Y","dist":"1568","grid":"EN92EW"},{"call":"6Y5APM","name":"ANDRE ST .P MILLER","date":"2021-04-01","time":"2336","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-11","country":"Jamaica","state":"","qth":"MONTEGO BAY","lotw":"Y","dist":"10355","grid":"FK18HC"},{"call":"K3MI","name":"John P Seiler","date":"2021-04-01","time":"2339","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-13","country":"United States","state":"PA","qth":"Finleyville","lotw":"Y","dist":"1493","grid":"EN90XG"},{"call":"KE8AFF","name":"SPENSER A SNYDER","date":"2021-04-01","time":"2341","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-12","country":"United States","state":"OH","qth":"MARION","lotw":"Y","dist":"1301","grid":"EN80KO"},{"call":"KD8PGL","name":"Richard D Boozer","date":"2021-04-02","time":"0050","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-06","country":"United States","state":"OH","qth":"Wakeman","lotw":"Y","dist":"1394","grid":"EN81TF"},{"call":"WA3WNT","name":"JOSEPH A THOMSON","date":"2021-04-02","time":"0052","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-10","country":"United States","state":"PA","qth":"Evans City","lotw":"Y","dist":"1526","grid":"EN90XU"},{"call":"N7RI","name":"William R Fults","date":"2021-04-02","time":"0053","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-15","country":"United States","state":"WY","qth":"Cheyenne","lotw":"Y","dist":"1387","grid":"DN71MF"},{"call":"KA9SVR","name":"WILLIAM R WAJVODA","date":"2021-04-02","time":"0056","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-13","country":"United States","state":"IN","qth":"Munster","lotw":"Y","dist":"1142","grid":"EN61GN"},{"call":"K5ABE","name":"David R Light","date":"2021-04-02","time":"0058","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-07","country":"United States","state":"TX","qth":"Spring","lotw":"Y","dist":"312","grid":"EM20hd"},{"call":"N1UL","name":"ULRICH L ROHDE, PhD","date":"2021-04-02","time":"0059","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"United States","state":"FL","qth":"MARCO ISLAND","lotw":"Y","dist":"1373","grid":"EL95DV"},{"call":"KK5LQ","name":"RICHARD K CONNER","date":"2021-04-02","time":"0102","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-01","country":"United States","state":"TX","qth":"GRANBURY","lotw":"N","dist":"384","grid":"EM12ck"},{"call":"N9RFJ","name":"DONALD W MORRIS","date":"2021-04-02","time":"0109","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-05","country":"United States","state":"IN","qth":"SALEM","lotw":"Y","dist":"963","grid":"EM68WO"},{"call":"K6RFL","name":"Alan Smith","date":"2021-04-02","time":"0112","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-13","country":"United States","state":"CA","qth":"Alamo","lotw":"Y","dist":"2618","grid":"CM97AU"},{"call":"KC3NZT","name":"MICHAEL H BOWER","date":"2021-04-02","time":"0125","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-12","country":"United States","state":"PA","qth":"MALVERN","lotw":"N","dist":"1822","grid":"FN20fa"},{"call":"KI4MRH","name":"Randall H Hinsley","date":"2021-04-02","time":"0131","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"+11","country":"United States","state":"TN","qth":"Dickson","lotw":"Y","dist":"703","grid":"EM66GB"},{"call":"W4PPC","name":"Stephen J Duncheskie","date":"2021-04-02","time":"0134","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-04","country":"United States","state":"AL","qth":"Huntsville","lotw":"Y","dist":"713","grid":"EM64SS"},{"call":"W4EFT","name":"Charles M Hobbs","date":"2021-04-02","time":"0137","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-18","country":"United States","state":"AL","qth":"Foley","lotw":"Y","dist":"616","grid":"EM60DK"},{"call":"W7DO","name":"GARY A MARTEK","date":"2021-04-02","time":"0155","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-19","country":"United States","state":"SC","qth":"Blythewood","lotw":"Y","dist":"1202","grid":"EM94NF"},{"call":"KJ7BJZ","name":"Thomas M Pifer","date":"2021-04-02","time":"0210","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"+01","country":"United States","state":"AZ","qth":"Cornville","lotw":"N","dist":"1706","grid":"DM44AR"},{"call":"KC9RAX","name":"Scott Shepler","date":"2021-04-02","time":"0221","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-09","country":"United States","state":"IN","qth":"Marion","lotw":"N","dist":"1144","grid":"EN70DN"},{"call":"N9GLE","name":"JOHN W NAGLE","date":"2021-04-02","time":"0226","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-13","country":"United States","state":"IL","qth":"OAK FOREST","lotw":"Y","dist":"1139","grid":"EN61DO"},{"call":"WD6FIE","name":"Richard E Ravich","date":"2021-04-06","time":"2007","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"+07","country":"United States","state":"CA","qth":"Palm Desert","lotw":"Y","dist":"2103","grid":"DM13US"},{"call":"KC1OQM","name":"Edward N Greene, Jr","date":"2021-04-06","time":"2026","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-15","country":"United States","state":"NH","qth":"Merrimack","lotw":"Y","dist":"2255","grid":"FN42GU"},{"call":"NC8Q","name":"CHARLES E GELM","date":"2021-04-06","time":"2043","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-13","country":"United States","state":"OH","qth":"DAYTON","lotw":"Y","dist":"1168","grid":"EM79WQ"},{"call":"W5APO","name":"ROBERT C SWAIN","date":"2021-04-06","time":"2046","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+01","country":"United States","state":"FL","qth":"SAINT PETERSBURG","lotw":"Y","dist":"1188","grid":"EL89TQ"},{"call":"W1WNS","name":"WAYNE N MAXWELL","date":"2021-04-06","time":"2050","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-11","country":"United States","state":"NH","qth":"SOMERSWORTH","lotw":"N","dist":"2270","grid":"FN43ng"},{"call":"WP4LBK","name":"JULIO L MERCADO","date":"2021-04-06","time":"2052","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-04","country":"United States","state":"FL","qth":"Ocala","lotw":"Y","dist":"1160","grid":"EL89WG"},{"call":"K4VNP","name":"WILLIAM M BIERCE","date":"2021-04-06","time":"2054","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-05","country":"United States","state":"FL","qth":"Sun City Center","lotw":"N","dist":"1213","grid":"EL87tr"},{"call":"WD1Z","name":"Bud Amsden","date":"2021-04-06","time":"2057","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+00","country":"United States","state":"KY","qth":"Berea","lotw":"Y","dist":"1024","grid":"EM77UN"},{"call":"KO4VW","name":"STEVEN P RANDALL","date":"2021-04-06","time":"2132","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-01","country":"United States","state":"GA","qth":"ROSWELL","lotw":"Y","dist":"887","grid":"EM74UA10"},{"call":"W4JLP","name":"JAMES H LATHAN, Jr","date":"2021-04-06","time":"2144","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-20","country":"United States","state":"SC","qth":"LUGOFF","lotw":"N","dist":"1218","grid":"EM94pf"},{"call":"KP4CJ","name":"JOSE L CRUZ MASSAS","date":"2021-04-06","time":"2211","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-23","country":"Puerto Rico","state":"","qth":"Tampa","lotw":"N","dist":"1188","grid":"EL88SA"},{"call":"KB8SRX","name":"Ronald J Chambers","date":"2021-04-06","time":"2222","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-15","country":"United States","state":"MI","qth":"Ypsilanti","lotw":"Y","dist":"1398","grid":"EN82EF"},{"call":"K1XH","name":"MICHAEL W CORROW","date":"2021-04-06","time":"2226","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-09","country":"United States","state":"VT","qth":"Hartland","lotw":"Y","dist":"2222","grid":"FN33TN"},{"call":"KD2QFW","name":"Thomas M Keefe","date":"2021-04-06","time":"2239","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+02","country":"United States","state":"NY","qth":"Troy","lotw":"Y","dist":"2087","grid":"FN32DR"},{"call":"KB1HKN","name":"Dirk H Hart","date":"2021-04-06","time":"2258","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-10","country":"United States","state":"MA","qth":"Stow","lotw":"Y","dist":"2235","grid":"FN42FJ"},{"call":"XE3E","name":"Edgar Luna-Medina","date":"2021-04-06","time":"2300","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-08","country":"Mexico","state":"","qth":"Teapa, Tabasco","lotw":"N","dist":"1552","grid":"EK37mx"},{"call":"J69DS","name":"Frans van Santbrink","date":"2021-04-06","time":"2305","band":"20M","mode":"FT8","rst_sent":"+13","rst_rcvd":"-10","country":"St Lucia","state":"","qth":"Babonneau","lotw":"Y","dist":"3903","grid":"FK94MA"},{"call":"G4CCZ","name":"PAUL SIMONS","date":"2021-04-06","time":"2309","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-17","country":"England","state":"","qth":"Woodham, Surrey","lotw":"Y","dist":"7451","grid":"IO91RI"},{"call":"K2MRK","name":"MARK CHESER","date":"2021-04-06","time":"2320","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+11","country":"United States","state":"FL","qth":"Melbourne","lotw":"Y","dist":"1347","grid":"EL98QC"},{"call":"HP1RY","name":"MANVELL (ERIC) AICARDI","date":"2021-04-06","time":"2323","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-25","country":"Panama","state":"","qth":"Panam\u00e1","lotw":"Y","dist":"2997","grid":"FJ09GA"},{"call":"VA2MKX","name":"Mohamed Khadir","date":"2021-04-06","time":"2325","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-09","country":"Canada","state":"","qth":"Montr\u00e9al","lotw":"N","dist":"2247","grid":"FN35EM"},{"call":"CO6XE","name":"Emilio Rafael Mart\u00ednez Fern\u00e1nd","date":"2021-04-06","time":"2329","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-18","country":"Cuba","state":"","qth":"Sancti Spiritus","lotw":"Y","dist":"1835","grid":"FL01GW"},{"call":"VE3EJP","name":"RICHARD PHILIPS","date":"2021-04-06","time":"2331","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-12","country":"Canada","state":"","qth":"BELLEVILLE ON","lotw":"Y","dist":"1830","grid":"FN14HE"},{"call":"VA2JWZ","name":"Roland Aubin","date":"2021-04-06","time":"2333","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-13","country":"Canada","state":"","qth":"Saint-Lazare","lotw":"Y","dist":"2212","grid":"FN25XJ"},{"call":"W7WIA","name":"OLIVER A LARSEN","date":"2021-04-06","time":"2341","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-12","country":"United States","state":"AZ","qth":"TUCSON","lotw":"Y","dist":"1608","grid":"DM42OC"},{"call":"NC8TM","name":"Timothy R Mahlow","date":"2021-04-06","time":"2343","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-08","country":"United States","state":"NC","qth":"JACKSONVILLE","lotw":"Y","dist":"1522","grid":"FM14GT"},{"call":"W3MAM","name":"DAVID SWEENEY","date":"2021-04-06","time":"2345","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-10","country":"United States","state":"MD","qth":"GLEN BURNIE","lotw":"Y","dist":"1708","grid":"FM19RE"},{"call":"AI4DX","name":"JAMES A BRAUNNS","date":"2021-04-06","time":"2351","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+12","country":"United States","state":"FL","qth":"Ormond Beach","lotw":"Y","dist":"1253","grid":"EL99KG"},{"call":"KD9OIQ","name":"Antonio Luna","date":"2021-04-20","time":"1853","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"IN","qth":"Schererville","lotw":"N","dist":"1138","grid":"EN61GM10"},{"call":"KW4MB","name":"RICHARD A JONES","date":"2021-04-20","time":"1851","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"FL","qth":"VALRICO","lotw":"Y","dist":"1214","grid":"EL87uu"},{"call":"W9YSX","name":"MANFRED R FRANKE","date":"2021-04-20","time":"1944","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-06","country":"United States","state":"IN","qth":"FAIRLAND","lotw":"Y","dist":"1054","grid":"EM79BP03"},{"call":"VE3LQV","name":"Gerald Lloyd Graff","date":"2021-04-20","time":"1930","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-21","country":"Canada","state":"","qth":"NORTH BAY","lotw":"N","dist":"1954","grid":"FN06gh55"},{"call":"KB0VCN","name":"ALLEN CARAWAY","date":"2021-04-20","time":"1925","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"MO","qth":"KIRKSVILLE","lotw":"Y","dist":"857","grid":"EN30PD"},{"call":"KC8ETW","name":"DENNIS E PHILLIPS","date":"2021-04-20","time":"1922","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"MI","qth":"Perry","lotw":"Y","dist":"1416","grid":"EN72WT24"},{"call":"KA0BOJ","name":"MATTHEW N ANDERSON","date":"2021-04-20","time":"1919","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"NE","qth":"Raymond","lotw":"Y","dist":"975","grid":"EN11TB40"},{"call":"K8DID","name":"RONALD L GORZYNSKI","date":"2021-04-20","time":"1917","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"MI","qth":"LUDINGTON","lotw":"Y","dist":"1420","grid":"EN63sx"},{"call":"K9BIZ","name":"Daniel A Bisbee","date":"2021-04-20","time":"1911","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"WI","qth":"Waukesha","lotw":"Y","dist":"1261","grid":"EN53ub"},{"call":"N5OKY","name":"Larry W Olsen","date":"2021-04-20","time":"1900","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"CO","qth":"Calhan","lotw":"Y","dist":"1189","grid":"DM78TT46"},{"call":"K3UA","name":"PHILLIP I KOCH","date":"2021-04-20","time":"1858","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"PA","qth":"IMPERIAL","lotw":"Y","dist":"1495","grid":"EN90vm"},{"call":"AC0UH","name":"DONALD E ACHELPOHL","date":"2021-04-20","time":"1856","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"IL","qth":"Orion","lotw":"Y","dist":"1023","grid":"EN41ti"},{"call":"KC9MU","name":"Thomas C Hehner","date":"2021-04-20","time":"1947","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-08","country":"United States","state":"KY","qth":"Bowling Green","lotw":"N","dist":"709","grid":"EM66"},{"call":"KR0P","name":"JOHN A MARDOCK","date":"2021-04-20","time":"1951","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-12","country":"United States","state":"NE","qth":"Firth","lotw":"Y","dist":"961","grid":"EN10"},{"call":"KS5Z","name":"Terence G Bajuk","date":"2021-04-20","time":"2015","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+00","country":"United States","state":"TX","qth":"Lubbock","lotw":"Y","dist":"757","grid":"DM93"},{"call":"W9LRM","name":"Richard J Mersinger","date":"2021-04-20","time":"2017","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-07","country":"United States","state":"IL","qth":"Edwardsville","lotw":"Y","dist":"761","grid":"EM58"},{"call":"KD8DEY","name":"ROBERT ANDERSON, JR","date":"2021-04-20","time":"2027","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-19","country":"United States","state":"KY","qth":"Bronston","lotw":"Y","dist":"859","grid":"EM76"},{"call":"KN4WGE","name":"Andrew C Yant","date":"2021-04-20","time":"2028","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-11","country":"United States","state":"TN","qth":"Portland","lotw":"Y","dist":"709","grid":"EM66"},{"call":"KO4IFY","name":"MARK D SCHULZE","date":"2021-04-21","time":"2015","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-06","country":"United States","state":"GA","qth":"CANTON","lotw":"Y","dist":"810","grid":"EM74re"},{"call":"KB7AK","name":"Bernd Peters","date":"2021-04-21","time":"2016","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-09","country":"United States","state":"WA","qth":"Vancouver","lotw":"Y","dist":"2918","grid":"CN85rq"},{"call":"K4WM","name":"JOEL B HOAG","date":"2021-04-21","time":"2019","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-12","country":"United States","state":"GA","qth":"CALHOUN","lotw":"Y","dist":"786","grid":"EM74nl"},{"call":"KO4KMP","name":"Adam Herbert","date":"2021-04-21","time":"2023","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-09","country":"United States","state":"FL","qth":"Seminole","lotw":"Y","dist":"1102","grid":"EL87nu"},{"call":"K7KSH","name":"Kevin S Hughes","date":"2021-04-21","time":"2026","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-13","country":"United States","state":"NM","qth":"Rio Rancho","lotw":"Y","dist":"1296","grid":"DM65qh"},{"call":"KB2YCW","name":"MARK W RUTHERFORD","date":"2021-04-21","time":"2028","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-13","country":"United States","state":"SC","qth":"Irmo","lotw":"N","dist":"1111","grid":"EM94jc"},{"call":"N5LZB","name":"CHRIS W HINES","date":"2021-04-21","time":"2037","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-24","country":"United States","state":"WA","qth":"SEATTLE","lotw":"N","dist":"2981","grid":"CN87tm"},{"call":"KB9VK","name":"John F Megee","date":"2021-04-21","time":"2041","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"+01","country":"United States","state":"IN","qth":"Rushville","lotw":"Y","dist":"1045","grid":"EM79ho"},{"call":"WA0YPC","name":"Dennis A Dugan","date":"2021-04-21","time":"2044","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+01","country":"United States","state":"FL","qth":"FOLEY","lotw":"Y","dist":"563","grid":"EM60ei"},{"call":"N8EGZ","name":"MYRON A BODMAN","date":"2021-04-21","time":"2050","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-18","country":"United States","state":"OH","qth":"FAIRVIEW PARK","lotw":"Y","dist":"1399","grid":"EN91bk"},{"call":"EA2ELU","name":"Gabriel Garc\u00ed","date":"2021-04-21","time":"2102","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-24","country":"Spain","state":"","qth":"Vitoria-Gasteiz","lotw":"Y","dist":"7651","grid":"IN82qu"},{"call":"KJ7IEA","name":"Peter D DeKeles","date":"2021-04-21","time":"2104","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-21","country":"United States","state":"WA","qth":"Kennewick","lotw":"Y","dist":"2698","grid":"DN06je"},{"call":"K8EIJ","name":"JAMES S HARTZLER","date":"2021-04-21","time":"2109","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"United States","state":"OH","qth":"LONDON","lotw":"Y","dist":"1142","grid":"EM89aq"},{"call":"K5UHF","name":"Jeff Tostenrude","date":"2021-04-21","time":"2112","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-06","country":"United States","state":"TX","qth":"LEANDER","lotw":"Y","dist":"446","grid":"EM10cn"},{"call":"N8NO","name":"MICHAEL L GOFF","date":"2021-04-21","time":"2116","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-09","country":"United States","state":"WV","qth":"WASHINGTON","lotw":"Y","dist":"1256","grid":"EM99dd"},{"call":"N9DLB","name":"David L Bouvia, Sr","date":"2021-04-21","time":"2117","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-12","country":"United States","state":"IL","qth":"Freeport","lotw":"N","dist":"1144","grid":"EN52EH52"},{"call":"AA8SW","name":"Steven W Weeks","date":"2021-04-21","time":"2123","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-14","country":"United States","state":"OH","qth":"Cincinnati","lotw":"Y","dist":"1074","grid":"EM79td"},{"call":"K8TE","name":"WILLIAM A MADER, JR","date":"2021-04-21","time":"2144","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-10","country":"United States","state":"NM","qth":"RIO RANCHO","lotw":"Y","dist":"1296","grid":"DM65qg"},{"call":"KG4BLR","name":"Glenn R Brazier","date":"2021-04-21","time":"2146","band":"20M","mode":"FT8","rst_sent":"+12","rst_rcvd":"+04","country":"United States","state":"AL","qth":"Opp","lotw":"Y","dist":"647","grid":"EM61ug"},{"call":"AA4CW","name":"ERNEST A CONE, JR","date":"2021-04-21","time":"2147","band":"20M","mode":"FT8","rst_sent":"+15","rst_rcvd":"-09","country":"United States","state":"AL","qth":"ASHVILLE","lotw":"N","dist":"651","grid":"EM63vt"},{"call":"K4RED","name":"STEVEN A SERPHOS","date":"2021-04-21","time":"2150","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-16","country":"United States","state":"FL","qth":"BOYNTON BEACH","lotw":"Y","dist":"1411","grid":"EL96wm"},{"call":"W2JHH","name":"Jerry Hamilton","date":"2021-04-21","time":"2151","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+15","country":"United States","state":"GA","qth":"Clarksville","lotw":"Y","dist":"907","grid":"EM84fo"},{"call":"WI4R","name":"JAMES L WEAVER","date":"2021-04-21","time":"2155","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-07","country":"United States","state":"GA","qth":"PEACHTREE CITY","lotw":"Y","dist":"787","grid":"EM73qj"},{"call":"K4IA","name":"CRAIG E BUCK","date":"2021-04-21","time":"2158","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-14","country":"United States","state":"VA","qth":"FREDERICKSBURG","lotw":"Y","dist":"1547","grid":"FM18gh"},{"call":"PJ4EVA","name":"Eva Telenius-Lowe","date":"2021-04-21","time":"2203","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-06","country":"Bonaire","state":"","qth":"Kralendijk, Dutch Caribbean","lotw":"Y","dist":"3384","grid":"FK52ud"},{"call":"K0PT","name":"Paul E Travis, Jr","date":"2021-04-21","time":"2204","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-05","country":"United States","state":"SC","qth":"Irmo","lotw":"Y","dist":"1111","grid":"EM94jc"},{"call":"WB8SBI","name":"JAY A SCHWARTZ","date":"2021-04-21","time":"2206","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"MI","qth":"HUNTINGTON WOODS","lotw":"Y","dist":"1407","grid":"EN82kl"},{"call":"AJ4HW","name":"TIMOTHY L BERARDUCCI","date":"2021-04-21","time":"2207","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-04","country":"United States","state":"TN","qth":"KNOXVILLE","lotw":"Y","dist":"889","grid":"EM75vu"},{"call":"WB6JAR","name":"WILLIAM B KEARNS","date":"2021-04-21","time":"2209","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"United States","state":"CA","qth":"WILDOMAR","lotw":"Y","dist":"2262","grid":"DM13io"},{"call":"WB2UBW","name":"ROBERT A HARRIS","date":"2021-04-21","time":"2213","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-15","country":"United States","state":"KY","qth":"Franklin","lotw":"Y","dist":"765","grid":"EM66st"},{"call":"WI4MPY","name":"Paul F Reams, SR","date":"2021-04-21","time":"2222","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-06","country":"United States","state":"KY","qth":"Richmond","lotw":"Y","dist":"980","grid":"EM77ts"},{"call":"NK4L","name":"JOSE M GONZALEZ","date":"2021-04-21","time":"2225","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-13","country":"United States","state":"FL","qth":"MIAMI","lotw":"Y","dist":"1432","grid":"EL95ts"},{"call":"KK9M","name":"CLARENCE E MAISE, JR","date":"2021-04-21","time":"2226","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-06","country":"United States","state":"IL","qth":"Edwardsville","lotw":"Y","dist":"752","grid":"EM58at"},{"call":"WA8ICK","name":"JOHN R WEBER","date":"2021-04-21","time":"2231","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-03","country":"United States","state":"MI","qth":"HIGHLAND","lotw":"N","dist":"1391","grid":"EN82dp"},{"call":"CO6OZ","name":"Omar Ricardo Socarras","date":"2021-04-21","time":"2232","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-11","country":"Cuba","state":"","qth":"Santi Spiritus.","lotw":"N","dist":"1845","grid":"FL01"},{"call":"K1VHQ","name":"DAVID M LAVOIE","date":"2021-04-21","time":"2234","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-18","country":"United States","state":"NH","qth":"PETERBOROUGH","lotw":"N","dist":"2228","grid":"FN42"},{"call":"NC6W","name":"Leonard A Szalony","date":"2021-04-21","time":"2236","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-02","country":"United States","state":"CA","qth":"Fontana","lotw":"Y","dist":"2274","grid":"DM14gs"},{"call":"KN7O","name":"Richard A Davis","date":"2021-04-21","time":"2240","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+03","country":"United States","state":"AZ","qth":"Kingman","lotw":"Y","dist":"1956","grid":"DM35af"},{"call":"WU0O","name":"Andrew C Westermeyer","date":"2021-04-21","time":"2244","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-16","country":"United States","state":"MO","qth":"Saint Ann","lotw":"Y","dist":"734","grid":"EM48tr"},{"call":"KE1AF","name":"ABEL M DA SILVA","date":"2021-04-21","time":"2250","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-10","country":"United States","state":"RI","qth":"West Warwick,ri","lotw":"Y","dist":"2155","grid":"FN41fq"},{"call":"KG4WZZ","name":"James E Herbert","date":"2021-04-21","time":"2256","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-12","country":"United States","state":"GA","qth":"Marietta","lotw":"Y","dist":"797","grid":"EM74qb"},{"call":"YV5ZV","name":"VICTOR J. MALDONADO N.","date":"2021-04-21","time":"2258","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-16","country":"Venezuela","state":"DC","qth":"Distrito Capital","lotw":"N","dist":"3625","grid":"FK60mk"},{"call":"NK8O","name":"CHARLES W POWELL","date":"2021-04-21","time":"2300","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-17","country":"United States","state":"KS","qth":"Louisburg","lotw":"Y","dist":"699","grid":"EM28pp"},{"call":"6D3A","name":"Asociacion de Radio Aficionados de la Republica Mexicana A.c","date":"2021-04-21","time":"2305","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+06","country":"Mexico","state":"","qth":"Salinas de Hidalgo San Luis Potosi","lotw":"N","dist":"1667","grid":"EK08"},{"call":"WW6AA","name":"Merrill M Knopf","date":"2021-04-21","time":"2308","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-01","country":"United States","state":"CA","qth":"Long Beach","lotw":"Y","dist":"2422","grid":"DM03"},{"call":"XE2RV","name":"Rafael Valdez Jr.","date":"2021-04-21","time":"2311","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-12","country":"Mexico","state":"","qth":"Los Mochis, Sinaloa 81200","lotw":"Y","dist":"1735","grid":"DL55"},{"call":"KI7OXA","name":"WILLIAM R GILLIAM","date":"2021-04-21","time":"2316","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-17","country":"United States","state":"AZ","qth":"TUCSON","lotw":"N","dist":"1683","grid":"DM42me"},{"call":"NL7XT","name":"LOWELL A KRISE","date":"2021-04-21","time":"2318","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+04","country":"United States","state":"IN","qth":"Orleans","lotw":"Y","dist":"918","grid":"EM68tr"},{"call":"KK2M","name":"ARTHUR M BROOME, JR","date":"2021-04-21","time":"2322","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-22","country":"United States","state":"NY","qth":"EAST AMHERST","lotw":"Y","dist":"1712","grid":"FN03pa"},{"call":"KB9KAX","name":"DONAVON J TINDER","date":"2021-04-21","time":"2329","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+03","country":"United States","state":"IL","qth":"Fairview","lotw":"Y","dist":"940","grid":"EN40wp"},{"call":"CM2SF","name":"Ariel Santiesteban Gar\u00c3","date":"2021-04-21","time":"2342","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-11","country":"Cuba","state":"","qth":"Arroyo Naranjo, La Habana","lotw":"N","dist":"1402","grid":"EL83"},{"call":"K7CAR","name":"KENT B O SELL","date":"2021-04-21","time":"2345","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-02","country":"United States","state":"OR","qth":"Hillsboro","lotw":"Y","dist":"1966","grid":"DM37ba"},{"call":"WE2N","name":"HIPOLITO PAULINO","date":"2021-04-21","time":"2354","band":"20M","mode":"FT8","rst_sent":"+16","rst_rcvd":"-15","country":"United States","state":"FL","qth":"Kissimmee","lotw":"Y","dist":"1345","grid":"EL97tg"},{"call":"N8XYM","name":"MICHAEL E CREMEANS","date":"2021-04-21","time":"2356","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-12","country":"United States","state":"OH","qth":"COLUMBUS","lotw":"Y","dist":"1241","grid":"EN80nc"},{"call":"AA1SU","name":"PAUL N GAYET","date":"2021-04-22","time":"0000","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"+10","country":"United States","state":"VT","qth":"ESSEX JUNCTION","lotw":"Y","dist":"2174","grid":"FN34kl"},{"call":"KC6MIE","name":"Stephen D Spencer","date":"2021-04-22","time":"0006","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+03","country":"United States","state":"CA","qth":"FALLBROOK","lotw":"Y","dist":"2237","grid":"DM13"},{"call":"9G5FI","name":"Thomas Hitzner","date":"2021-04-22","time":"0012","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-19","country":"Ghana","state":"","qth":"Ghana","lotw":"Y","dist":"9867","grid":"IJ95"},{"call":"K3WHD","name":"DAVID K ENRIGHT","date":"2021-04-22","time":"0017","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-12","country":"United States","state":"NY","qth":"Rochester","lotw":"Y","dist":"1801","grid":"FN13fe"},{"call":"N3TOG","name":"Steve G Stapf","date":"2021-04-22","time":"0021","band":"20M","mode":"FT8","rst_sent":"+11","rst_rcvd":"-09","country":"United States","state":"MD","qth":"Crofton","lotw":"Y","dist":"1635","grid":"FM19pa"},{"call":"VA3MBT","name":"Michael Bell","date":"2021-04-22","time":"0022","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"+00","country":"Canada","state":"ON","qth":"KINGSTON","lotw":"N","dist":"1984","grid":"FN14sf"},{"call":"WI9I","name":"GEORGE W HINKLE","date":"2021-04-22","time":"0024","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-14","country":"United States","state":"IL","qth":"SPRINGFIELD","lotw":"Y","dist":"870","grid":"EM59et"},{"call":"VA3JCL","name":"Julio Cesar Diaz","date":"2021-04-22","time":"0032","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+06","country":"Canada","state":"","qth":"Pefferlaw","lotw":"Y","dist":"1776","grid":"FN04jh"},{"call":"KB8U","name":"RUSSELL J DWARSHUIS","date":"2021-04-22","time":"0038","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-14","country":"United States","state":"MI","qth":"ANN ARBOR","lotw":"Y","dist":"1295","grid":"EN71rx"},{"call":"KK3KK","name":"Stanislaw G Galonski","date":"2021-04-22","time":"0044","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-14","country":"United States","state":"CA","qth":"Big Bear City","lotw":"N","dist":"2222","grid":"DM14ng"},{"call":"KN4RBN","name":"YAKOV V ROKHLIN","date":"2021-04-22","time":"0048","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+04","country":"United States","state":"NC","qth":"GREENSBORO","lotw":"Y","dist":"1271","grid":"FM06bd"},{"call":"J79WTA","name":"Walter Aebi","date":"2021-04-22","time":"0049","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-04","country":"Dominica","state":"","qth":"CH-4552 Derendingen","lotw":"Y","dist":"3705","grid":"FK95gk"},{"call":"KQ6ZZ","name":"Gary L Caffee","date":"2021-04-22","time":"0101","band":"20M","mode":"FT8","rst_sent":"+09","rst_rcvd":"+07","country":"United States","state":"NC","qth":"Thomasville","lotw":"Y","dist":"1249","grid":"EM95xv"},{"call":"KM4RL","name":"ROBERT G WENTZELL","date":"2021-04-22","time":"0105","band":"20M","mode":"FT8","rst_sent":"+09","rst_rcvd":"+04","country":"United States","state":"FL","qth":"Inverness","lotw":"Y","dist":"1059","grid":"EL88"},{"call":"KC5YPU","name":"KELLY S BRADLEY","date":"2021-04-22","time":"0108","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-06","country":"United States","state":"TX","qth":"Lamesa","lotw":"Y","dist":"837","grid":"DM92ar"},{"call":"KI5CYM","name":"Raymond L Hightower","date":"2021-04-22","time":"0111","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-14","country":"United States","state":"TX","qth":"Seminole","lotw":"Y","dist":"902","grid":"DM82qr"},{"call":"WA8KNE","name":"John D Young","date":"2021-04-22","time":"0113","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-01","country":"United States","state":"FL","qth":"Jacksonville","lotw":"Y","dist":"1156","grid":"EM90"},{"call":"W3RW","name":"J Robert Witmer","date":"2021-04-22","time":"0120","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-15","country":"United States","state":"PA","qth":"Lansdale","lotw":"Y","dist":"1810","grid":"FN20jg"},{"call":"W1RCP","name":"ROBERT C PITTS","date":"2021-04-22","time":"0124","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-01","country":"United States","state":"GA","qth":"MOULTRIE","lotw":"Y","dist":"885","grid":"EM81cc"},{"call":"WA1HEW","name":"CRAIG R DOWLING","date":"2021-04-22","time":"0133","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-09","country":"United States","state":"PA","qth":"YORK","lotw":"Y","dist":"1631","grid":"FM19"},{"call":"VA3EBM","name":"Emanuel Branco","date":"2021-04-22","time":"0134","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"+02","country":"Canada","state":"","qth":"OAKVILLE","lotw":"Y","dist":"1681","grid":"FN03dk"},{"call":"AD4Z","name":"JULIO HENRIQUEZ","date":"2021-04-22","time":"0142","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-09","country":"United States","state":"FL","qth":"HIALEAH GARDENS","lotw":"Y","dist":"1428","grid":"EL95tu"},{"call":"KN4RNO","name":"Carlton F Bellamy","date":"2021-04-22","time":"0144","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+04","country":"United States","state":"GA","qth":"Sharpsburg","lotw":"Y","dist":"788","grid":"EM73qk"},{"call":"WD4ASP","name":"Frederick J Paul","date":"2021-04-22","time":"0149","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-06","country":"United States","state":"VA","qth":"Manassas","lotw":"Y","dist":"1591","grid":"FM18"},{"call":"KD4WLE","name":"SEAN B HAGA","date":"2021-04-22","time":"0153","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-18","country":"United States","state":"FL","qth":"Titusville","lotw":"Y","dist":"1282","grid":"EL98qd"},{"call":"KD8TUS","name":"John A Kuntz","date":"2021-04-22","time":"0156","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-12","country":"United States","state":"NC","qth":"Gibsonville","lotw":"Y","dist":"1299","grid":"FM06fc"},{"call":"N9YLZ","name":"Darren P Clarke","date":"2021-04-24","time":"1753","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-19","country":"United States","state":"IL","qth":"Romeoville","lotw":"Y","dist":"1107","grid":"EN51wp"},{"call":"W7TRA","name":"Thomas R Ambler","date":"2021-04-24","time":"1805","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-06","country":"United States","state":"AZ","qth":"Tucson","lotw":"Y","dist":"1674","grid":"DM42nm"},{"call":"KC7TNT","name":"JOE T GORDON","date":"2021-04-24","time":"1806","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-17","country":"United States","state":"AZ","qth":"PHOENIX","lotw":"Y","dist":"1775","grid":"DM33xo"},{"call":"VA3MJR","name":"David Ross","date":"2021-04-24","time":"1811","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-14","country":"Canada","state":"","qth":"HAMILTON","lotw":"Y","dist":"1653","grid":"FN03bf"},{"call":"KA8YGL","name":"STEPHEN T EISENBERGER","date":"2021-04-24","time":"1819","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-11","country":"United States","state":"OH","qth":"STOW","lotw":"Y","dist":"1408","grid":"EN91ge"},{"call":"WA2DX","name":"Douglas K May","date":"2021-04-24","time":"1837","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+03","country":"United States","state":"FL","qth":"NOKOMIS","lotw":"N","dist":"1113","grid":"EL87"},{"call":"K3IMD","name":"MARCONI FELLOWSHIP OF PENNSYLVANIA","date":"2021-04-24","time":"1841","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-17","country":"United States","state":"PA","qth":"HARTSTOWN","lotw":"N","dist":"1502","grid":"EN91so"},{"call":"KG4CBI","name":"DWIGHT A FREEMAN","date":"2021-04-24","time":"1846","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-08","country":"United States","state":"FL","qth":"SANFORD","lotw":"N","dist":"1192","grid":"EL98is"},{"call":"KB0ATY","name":"CHRISTIAN SANDVIG","date":"2021-04-24","time":"1849","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-21","country":"United States","state":"MI","qth":"Belleville","lotw":"Y","dist":"1362","grid":"EN82dg"},{"call":"NV4J","name":"MICHAEL J CARROLL","date":"2021-04-24","time":"1852","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-14","country":"United States","state":"FL","qth":"TAMPA","lotw":"Y","dist":"1133","grid":"EL87sv"},{"call":"W6AAX","name":"Albert Febraro","date":"2021-04-24","time":"1900","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-14","country":"United States","state":"CA","qth":"Temecula","lotw":"N","dist":"2242","grid":"DM13ll"},{"call":"W7CQQ","name":"Paul R Cleve","date":"2021-04-24","time":"1913","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-07","country":"United States","state":"AZ","qth":"NEW RIVER","lotw":"Y","dist":"1865","grid":"DM33"},{"call":"WB6CWN","name":"Francis M Kelly","date":"2021-04-24","time":"1926","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-22","country":"United States","state":"CA","qth":"Scottsdale","lotw":"N","dist":"1679","grid":"DM43"},{"call":"K3HSK","name":"DAVID LaBarre","date":"2021-04-24","time":"1934","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-09","country":"United States","state":"PA","qth":"ROME","lotw":"Y","dist":"1806","grid":"FN11tx"},{"call":"KM4WMC","name":"DENNIS A ESTEROW","date":"2021-04-24","time":"1947","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-13","country":"United States","state":"FL","qth":"WIMAUMA","lotw":"N","dist":"1157","grid":"EL87ur"},{"call":"WD5FVQ","name":"Charles R Shook","date":"2021-04-24","time":"1954","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-08","country":"United States","state":"TX","qth":"El Paso","lotw":"Y","dist":"1258","grid":"DM61ts"},{"call":"VE2BR","name":"Noel Marcil","date":"2021-04-24","time":"1957","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-13","country":"Canada","state":"QC","qth":"MERCIER","lotw":"Y","dist":"2180","grid":"FN35ch"},{"call":"WS4AM","name":"SAMUEL COSGROVE","date":"2021-04-24","time":"1959","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-12","country":"United States","state":"FL","qth":"CHIEFLAND","lotw":"Y","dist":"1026","grid":"EL89nj"},{"call":"N4A","name":"George Wagner","date":"2021-04-24","time":"2027","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Sarasota","lotw":"Y","dist":"1223","grid":"EL87rg"},{"call":"AD4ES","name":"Charles J Green","date":"2021-04-24","time":"2041","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"MELBOURNE","lotw":"N","dist":"1340","grid":"EL98pd"},{"call":"W2PH","name":"Edward K Johnson","date":"2021-04-24","time":"2045","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"PALM BAY","lotw":"N","dist":"1345","grid":"EL98pa"},{"call":"N4S","name":"Austin Regal","date":"2021-04-24","time":"2048","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Apopka","lotw":"N","dist":"1245","grid":"EL98fm"},{"call":"N4H","name":"Martin Pelt","date":"2021-04-24","time":"2107","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Hawthorne","lotw":"Y","dist":"751","grid":"EM72dx"},{"call":"N4K","name":"Charlie Wooten","date":"2021-04-24","time":"2220","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Lynn Haven","lotw":"Y","dist":"1429","grid":"FM05qq"},{"call":"K4SBZ","name":"Stan Zawrotny","date":"2021-04-24","time":"2240","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Tallahassee","lotw":"Y","dist":"923","grid":"EM70vq"},{"call":"N4T","name":"Dennis Motschenbacher K7bv","date":"2021-04-24","time":"2250","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NC","qth":"Turkey","lotw":"N","dist":"1459","grid":"FM04vx"},{"call":"N4TP","name":"Tampa Amateur Radio Club Inc","date":"2021-04-24","time":"2358","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"TAMPA","lotw":"N","dist":"1189","grid":"EL88sa"},{"call":"N4R","name":"Jay Carmac","date":"2021-04-25","time":"0119","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"McDavid","lotw":"Y","dist":"619","grid":"EM60gu"},{"call":"KN4ZWW","name":"Richard R Caldwell","date":"2021-04-25","time":"0133","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-06","country":"United States","state":"AL","qth":"Foley","lotw":"Y","dist":"617","grid":"EM60DJ"},{"call":"W8RES","name":"ROBERT E STOTHFANG","date":"2021-04-25","time":"0136","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-12","country":"United States","state":"OH","qth":"WEST CHESTER","lotw":"Y","dist":"1124","grid":"EM79SI"},{"call":"KQ6ZZ","name":"Gary L Caffee","date":"2021-04-25","time":"0147","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-11","country":"United States","state":"NC","qth":"Thomasville","lotw":"Y","dist":"1308","grid":"EM95XV"},{"call":"W5MND","name":"PAUL S MILLER","date":"2021-04-25","time":"0204","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-02","country":"United States","state":"TX","qth":"Justin","lotw":"Y","dist":"853","grid":"EM13"},{"call":"KB3SQX","name":"VIVEK WADHAWAN","date":"2021-04-25","time":"0211","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-14","country":"United States","state":"PA","qth":"CAMP HILL","lotw":"Y","dist":"1724","grid":"FN10"},{"call":"W4BIB","name":"Victor J Williams","date":"2021-04-25","time":"0223","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-10","country":"United States","state":"MS","qth":"Carriere","lotw":"N","dist":"441","grid":"EM50dm"},{"call":"KI4ABA","name":"John N Mullins","date":"2021-04-27","time":"2053","band":"10M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-03","country":"United States","state":"LA","qth":"Haughton","lotw":"Y","dist":"8","grid":"EM32EN"},{"call":"HK4EIC","name":"LUIS FERNANDO GONZALEZ RESTREPO","date":"2021-04-27","time":"2208","band":"10M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-08","country":"Colombia","state":"","qth":"MEDELLIN COLOMBIA","lotw":"Y","dist":"3484","grid":"FJ26GF"},{"call":"KG5SJL","name":"Stanley J Sample","date":"2021-04-30","time":"0116","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-03","country":"United States","state":"OK","qth":"Bixby","lotw":"Y","dist":"430","grid":"EM25BX"},{"call":"KI5NZC","name":"Dustin Blackwood","date":"2021-04-30","time":"0118","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-19","country":"United States","state":"OK","qth":"JENKS","lotw":"Y","dist":"439","grid":"EM26AA"},{"call":"W8IJC","name":"Andrew D Walbridge","date":"2021-04-30","time":"0124","band":"40M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-05","country":"United States","state":"OH","qth":"JEFFERSON","lotw":"Y","dist":"1547","grid":"EN91QS"},{"call":"KI5JXR","name":"Anthony K Gabriel, Sr","date":"2021-04-30","time":"0128","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-10","country":"United States","state":"AR","qth":"White Hall","lotw":"Y","dist":"246","grid":"EM34WG"},{"call":"N4PHH","name":"FREDRICK L GAMBLE","date":"2021-04-30","time":"0131","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-05","country":"United States","state":"FL","qth":"PENSACOLA","lotw":"Y","dist":"658","grid":"EM60JL"},{"call":"KA0WS","name":"Arthur W Strong","date":"2021-04-30","time":"0134","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-11","country":"United States","state":"AL","qth":"Falkville","lotw":"Y","dist":"606","grid":"EM64nj"},{"call":"AG5PC","name":"Allen D Peterson","date":"2021-04-30","time":"0136","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+04","country":"United States","state":"TX","qth":"Royse City","lotw":"Y","dist":"247","grid":"EM12UU"},{"call":"KE0MLN","name":"Kenneth L Gremp, IV","date":"2021-04-30","time":"0138","band":"40M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-11","country":"United States","state":"MO","qth":"Rolla","lotw":"Y","dist":"627","grid":"EM47CW"},{"call":"KB5DXO","name":"DONNIE L BOWEN","date":"2021-04-30","time":"0142","band":"40M","mode":"FT8","rst_sent":"+09","rst_rcvd":"-13","country":"United States","state":"MS","qth":"AMORY","lotw":"Y","dist":"508","grid":"EM53SW"},{"call":"W4CNA","name":"JOHN H LONDON","date":"2021-04-30","time":"0149","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-11","country":"United States","state":"NC","qth":"ASHEVILLE","lotw":"N","dist":"1081","grid":"EM85RM"},{"call":"K9IMK","name":"TRAVIS J RODRIGUEZ","date":"2021-04-30","time":"0153","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-14","country":"United States","state":"IL","qth":"METROPOLIS","lotw":"Y","dist":"684","grid":"EM57PD"},{"call":"K4QAL","name":"CHARLES E STUART","date":"2021-04-30","time":"0156","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-07","country":"United States","state":"LA","qth":"Slidell","lotw":"Y","dist":"451","grid":"EM50CF"},{"call":"K9GCP","name":"Garret C Petersen","date":"2021-04-30","time":"0157","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-24","country":"United States","state":"IL","qth":"Elgin","lotw":"N","dist":"1158","grid":"EN52ua"},{"call":"KG5RJ","name":"GREGORY E HALL","date":"2021-04-30","time":"0159","band":"40M","mode":"FT8","rst_sent":"+15","rst_rcvd":"-21","country":"United States","state":"TX","qth":"DALLAS","lotw":"Y","dist":"293","grid":"EM12OX"},{"call":"KC3LOJ","name":"GIANCARLO RAMPINO","date":"2021-04-30","time":"0225","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-14","country":"United States","state":"DE","qth":"WILMINGTON","lotw":"Y","dist":"1813","grid":"FM29FR"},{"call":"CO3DK","name":"LUIS ARMANDO DIMAS WONG","date":"2021-05-06","time":"2220","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-15","country":"Cuba","state":"","qth":"BAHIA HONDA, PROV ARTEMISA","lotw":"Y","dist":"1605","grid":"EL82JW"},{"call":"CU7AA","name":"ALTINO COSTA GOULART ( AL )","date":"2021-05-06","time":"2222","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-14","country":"Azores","state":"","qth":"Horta - Azores","lotw":"N","dist":"5803","grid":"HM58qm"},{"call":"N2EDU","name":"Eduardo A Ferra Quintana","date":"2021-05-06","time":"2310","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-04","country":"United States","state":"FL","qth":"Hialeah","lotw":"Y","dist":"1491","grid":"EL95UV"},{"call":"KJ7SVM","name":"RICHARD L CROW","date":"2021-05-06","time":"2331","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-16","country":"United States","state":"WA","qth":"GRAHAM","lotw":"Y","dist":"2898","grid":"CN87VB"},{"call":"N2VGS","name":"GERALD S ROBERTS","date":"2021-05-06","time":"2333","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-24","country":"United States","state":"NJ","qth":"SOUTH PLAINFIELD","lotw":"Y","dist":"1935","grid":"FN20TN"},{"call":"VE6BTC","name":"James Fowler","date":"2021-05-06","time":"2339","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-16","country":"Canada","state":"","qth":"Edmonton","lotw":"Y","dist":"2819","grid":"DO33"},{"call":"N6PDB","name":"DENNIS D MASON","date":"2021-05-06","time":"2341","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"CA","qth":"SANTA CRUZ","lotw":"Y","dist":"2632","grid":"CM87WB"},{"call":"AE6ML","name":"Michael S Le Claire","date":"2021-05-06","time":"2352","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-12","country":"United States","state":"CA","qth":"ALHAMBRA","lotw":"N","dist":"2274","grid":"DM04wb"},{"call":"XE2EX","name":"JAVIER SANDOVAL RIVERA","date":"2021-05-07","time":"0000","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-04","country":"Mexico","state":"","qth":"Ensenada, B.C.","lotw":"N","dist":"2154","grid":"DM11qu"},{"call":"VE3FMQ","name":"Joseph D Cooper","date":"2021-05-07","time":"0005","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-03","country":"Canada","state":"","qth":"EAST YORK","lotw":"Y","dist":"1762","grid":"FN03IQ"},{"call":"VE3XET","name":"Eric Todd","date":"2021-05-07","time":"0040","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-17","country":"Canada","state":"ON","qth":"Thunder Bay","lotw":"N","dist":"1803","grid":"EN58hl"},{"call":"VE3DGY","name":"Doug McDougall","date":"2021-05-07","time":"0043","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-17","country":"Canada","state":"","qth":"Annan","lotw":"Y","dist":"1743","grid":"EN94NP"},{"call":"N4TQ","name":"ROBERT W JOHNSTON","date":"2021-05-07","time":"0053","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+00","country":"United States","state":"NC","qth":"GREENSBORO","lotw":"Y","dist":"1327","grid":"FM06BD"},{"call":"HP2AT","name":"JOSE NG LEE","date":"2021-05-07","time":"0100","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-13","country":"Panama","state":"","qth":"COLON","lotw":"Y","dist":"2941","grid":"FJ09bi"},{"call":"KD6KHJ","name":"RICHARD T NORWOOD","date":"2021-05-07","time":"0104","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-17","country":"United States","state":"CA","qth":"CERRITOS","lotw":"Y","dist":"2288","grid":"DM03UQ"},{"call":"KB7AX","name":"Frank R Hilligas","date":"2021-05-07","time":"0106","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"+02","country":"United States","state":"AZ","qth":"Sun City West","lotw":"Y","dist":"1740","grid":"DM33TQ"},{"call":"N7KDL","name":"NEIL A WOLVIN","date":"2021-05-07","time":"0113","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"+01","country":"United States","state":"AZ","qth":"San Tan Valley","lotw":"Y","dist":"1666","grid":"DM43FD"},{"call":"KB7RUQ","name":"JAMES H FISHER, JR","date":"2021-05-07","time":"0116","band":"20M","mode":"FT8","rst_sent":"+19","rst_rcvd":"+10","country":"United States","state":"UT","qth":"CLINTON","lotw":"Y","dist":"1889","grid":"DN31XD"},{"call":"N7FN","name":"FRANKLIN B NORAGON","date":"2021-05-07","time":"0119","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+00","country":"United States","state":"AZ","qth":"Buckeye","lotw":"Y","dist":"1765","grid":"DM33QQ"},{"call":"KO3F","name":"CHARLES G ROGERS","date":"2021-05-07","time":"0121","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"United States","state":"CA","qth":"La Mesa","lotw":"Y","dist":"2180","grid":"DM12"},{"call":"W1WAB","name":"William A Barron","date":"2021-05-07","time":"0125","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-05","country":"United States","state":"FL","qth":"Sun City Center","lotw":"Y","dist":"1215","grid":"EL87TQ"},{"call":"KD2BS","name":"Steven E Schopp","date":"2021-05-07","time":"0129","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-18","country":"United States","state":"NY","qth":"Westbury","lotw":"Y","dist":"2010","grid":"FN30FS"},{"call":"W4MRJ","name":"Ham Dem ARC","date":"2021-05-07","time":"0136","band":"20M","mode":"FT8","rst_sent":"+11","rst_rcvd":"+05","country":"United States","state":"FL","qth":"The Villages","lotw":"Y","dist":"1192","grid":"EL98AU"},{"call":"VA3BUF","name":"Don Whalen","date":"2021-05-07","time":"0139","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-15","country":"Canada","state":"","qth":"Sarnia","lotw":"Y","dist":"1527","grid":"EN82TX"},{"call":"VE3SSV","name":"Phillip George Anderson","date":"2021-05-07","time":"0147","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-03","country":"Canada","state":"","qth":"STONEY CREEK","lotw":"N","dist":"1697","grid":"FN03CE"},{"call":"K0CAH","name":"Craig A Heikes","date":"2021-05-07","time":"0149","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+03","country":"United States","state":"CO","qth":"Fort Collins","lotw":"Y","dist":"1346","grid":"DN70LN"},{"call":"K4VMG","name":"John W Holmes","date":"2021-05-07","time":"0215","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-01","country":"United States","state":"TX","qth":"Katy","lotw":"Y","dist":"365","grid":"EL29CS"},{"call":"AI5BH","name":"Steven M Behnke","date":"2021-05-07","time":"0238","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-03","country":"United States","state":"TX","qth":"Leander","lotw":"Y","dist":"446","grid":"EM10CN"},{"call":"W5GZ","name":"STAN GANTZ","date":"2021-05-07","time":"0243","band":"40M","mode":"FT8","rst_sent":"+11","rst_rcvd":"-04","country":"United States","state":"NM","qth":"SILVER CITY","lotw":"Y","dist":"1359","grid":"DM52VS"},{"call":"NA4MM","name":"PAUL ST JOHN","date":"2021-05-07","time":"0248","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-07","country":"United States","state":"AL","qth":"MONTGOMERY","lotw":"Y","dist":"695","grid":"EM62UJ"},{"call":"W4EJY","name":"Raymond W Roberts","date":"2021-05-07","time":"0257","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-15","country":"United States","state":"TN","qth":"PARSONS","lotw":"Y","dist":"607","grid":"EM55VO"},{"call":"K0UIF","name":"Daniel M Lynch","date":"2021-05-07","time":"0301","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-09","country":"United States","state":"CO","qth":"Monument","lotw":"N","dist":"1241","grid":"DM79nb"},{"call":"KB9NVI","name":"Thomas M Anderson","date":"2021-05-07","time":"0310","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-10","country":"United States","state":"IN","qth":"Evansville","lotw":"Y","dist":"816","grid":"EM67EX"},{"call":"AE0TB","name":"Thomas W Bicket","date":"2021-05-07","time":"0327","band":"40M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-16","country":"United States","state":"IA","qth":"Reinbeck","lotw":"Y","dist":"1092","grid":"EN32QH"},{"call":"KB9JMU","name":"JAMES K ADAMS","date":"2021-05-07","time":"0332","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-04","country":"United States","state":"IN","qth":"BARGERSVILLE","lotw":"Y","dist":"1033","grid":"EM69WN"},{"call":"W7BUN","name":"CATHERINE A Goodman","date":"2021-05-07","time":"0343","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-09","country":"United States","state":"WA","qth":"Bellingham","lotw":"Y","dist":"2992","grid":"CN88TU"},{"call":"N9MSM","name":"Jason L Nielsen","date":"2021-05-07","time":"0346","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-14","country":"United States","state":"UT","qth":"Alpine","lotw":"Y","dist":"1835","grid":"DN40CL"},{"call":"KJ7JJ","name":"JOHN J JEWKES","date":"2021-05-07","time":"0352","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-19","country":"United States","state":"UT","qth":"TAYLORSVILLE","lotw":"N","dist":"1856","grid":"DN40aq"},{"call":"K7CLA","name":"Chon M La","date":"2021-05-07","time":"0354","band":"40M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-17","country":"United States","state":"UT","qth":"Sandy","lotw":"Y","dist":"1845","grid":"DN40CO"},{"call":"KY4SGM","name":"Stephen G Moore","date":"2021-05-07","time":"0408","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-08","country":"United States","state":"KY","qth":"Berea","lotw":"Y","dist":"1020","grid":"EM77UN"},{"call":"KL4NE","name":"Roberto S Macfie","date":"2021-05-07","time":"0420","band":"40M","mode":"FT8","rst_sent":"","rst_rcvd":"-05","country":"Alaska","state":"AK","qth":"Anchorage","lotw":"N","dist":"5091","grid":"BP51"},{"call":"K7DTB","name":"David T Bly","date":"2021-05-07","time":"0423","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-02","country":"United States","state":"AZ","qth":"Sierra Vista","lotw":"Y","dist":"1564","grid":"DM41UN"},{"call":"VA3FF","name":"Igor Mordick","date":"2021-05-07","time":"0426","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-21","country":"Canada","state":"","qth":"Brampton","lotw":"Y","dist":"1740","grid":"FN03"},{"call":"EA7CK","name":"ESTEBAN TERRAZAS GALDON","date":"2021-05-07","time":"0436","band":"40M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-24","country":"Spain","state":"","qth":"29670 San Pedro de Alcantara (MALAGA)","lotw":"Y","dist":"7829","grid":"IM76LL"},{"call":"AG4QD","name":"SCOTT B WESTON","date":"2021-05-07","time":"0440","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-20","country":"United States","state":"GA","qth":"NEWNAN","lotw":"Y","dist":"844","grid":"EM73PL"},{"call":"AA5NA","name":"LEWIS L BIFFLE","date":"2021-05-07","time":"0443","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-11","country":"United States","state":"AZ","qth":"CAVE CREEK","lotw":"Y","dist":"1702","grid":"DM43AR"},{"call":"CO3DK","name":"LUIS ARMANDO DIMAS WONG","date":"2021-05-07","time":"0455","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-16","country":"Cuba","state":"","qth":"BAHIA HONDA, PROV ARTEMISA","lotw":"Y","dist":"1605","grid":"EL82JW"},{"call":"NF5KF","name":"Claude Terrier","date":"2021-05-07","time":"0458","band":"40M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-10","country":"United States","state":"FL","qth":"Plantation","lotw":"N","dist":"1479","grid":"EL96ud"},{"call":"V31MA","name":"Marc Missalla","date":"2021-05-07","time":"0526","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-04","country":"Belize","state":"","qth":"Belize","lotw":"Y","dist":"1653","grid":"EK58UL"},{"call":"K9TDW","name":"Todd D Whitmer","date":"2021-05-07","time":"0534","band":"40M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-21","country":"United States","state":"IL","qth":"Plano","lotw":"N","dist":"1113","grid":"EN51sp"},{"call":"W4MTM","name":"Dale K Beach","date":"2021-05-07","time":"0538","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-07","country":"United States","state":"AL","qth":"Montgomery","lotw":"Y","dist":"696","grid":"EM62UJ"},{"call":"WX7OR","name":"Jeffrey A McKinnis","date":"2021-05-07","time":"0542","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-02","country":"United States","state":"OR","qth":"Portland","lotw":"Y","dist":"2868","grid":"CN85PL"},{"call":"NF5KF","name":"Claude Terrier","date":"2021-05-07","time":"0544","band":"40M","mode":"FT8","rst_sent":"+09","rst_rcvd":"-12","country":"United States","state":"FL","qth":"Plantation","lotw":"N","dist":"1479","grid":"EL96ud"},{"call":"6D2A","name":"Asociacion de Radio Aficionados de la Republica Mexicana A.c","date":"2021-05-07","time":"0548","band":"40M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-10","country":"Mexico","state":"","qth":"Salinas de Hidalgo San Luis Potosi","lotw":"Y","dist":"1553","grid":"DM41"},{"call":"KR0P","name":"JOHN A MARDOCK","date":"2021-05-07","time":"0551","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-15","country":"United States","state":"NE","qth":"Firth","lotw":"Y","dist":"924","grid":"EN10RM"},{"call":"KD4YDD","name":"Scott D Brown","date":"2021-05-07","time":"0557","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-13","country":"United States","state":"GA","qth":"DACULA","lotw":"Y","dist":"860","grid":"EM84ab"},{"call":"W4GBY","name":"Stephanie I Bourgeois","date":"2021-05-20","time":"2108","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Vero Beach","lotw":"N","dist":"1382","grid":"EL97sp"},{"call":"I2AOX","name":"ALDO AIOLFI","date":"2021-05-20","time":"2130","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"Italy","state":"","qth":"26010 RIPALTA CREMASCA (CR)","lotw":"Y","dist":"8429","grid":"JN45UI"},{"call":"KD5WKK","name":"Randall L Booth","date":"2021-05-23","time":"1516","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-05","country":"United States","state":"TX","qth":"BULVERDE","lotw":"Y","dist":"549","grid":"EL09TQ"},{"call":"K7MOK","name":"SANG M LEE","date":"2021-05-23","time":"1521","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-18","country":"United States","state":"NM","qth":"Rio Rancho","lotw":"Y","dist":"1236","grid":"DM65PF"},{"call":"N9JAF","name":"JOHN A FAIRBURN","date":"2021-05-23","time":"1528","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+03","country":"United States","state":"IL","qth":"MANVILLE","lotw":"Y","dist":"1043","grid":"EN51OB"},{"call":"N0NJY","name":"Ricky D Donaldson","date":"2021-05-23","time":"1529","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"NC","qth":"Oak Island","lotw":"Y","dist":"1451","grid":"FM03VW"},{"call":"W8ENO/QRP","name":"Mark E O'Brien","date":"2021-05-23","time":"1534","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-12","country":"United States","state":"OH","qth":"Portsmouth","lotw":"Y","dist":"1193","grid":"EM88ns"},{"call":"K9SHY","name":"Stephen H Yancey","date":"2021-05-23","time":"1541","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+04","country":"United States","state":"IL","qth":"Belleville","lotw":"Y","dist":"745","grid":"EM48XM"},{"call":"KS4OT","name":"JIMMY N COLLIS","date":"2021-05-23","time":"1606","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-07","country":"United States","state":"GA","qth":"EATONTON","lotw":"Y","dist":"979","grid":"EM83IJ"},{"call":"KF0AIJ","name":"Andrew N Gemmell","date":"2021-05-23","time":"1611","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-11","country":"United States","state":"IA","qth":"Oskaloosa","lotw":"Y","dist":"977","grid":"EN31QG"},{"call":"K6RCS","name":"Randall Stone","date":"2021-05-24","time":"0519","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-15","country":"United States","state":"CA","qth":"Chico","lotw":"Y","dist":"2640","grid":"CM99BR"},{"call":"WA6HXA","name":"Henry V Marquez","date":"2021-05-24","time":"0521","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-22","country":"United States","state":"CA","qth":"Whittier","lotw":"N","dist":"2260","grid":"DM04xa"},{"call":"EA5JCG","name":"Jan Seifert","date":"2021-05-24","time":"0523","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-21","country":"Spain","state":"","qth":"La Manga del Mar Menor (Murcia)","lotw":"Y","dist":"8106","grid":"IM97PP"},{"call":"KJ6L","name":"MAXIMILIAN Y CHANG","date":"2021-05-24","time":"0529","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-16","country":"United States","state":"CA","qth":"FULLERTON","lotw":"Y","dist":"2256","grid":"DM13av"},{"call":"N3GX","name":"Alejandro Gonzalez","date":"2021-05-24","time":"0531","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-16","country":"United States","state":"VA","qth":"Chesapeake","lotw":"Y","dist":"1657","grid":"FM16UR"},{"call":"K9RJO","name":"RAYMOND P KASPRZAK","date":"2021-05-24","time":"1551","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-09","country":"United States","state":"IL","qth":"HUNTLEY","lotw":"Y","dist":"1161","grid":"EN52SD"},{"call":"N9WQP","name":"Jerry W Hankins, III","date":"2021-05-24","time":"1555","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-01","country":"United States","state":"IN","qth":"Terre Haute","lotw":"Y","dist":"946","grid":"EM69GJ"},{"call":"KW4SP","name":"Michael C Vest","date":"2021-05-24","time":"1602","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-07","country":"United States","state":"AL","qth":"Somerville","lotw":"Y","dist":"673","grid":"EM64NM"},{"call":"HC7AE/1","name":"Ricardo","date":"2021-05-24","time":"1606","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-06","country":"Ecuador","state":"","qth":"Quito","lotw":"Y","dist":"3981","grid":"FI09"},{"call":"N3GX","name":"Alejandro Gonzalez","date":"2021-05-24","time":"1611","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-11","country":"United States","state":"VA","qth":"Chesapeake","lotw":"Y","dist":"1657","grid":"FM16UR"},{"call":"W9HT","name":"Joshua J Long","date":"2021-05-24","time":"1615","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-02","country":"United States","state":"IN","qth":"New Haven","lotw":"N","dist":"1224","grid":"EN71lc"},{"call":"AE0DC","name":"Douglas W Coners","date":"2021-05-24","time":"1617","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-23","country":"United States","state":"MO","qth":"Foley","lotw":"Y","dist":"769","grid":"EM49OB"},{"call":"K4WPC","name":"Rodney W Burnette","date":"2021-05-24","time":"1622","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"+03","country":"United States","state":"VA","qth":"Salem","lotw":"Y","dist":"1349","grid":"EM97WI"},{"call":"W4IOE","name":"SIDNEY R HENDRICKS","date":"2021-05-24","time":"1632","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+15","country":"United States","state":"NC","qth":"FLETCHER","lotw":"Y","dist":"1085","grid":"EM85SK"},{"call":"KB6C","name":"DENNIS L HANLEY","date":"2021-05-24","time":"1634","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-06","country":"United States","state":"CA","qth":"Reseda","lotw":"Y","dist":"2307","grid":"DM04RE"},{"call":"KG9NS","name":"MATTHEW C FIELDS","date":"2021-05-24","time":"1635","band":"20M","mode":"FT8","rst_sent":"+10","rst_rcvd":"-13","country":"United States","state":"OH","qth":"Liberty Township","lotw":"Y","dist":"1133","grid":"EM79TJ"},{"call":"W0BLE","name":"GERALD V PIERSON, JR","date":"2021-05-24","time":"1643","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"IA","qth":"DES MOINES","lotw":"Y","dist":"1007","grid":"EN31eo"},{"call":"WB0TAX","name":"DENNIS D WATTERS","date":"2021-05-24","time":"1645","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-13","country":"United States","state":"LA","qth":"ELM GROVE","lotw":"Y","dist":"27","grid":"EM32gi"},{"call":"W0BLE","name":"GERALD V PIERSON, JR","date":"2021-05-24","time":"1648","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-10","country":"United States","state":"IA","qth":"DES MOINES","lotw":"N","dist":"1007","grid":"EN31"},{"call":"K4CY","name":"ROBERT C FURZER","date":"2021-05-24","time":"1650","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-18","country":"United States","state":"GA","qth":"ACWORTH","lotw":"N","dist":"849","grid":"EM74pa"},{"call":"W4JOV","name":"Raymond D Sturch","date":"2021-05-24","time":"1652","band":"20M","mode":"FT8","rst_sent":"+14","rst_rcvd":"+06","country":"United States","state":"AL","qth":"Daphne","lotw":"Y","dist":"589","grid":"EM60BP"},{"call":"AI0Y/9","name":"Joe Uhrich","date":"2021-05-24","time":"1653","band":"20M","mode":"FT8","rst_sent":"+11","rst_rcvd":"+00","country":"United States","state":"","qth":"","lotw":"Y","dist":"","grid":""},{"call":"CO2KY","name":"Jose Manuel V\u00e1zquez Fern\u00e1","date":"2021-05-24","time":"1655","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-07","country":"Cuba","state":"","qth":"Centro Habana, Ciudad Habana.","lotw":"N","dist":"1526","grid":"EL83td"},{"call":"K2HT","name":"HAROLD R THOMPSON","date":"2021-05-24","time":"1658","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-02","country":"United States","state":"MO","qth":"WELLSVILLE","lotw":"N","dist":"752","grid":"EM49fb"},{"call":"VA3EPM","name":"Mick Sebele","date":"2021-05-24","time":"1701","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-15","country":"Canada","state":"","qth":"Sarnia","lotw":"Y","dist":"1526","grid":"EN82TX"},{"call":"W4WDB","name":"Wesley D Broderick, Sr","date":"2021-05-24","time":"1710","band":"20M","mode":"FT8","rst_sent":"+15","rst_rcvd":"+10","country":"United States","state":"AL","qth":"FAirhope","lotw":"Y","dist":"597","grid":"EM60BM"},{"call":"KC8RKL","name":"Joseph W Fahrenholtz","date":"2021-05-24","time":"1717","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-15","country":"United States","state":"OH","qth":"Kettering","lotw":"Y","dist":"1169","grid":"EM79WP"},{"call":"KA0BOJ","name":"MATTHEW N ANDERSON","date":"2021-05-24","time":"1749","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-12","country":"United States","state":"NE","qth":"Raymond","lotw":"Y","dist":"975","grid":"EN11TB40"},{"call":"K4SQL","name":"F Hutch DeLoach","date":"2021-05-24","time":"1756","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"+07","country":"United States","state":"FL","qth":"Crawfordville","lotw":"Y","dist":"936","grid":"EM70UB"},{"call":"K4BDK","name":"BRUCE D KELSO","date":"2021-05-25","time":"1503","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+04","country":"United States","state":"AL","qth":"Moulton","lotw":"Y","dist":"655","grid":"EM64MH"},{"call":"KO4NR","name":"William R Smith","date":"2021-05-25","time":"1505","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+00","country":"United States","state":"AL","qth":"Madison","lotw":"N","dist":"624","grid":"EM64or"},{"call":"WP4RJO","name":"Carlos G Santiago-Ayala","date":"2021-05-25","time":"1507","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-16","country":"Puerto Rico","state":"","qth":"Fajardo","lotw":"N","dist":"3158","grid":"FK78eg"},{"call":"AG4QD","name":"SCOTT B WESTON","date":"2021-05-25","time":"1512","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-15","country":"United States","state":"GA","qth":"NEWNAN","lotw":"Y","dist":"844","grid":"EM73PL"},{"call":"KK4VPT","name":"STEVEN W FRAZIER","date":"2021-05-25","time":"1515","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+02","country":"United States","state":"TN","qth":"CORDOVA","lotw":"Y","dist":"471","grid":"EM55DE"},{"call":"W0WND","name":"Donald L Johnson","date":"2021-05-25","time":"1517","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-17","country":"United States","state":"KS","qth":"DODGE CITY","lotw":"Y","dist":"818","grid":"DM97XS"},{"call":"W5UGD","name":"JOHN M HOYT","date":"2021-05-25","time":"1520","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-05","country":"United States","state":"SC","qth":"Simpsonville","lotw":"Y","dist":"1084","grid":"EM84RT"},{"call":"W9MDB","name":"Michael D Black","date":"2021-05-25","time":"1526","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-12","country":"United States","state":"IL","qth":"Quincy","lotw":"Y","dist":"846","grid":"EM49hv"},{"call":"K9ZSR","name":"NEIL C LEVERANCE","date":"2021-05-25","time":"1529","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-01","country":"United States","state":"AZ","qth":"APACHE JUNCTION","lotw":"N","dist":"1668","grid":"DM43FJ"},{"call":"KB9RP","name":"Richard J Puent","date":"2021-05-25","time":"1530","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-20","country":"United States","state":"WI","qth":"Sparta","lotw":"Y","dist":"1286","grid":"EN43NV"},{"call":"KO4FHS","name":"Dianne B Martin","date":"2021-05-25","time":"1533","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"+02","country":"United States","state":"FL","qth":"Naples","lotw":"Y","dist":"1363","grid":"EL96EE"},{"call":"KF0AIT","name":"Todd A Smetana","date":"2021-05-25","time":"1539","band":"20M","mode":"FT8","rst_sent":"-23","rst_rcvd":"-15","country":"United States","state":"SD","qth":"BROOKINGS","lotw":"Y","dist":"1335","grid":"EN14OH"},{"call":"N7RTH","name":"Theodore F Harden, II","date":"2021-05-25","time":"1540","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-18","country":"United States","state":"AZ","qth":"Tempe","lotw":"N","dist":"1700","grid":"DM43ai"},{"call":"WD8AJD","name":"JOHN O CRIST","date":"2021-05-25","time":"1548","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-07","country":"United States","state":"OH","qth":"DAYTON","lotw":"Y","dist":"1166","grid":"EM79WP"},{"call":"AG4CE","name":"Carl B Garmong","date":"2021-05-25","time":"1553","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-21","country":"United States","state":"FL","qth":"STUART","lotw":"N","dist":"1423","grid":"EM74uh"},{"call":"VE4HTO","name":"Norbert Luster","date":"2021-05-25","time":"1555","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-02","country":"Canada","state":"","qth":"Beaconia","lotw":"Y","dist":"2011","grid":"EO10QL"},{"call":"WB3FYR","name":"Peter A Long","date":"2021-05-25","time":"1558","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-22","country":"United States","state":"NC","qth":"Hampstead","lotw":"Y","dist":"1501","grid":"FM14EJ"},{"call":"WD4CNO","name":"CHARLES H HOFFMAN","date":"2021-05-25","time":"1600","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+01","country":"United States","state":"FL","qth":"TAMPA","lotw":"Y","dist":"1190","grid":"EL87RW"},{"call":"W1KE","name":"KENNETH I HOLCOMBE","date":"2021-05-25","time":"1611","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-14","country":"United States","state":"TX","qth":"BOERNE","lotw":"Y","dist":"566","grid":"EL09PT"},{"call":"W0YGH","name":"RICHARD C HARKINS","date":"2021-05-25","time":"1621","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+02","country":"United States","state":"MO","qth":"LEES SUMMIT","lotw":"Y","dist":"703","grid":"EM28TU"},{"call":"W4F","name":"Gulf Coast Hurricanes Special Event - Flordia Station","date":"2021-05-25","time":"1942","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"MS","qth":"Purvis","lotw":"N","dist":"1263","grid":"EL98iq"},{"call":"K4OP","name":"John L McCarthy","date":"2021-05-25","time":"1948","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-12","country":"United States","state":"KY","qth":"VINE GROVE","lotw":"Y","dist":"913","grid":"EM77AT"},{"call":"NK1I","name":"Roger C Pushor","date":"2021-05-25","time":"1949","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-16","country":"United States","state":"ME","qth":"Falmouth","lotw":"Y","dist":"2383","grid":"FN43TT"},{"call":"KI0EB","name":"KEVIN A FONTES","date":"2021-05-25","time":"1953","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-13","country":"United States","state":"KY","qth":"MAYSLICK","lotw":"Y","dist":"1109","grid":"EM88BM"},{"call":"KK6LE","name":"JOHN R HOYE","date":"2021-05-25","time":"1955","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-08","country":"United States","state":"CA","qth":"SAN CLEMENTE","lotw":"Y","dist":"2227","grid":"DM13ej"},{"call":"WA6EJW","name":"DANIEL I SIMON","date":"2021-05-25","time":"1959","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-17","country":"United States","state":"CA","qth":"SOLVANG","lotw":"Y","dist":"2456","grid":"CM94VO"},{"call":"XE1NK","name":"ALBERTO IGLESIAS DARRIBA","date":"2021-05-25","time":"2003","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-15","country":"Mexico","state":"","qth":"MEXICO CITY 03901","lotw":"Y","dist":"1562","grid":"EK09KI"},{"call":"K0VM","name":"ALVIN H GROFF","date":"2021-05-26","time":"2000","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-06","country":"United States","state":"IA","qth":"CEDAR RAPIDS","lotw":"Y","dist":"1072","grid":"EN42DB"},{"call":"KB2YCW","name":"MARK W RUTHERFORD","date":"2021-05-26","time":"2013","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-10","country":"United States","state":"SC","qth":"Irmo","lotw":"Y","dist":"1175","grid":"EM94JC"},{"call":"N8FRI","name":"MICHAEL A HORN","date":"2021-05-26","time":"2018","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-16","country":"United States","state":"OH","qth":"FREMONT","lotw":"Y","dist":"1351","grid":"EN81JH"},{"call":"W9WH","name":"PETER E PERSON","date":"2021-05-26","time":"2021","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-12","country":"United States","state":"tn","qth":"Nashville","lotw":"Y","dist":"1251","grid":"EM66PA"},{"call":"KW4UM","name":"Naaman D Smith","date":"2021-05-26","time":"2024","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-03","country":"United States","state":"GA","qth":"Jasper","lotw":"Y","dist":"894","grid":"EM74TL"},{"call":"W8HF","name":"CHARLES S HALL","date":"2021-05-26","time":"2031","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-01","country":"United States","state":"OH","qth":"Wellington","lotw":"N","dist":"1428","grid":"EN81xj"},{"call":"K5JF","name":"Jeffery A Elkins","date":"2021-05-26","time":"2043","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-23","country":"United States","state":"FL","qth":"OCALA","lotw":"Y","dist":"1171","grid":"EL89XD"},{"call":"KI6HQT","name":"Kenneth G Hagler","date":"2021-05-26","time":"2106","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-05","country":"United States","state":"TX","qth":"Austin","lotw":"Y","dist":"460","grid":"EM10CG"},{"call":"WB4CTX","name":"Jimmy R Hicks","date":"2021-05-26","time":"2132","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-07","country":"United States","state":"KY","qth":"Brooksville","lotw":"Y","dist":"1106","grid":"EM78XQ"},{"call":"VE3ELL","name":"Russell Farrell","date":"2021-05-26","time":"2141","band":"20M","mode":"FT8","rst_sent":"+14","rst_rcvd":"+03","country":"Canada","state":"","qth":"ANGUS","lotw":"Y","dist":"1776","grid":"FN04BH"},{"call":"KC9VW","name":"MARC A ABRAMSON","date":"2021-05-26","time":"2143","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-04","country":"United States","state":"TX","qth":"HOUSTON","lotw":"Y","dist":"346","grid":"EL29FT"},{"call":"K3NOQ","name":"JOHN W RUPPRECHT","date":"2021-05-26","time":"2156","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"+07","country":"United States","state":"TX","qth":"Lago Vista","lotw":"N","dist":"469","grid":"EM00xk"},{"call":"NR0Q","name":"Matthew A Chambers","date":"2021-05-26","time":"2201","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-14","country":"United States","state":"MO","qth":"Moberly","lotw":"Y","dist":"576","grid":"EM39SJ"},{"call":"KY2T","name":"Dmytro Ostrenko","date":"2021-05-26","time":"2207","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-17","country":"United States","state":"NY","qth":"SUFFERN","lotw":"Y","dist":"1981","grid":"FN21WD"},{"call":"KP4ZZ","name":"JUAN RAUL ESCOBAR DEBIEN","date":"2021-05-26","time":"2214","band":"20M","mode":"FT8","rst_sent":"+11","rst_rcvd":"-11","country":"Puerto Rico","state":"","qth":"SAN JUAN","lotw":"N","dist":"3181","grid":"FK68"},{"call":"KF0ARQ","name":"Don W Weldon","date":"2021-05-26","time":"2216","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-04","country":"United States","state":"MO","qth":"Sedalia","lotw":"N","dist":"685","grid":"EM38jq"},{"call":"HK4SAN","name":"HUMBERTO CORREA","date":"2021-05-26","time":"2219","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-17","country":"Colombia","state":"","qth":"Medellin","lotw":"Y","dist":"3490","grid":"FJ26GD"},{"call":"K1BZ","name":"David H Larrabee","date":"2021-05-26","time":"2238","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"United States","state":"MD","qth":"Columbia","lotw":"Y","dist":"1685","grid":"FM19NE"},{"call":"KE8PQC","name":"Kevin S Nordstrom","date":"2021-05-26","time":"2240","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-01","country":"United States","state":"MI","qth":"Lawton","lotw":"N","dist":"1278","grid":"EN72CE"},{"call":"KD9EYW","name":"JAMES R SPITAELS","date":"2021-05-26","time":"2247","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-13","country":"United States","state":"IN","qth":"MISHAWAKA","lotw":"Y","dist":"1213","grid":"EN61VP"},{"call":"W7WHO","name":"DENNIS P DUKE","date":"2021-05-26","time":"2258","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-07","country":"United States","state":"OR","qth":"CROOKED RIVER RANCH","lotw":"N","dist":"2725","grid":"CN94il"},{"call":"CO7YMC","name":"Yordan Marrero C\u00e9spede","date":"2021-05-26","time":"2300","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-06","country":"Cuba","state":"","qth":"Teniente Ca\u00f1\u00f3n y Pancho Varona # 111 Reparto Vigia Camag\u00fcey","lotw":"N","dist":"1604","grid":"FL11BJ"},{"call":"CO2MX","name":"MIGUEL ARMANDO MATOS CEDE\u00d1","date":"2021-05-26","time":"2304","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-17","country":"Cuba","state":"","qth":"LOS PINOS. A. NARANJO HABANA","lotw":"Y","dist":"10355","grid":"EL83"},{"call":"W5MRE","name":"Charles S Ellington","date":"2021-05-26","time":"2323","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-11","country":"United States","state":"MS","qth":"Corinth","lotw":"N","dist":"549","grid":"EM54rw"},{"call":"VE3MZD","name":"Mike Alder","date":"2021-05-26","time":"2331","band":"20M","mode":"FT8","rst_sent":"+16","rst_rcvd":"-10","country":"Canada","state":"","qth":"Windsor, Ontario","lotw":"Y","dist":"1435","grid":"EN82LH"},{"call":"K5DSJ","name":"David L Consford","date":"2021-05-26","time":"2334","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-08","country":"United States","state":"TX","qth":"Spring","lotw":"Y","dist":"318","grid":"EM20HB"},{"call":"KP2BH","name":"JAMES SOTO","date":"2021-05-26","time":"2335","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-10","country":"US Virgin Islands","state":"","qth":"FREDERIKSTED","lotw":"Y","dist":"3322","grid":"FK77NQ"},{"call":"N8AWW","name":"STEPHEN SELINGER","date":"2021-05-26","time":"2339","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"+06","country":"United States","state":"MI","qth":"FARMINGTON HILLS","lotw":"Y","dist":"1433","grid":"EN82HL"},{"call":"VE2DA","name":"Danie Pelletier","date":"2021-05-26","time":"2344","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-01","country":"Canada","state":"","qth":"Saint-Jean-sur-Richelieu","lotw":"Y","dist":"2254","grid":"FN35"},{"call":"N7MDW","name":"Michael D Wright","date":"2021-05-26","time":"2345","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-08","country":"United States","state":"TN","qth":"Maryville","lotw":"Y","dist":"956","grid":"EM75XR"},{"call":"N8KPE","name":"PIETRO S ZEOLLA","date":"2021-05-26","time":"2347","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+04","country":"United States","state":"MI","qth":"Milford","lotw":"Y","dist":"1425","grid":"EN82EN"},{"call":"W5RCX","name":"ANTOINETTE HAUER","date":"2021-05-26","time":"2354","band":"20M","mode":"FT8","rst_sent":"+17","rst_rcvd":"+17","country":"United States","state":"TX","qth":"MARBLE FALLS","lotw":"Y","dist":"474","grid":"EM00WN"},{"call":"N4QXU","name":"DAVID F MURPHY","date":"2021-05-26","time":"2356","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-09","country":"United States","state":"SC","qth":"LADSON","lotw":"Y","dist":"1273","grid":"EM93WA"},{"call":"W5GDI","name":"GARY D IRONS","date":"2021-05-26","time":"2357","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-09","country":"United States","state":"TX","qth":"Skidmore","lotw":"Y","dist":"608","grid":"EL18EG"},{"call":"WB2UBW","name":"ROBERT A HARRIS","date":"2021-05-27","time":"0024","band":"40M","mode":"FT8","rst_sent":"+10","rst_rcvd":"-10","country":"United States","state":"KY","qth":"Franklin","lotw":"Y","dist":"812","grid":"EM66ST"},{"call":"KA2YNA","name":"CURTIS M SMITH","date":"2021-05-27","time":"1830","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-18","country":"United States","state":"NY","qth":"Cazenovia","lotw":"Y","dist":"1943","grid":"FN22BX"},{"call":"KL4NE","name":"Roberto S Macfie","date":"2021-05-27","time":"1848","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-18","country":"Alaska","state":"","qth":"Anchorage","lotw":"Y","dist":"5091","grid":"BP51BE"},{"call":"W7PK","name":"Bruce A Gutschmidt","date":"2021-05-27","time":"1854","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"+01","country":"United States","state":"AZ","qth":"St David","lotw":"Y","dist":"1554","grid":"DM41VV"},{"call":"W8MSP","name":"Les S Butler","date":"2021-05-27","time":"1917","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-02","country":"United States","state":"MI","qth":"Gregory","lotw":"Y","dist":"1391","grid":"EN72XL"},{"call":"KC8BGJ","name":"JAMES P FORGACS","date":"2021-05-27","time":"2009","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-04","country":"United States","state":"MI","qth":"Saline","lotw":"Y","dist":"1381","grid":"EN82CE"},{"call":"KN6JEK","name":"Steven B Guyot","date":"2021-05-27","time":"2012","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-18","country":"United States","state":"CA","qth":"SAN DIEGO","lotw":"Y","dist":"2200","grid":"DM12JQ"},{"call":"KK4UE","name":"James A Larsen","date":"2021-05-27","time":"2014","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"+07","country":"United States","state":"FL","qth":"Clearwater","lotw":"Y","dist":"1167","grid":"EL87PX"},{"call":"KH6GK","name":"Peter M Iverson","date":"2021-05-27","time":"2017","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-06","country":"United States","state":"CA","qth":"Carlsbad","lotw":"Y","dist":"2201","grid":"DM13IC"},{"call":"W0SP","name":"Frederick C Hollendorfer","date":"2021-05-27","time":"2023","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-15","country":"United States","state":"CO","qth":"WHEAT RIDGE","lotw":"Y","dist":"1301","grid":"DM79ks"},{"call":"WJ2D","name":"Paul (Mike) M SCOTT, SR","date":"2021-05-27","time":"2033","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-01","country":"United States","state":"NC","qth":"Tryon","lotw":"Y","dist":"1098","grid":"EM85VE"},{"call":"N8GHW","name":"WILLIAM R SWARTZ","date":"2021-05-27","time":"2045","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-17","country":"United States","state":"MI","qth":"ALTO","lotw":"N","dist":"1355","grid":"EN72gt"},{"call":"KA0BOJ","name":"MATTHEW N ANDERSON","date":"2021-05-27","time":"2047","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-06","country":"United States","state":"NE","qth":"Raymond","lotw":"Y","dist":"975","grid":"EN11TB40"},{"call":"AC9XW","name":"DOUGLAS S IVERSON","date":"2021-05-27","time":"2051","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-06","country":"United States","state":"WI","qth":"RIPON","lotw":"Y","dist":"1326","grid":"EN53OU"},{"call":"KD9OZD","name":"Edward T Goto","date":"2021-05-27","time":"2058","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-22","country":"United States","state":"WI","qth":"HALES CORNERS","lotw":"N","dist":"1239","grid":"EN52xw"},{"call":"KF0UR","name":"SHELDON W RADIN","date":"2021-05-27","time":"2108","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-11","country":"United States","state":"CO","qth":"COLORADO SPRINGS","lotw":"Y","dist":"1233","grid":"DM78NW"},{"call":"K9DEB","name":"Donald E Bolstad","date":"2021-05-27","time":"2110","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-19","country":"United States","state":"IL","qth":"HAWTHORN WOODS","lotw":"Y","dist":"1169","grid":"EN52xf"},{"call":"KD9MAP","name":"KERRY K TATLOW","date":"2021-05-27","time":"2115","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-15","country":"United States","state":"IL","qth":"ROCKFORD","lotw":"Y","dist":"1154","grid":"EN52LF"},{"call":"WP4OPF","name":"Doel A Morales Negron","date":"2021-05-27","time":"2141","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"+14","country":"United States","state":"FL","qth":"Citrus County","lotw":"N","dist":"1141","grid":"EL89SA"},{"call":"NU0Y","name":"BILL H STEPHENS","date":"2021-05-27","time":"2147","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-01","country":"United States","state":"KS","qth":"TOPEKA","lotw":"Y","dist":"744","grid":"EM29DA"},{"call":"KA1QAP","name":"JOHN F KENNEY, JR","date":"2021-05-27","time":"2154","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-14","country":"United States","state":"RI","qth":"SAUNDERSTOWN","lotw":"N","dist":"2200","grid":"FN41gm"},{"call":"WD9RJC","name":"Kyle S Ewing","date":"2021-05-27","time":"2156","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-15","country":"United States","state":"IL","qth":"Chicago","lotw":"Y","dist":"1175","grid":"EN61DX"},{"call":"KI5MIT","name":"Stacy Pharis","date":"2021-05-27","time":"2228","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-03","country":"United States","state":"NM","qth":"DEXTER","lotw":"Y","dist":"1006","grid":"DM73SH"},{"call":"KN6EWL","name":"Nicholas R Salyer","date":"2021-05-27","time":"2238","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-13","country":"United States","state":"CA","qth":"San Diego","lotw":"N","dist":"2188","grid":"DM12KV"},{"call":"N9NIX","name":"ROBERT M MCGRATH","date":"2021-05-27","time":"2252","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-20","country":"United States","state":"IL","qth":"WOODSTOCK","lotw":"N","dist":"1182","grid":"EN52sh"},{"call":"N9SEO","name":"KAYNE KRUSE","date":"2021-05-28","time":"0115","band":"80M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-14","country":"United States","state":"TX","qth":"AUSTIN","lotw":"Y","dist":"429","grid":"EM10ie"},{"call":"NG4C","name":"CONNIE A MERCER, JR","date":"2021-05-28","time":"0137","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-05","country":"United States","state":"NC","qth":"ELIZABETH CITY","lotw":"Y","dist":"1642","grid":"FM16TJ"},{"call":"W3US","name":"ROGER W SCHLAGHECK","date":"2021-05-28","time":"0211","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-15","country":"United States","state":"NC","qth":"Cary","lotw":"Y","dist":"1411","grid":"EL98AV"},{"call":"KA5ZHG","name":"JOHN C BREAUX, JR","date":"2021-05-28","time":"0213","band":"40M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-07","country":"United States","state":"LA","qth":"NEW IBERIA","lotw":"Y","dist":"333","grid":"EL49CX"},{"call":"W8PP","name":"PHILIP D PARSONS","date":"2021-05-28","time":"0217","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-15","country":"United States","state":"MI","qth":"RIVERVIEW","lotw":"Y","dist":"1414","grid":"EM89BR"},{"call":"VE2GSM","name":"Gilles Monette","date":"2021-05-28","time":"0240","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-11","country":"Canada","state":"QC","qth":"CANTLEY","lotw":"N","dist":"2112","grid":"FN25dn"},{"call":"KE6SHL","name":"RICHARD E PACK","date":"2021-05-28","time":"0242","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-03","country":"United States","state":"CA","qth":"FRESNO","lotw":"Y","dist":"2420","grid":"DM06DT"},{"call":"KC9RAX","name":"Scott Shepler","date":"2021-05-28","time":"0244","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-12","country":"United States","state":"IN","qth":"Marion","lotw":"Y","dist":"1144","grid":"EN70DN"},{"call":"KX4ZC","name":"Michael D Poole","date":"2021-05-28","time":"0251","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-06","country":"United States","state":"AL","qth":"Mc Calla","lotw":"Y","dist":"616","grid":"EM63KG"},{"call":"WA6HXA","name":"Henry V Marquez","date":"2021-05-28","time":"0254","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-17","country":"United States","state":"CA","qth":"Whittier","lotw":"N","dist":"2260","grid":"DM04xa"},{"call":"N2YNF","name":"HECTOR APONTE","date":"2021-05-28","time":"0300","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-13","country":"United States","state":"NJ","qth":"CLARK","lotw":"N","dist":"1947","grid":"FN20UP"},{"call":"AI4FR","name":"JOHN R WHITT, JR","date":"2021-05-28","time":"0306","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-09","country":"United States","state":"FL","qth":"Dade City","lotw":"Y","dist":"1180","grid":"EL88TJ"},{"call":"WN8J","name":"JEFFREY L SEIBERT","date":"2021-05-28","time":"0314","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-06","country":"United States","state":"MI","qth":"FENTON","lotw":"N","dist":"1442","grid":"EN82DT"},{"call":"KW4X","name":"THOMAS A COOK","date":"2021-05-28","time":"0321","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-07","country":"United States","state":"TN","qth":"SIGNAL MOUNTAIN","lotw":"Y","dist":"824","grid":"EM75"},{"call":"AA8OY","name":"JAMES W PYLE, JR","date":"2021-05-28","time":"0326","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-22","country":"United States","state":"OH","qth":"MENTOR","lotw":"Y","dist":"1493","grid":"EN91IP"},{"call":"KZ4KX","name":"Terry R Turner","date":"2021-05-28","time":"0331","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-15","country":"United States","state":"KY","qth":"Austin","lotw":"Y","dist":"844","grid":"EM66XT"},{"call":"AJ4M","name":"JAMES E SHELBY","date":"2021-05-28","time":"0340","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-21","country":"United States","state":"NC","qth":"RALEIGH","lotw":"Y","dist":"1431","grid":"FM05QU"},{"call":"KB5UNX","name":"Morrie C Pickler","date":"2021-05-28","time":"0358","band":"80M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"TX","qth":"Arlington","lotw":"Y","dist":"324","grid":"EM12KP"},{"call":"KA9FOX","name":"SCOTT E NEADER","date":"2021-05-28","time":"0402","band":"80M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-24","country":"United States","state":"WI","qth":"LA CROSSE","lotw":"Y","dist":"1271","grid":"EN43KS"},{"call":"AI0Y/9","name":"Joe Uhrich","date":"2021-05-28","time":"0403","band":"80M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-15","country":"United States","state":"IL","qth":"Orion","lotw":"Y","dist":"1024","grid":"EN41ti"},{"call":"N5BCA","name":"MICHAEL T CALLAHAN","date":"2021-05-28","time":"0451","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-03","country":"United States","state":"TX","qth":"RICHARDSON","lotw":"Y","dist":"289","grid":"EM12OX"},{"call":"NF5KF","name":"Claude Terrier","date":"2021-05-28","time":"0507","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-14","country":"United States","state":"FL","qth":"Plantation","lotw":"Y","dist":"1479","grid":"EL96UD"},{"call":"WA5VXI","name":"MANUEL A HOLLAND","date":"2021-05-28","time":"0513","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+02","country":"United States","state":"OK","qth":"TAHLEQUAH","lotw":"Y","dist":"384","grid":"EM25LT"},{"call":"W5XO","name":"DENNIS N ELY","date":"2021-05-28","time":"0521","band":"40M","mode":"FT8","rst_sent":"+19","rst_rcvd":"-01","country":"United States","state":"TX","qth":"GAUSE","lotw":"Y","dist":"348","grid":"EM10PS"},{"call":"W1KE","name":"KENNETH I HOLCOMBE","date":"2021-05-28","time":"0524","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-04","country":"United States","state":"TX","qth":"BOERNE","lotw":"Y","dist":"566","grid":"EL09PT"},{"call":"KH6U","name":"JOHN D MORGAN","date":"2021-05-28","time":"0527","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-17","country":"Hawaii","state":"","qth":"KAILUA","lotw":"Y","dist":"6374","grid":"BL11DI"},{"call":"KB9HGI","name":"STEVEN R BAKER, SR","date":"2021-05-28","time":"0539","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-07","country":"United States","state":"IL","qth":"QUINCY","lotw":"Y","dist":"850","grid":"EM49HW"},{"call":"WE8Q","name":"FRANCIS S MORGAN","date":"2021-05-30","time":"0047","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-17","country":"United States","state":"OH","qth":"Dayton","lotw":"Y","dist":"1170","grid":"EM79WQ"},{"call":"WB5OJJ","name":"Alfred M Harris","date":"2021-05-30","time":"0048","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"+01","country":"United States","state":"TX","qth":"Odessa","lotw":"N","dist":"818","grid":"DM81tv"},{"call":"W4CNA","name":"John H London","date":"2021-05-30","time":"0102","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-16","country":"United States","state":"NC","qth":"ASHEVILLE","lotw":"N","dist":"1023","grid":"EM85rm"},{"call":"KT8Z","name":"David B Bokor","date":"2021-05-30","time":"0113","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-12","country":"United States","state":"OH","qth":"Wooster","lotw":"Y","dist":"7998","grid":"EN90"},{"call":"AE0DC","name":"Douglas W Coners","date":"2021-05-30","time":"0115","band":"40M","mode":"FT8","rst_sent":"+06","rst_rcvd":"+00","country":"United States","state":"MO","qth":"Foley","lotw":"Y","dist":"769","grid":"EM49OB"},{"call":"KS9DX","name":"VIVIAN J RAMSTEDT","date":"2021-05-30","time":"0131","band":"40M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-14","country":"United States","state":"IL","qth":"ROCKFORD","lotw":"N","dist":"1153","grid":"EN52LF"},{"call":"NE8F","name":"Christopher S Burt","date":"2021-05-30","time":"0141","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-15","country":"United States","state":"VA","qth":"Ft Belvoir","lotw":"N","dist":"1643","grid":"FM18KQ"},{"call":"KO4HKC","name":"Thomas W Hardin, Sr","date":"2021-05-30","time":"0152","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-13","country":"United States","state":"SC","qth":"Aiken","lotw":"Y","dist":"1120","grid":"EM93DO"},{"call":"K5AJL","name":"Albert J Lousteau, IV","date":"2021-05-30","time":"0154","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-09","country":"United States","state":"LA","qth":"Baton Rouge","lotw":"Y","dist":"341","grid":"EM40KJ"},{"call":"KR0P","name":"JOHN A MARDOCK","date":"2021-05-31","time":"0456","band":"80M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-20","country":"United States","state":"NE","qth":"Firth","lotw":"Y","dist":"924","grid":"EN10RM"},{"call":"KW0FRE","name":"PETER MILNE","date":"2021-05-31","time":"0501","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-13","country":"United States","state":"MN","qth":"GRANADA","lotw":"Y","dist":"1243","grid":"FN54"},{"call":"KF0AIJ","name":"Andrew N Gemmell","date":"2021-05-31","time":"0504","band":"40M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-02","country":"United States","state":"IA","qth":"Oskaloosa","lotw":"Y","dist":"977","grid":"EN31QG"},{"call":"KL7TC","name":"WILLIAM E HUNSTEIN","date":"2021-05-31","time":"0506","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-21","country":"Alaska","state":"","qth":"Fairbanks","lotw":"Y","dist":"5090","grid":"BP64EV"},{"call":"KB1DBL","name":"MICHAEL L COURTENAY","date":"2021-05-31","time":"0514","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-15","country":"United States","state":"ME","qth":"WARREN","lotw":"N","dist":"2478","grid":"FN54jc"},{"call":"AG4QD","name":"SCOTT B WESTON","date":"2021-05-31","time":"0516","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-20","country":"United States","state":"GA","qth":"NEWNAN","lotw":"Y","dist":"844","grid":"EM73PL"},{"call":"KB1DBL","name":"Michael L Courtenay","date":"2021-05-31","time":"0522","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-12","country":"United States","state":"ME","qth":"WARREN","lotw":"N","dist":"2466","grid":"FN54"},{"call":"KF7TZ","name":"Kenneth A Chartier","date":"2021-05-31","time":"0529","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-14","country":"United States","state":"OR","qth":"Lakeview","lotw":"Y","dist":"2574","grid":"CN92TE"},{"call":"WB7BOW","name":"RICHARD L HORTON","date":"2021-05-31","time":"0531","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-14","country":"United States","state":"WA","qth":"OLYMPIA","lotw":"Y","dist":"2936","grid":"CN87OB"},{"call":"EA7CB","name":"ACACIO MANUEL LOPEZ CABRERA","date":"2021-05-31","time":"0535","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-19","country":"Spain","state":"","qth":"04230 , HUERCAL DE ALMERIA , ALMERIA","lotw":"Y","dist":"8011","grid":"IM86SV"},{"call":"KU8T","name":"Thomas R Rupp","date":"2021-06-01","time":"1832","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"IN","qth":"FORT WAYNE","lotw":"Y","dist":"1203","grid":"EN71ia"},{"call":"W1EJC","name":"BRUCE C BLACKMAN","date":"2021-06-01","time":"1857","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-17","country":"United States","state":"VT","qth":"Essex Junction","lotw":"N","dist":"2224","grid":"FN34lm"},{"call":"K9AZH","name":"CHARLES A SIMON","date":"2021-06-01","time":"1911","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-14","country":"United States","state":"IL","qth":"Glenview","lotw":"N","dist":"1181","grid":"EN62ad"},{"call":"K1WTF","name":"TYLER C KOHLER","date":"2021-06-01","time":"1922","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-17","country":"United States","state":"CO","qth":"BROOMFIELD","lotw":"Y","dist":"1307","grid":"DM79LW"},{"call":"KE8NQL","name":"Walter Radowenchuk","date":"2021-06-02","time":"2022","band":"20M","mode":"FT4","rst_sent":"-16","rst_rcvd":"-15","country":"United States","state":"OH","qth":"North Ridgeville","lotw":"Y","dist":"1431","grid":"EN91AJ"},{"call":"KA9WAR","name":"Arden D Nelson","date":"2021-06-02","time":"2023","band":"20M","mode":"FT4","rst_sent":"-02","rst_rcvd":"-13","country":"United States","state":"WI","qth":"Peshtigo","lotw":"Y","dist":"1483","grid":"EN65CB"},{"call":"K3UA","name":"PHILLIP I KOCH","date":"2021-06-02","time":"2023","band":"20M","mode":"FT4","rst_sent":"-18","rst_rcvd":"-03","country":"United States","state":"PA","qth":"IMPERIAL","lotw":"Y","dist":"1495","grid":"EN90VM"},{"call":"AA0HJ","name":"KENNETH L HADLEY","date":"2021-06-02","time":"2027","band":"20M","mode":"FT4","rst_sent":"-09","rst_rcvd":"+02","country":"United States","state":"KS","qth":"PHILLIPSBURG","lotw":"Y","dist":"948","grid":"EM09HS"},{"call":"N0VFJ","name":"Robert N Meyer","date":"2021-06-02","time":"2031","band":"20M","mode":"FT4","rst_sent":"-14","rst_rcvd":"-15","country":"United States","state":"FL","qth":"NORTH Port","lotw":"Y","dist":"1259","grid":"EL87UB"},{"call":"K4CY","name":"ROBERT C FURZER","date":"2021-06-02","time":"2033","band":"20M","mode":"FT4","rst_sent":"-12","rst_rcvd":"-10","country":"United States","state":"GA","qth":"ACWORTH","lotw":"N","dist":"849","grid":"EM74pa"},{"call":"W4QF","name":"RODNEY L EFIRD","date":"2021-06-03","time":"0021","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-18","country":"United States","state":"NC","qth":"CONCORD","lotw":"Y","dist":"1258","grid":"EM95si"},{"call":"WB5NFT","name":"TIMMY L MC KINNEY","date":"2021-06-03","time":"0026","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-05","country":"United States","state":"AR","qth":"BATESVILLE","lotw":"Y","dist":"406","grid":"EM45ES"},{"call":"KE8YP","name":"VERLE G RIDGLEY","date":"2021-06-03","time":"0034","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-16","country":"United States","state":"OH","qth":"ZANESVILLE","lotw":"Y","dist":"1330","grid":"EM99"},{"call":"WV8CKM","name":"CHARLES K MOORE, II","date":"2021-06-03","time":"0038","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-11","country":"United States","state":"OH","qth":"Troy","lotw":"Y","dist":"1192","grid":"EN70VB"},{"call":"W5BCA","name":"Bruce C Alfredson","date":"2021-06-03","time":"0044","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+26","country":"United States","state":"TX","qth":"Houston","lotw":"Y","dist":"362","grid":"EL29DS"},{"call":"NQ4D","name":"ROY L JOHNSON","date":"2021-06-03","time":"0050","band":"40M","mode":"FT8","rst_sent":"+06","rst_rcvd":"+06","country":"United States","state":"AL","qth":"HAYDEN","lotw":"Y","dist":"664","grid":"EM63OV97"},{"call":"WB5UDE","name":"James R Glover","date":"2021-06-03","time":"0051","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-20","country":"United States","state":"OK","qth":"Oklahoma City","lotw":"N","dist":"491","grid":"EM15dl"},{"call":"N9WQP","name":"Jerry W Hankins, III","date":"2021-06-03","time":"0105","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-13","country":"United States","state":"IN","qth":"Terre Haute","lotw":"Y","dist":"946","grid":"EM69GJ"},{"call":"KG5NP","name":"Paul B Shelton","date":"2021-06-03","time":"0112","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-11","country":"United States","state":"OK","qth":"Tulsa","lotw":"Y","dist":"437","grid":"EM26BA"},{"call":"KA1BQP","name":"MATTHEW R WHITE","date":"2021-06-03","time":"0143","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-15","country":"United States","state":"RI","qth":"Coventry","lotw":"Y","dist":"2201","grid":"FN41FQ"},{"call":"N1ZTB","name":"Erik C Lowell","date":"2021-06-03","time":"2047","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-22","country":"United States","state":"MA","qth":"BARRE","lotw":"Y","dist":"2188","grid":"FN32"},{"call":"N2YNF","name":"HECTOR APONTE","date":"2021-06-04","time":"1635","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"NJ","qth":"CLARK","lotw":"N","dist":"1947","grid":"FN20UP"},{"call":"N9WQP","name":"Jerry W Hankins, III","date":"2021-06-04","time":"1637","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-05","country":"United States","state":"IN","qth":"Terre Haute","lotw":"Y","dist":"946","grid":"EM69GJ"},{"call":"VA3LKI","name":"Michael Kenneth Moreau","date":"2021-06-04","time":"1641","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-12","country":"Canada","state":"ON","qth":"PORT MCNICOLL","lotw":"Y","dist":"1811","grid":"FN04cs"},{"call":"WA9THI","name":"Jerry W Hankins, Jr","date":"2021-06-04","time":"1644","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+05","country":"United States","state":"IN","qth":"North Terre Haute","lotw":"Y","dist":"970","grid":"EM69HN"},{"call":"WX1H","name":"Paul J Marciello","date":"2021-06-04","time":"1653","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-07","country":"United States","state":"VA","qth":"Chantilly","lotw":"Y","dist":"1626","grid":"FM18GV"},{"call":"KD8JBG","name":"Nicholas Roush","date":"2021-06-04","time":"1655","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+05","country":"United States","state":"MI","qth":"West Olive","lotw":"Y","dist":"1296","grid":"EN62wt"},{"call":"KB9NVI","name":"Thomas M Anderson","date":"2021-06-04","time":"1656","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-10","country":"United States","state":"IN","qth":"Evansville","lotw":"Y","dist":"816","grid":"EM67EX"},{"call":"KC3EF","name":"RICHARD A ROHRER","date":"2021-06-04","time":"1658","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-15","country":"United States","state":"FL","qth":"Gainesville","lotw":"Y","dist":"1123","grid":"EM77"},{"call":"WD4DSV","name":"BRUCE E DAGGETT","date":"2021-06-04","time":"1702","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-02","country":"United States","state":"FL","qth":"OVIEDO","lotw":"Y","dist":"1272","grid":"EL98JP"},{"call":"N3GTY","name":"WILLIAM L WAGAMAN, Jr","date":"2021-06-04","time":"1704","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-06","country":"United States","state":"NC","qth":"SPRING LAKE","lotw":"Y","dist":"1392","grid":"FM05MF"},{"call":"KF0DYR","name":"Joshua L Morrison","date":"2021-06-04","time":"1708","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-06","country":"United States","state":"CO","qth":"Peyton","lotw":"Y","dist":"1214","grid":"DM78QW44"},{"call":"AB1IP","name":"GARY T WONG","date":"2021-06-04","time":"1714","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-16","country":"United States","state":"UT","qth":"Salt Lake City","lotw":"Y","dist":"1856","grid":"DN40BS"},{"call":"NR0Q","name":"Matthew A Chambers","date":"2021-06-04","time":"1808","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-08","country":"United States","state":"MO","qth":"Moberly","lotw":"Y","dist":"576","grid":"EM39SJ"},{"call":"WA4CAS","name":"EMMIT M COLLINS, JR","date":"2021-06-04","time":"1827","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-05","country":"United States","state":"SC","qth":"BEAUFORT","lotw":"Y","dist":"1225","grid":"EM92QL"},{"call":"KF2D","name":"Jeffrey A Kohel","date":"2021-06-04","time":"1832","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-07","country":"United States","state":"SC","qth":"Walterboro","lotw":"Y","dist":"1216","grid":"EN70"},{"call":"AG7TH","name":"Gary E Hale","date":"2021-06-04","time":"1837","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-18","country":"United States","state":"OR","qth":"Blachly","lotw":"Y","dist":"2882","grid":"CN84FF"},{"call":"CE1PTT","name":"Bernie","date":"2021-06-04","time":"1838","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-07","country":"Chile","state":"","qth":"ARICA CHILE","lotw":"Y","dist":"6198","grid":"FH41"},{"call":"N9PA","name":"PHILIP J AMATO","date":"2021-06-04","time":"1840","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-16","country":"United States","state":"IL","qth":"CHICAGO","lotw":"Y","dist":"1173","grid":"EN61CX"},{"call":"N4SYF","name":"PHILIP C WEISS","date":"2021-06-04","time":"1842","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-08","country":"United States","state":"SC","qth":"CHAPIN","lotw":"Y","dist":"1157","grid":"EM94HD"},{"call":"K1KDA","name":"KENNETH D ALDRIDGE","date":"2021-06-04","time":"1843","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-18","country":"United States","state":"VA","qth":"Bristow","lotw":"N","dist":"1610","grid":"FM18FR"},{"call":"KB3SQX","name":"VIVEK WADHAWAN","date":"2021-06-04","time":"1902","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-18","country":"United States","state":"PA","qth":"CAMP HILL","lotw":"Y","dist":"1724","grid":"FN10MF"},{"call":"KG7KDJ","name":"JULIO C QUINTANA VERGARA","date":"2021-06-04","time":"1909","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-11","country":"United States","state":"AZ","qth":"TUCSON","lotw":"Y","dist":"1624","grid":"DM42"},{"call":"W3GAC","name":"ROBERT A LUFF","date":"2021-06-04","time":"1911","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-14","country":"United States","state":"MD","qth":"WITTMAN","lotw":"Y","dist":"1716","grid":"FM18"},{"call":"KE0YJJ","name":"Ricki D Haseltine","date":"2021-06-04","time":"1914","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"+01","country":"United States","state":"MN","qth":"Pine Island","lotw":"Y","dist":"1304","grid":"EN34PF"},{"call":"KO4ALW","name":"James M Painter","date":"2021-06-04","time":"1917","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-02","country":"United States","state":"FL","qth":"Royal Palm Beach","lotw":"Y","dist":"1453","grid":"EL96VQ"},{"call":"NB8B","name":"SUZANNE E Novak","date":"2021-06-04","time":"1918","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-02","country":"United States","state":"MI","qth":"Saginaw","lotw":"Y","dist":"11613","grid":"EN73XK"},{"call":"WB2BIN","name":"GREGORY B YATES","date":"2021-06-04","time":"1940","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-14","country":"United States","state":"NY","qth":"WHITESBORO","lotw":"Y","dist":"1989","grid":"FN23IC"},{"call":"K0MC","name":"MIKE S GREGORY","date":"2021-06-04","time":"1942","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-17","country":"United States","state":"CO","qth":"Stratton","lotw":"Y","dist":"1098","grid":"DM89QH"},{"call":"KD9JAI","name":"CHRISTOPHER J ROZMAN","date":"2021-06-04","time":"1946","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-01","country":"United States","state":"WI","qth":"WAUKESHA","lotw":"Y","dist":"1259","grid":"EN53UA"},{"call":"WW6Q","name":"ROY S JOLLY","date":"2021-06-04","time":"1954","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-05","country":"United States","state":"IN","qth":"Pleasant Lake","lotw":"Y","dist":"1284","grid":"EN71LO"},{"call":"K7SWT","name":"WILLIAM B LEWIS","date":"2021-06-04","time":"1959","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-17","country":"United States","state":"UT","qth":"VERNAL","lotw":"N","dist":"1666","grid":"DN50FL"},{"call":"KD0NMZ","name":"Michael J Guillaume","date":"2021-06-04","time":"2005","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-18","country":"United States","state":"IA","qth":"Sioux City","lotw":"Y","dist":"1129","grid":"EN12TL"},{"call":"HP1CDW","name":"HENRY LEWIS","date":"2021-06-04","time":"2006","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-17","country":"Panama","state":"","qth":"Costa del Este, Panama City","lotw":"Y","dist":"2997","grid":"FJ09GA"},{"call":"N4WJQ","name":"HOWARD S GENTRY","date":"2021-06-04","time":"2010","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"United States","state":"VA","qth":"EARLYSVILLE","lotw":"N","dist":"1511","grid":"FM08sd"},{"call":"WA9OJJ","name":"JAMES J ELSON","date":"2021-06-04","time":"2022","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+01","country":"United States","state":"PA","qth":"GIBSONIA","lotw":"Y","dist":"1525","grid":"FN00BP"},{"call":"N8NXN","name":"Priscilla A Blakeman","date":"2021-06-04","time":"2031","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-07","country":"United States","state":"MI","qth":"Portland","lotw":"Y","dist":"1382","grid":"EN72"},{"call":"NQ9R","name":"Richard H Quaas","date":"2021-06-04","time":"2221","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-19","country":"United States","state":"WI","qth":"Sharon","lotw":"Y","dist":"1191","grid":"EN52PM"},{"call":"K6HGF","name":"DOUG NELSON, Mr","date":"2021-06-04","time":"2224","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-19","country":"United States","state":"CA","qth":"NORTHRIDGE","lotw":"Y","dist":"2308","grid":"DM04RG"},{"call":"N3XH","name":"MICHAEL A KAPOLKA, III","date":"2021-06-04","time":"2227","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-15","country":"United States","state":"PA","qth":"Gouldsboro","lotw":"Y","dist":"1885","grid":"FN21GF"},{"call":"K6LUM","name":"Ronald Lum","date":"2021-06-04","time":"2231","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-13","country":"United States","state":"CA","qth":"San Diego","lotw":"Y","dist":"2188","grid":"DM12KW"},{"call":"PT2ZXR","name":"LEIF THALUND","date":"2021-06-04","time":"2239","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-18","country":"Brazil","state":"","qth":"71994-090 BRASILIA,DF","lotw":"Y","dist":"7251","grid":"GH54xd"},{"call":"KC1HXR","name":"Merrill B Clark","date":"2021-06-04","time":"2249","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-06","country":"United States","state":"MA","qth":"Merrimac","lotw":"N","dist":"2237","grid":"FN42lt"},{"call":"KC1KVA","name":"Merton E Kenniston","date":"2021-06-04","time":"2255","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-03","country":"United States","state":"MA","qth":"West Brookfield","lotw":"Y","dist":"2179","grid":"FN32WF"},{"call":"KM6OKZ","name":"Clement M Alberts","date":"2021-06-04","time":"2256","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"+03","country":"United States","state":"CA","qth":"Oxnard","lotw":"N","dist":"2372","grid":"DM04je"},{"call":"W2MJT","name":"mike J thees","date":"2021-06-04","time":"2258","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-18","country":"United States","state":"NJ","qth":"Beachwood","lotw":"N","dist":"1926","grid":"FM29vw"},{"call":"KM6OKZ","name":"Clement M Alberts","date":"2021-06-04","time":"2302","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"+03","country":"United States","state":"CA","qth":"Oxnard","lotw":"N","dist":"2372","grid":"DM04"},{"call":"N1GUV","name":"BRET J NEMETH","date":"2021-06-04","time":"2303","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-11","country":"United States","state":"CT","qth":"BROOKFIELD","lotw":"Y","dist":"2051","grid":"FN31GL21"},{"call":"F2YT","name":"PAUL-JOEL HERBET","date":"2021-06-04","time":"2306","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-17","country":"France","state":"","qth":"62690 - ESTREE-CAUCHY","lotw":"Y","dist":"7754","grid":"JO10"},{"call":"N7TTA","name":"ROBERT TOWNSEND","date":"2021-06-04","time":"2308","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-12","country":"United States","state":"AZ","qth":"TUCSON","lotw":"Y","dist":"1638","grid":"DM42KE"},{"call":"KK4WVP","name":"Donavan J Tollison","date":"2021-06-05","time":"0029","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+06","country":"United States","state":"FL","qth":"Wauchula","lotw":"N","dist":"1270","grid":"EL97CN"},{"call":"N9EA","name":"MARK W OREY","date":"2021-06-05","time":"0034","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-05","country":"United States","state":"IL","qth":"SILVIS","lotw":"Y","dist":"1039","grid":"EN41TM"},{"call":"KD5GFG","name":"Thomas K Mc Cullough","date":"2021-06-05","time":"0100","band":"40M","mode":"FT8","rst_sent":"+11","rst_rcvd":"-19","country":"United States","state":"LA","qth":"Slidell","lotw":"Y","dist":"441","grid":"EM50CH"},{"call":"VE3IJD","name":"Gene Wayne McDonald","date":"2021-06-05","time":"0102","band":"40M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-19","country":"Canada","state":"ON","qth":"KITCHENER","lotw":"N","dist":"1719","grid":"FN04cu"},{"call":"K1XHX","name":"Christopher J Stenning","date":"2021-06-05","time":"0105","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-20","country":"United States","state":"RI","qth":"East Greenwich","lotw":"Y","dist":"2210","grid":"FN41GQ"},{"call":"N1UL","name":"ULRICH L ROHDE, PhD","date":"2021-06-05","time":"0110","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-18","country":"United States","state":"FL","qth":"MARCO ISLAND","lotw":"N","dist":"1373","grid":"EL95dv"},{"call":"N5JHR","name":"LUKE A ROGERS","date":"2021-06-05","time":"0110","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-03","country":"United States","state":"AR","qth":"BENTON","lotw":"Y","dist":"249","grid":"EM34RN"},{"call":"N5HHS","name":"ROSS K BAKER","date":"2021-06-05","time":"0118","band":"40M","mode":"FT8","rst_sent":"+09","rst_rcvd":"-11","country":"United States","state":"TX","qth":"HOUSTON","lotw":"Y","dist":"346","grid":"EL29FU"},{"call":"WB4KTF","name":"Glen A Jenkins","date":"2021-06-05","time":"0121","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+02","country":"United States","state":"TX","qth":"Houston","lotw":"Y","dist":"454","grid":"EM10CI"},{"call":"KA6MJR","name":"Marlee J Remington","date":"2021-06-05","time":"0124","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-15","country":"United States","state":"CA","qth":"El Segundo","lotw":"Y","dist":"2298","grid":"DM03TW"},{"call":"K0FJ","name":"MICHAEL D ALBERS","date":"2021-06-05","time":"0158","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-18","country":"United States","state":"KS","qth":"COLBY","lotw":"Y","dist":"1008","grid":"DM99LJ"},{"call":"KM5TX","name":"Chalice K Stallings","date":"2021-06-05","time":"0202","band":"40M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-02","country":"United States","state":"TX","qth":"Angleton","lotw":"Y","dist":"410","grid":"EL29"},{"call":"PY1EME","name":"Bruce Halasz","date":"2021-06-05","time":"0205","band":"40M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-21","country":"Brazil","state":"","qth":"Atlantic Ocean island, near Paraty, Brazil","lotw":"Y","dist":"8096","grid":"GG76QT"},{"call":"K9LCY","name":"Richard J Pranitis","date":"2021-06-05","time":"0237","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-14","country":"United States","state":"IN","qth":"Carmel","lotw":"Y","dist":"1069","grid":"EM69wx"},{"call":"K3NP","name":"ANDREW E CRAIG","date":"2021-06-05","time":"0242","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"United States","state":"NC","qth":"CHARLOTTE","lotw":"Y","dist":"1209","grid":"EM95MC"},{"call":"K0RKL","name":"Gerald R Monk","date":"2021-06-05","time":"0258","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-06","country":"United States","state":"IA","qth":"Grundy Center","lotw":"Y","dist":"1095","grid":"EN32OI"},{"call":"R7NA","name":"Vladimir V. Gornostaev","date":"2021-06-05","time":"0322","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-15","country":"Russia","state":"","qth":"Shakhty, Rostovskaya obl,","lotw":"Y","dist":"9982","grid":"LN07CQ"},{"call":"RO7N","name":"Valeriy (Val) Golovenko","date":"2021-06-05","time":"0324","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-14","country":"Russia","state":"","qth":"Rostov-on-Don","lotw":"Y","dist":"9992","grid":"KN97UH"},{"call":"OD5ET","name":"Joe Tawil","date":"2021-06-05","time":"0334","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-21","country":"Lebanon","state":"","qth":"BEIRUT","lotw":"N","dist":"10884","grid":"KM73tw"},{"call":"UY2LA","name":"Alexander Glamazda","date":"2021-06-05","time":"0345","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-14","country":"Ukraine","state":"","qth":"Kharkiv obl","lotw":"N","dist":"10355","grid":"KN89"},{"call":"KD3FB","name":"LAWRENCE H DRAYTON","date":"2021-06-05","time":"0448","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-12","country":"United States","state":"MD","qth":"MONTGOMERY VILLAGE","lotw":"N","dist":"1658","grid":"FM19JE"},{"call":"KN7AW","name":"KENNETH A YAW","date":"2021-06-05","time":"0450","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-05","country":"United States","state":"NC","qth":"RALEIGH","lotw":"Y","dist":"1426","grid":"FM05QO"},{"call":"VA7MMW","name":"Montgomery Martin","date":"2021-06-05","time":"0451","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-25","country":"Canada","state":"","qth":"Vancouver","lotw":"Y","dist":"3062","grid":"CN89KG"},{"call":"KC7SVI","name":"PHILIP A HOUSEL","date":"2021-06-05","time":"0457","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-13","country":"United States","state":"WA","qth":"Bremerton","lotw":"Y","dist":"2953","grid":"CN87PN"},{"call":"KB8SRX","name":"Ronald J Chambers","date":"2021-06-05","time":"0459","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-15","country":"United States","state":"MI","qth":"Ypsilanti","lotw":"Y","dist":"1398","grid":"EN82EF"},{"call":"KN4MKB","name":"Billy D Penley","date":"2021-06-05","time":"0511","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-15","country":"United States","state":"KY","qth":"Richmond","lotw":"Y","dist":"1032","grid":"EM77US"},{"call":"K2JAX","name":"DAVID T SIMMONS","date":"2021-06-05","time":"0513","band":"40M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-05","country":"United States","state":"FL","qth":"JACKSONVILLE","lotw":"Y","dist":"1181","grid":"EM90FD"},{"call":"N4ATU","name":"STEPHEN D EDWARDS","date":"2021-06-05","time":"0525","band":"80M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-20","country":"United States","state":"TN","qth":"FLINTVILLE","lotw":"Y","dist":"724","grid":"EM65SA"},{"call":"N8RKC","name":"David W Coffey","date":"2021-06-05","time":"1756","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-02","country":"United States","state":"OH","qth":"Chillicothe","lotw":"N","dist":"1174","grid":"EM89lh"},{"call":"KG7VOX","name":"Gregory B Clements","date":"2021-06-05","time":"1757","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-24","country":"United States","state":"UT","qth":"Clearfield","lotw":"N","dist":"1888","grid":"DN30"},{"call":"WA8LRW","name":"KENWOOD H HALL","date":"2021-06-05","time":"1807","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-19","country":"United States","state":"OH","qth":"Kent","lotw":"Y","dist":"1456","grid":"EN91HE"},{"call":"KA7QJN","name":"DENNIS L PORTER","date":"2021-06-05","time":"1816","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-10","country":"United States","state":"UT","qth":"CEDAR CITY","lotw":"Y","dist":"1851","grid":"DM37LS"},{"call":"K8BHX","name":"Lawrence W Witker","date":"2021-06-05","time":"1818","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-05","country":"United States","state":"OH","qth":"Maumee","lotw":"Y","dist":"1338","grid":"EN81DN"},{"call":"W4XCO","name":"Stephen E Jolley","date":"2021-06-05","time":"1833","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-01","country":"United States","state":"FL","qth":"Perry","lotw":"N","dist":"997","grid":"EM80FD"},{"call":"KY4GS","name":"AMANDA PLEXICO","date":"2021-06-05","time":"1915","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-04","country":"United States","state":"SC","qth":"SYCAMORE","lotw":"Y","dist":"1159","grid":"EM93IA"},{"call":"VK2LX","name":"Grant J Rawstorn","date":"2021-06-06","time":"0504","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-10","country":"Australia","state":"","qth":"Bungendore, NSW","lotw":"Y","dist":"14280","grid":"QF44RS"},{"call":"LZ3CB","name":"Todor Ivanov","date":"2021-06-06","time":"0510","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-24","country":"Bulgaria","state":"","qth":"Burgas 8000","lotw":"Y","dist":"9743","grid":"KN32RL"},{"call":"SP6AZM","name":"Jan Matusiak","date":"2021-06-06","time":"0512","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-10","country":"Poland","state":"","qth":"Zawonia","lotw":"N","dist":"8514","grid":"JO81oi"},{"call":"KE5CDE","name":"KEVIN K BRISCOE","date":"2021-06-06","time":"0521","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-03","country":"United States","state":"TX","qth":"BELTON","lotw":"Y","dist":"393","grid":"EM10GX"},{"call":"N0VTY","name":"JONATHON D MERRITT","date":"2021-06-06","time":"0532","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"+01","country":"United States","state":"IA","qth":"BURLINGTON","lotw":"Y","dist":"941","grid":"EN40KR"},{"call":"JA1KIO","name":"Eiichi Kowata","date":"2021-06-06","time":"0537","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-14","country":"Japan","state":"","qth":"Inashiki City Ibaraki-Pref.","lotw":"Y","dist":"10553","grid":"QM05DX"},{"call":"K4QAL","name":"CHARLES E STUART","date":"2021-06-06","time":"0549","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-16","country":"United States","state":"LA","qth":"Slidell","lotw":"Y","dist":"451","grid":"EM50CF"},{"call":"WJ7F","name":"JAMES R JAQUET","date":"2021-06-06","time":"0551","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-14","country":"United States","state":"CA","qth":"MORGAN HILL","lotw":"Y","dist":"2591","grid":"CM97ED"},{"call":"KG6VMT","name":"CRAIG R MIRKIN","date":"2021-06-06","time":"0556","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-17","country":"United States","state":"CA","qth":"CORTE MADERA","lotw":"Y","dist":"2672","grid":"CM87RW"},{"call":"KC5JAR","name":"Darrell G Kirk","date":"2021-06-06","time":"0622","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-04","country":"United States","state":"TX","qth":"Katy","lotw":"Y","dist":"357","grid":"EL29DT"},{"call":"KC3OSD","name":"Michael A Bialecki","date":"2021-06-06","time":"0640","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"United States","state":"PA","qth":"Fairfield","lotw":"Y","dist":"1670","grid":"FM19IR"},{"call":"KC5YPU","name":"KELLY S BRADLEY","date":"2021-06-06","time":"0653","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-15","country":"United States","state":"TX","qth":"Lamesa","lotw":"Y","dist":"773","grid":"DM92AR"},{"call":"WA8TOD","name":"WARREN L ALLGYER","date":"2021-06-06","time":"0656","band":"40M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-08","country":"United States","state":"OH","qth":"Gnadenhutten","lotw":"N","dist":"1399","grid":"EN90gi"},{"call":"K2PS","name":"PETER A STAFFORD","date":"2021-06-06","time":"0700","band":"40M","mode":"FT8","rst_sent":"+12","rst_rcvd":"-03","country":"United States","state":"FL","qth":"The Villages","lotw":"Y","dist":"1192","grid":"EL98AV"},{"call":"K7BV","name":"DENNIS R MOTSCHENBACHER","date":"2021-06-08","time":"2105","band":"20M","mode":"FT8","rst_sent":"+09","rst_rcvd":"-17","country":"United States","state":"NC","qth":"TURKEY","lotw":"Y","dist":"1457","grid":"FM04VX"},{"call":"KE8RAJ","name":"Timothy J Wilkins","date":"2021-06-08","time":"2108","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-15","country":"United States","state":"MI","qth":"Middleville","lotw":"Y","dist":"1344","grid":"EN72HR"},{"call":"WB6SFW","name":"PETER F PRANZINI","date":"2021-06-08","time":"2253","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-11","country":"United States","state":"CA","qth":"SAN JOSE","lotw":"N","dist":"2611","grid":"CM97BJ"},{"call":"KS4OT","name":"JIMMY N COLLIS","date":"2021-06-09","time":"2004","band":"17M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-10","country":"United States","state":"GA","qth":"EATONTON","lotw":"Y","dist":"979","grid":"EM83IJ"},{"call":"KD2SXD","name":"Michael Robinson","date":"2021-06-09","time":"2006","band":"17M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-12","country":"United States","state":"FL","qth":"Jacksonville","lotw":"Y","dist":"1160","grid":"EM90DK"},{"call":"W7PCT","name":"KIM L OWEN","date":"2021-06-09","time":"2018","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-12","country":"United States","state":"OR","qth":"MOSIER","lotw":"N","dist":"2773","grid":"FM10"},{"call":"KD4YDC","name":"ROBERT W BURTON","date":"2021-06-09","time":"2024","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+04","country":"United States","state":"GA","qth":"FAYETTEVILLE","lotw":"N","dist":"869","grid":"EM83"},{"call":"KO4HKC","name":"Thomas W Hardin, Sr","date":"2021-06-09","time":"2038","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-16","country":"United States","state":"SC","qth":"Aiken","lotw":"Y","dist":"1120","grid":"EM93"},{"call":"WB8JUI","name":"RICHARD A CARRIER","date":"2021-06-09","time":"2049","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-07","country":"United States","state":"OH","qth":"BELLEVUE","lotw":"Y","dist":"1361","grid":"EN81NF"},{"call":"W7WHO","name":"DENNIS P DUKE","date":"2021-06-09","time":"2104","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-02","country":"United States","state":"OR","qth":"CROOKED RIVER RANCH","lotw":"N","dist":"2725","grid":"CN94il"},{"call":"VE7LGP","name":"Lloyd G. Pedersen","date":"2021-06-09","time":"2107","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-07","country":"Canada","state":"BC","qth":"MISSION","lotw":"N","dist":"3005","grid":"CN89ud"},{"call":"W5MRE","name":"Charles S Ellington","date":"2021-06-09","time":"2113","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-14","country":"United States","state":"MS","qth":"Corinth","lotw":"Y","dist":"496","grid":"EM54rw"},{"call":"KD9KAE","name":"David M Hansen","date":"2021-06-09","time":"2122","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-09","country":"United States","state":"IL","qth":"Orland Park","lotw":"N","dist":"1115","grid":"EN61bp"},{"call":"KR7LD","name":"Reed L Daniels","date":"2021-06-09","time":"2126","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+06","country":"United States","state":"ID","qth":"Rigby","lotw":"Y","dist":"2018","grid":"DN33XP"},{"call":"W6QZ","name":"Daniel J Farrell","date":"2021-06-09","time":"2128","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-14","country":"United States","state":"CA","qth":"ANAHEIM","lotw":"N","dist":"2314","grid":"DM13bu"},{"call":"KO4DWB","name":"Scott Smith","date":"2021-06-09","time":"2132","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-20","country":"United States","state":"KY","qth":"AUBURN","lotw":"N","dist":"799","grid":"EM66pu"},{"call":"WA2HIP","name":"JOHN R PETROCELLI","date":"2021-06-09","time":"2141","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-18","country":"United States","state":"ME","qth":"Brewer","lotw":"Y","dist":"2541","grid":"FN54ot"},{"call":"N7AGV","name":"Joseph L Hon","date":"2021-06-09","time":"2157","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-13","country":"United States","state":"MO","qth":"INDEPENDENCE","lotw":"Y","dist":"730","grid":"EM29TB"},{"call":"K8IJ","name":"Charles C Trice, Jr","date":"2021-06-09","time":"2201","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-06","country":"United States","state":"KY","qth":"Alexandria","lotw":"Y","dist":"1101","grid":"EM78TW"},{"call":"KI4TXP","name":"JOHN IVES","date":"2021-06-09","time":"2245","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-08","country":"United States","state":"DE","qth":"Ocean View","lotw":"Y","dist":"1805","grid":"FM28kn"},{"call":"DL2VEL","name":"Lutz Rosenthal","date":"2021-06-09","time":"2249","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-14","country":"Germany","state":"","qth":"79618 Rheinfelden","lotw":"Y","dist":"8174","grid":"JN37VO"},{"call":"LY2J","name":"Pranas Smilgevicius","date":"2021-06-09","time":"2255","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"Lithuania","state":"","qth":"Marijampoles raj. Liudvinavas","lotw":"Y","dist":"8628","grid":"KO14"},{"call":"OO9A","name":"Didier Dupont","date":"2021-06-09","time":"2259","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-21","country":"Belgium","state":"WV","qth":"Ruiselede","lotw":"N","dist":"7708","grid":"JO11qb"},{"call":"W6YTG","name":"C DAVID MAY","date":"2021-06-09","time":"2320","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-17","country":"United States","state":"MD","qth":"BEL AIR","lotw":"Y","dist":"1736","grid":"FM19TM"},{"call":"OK4RQ","name":"Pavel POK","date":"2021-06-09","time":"2337","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-09","country":"Czech Republic","state":"","qth":"CZ-323 00 PLZEN","lotw":"N","dist":"8393","grid":"JN69qs"},{"call":"N2OHP","name":"Brandon D Odom","date":"2021-06-09","time":"2340","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"+01","country":"United States","state":"FL","qth":"Crestview","lotw":"Y","dist":"718","grid":"EM60"},{"call":"K7REK","name":"Robert E Keenan","date":"2021-06-10","time":"0004","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-08","country":"United States","state":"OR","qth":"Portland","lotw":"N","dist":"2863","grid":"CN85"},{"call":"N1MIE","name":"George E Griffin","date":"2021-06-10","time":"0006","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+04","country":"United States","state":"CT","qth":"Griswold","lotw":"Y","dist":"2172","grid":"FN41BN"},{"call":"PD1WO","name":"Stef laponder","date":"2021-06-10","time":"0021","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-19","country":"Netherlands","state":"","qth":"4116 EK Buren","lotw":"Y","dist":"7787","grid":"JO21QV"},{"call":"YS1GMV","name":"MARIO MORAN","date":"2021-06-10","time":"0025","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-18","country":"El Salvador","state":"","qth":"San Salvador","lotw":"N","dist":"2144","grid":"EK53"},{"call":"CO7OI","name":"Oliden Gutierrez Osuna.","date":"2021-06-10","time":"0052","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-10","country":"Cuba","state":"","qth":"Ciego de Avila, CP 65100","lotw":"Y","dist":"1940","grid":"FL01SM55"},{"call":"W7KFO","name":"David B Freitag","date":"2021-06-10","time":"0104","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-15","country":"United States","state":"OR","qth":"Prineville","lotw":"N","dist":"2684","grid":"CN94nh"},{"call":"KE6SHL","name":"RICHARD E PACK","date":"2021-06-10","time":"0106","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-09","country":"United States","state":"CA","qth":"FRESNO","lotw":"Y","dist":"2420","grid":"DM06DT"},{"call":"KX9DX","name":"RICHARD L PILE","date":"2021-06-10","time":"1920","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-11","country":"United States","state":"IL","qth":"Springfield","lotw":"Y","dist":"889","grid":"EM59DU"},{"call":"KJ4IXG","name":"Michael L Rosen","date":"2021-06-10","time":"1921","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-11","country":"United States","state":"TN","qth":"Gallatin","lotw":"Y","dist":"794","grid":"EM66TJ"},{"call":"K3UA","name":"PHILLIP I KOCH","date":"2021-06-10","time":"1924","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"United States","state":"PA","qth":"IMPERIAL","lotw":"Y","dist":"1495","grid":"EN90VM"},{"call":"K9TDW","name":"Todd D Whitmer","date":"2021-06-10","time":"1925","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-13","country":"United States","state":"IL","qth":"Plano","lotw":"Y","dist":"1113","grid":"EN51SP"},{"call":"K2BAG","name":"John R Baggott","date":"2021-06-10","time":"1927","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"United States","state":"AZ","qth":"Phoenix","lotw":"Y","dist":"1711","grid":"DM33XP"},{"call":"K6TBC","name":"Daniel C Moynahan","date":"2021-06-10","time":"1948","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-03","country":"United States","state":"CA","qth":"Kernville","lotw":"Y","dist":"2297","grid":"DM05SS"},{"call":"XE2JX","name":"GUERRA CAZARES HIRAM OVIDIO","date":"2021-06-10","time":"1950","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-02","country":"Mexico","state":"","qth":"CALLE PAPAYO 1829 LOS BOSQUES ZIP-25710","lotw":"Y","dist":"971","grid":"DL96GW"},{"call":"KD9MER","name":"Zachary A Smith","date":"2021-06-10","time":"2000","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-08","country":"United States","state":"IN","qth":"Terre Haute","lotw":"Y","dist":"961","grid":"EM69HL"},{"call":"KD9NJC","name":"MICHAEL J MOLINE","date":"2021-06-10","time":"2003","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-10","country":"United States","state":"IL","qth":"ELMWOOD PARK","lotw":"Y","dist":"1165","grid":"EN61CV"},{"call":"N6HC","name":"ARNOLD I SHATZ","date":"2021-06-10","time":"2021","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+05","country":"United States","state":"CA","qth":"SANTA ANA","lotw":"Y","dist":"2240","grid":"DM13CS"},{"call":"K9YV","name":"Stephen A Fagan","date":"2021-06-10","time":"2028","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-13","country":"United States","state":"MO","qth":"Stewartsville","lotw":"Y","dist":"806","grid":"EM29RS"},{"call":"CO6XE","name":"Emilio Rafael Mart\ufffdnez Fern\ufffdnd","date":"2021-06-10","time":"2048","band":"20M","mode":"FT8","rst_sent":"+10","rst_rcvd":"+01","country":"Cuba","state":"","qth":"Sancti Spiritus","lotw":"Y","dist":"1835","grid":"FL01GW"},{"call":"WD8SCV","name":"PAUL D SCHULZ","date":"2021-06-10","time":"2057","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-16","country":"United States","state":"OH","qth":"ATHENS","lotw":"N","dist":"1291","grid":"EM89xh"},{"call":"VA6DWR","name":"Darren W Ratcliffe","date":"2021-06-10","time":"2104","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-20","country":"Canada","state":"AB","qth":"AIRDRIE","lotw":"Y","dist":"2659","grid":"DO21XG"},{"call":"W7JHR","name":"James H Ruff","date":"2021-06-10","time":"2115","band":"20M","mode":"FT8","rst_sent":"+12","rst_rcvd":"+00","country":"United States","state":"OR","qth":"Bend","lotw":"Y","dist":"2713","grid":"CN94HB"},{"call":"CO2AV","name":"ARGELIO VALDES GONZALEZ","date":"2021-06-10","time":"2351","band":"17M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-04","country":"Cuba","state":"","qth":"HABANA 10 500","lotw":"Y","dist":"1527","grid":"EL83TC"},{"call":"KS4OT","name":"JIMMY N COLLIS","date":"2021-06-10","time":"2357","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-03","country":"United States","state":"GA","qth":"EATONTON","lotw":"Y","dist":"979","grid":"EM83IJ"},{"call":"K4JGC","name":"James G Carver","date":"2021-06-11","time":"0000","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"United States","state":"FL","qth":"Tallahassee","lotw":"Y","dist":"934","grid":"EM70"},{"call":"AA7CT","name":"ROBERT J BRADLEY","date":"2021-06-11","time":"0010","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-18","country":"United States","state":"OR","qth":"SEASIDE","lotw":"Y","dist":"2975","grid":"CN86"},{"call":"VA3SKR","name":"Sunil Kardar","date":"2021-06-11","time":"0027","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+07","country":"Canada","state":"","qth":"BURLINGTON","lotw":"Y","dist":"1711","grid":"FN03CJ"},{"call":"YV7WGA","name":"Wolfgang G\ufffdmez Delgad","date":"2021-06-11","time":"0036","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+00","country":"Venezuela","state":"","qth":"Isla de Margarita, Estado Nueva Esparta","lotw":"Y","dist":"3871","grid":"FK80AX"},{"call":"KE8NKB","name":"Joseph A Bustamante","date":"2021-06-11","time":"0038","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-08","country":"United States","state":"MI","qth":"Dearborn","lotw":"Y","dist":"1422","grid":"EN82IH"},{"call":"SP2EWQ","name":"ALEKSANDER OTULAK","date":"2021-06-11","time":"0117","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-14","country":"Poland","state":"","qth":"JEZEWO","lotw":"Y","dist":"8439","grid":"JO93FN"},{"call":"KM6OKZ","name":"Clement M Alberts","date":"2021-06-11","time":"0128","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-07","country":"United States","state":"CA","qth":"Oxnard","lotw":"N","dist":"2433","grid":"DM04je"},{"call":"K8AGB","name":"DENNIS P MORIARTY","date":"2021-06-11","time":"0146","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-14","country":"United States","state":"OH","qth":"Canton","lotw":"N","dist":"1434","grid":"EN90ht"},{"call":"KX4TH","name":"Vladislav M Fomitcher","date":"2021-06-11","time":"0149","band":"20M","mode":"FT8","rst_sent":"+11","rst_rcvd":"","country":"United States","state":"FL","qth":"Naples","lotw":"N","dist":"1349","grid":"EL98"},{"call":"W1OR","name":"PETER J MARKOU","date":"2021-06-11","time":"0155","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-12","country":"United States","state":"MA","qth":"Westborough","lotw":"Y","dist":"2219","grid":"FN42EF"},{"call":"KD4MZM","name":"Eric T Owen","date":"2021-06-11","time":"2340","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"SARASOTA","lotw":"N","dist":"1225","grid":"EL87rg"},{"call":"K5KUA","name":"JOE G GIBSON","date":"2021-06-12","time":"0039","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"+16","country":"United States","state":"TX","qth":"GALVESTON","lotw":"Y","dist":"392","grid":"EL29ME"},{"call":"N5FPC","name":"Joseph M Percer","date":"2021-06-12","time":"0050","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-15","country":"United States","state":"TX","qth":"Round Rock","lotw":"Y","dist":"434","grid":"EM10EL"},{"call":"KC9MU","name":"Thomas C Hehner","date":"2021-06-12","time":"0057","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-01","country":"United States","state":"KY","qth":"Bowling Green","lotw":"N","dist":"978","grid":"EM66"},{"call":"WB5OJJ","name":"Alfred M Harris","date":"2021-06-12","time":"0101","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-14","country":"United States","state":"TX","qth":"Odessa","lotw":"N","dist":"818","grid":"DM81tv"},{"call":"K5AEA","name":"GARY M PARKER","date":"2021-06-12","time":"0103","band":"20M","mode":"FT8","rst_sent":"+13","rst_rcvd":"+03","country":"United States","state":"TX","qth":"Leander","lotw":"N","dist":"432","grid":"EM10dq"},{"call":"AB0TA","name":"JOHN R FOULKS","date":"2021-06-12","time":"0114","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-11","country":"United States","state":"MO","qth":"SAINT PETERS","lotw":"Y","dist":"749","grid":"EM48RS"},{"call":"KM6OKZ","name":"Clement M Alberts","date":"2021-06-12","time":"0116","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-17","country":"United States","state":"CA","qth":"Oxnard","lotw":"N","dist":"2372","grid":"DM04je"},{"call":"K0SD","name":"Stephen D Budensiek","date":"2021-06-12","time":"0118","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-17","country":"United States","state":"IN","qth":"Milton","lotw":"Y","dist":"1442","grid":"EM79"},{"call":"KE0VAA","name":"John R Beasley","date":"2021-06-12","time":"0154","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-14","country":"United States","state":"MO","qth":"Richland","lotw":"N","dist":"617","grid":"EM37SX"},{"call":"AF6O","name":"RONALD J FORSYTH","date":"2021-06-12","time":"0201","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-05","country":"United States","state":"CA","qth":"PINON HILLS","lotw":"Y","dist":"2224","grid":"DM14ej"},{"call":"WD9HSY","name":"BRIAN J BEDOE","date":"2021-06-12","time":"0203","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-13","country":"United States","state":"IL","qth":"MOKENA","lotw":"Y","dist":"1121","grid":"EN61BL"},{"call":"KD4QOF","name":"ALAN H ALSOBROOK","date":"2021-06-12","time":"0206","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-16","country":"United States","state":"FL","qth":"SAINT AUGUSTINE","lotw":"Y","dist":"1216","grid":"EL99IU"},{"call":"VE2TK","name":"\ufffdric Merle","date":"2021-06-12","time":"0424","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-13","country":"Canada","state":"QC","qth":"Gatineau","lotw":"Y","dist":"2106","grid":"FN25DK"},{"call":"K4BTR","name":"Blake R Terry","date":"2021-06-12","time":"0430","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-20","country":"United States","state":"AL","qth":"Athens","lotw":"N","dist":"651","grid":"EM64jt"},{"call":"W4BXA","name":"ELVIN O GILLILAND, JR","date":"2021-06-16","time":"2107","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-11","country":"United States","state":"GA","qth":"Cumming","lotw":"Y","dist":"902","grid":"EM74VF"},{"call":"W5CJ","name":"BARRY W MCDONALD","date":"2021-06-16","time":"2111","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-05","country":"United States","state":"TN","qth":"COLLIERVILLE","lotw":"Y","dist":"462","grid":"EM55DB"},{"call":"KA0BOJ","name":"MATTHEW N ANDERSON","date":"2021-06-16","time":"2112","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-12","country":"United States","state":"NE","qth":"Raymond","lotw":"Y","dist":"975","grid":"EN11TB40"},{"call":"W7HBL","name":"RICHARD L WILLIAMS","date":"2021-06-16","time":"2118","band":"20M","mode":"FT8","rst_sent":"+10","rst_rcvd":"-18","country":"United States","state":"UT","qth":"SANDY","lotw":"Y","dist":"1846","grid":"DN40BN"},{"call":"KC0IUY","name":"Rex L Easton","date":"2021-06-16","time":"2130","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-15","country":"United States","state":"KS","qth":"Topeka","lotw":"Y","dist":"744","grid":"EM29DA"},{"call":"KD9DJB","name":"ANDREW J ZIELINSKI","date":"2021-06-16","time":"2132","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-14","country":"United States","state":"IL","qth":"PALATINE","lotw":"Y","dist":"1178","grid":"EN52XD"},{"call":"NA5GA","name":"Gery L Allen","date":"2021-06-16","time":"2138","band":"20M","mode":"FT8","rst_sent":"+20","rst_rcvd":"-09","country":"United States","state":"OK","qth":"Edmond","lotw":"Y","dist":"494","grid":"EM15fp"},{"call":"KC9ZS","name":"David W Mc Kay","date":"2021-06-16","time":"2140","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+00","country":"United States","state":"WI","qth":"APPLETON","lotw":"N","dist":"1364","grid":"EN54sf"},{"call":"KU4ET","name":"MELVYN O SAMUELSON, JR","date":"2021-06-16","time":"2144","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+00","country":"United States","state":"GA","qth":"MACON","lotw":"Y","dist":"932","grid":"EM82CU"},{"call":"K5CAY","name":"Dan B Belcher","date":"2021-06-16","time":"2149","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-08","country":"United States","state":"OK","qth":"Tulsa","lotw":"Y","dist":"475","grid":"EM26ba"},{"call":"KN4WGE","name":"Andrew C Yant","date":"2021-06-16","time":"2206","band":"20M","mode":"FT4","rst_sent":"-10","rst_rcvd":"-04","country":"United States","state":"TN","qth":"Portland","lotw":"Y","dist":"802","grid":"EM66"},{"call":"ZF1EJ","name":"JAMES ANDREW EDEN","date":"2021-06-16","time":"2233","band":"20M","mode":"FT4","rst_sent":"+10","rst_rcvd":"-03","country":"Cayman Islands","state":"","qth":"-","lotw":"Y","dist":"1924","grid":"EK99IG"},{"call":"K5OMC","name":"Olin M Chamberlin","date":"2021-06-16","time":"2300","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-11","country":"United States","state":"MS","qth":"Lake Cormorant","lotw":"Y","dist":"290","grid":"EM44"},{"call":"K9KDS","name":"Kevin D Sweet","date":"2021-06-17","time":"2041","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-17","country":"United States","state":"IL","qth":"Waterloo","lotw":"Y","dist":"717","grid":"EM48WH"},{"call":"N0POH","name":"Wayne W Heinen","date":"2021-06-17","time":"2044","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-10","country":"United States","state":"CO","qth":"Aurora","lotw":"Y","dist":"1270","grid":"DM79OP"},{"call":"W6OHV","name":"GREG S HESS","date":"2021-06-17","time":"2058","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-10","country":"United States","state":"CA","qth":"Ontario","lotw":"Y","dist":"2229","grid":"DM14DB"},{"call":"W6AAJ","name":"JAMES M WARD","date":"2021-06-17","time":"2100","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-10","country":"United States","state":"CA","qth":"SAN DIEGO","lotw":"Y","dist":"2185","grid":"DM12KX"},{"call":"W7ONE","name":"Frederick A Dahn","date":"2021-06-17","time":"2113","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-12","country":"United States","state":"AZ","qth":"Payson","lotw":"Y","dist":"1645","grid":"DM44IF"},{"call":"CP6CL","name":"JOSE CARLOS LEON ORTEGA","date":"2021-06-18","time":"0017","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-16","country":"Bolivia","state":"","qth":"SANTA CRUZ DE LA SIERRA,","lotw":"Y","dist":"6469","grid":"FH82JF"},{"call":"KT4RC","name":"BRIAN J GALLAGHER","date":"2021-06-18","time":"0101","band":"40M","mode":"FT8","rst_sent":"+14","rst_rcvd":"+08","country":"United States","state":"TN","qth":"CULLEOKA","lotw":"Y","dist":"714","grid":"EM65OK"},{"call":"WB4IHY","name":"DAVID A PASCHAL","date":"2021-06-19","time":"2226","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-11","country":"United States","state":"NC","qth":"Pleasant Garden","lotw":"Y","dist":"1336","grid":"FM05CW"},{"call":"AA4RF","name":"Lewis R Mcallister","date":"2021-06-19","time":"2230","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-15","country":"United States","state":"VA","qth":"COVINGTON","lotw":"Y","dist":"1367","grid":"FM07"},{"call":"N5OUR","name":"Matthew K Johnson","date":"2021-06-20","time":"0116","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"TX","qth":"BORGER","lotw":"N","dist":"788","grid":"DM95hq"},{"call":"N8II","name":"Jeffrey W Hartley","date":"2021-06-20","time":"0139","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"WV","qth":"Shepherdstown","lotw":"Y","dist":"1621","grid":"FM19cj"},{"call":"KC4KV","name":"DAVID R HURR","date":"2021-06-23","time":"2139","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-18","country":"United States","state":"FL","qth":"Haines City","lotw":"N","dist":"1572","grid":"EL98"},{"call":"N9KT","name":"DAVID A SPOELSTRA","date":"2021-06-23","time":"2142","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-05","country":"United States","state":"IN","qth":"INDIANAPOLIS","lotw":"Y","dist":"1063","grid":"EM69WV"},{"call":"KZ4N","name":"Myron G Schneider","date":"2021-06-23","time":"2148","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-04","country":"United States","state":"KY","qth":"Shelbyville","lotw":"Y","dist":"991","grid":"EM78JE"},{"call":"KE5CVM","name":"Robert J Garcia","date":"2021-06-23","time":"2320","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-09","country":"United States","state":"TX","qth":"Corpus Christi","lotw":"Y","dist":"641","grid":"EL17EU"},{"call":"W7DO","name":"GARY A MARTEK","date":"2021-06-24","time":"2227","band":"17M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-16","country":"United States","state":"SC","qth":"Blythewood","lotw":"Y","dist":"1202","grid":"EM94nf"},{"call":"JG3TRB","name":"Junichi Shinohara","date":"2021-06-24","time":"2234","band":"17M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-23","country":"Japan","state":"","qth":"Kaiso-gun, Wakayama,","lotw":"Y","dist":"11004","grid":"PM74QD"},{"call":"EB3JT","name":"JORDI TARRIDA I SUBIRANA","date":"2021-06-24","time":"2301","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-23","country":"Spain","state":"","qth":"VILAFRANCA DEL PENEDES - BARCELONA","lotw":"Y","dist":"8095","grid":"JN01UI"},{"call":"N6LZ","name":"ROBERT W BEYER","date":"2021-06-24","time":"2306","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-06","country":"United States","state":"CA","qth":"COSTA MESA","lotw":"Y","dist":"2253","grid":"DM13BQ"},{"call":"KC1HXR","name":"Merrill B Clark","date":"2021-06-24","time":"2308","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-07","country":"United States","state":"MA","qth":"Merrimac","lotw":"Y","dist":"2287","grid":"FN42LT"},{"call":"KD2VAL","name":"Randy Austin","date":"2021-06-24","time":"2312","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-14","country":"United States","state":"NJ","qth":"Union Beach","lotw":"Y","dist":"1948","grid":"FN20VK"},{"call":"W7HU","name":"Elixander Valladares","date":"2021-06-25","time":"0032","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"CUTLER BAY","lotw":"Y","dist":"1511","grid":"EL95tn"},{"call":"ZL1BD","name":"AL WILSON","date":"2021-06-25","time":"0356","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"New Zealand","state":"","qth":"RD1, NGARUAWAHIA","lotw":"Y","dist":"12234","grid":"RF72NH"},{"call":"PD1AIQ","name":"JAN GLADE","date":"2021-06-25","time":"0401","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-21","country":"Netherlands","state":"","qth":"8231 BC LELYSTAD","lotw":"Y","dist":"7763","grid":"JO22RM"},{"call":"LZ2JE","name":"Vencislav (Vesko) Penkovski","date":"2021-06-25","time":"0407","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-09","country":"Bulgaria","state":"","qth":"Sofia","lotw":"Y","dist":"9459","grid":"KN13xl"},{"call":"EU1FQ","name":"Pogulyaev Nikolai V.","date":"2021-06-25","time":"0411","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-16","country":"Belarus","state":"","qth":"Minsk","lotw":"Y","dist":"8858","grid":"KO33"},{"call":"KA2LAC","name":"LLOYD S BLUEWEISS","date":"2021-06-25","time":"0415","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+07","country":"United States","state":"NY","qth":"RIDGE","lotw":"Y","dist":"2072","grid":"FN30NW"},{"call":"WH6ZT","name":"STEPHEN L WONG","date":"2021-06-25","time":"0424","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-19","country":"Hawaii","state":"","qth":"HONOLULU","lotw":"Y","dist":"6389","grid":"BL11AI"},{"call":"F5LOW","name":"Eric GEMON","date":"2021-06-25","time":"0455","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-18","country":"France","state":"","qth":"16100 SAINT-BRICE","lotw":"Y","dist":"7731","grid":"IN95UQ"},{"call":"KN6OXA","name":"Lee Campbell","date":"2021-06-25","time":"0502","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-16","country":"United States","state":"CA","qth":"Mountain View","lotw":"N","dist":"2697","grid":"CM87wk"},{"call":"EA7HY","name":"JOSE MANUEL AGARRADO PAV\ufffd","date":"2021-06-25","time":"0513","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-19","country":"Spain","state":"","qth":"11100 San Fernando (Cadiz)","lotw":"Y","dist":"7735","grid":"IM66VL"},{"call":"KG6OW","name":"BRUCE E CAHILL","date":"2021-06-25","time":"0519","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-20","country":"United States","state":"CA","qth":"LAGUNA BEACH","lotw":"N","dist":"2242","grid":"DM13cn"},{"call":"KN6OXA","name":"Lee Campbell","date":"2021-06-25","time":"0520","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-18","country":"United States","state":"CA","qth":"Mountain View","lotw":"Y","dist":"2632","grid":"CM87"},{"call":"W9SNH","name":"James J Ackerman","date":"2021-06-25","time":"1829","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"WI","qth":"Lancaster","lotw":"N","dist":"1176","grid":"EN42pu"},{"call":"KN6FDB","name":"Richard L Bassett","date":"2021-06-25","time":"2015","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-11","country":"United States","state":"CA","qth":"San Diego","lotw":"Y","dist":"2187","grid":"DM12KX"},{"call":"WD4CVK","name":"JAMES F GORMAN","date":"2021-06-25","time":"2021","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-11","country":"United States","state":"GA","qth":"BLAIRSVILLE","lotw":"Y","dist":"929","grid":"EM74XU"},{"call":"WD8JP","name":"JOHN C PATTON","date":"2021-06-25","time":"2026","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-06","country":"United States","state":"OH","qth":"DOYLESTOWN","lotw":"Y","dist":"1421","grid":"EN91DA"},{"call":"WB7CYO","name":"LELAND D BUNCH","date":"2021-06-25","time":"2028","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-15","country":"United States","state":"ID","qth":"TWIN FALLS","lotw":"N","dist":"2137","grid":"DN22so"},{"call":"N5IY","name":"MARTIN P DE SIMIO","date":"2021-06-25","time":"2030","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-16","country":"United States","state":"NM","qth":"Las Cruces","lotw":"Y","dist":"1191","grid":"DM62"},{"call":"K7DF","name":"THOMAS J FAGAN","date":"2021-06-25","time":"2102","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+10","country":"United States","state":"AZ","qth":"TUCSON","lotw":"Y","dist":"1602","grid":"DM42PB"},{"call":"KC1HXR","name":"Merrill B Clark","date":"2021-06-25","time":"2104","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-01","country":"United States","state":"MA","qth":"Merrimac","lotw":"Y","dist":"2287","grid":"FN42LT"},{"call":"W6ZO","name":"PHILLIP L SANDERS","date":"2021-06-25","time":"2326","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-18","country":"United States","state":"CA","qth":"ORANGEVALE","lotw":"Y","dist":"2570","grid":"CM98JQ"},{"call":"N8UVI","name":"FRANK K SCHMIDT","date":"2021-06-26","time":"1813","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"MI","qth":"Belding","lotw":"Y","dist":"1379","grid":"EN73HC"},{"call":"W8MCW","name":"Mark C Wheeler","date":"2021-06-26","time":"1821","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"MI","qth":"Brownstown","lotw":"Y","dist":"1407","grid":"EN82ID41"},{"call":"NY8T","name":"LARRY J LA VASEUR","date":"2021-06-26","time":"1824","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"HAZEL PARK","lotw":"Y","dist":"1444","grid":"EN82kl"},{"call":"K8UNS","name":"LIVONIA AMATEUR RADIO CLUB","date":"2021-06-26","time":"1826","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"MI","qth":"LIVONIA","lotw":"N","dist":"1423","grid":"EN82hj"},{"call":"W9YK","name":"E F BENSON","date":"2021-06-26","time":"1827","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"IL","qth":"ELMHURST","lotw":"Y","dist":"1159","grid":"EN61av"},{"call":"N8UVI","name":"FRANK K SCHMIDT","date":"2021-06-26","time":"1813","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"MI","qth":"Belding","lotw":"R","dist":"1379","grid":"EN73hb29"},{"call":"W8MCW","name":"Mark C Wheeler","date":"2021-06-26","time":"1821","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"MI","qth":"Brownstown","lotw":"R","dist":"1407","grid":"EN82id41"},{"call":"NY8T","name":"LARRY J LA VASEUR","date":"2021-06-26","time":"1824","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"HAZEL PARK","lotw":"R","dist":"1444","grid":"EN82kl"},{"call":"K8UNS","name":"LIVONIA AMATEUR RADIO CLUB","date":"2021-06-26","time":"1826","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"MI","qth":"LIVONIA","lotw":"R","dist":"1423","grid":"EN82hj"},{"call":"W9YK","name":"E F BENSON","date":"2021-06-26","time":"1827","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"IL","qth":"ELMHURST","lotw":"R","dist":"1159","grid":"EN61av"},{"call":"K4DKW","name":"JEFFREY A MEYER","date":"2021-06-26","time":"1833","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2B","country":"United States","state":"MI","qth":"Painesville","lotw":"R","dist":"1497","grid":"EN64"},{"call":"VE2CSP","name":"ASSOCIATION RADIO AMATEUR PORTNEUF INC.","date":"2021-06-26","time":"1854","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2E","country":"Canada","state":"QC","qth":"DONNACONA","lotw":"R","dist":"2437","grid":"FN46"},{"call":"KU4GC","name":"DIETOLF RAMM","date":"2021-06-26","time":"1857","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2D","country":"United States","state":"NC","qth":"HILLSBOROUGH","lotw":"R","dist":"1399","grid":"FM06lb"},{"call":"N8MME","name":"DAVID L GAMAGE","date":"2021-06-26","time":"1907","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"DAVISON","lotw":"R","dist":"1470","grid":"EN83ga"},{"call":"K4GHR","name":"Brent E Williams, 667","date":"2021-06-26","time":"1910","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"AL","qth":"Orange Beach","lotw":"R","dist":"876","grid":"EM73sx"},{"call":"K4AKS","name":"Richard G Coloyan","date":"2021-06-26","time":"1921","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"FL","qth":"PORT RICHEY","lotw":"R","dist":"1155","grid":"EL88ph"},{"call":"W8NK","name":"Terry L Williams","date":"2021-06-26","time":"1926","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"Freeport","lotw":"R","dist":"1357","grid":"EN72is38"},{"call":"W3WDK","name":"DONALD C WEAVER","date":"2021-06-26","time":"1929","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"PA","qth":"MC KEAN","lotw":"R","dist":"1592","grid":"EN92wa"},{"call":"W9LR","name":"WILLIAM L RIBISH","date":"2021-06-26","time":"1940","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"WI","qth":"NEW BERLIN","lotw":"R","dist":"1259","grid":"EN52"},{"call":"N0DL","name":"DAVID J LE VASSEUR","date":"2021-06-26","time":"1945","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"6A","country":"United States","state":"SD","qth":"WATERTOWN","lotw":"R","dist":"1406","grid":"EN14kv"},{"call":"W8MAL","name":"Michael A Lacumsky","date":"2021-06-26","time":"1956","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"7A","country":"United States","state":"OH","qth":"Oak Harbor","lotw":"R","dist":"1362","grid":"EN81kl11"},{"call":"W9UUU","name":"Wabash Valley Amateur Radio Association Inc","date":"2021-06-26","time":"2003","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"8A","country":"United States","state":"IN","qth":"Terre Haute","lotw":"R","dist":"955","grid":"EM69hl"},{"call":"N9ZE","name":"Steven C Jurasek","date":"2021-06-26","time":"2018","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"MI","qth":"Elmhurst","lotw":"R","dist":"1158","grid":"EN61av"},{"call":"N4GXX","name":"STEPHEN D STROM","date":"2021-06-26","time":"2020","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"CRESTVIEW","lotw":"R","dist":"703","grid":"EM60qr"},{"call":"N8H","name":"The Hell Schreibers from West MICHIGAN","date":"2021-06-26","time":"2025","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"OH","qth":"Rockford","lotw":"R","dist":"10355","grid":"JJ00aa"},{"call":"VA3NNW","name":"Nick Waterman","date":"2021-06-26","time":"2030","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"Canada","state":"ON","qth":"WATERLOO","lotw":"R","dist":"1671","grid":"EN93rl"},{"call":"KG5KUQ","name":"George G Robertson","date":"2021-06-26","time":"2036","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"Midland","lotw":"R","dist":"793","grid":"DM82wa54"},{"call":"K8UU","name":"DRAKE ARC CONTEST GROUP","date":"2021-06-26","time":"2038","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"OH","qth":"Springboro","lotw":"R","dist":"1157","grid":"EM79vn"},{"call":"W5YGS","name":"YANCY SHEPHERD","date":"2021-06-26","time":"2039","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"OK","qth":"Oklahoma City","lotw":"R","dist":"469","grid":"EM15fh"},{"call":"KD5QHV","name":"Bernard G Krasowski","date":"2021-06-26","time":"2041","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"El Paso","lotw":"R","dist":"1187","grid":"DM61us"},{"call":"W3ARO","name":"Wayne County Amateur Radio Club","date":"2021-06-26","time":"2046","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"5A","country":"United States","state":"PA","qth":"Waymart","lotw":"R","dist":"1898","grid":"FN21gn"},{"call":"W8GMM","name":"EAST PALESTINE AMATEUR RADIO CLUB","date":"2021-06-26","time":"2057","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"OH","qth":"East Palestine","lotw":"R","dist":"1491","grid":"EN90ru"},{"call":"KD2SSS","name":"Dane E Groszek","date":"2021-06-26","time":"2105","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NY","qth":"Middletown","lotw":"R","dist":"1965","grid":"FN21sk10"},{"call":"N5CET","name":"Charles E Troxel, Jr","date":"2021-06-26","time":"2124","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"TX","qth":"Alpine","lotw":"R","dist":"972","grid":"DM80eg83"},{"call":"W2C","name":"Warren County Radio Club Inc","date":"2021-06-26","time":"2132","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"5A","country":"United States","state":"NY","qth":"Glens Falls","lotw":"R","dist":"2037","grid":"FN30js"},{"call":"WO4D","name":"ORRIN M DELANEY","date":"2021-06-26","time":"2134","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"MELBOURNE","lotw":"R","dist":"1348","grid":"EL98qb"},{"call":"W5APO","name":"ROBERT C SWAIN","date":"2021-06-26","time":"2145","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"SAINT PETERSBURG","lotw":"R","dist":"1188","grid":"EL87qr"},{"call":"N4QEP","name":"CHARLES E STRNAD","date":"2021-06-26","time":"2223","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"MILTON","lotw":"R","dist":"667","grid":"EM60lo"},{"call":"K6RWM","name":"BOB MUELLER","date":"2021-06-26","time":"2337","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"CA","qth":"ALTA LOMA","lotw":"R","dist":"2224","grid":"DM14ed"},{"call":"W1DYJ","name":"Lawrence W Banks","date":"2021-06-26","time":"2342","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MA","qth":"Woburn","lotw":"R","dist":"2266","grid":"FN42kl"},{"call":"W9HH","name":"STEVEN J MARCUM","date":"2021-06-26","time":"2347","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"IL","qth":"STILLMAN VALLEY","lotw":"R","dist":"1136","grid":"EN52jc"},{"call":"KD7RF","name":"MICHAEL J MORONEY, III","date":"2021-06-27","time":"0008","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AL","qth":"New Market","lotw":"R","dist":"715","grid":"EM64rv93"},{"call":"K5JCN","name":"James C Nocker, Sr","date":"2021-06-27","time":"0016","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"OK","qth":"Edmond","lotw":"R","dist":"487","grid":"EM15gp"},{"call":"K4HY","name":"OWENSBORO AMATEUR RADIO CLUB","date":"2021-06-27","time":"0021","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"KY","qth":"Owensboro","lotw":"R","dist":"833","grid":"EM67ks"},{"call":"KG5MUC","name":"Kelley S Unger","date":"2021-06-27","time":"0028","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1F","country":"United States","state":"TX","qth":"Santa Fe","lotw":"R","dist":"376","grid":"EL29li72"},{"call":"AG5T","name":"MARTIN G BLAISE","date":"2021-06-27","time":"0048","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"HOUSTON","lotw":"R","dist":"342","grid":"EL29fu98"},{"call":"W8HW","name":"BRUCE L CAMPBELL","date":"2021-06-27","time":"0050","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"FL","qth":"PORT SAINT LUCIE","lotw":"R","dist":"1413","grid":"EL97tf65"},{"call":"K7DOD","name":"FRED DOEHRING","date":"2021-06-27","time":"0109","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"UT","qth":"SANDY","lotw":"R","dist":"1849","grid":"DN40bo42"},{"call":"K4KGM","name":"Kevin G Medlin","date":"2021-06-27","time":"0112","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"NC","qth":"Durham","lotw":"R","dist":"1412","grid":"FM06nb03"},{"call":"W4LX","name":"FORT MYERS AMATEUR RADIO CLUB","date":"2021-06-27","time":"0115","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"6A","country":"United States","state":"FL","qth":"Fort Myers","lotw":"R","dist":"1323","grid":"EL96cp"},{"call":"NG3Y","name":"Tadeusz Robak","date":"2021-06-27","time":"0118","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MD","qth":"COCKEYSVILLE","lotw":"R","dist":"1715","grid":"FM19ql"},{"call":"W4CHI","name":"Ronald T Barber","date":"2021-06-27","time":"0124","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NC","qth":"ASHEBORO","lotw":"R","dist":"1316","grid":"FM05br"},{"call":"WB4EHG","name":"Richard B Joerger","date":"2021-06-27","time":"0131","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"DAVIE","lotw":"R","dist":"1477","grid":"EL96tc"},{"call":"VE3NRT","name":"Christopher John Sullivan","date":"2021-06-27","time":"0134","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"Canada","state":"ON","qth":"AURORA","lotw":"R","dist":"1773","grid":"FN03gx"},{"call":"K3WEB","name":"Masonic Village Amateur Radio Club","date":"2021-06-27","time":"0143","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"4E","country":"United States","state":"PA","qth":"Elizabethtown","lotw":"R","dist":"1744","grid":"FN10qd"},{"call":"WJ8B","name":"ANDREW C SMITH","date":"2021-06-27","time":"0152","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3E","country":"United States","state":"OH","qth":"Gahanna","lotw":"R","dist":"1278","grid":"EN80na"},{"call":"W9AWX","name":"Gregg R Schulz","date":"2021-06-27","time":"0157","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"WI","qth":"Waukesha","lotw":"R","dist":"1264","grid":"EN53vb"},{"call":"W4AMC","name":"BRIGHT LEAF AMATEUR RADIO CLUB","date":"2021-06-27","time":"0159","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"NC","qth":"GREENVILLE","lotw":"R","dist":"1543","grid":"FM15hn"},{"call":"K4PH","name":"STEVEN T APPLETON","date":"2021-06-27","time":"0204","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"NC","qth":"LEXINGTON","lotw":"R","dist":"1284","grid":"EM95ur"},{"call":"N3DGE","name":"MICHAEL TRACHTENBERG","date":"2021-06-27","time":"0208","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2E","country":"United States","state":"PA","qth":"Philadelphia","lotw":"R","dist":"1849","grid":"FN20ja"},{"call":"K8RJH","name":"Ronald J Hollas","date":"2021-06-27","time":"0210","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"OH","qth":"Bedford","lotw":"R","dist":"1459","grid":"EN91fj"},{"call":"AC8TO","name":"Donald C Winsor","date":"2021-06-27","time":"0211","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"MI","qth":"Ann Arbor","lotw":"R","dist":"1386","grid":"EN82ce98"},{"call":"W8SSM","name":"Robert W Donaldson","date":"2021-06-27","time":"0214","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"MI","qth":"Sault Sainte Marie","lotw":"R","dist":"1739","grid":"EN76tk29"},{"call":"W2CBL","name":"Ohio Army National Guard Veterans Radio Club","date":"2021-06-27","time":"0216","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3E","country":"United States","state":"OH","qth":"Newark","lotw":"","dist":"1307","grid":"EN80sb"},{"call":"W4LHS","name":"COASTAL AMATEUR RADIO SOCIETY","date":"2021-06-27","time":"0237","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"GA","qth":"Tybee","lotw":"R","dist":"1183","grid":"EM91kx"},{"call":"KR4EE","name":"Jill Dybka","date":"2021-06-27","time":"0241","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TN","qth":"Sparta","lotw":"R","dist":"829","grid":"EM75dx"},{"call":"W4IZT","name":"Mountain Amateur Radio Contest Org","date":"2021-06-27","time":"0317","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"GA","qth":"Marietta","lotw":"R","dist":"874","grid":"EM85"},{"call":"N4N","name":"North Fulton Amateur Radio League","date":"2021-06-27","time":"0323","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"GA","qth":"Roswell","lotw":"R","dist":"883","grid":"EM74"},{"call":"W6ZE","name":"ORANGE COUNTY AMATEUR RADIO CLUB INC","date":"2021-06-27","time":"0351","band":"20M","mode":"SSB","rst_sent":"","rst_rcvd":"","country":"United States","state":"CA","qth":"Orange","lotw":"Y","dist":"2244","grid":"DM13cs"},{"call":"W7TBC","name":"THUNDERBIRD AMATEUR RADIO CLUB","date":"2021-06-27","time":"0422","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3D","country":"United States","state":"AZ","qth":"Phoenix","lotw":"R","dist":"1723","grid":"DM33vo"},{"call":"ND1J","name":"DAVID BLUBAUGH","date":"2021-06-27","time":"0429","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NC","qth":"Senoia","lotw":"R","dist":"859","grid":"EM73rh56"},{"call":"W8GVB","name":"MARION AMATEUR RADIO CLUB","date":"2021-06-27","time":"0447","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"OH","qth":"Marion","lotw":"R","dist":"1300","grid":"EN80lm"},{"call":"KD0MZT","name":"Christopher J Michas","date":"2021-06-27","time":"0455","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"CO","qth":"Denver","lotw":"R","dist":"1282","grid":"DM79mq"},{"call":"KD0ZSA","name":"Riverbend Wireless And Mechanical Society","date":"2021-06-27","time":"0520","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"MN","qth":"Faribault","lotw":"R","dist":"1310","grid":"EN34ih"},{"call":"N5MT","name":"MICHAEL A DAVIDSON","date":"2021-06-27","time":"0523","band":"80M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"LA","qth":"Denham Springs","lotw":"R","dist":"350","grid":"EM40"},{"call":"N5QXP","name":"FRANCISCO AGUILAR, JR","date":"2021-06-27","time":"0559","band":"80M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"SPRING","lotw":"R","dist":"312","grid":"EM20gd74"},{"call":"KP4ES","name":"PUERTO RICO AMATEUR RADIO LEAGUE","date":"2021-06-27","time":"0604","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"Puerto Rico","state":"PR","qth":"Humacao","lotw":"R","dist":"3173","grid":"FK78"},{"call":"W1J","name":"Boy Scouts of America Jamboree on The Air Daniel Webster Council","date":"2021-06-27","time":"0617","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"GA","qth":"Newmarket","lotw":"R","dist":"2308","grid":"EM74"},{"call":"K8MAO","name":"Andrew W Nichols","date":"2021-06-27","time":"0744","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"WV","qth":"Valley Bend","lotw":"R","dist":"1422","grid":"FM08"},{"call":"KA6BIM","name":"DAVID B TUCKER","date":"2021-06-27","time":"0748","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"2D","country":"United States","state":"OR","qth":"COQUILLE","lotw":"R","dist":"2898","grid":"CN73"},{"call":"W3VPR","name":"ANNE ARUNDEL RADIO CLUB","date":"2021-06-27","time":"0751","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"MD","qth":"Davidsonville","lotw":"R","dist":"1690","grid":"FM18qv"},{"call":"NK8O","name":"CHARLES W POWELL","date":"2021-06-27","time":"0805","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"AL","qth":"Louisburg","lotw":"R","dist":"683","grid":"EM63"},{"call":"AB1WG","name":"CLIFFORD A LANG","date":"2021-06-27","time":"0806","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"VT","qth":"Burlington","lotw":"R","dist":"2211","grid":"FN34"},{"call":"KC3QVQ","name":"Frederick J Roeper","date":"2021-06-27","time":"0813","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MD","qth":"Parkton","lotw":"R","dist":"1717","grid":"FM19"},{"call":"KW4XZ","name":"LARRY E BARKER","date":"2021-06-27","time":"0817","band":"40M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"VA","qth":"FREDERICKSBURG","lotw":"R","dist":"1600","grid":"FM18gg"},{"call":"WA7NB","name":"Arthur M Blank","date":"2021-06-27","time":"1729","band":"20M","mode":"SSB","rst_sent":"","rst_rcvd":"","country":"United States","state":"AZ","qth":"TUCSON","lotw":"N","dist":"1643","grid":"DM42jh"},{"call":"W6BDW","name":"BRIAN D WARSHAW","date":"2021-06-27","time":"1737","band":"20M","mode":"SSB","rst_sent":"","rst_rcvd":"","country":"United States","state":"CA","qth":"UPLAND, CA","lotw":"N","dist":"2228","grid":"DM14ED03"},{"call":"K8DF","name":"Central West Virginia Wireless Association","date":"2021-06-27","time":"1742","band":"20M","mode":"SSB","rst_sent":"","rst_rcvd":"","country":"United States","state":"WV","qth":"Clarksburg","lotw":"N","dist":"1415","grid":"EM99TG96"},{"call":"N4FA","name":"Richard Melnik","date":"2021-06-27","time":"1639","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"FL","qth":"Cape Coral","lotw":"R","dist":"1325","grid":"EL96bm65"},{"call":"W4KPR","name":"KINGS POINT AMATEUR CLUB","date":"2021-06-27","time":"1651","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3F","country":"United States","state":"FL","qth":"Sun City Center","lotw":"R","dist":"1214","grid":"EL87tr70"},{"call":"K7RE","name":"BRIAN D KASSEL","date":"2021-06-27","time":"1657","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"SD","qth":"SPEARFISH","lotw":"R","dist":"1600","grid":"DN84am"},{"call":"W7TBC","name":"THUNDERBIRD AMATEUR RADIO CLUB","date":"2021-06-27","time":"1701","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"3D","country":"United States","state":"AZ","qth":"Phoenix","lotw":"R","dist":"1723","grid":"DM33vo"},{"call":"KF0X","name":"Randall S Malick","date":"2021-06-27","time":"1710","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1F","country":"United States","state":"AZ","qth":"Oro Valley","lotw":"R","dist":"1614","grid":"DM42mk"},{"call":"KG7DYX","name":"Russell M Bohnhoff","date":"2021-06-27","time":"1715","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AZ","qth":"Tucson","lotw":"R","dist":"1636","grid":"DM42kh"},{"call":"K5OA","name":"RUSSELL J GUIDRY, SR","date":"2021-06-27","time":"1717","band":"20M","mode":"DIG","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"CA","qth":"Murrieta","lotw":"R","dist":"2161","grid":"DM14mg"},{"call":"IZ2FTR","name":"Tullio Fabbri","date":"2021-06-29","time":"2327","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-12","country":"Italy","state":"","qth":"Nave (BS)","lotw":"Y","dist":"8452","grid":"JN55DO"},{"call":"KK3KK","name":"Stanislaw G Galonski","date":"2021-06-29","time":"2339","band":"20M","mode":"FT8","rst_sent":"+13","rst_rcvd":"+00","country":"United States","state":"CA","qth":"Big Bear City","lotw":"Y","dist":"2262","grid":"DM14ng"},{"call":"W4MGL","name":"Marc G Lamb","date":"2021-06-29","time":"2341","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-10","country":"United States","state":"VA","qth":"Chesapeake","lotw":"Y","dist":"1660","grid":"FM16UR"},{"call":"UA3PAB","name":"Vladimir I. Sharpar","date":"2021-06-29","time":"2344","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-15","country":"Russia","state":"","qth":"Bolokhovo, Tulskaya obl.","lotw":"Y","dist":"10355","grid":"KO84VC"},{"call":"N6YQ","name":"Robert Harris","date":"2021-06-30","time":"0013","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-09","country":"United States","state":"CA","qth":"Adelanto","lotw":"Y","dist":"2203","grid":"DM14"},{"call":"VE3BQ","name":"Terry Moorby","date":"2021-06-30","time":"0016","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-03","country":"Canada","state":"ON","qth":"NEPEAN","lotw":"N","dist":"2099","grid":"FN25di"},{"call":"KI6ETL","name":"David A Breiland","date":"2021-06-30","time":"0018","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-05","country":"United States","state":"CA","qth":"San Jose","lotw":"Y","dist":"2603","grid":"CM97CF"},{"call":"C6ACB","name":"Kinson Deleveaux","date":"2021-07-01","time":"1933","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-05","country":"Bahamas","state":"","qth":"Nassau Bahamas","lotw":"Y","dist":"1794","grid":"FL15HA"},{"call":"K2B","name":"Rhonda Burch","date":"2021-07-02","time":"0040","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"VA","qth":"Evington","lotw":"N","dist":"1420","grid":"FM07jg"},{"call":"W8TU","name":"JAMES S FRISBIE, II","date":"2021-07-02","time":"0106","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+00","country":"United States","state":"MI","qth":"PLYMOUTH","lotw":"Y","dist":"1416","grid":"EN82GI"},{"call":"CO6XE","name":"Emilio Rafael Mart\ufffdnez Fern\ufffdnde","date":"2021-07-02","time":"0121","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-08","country":"Cuba","state":"","qth":"Sancti Spiritus","lotw":"Y","dist":"1835","grid":"FL01GW"},{"call":"KC3PSX","name":"James M Rominski, Jr","date":"2021-07-02","time":"0129","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-17","country":"United States","state":"PA","qth":"New Bethlehem","lotw":"Y","dist":"1581","grid":"FN00HX"},{"call":"N6YEL","name":"WILLIAM E ACEVES, II","date":"2021-07-02","time":"0132","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-24","country":"United States","state":"CO","qth":"PARKER","lotw":"N","dist":"1256","grid":"DM79pm"},{"call":"K6BRN","name":"BRIAN A CLEBOWICZ","date":"2021-07-02","time":"0141","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-15","country":"United States","state":"CA","qth":"Manhattan Beach","lotw":"Y","dist":"2295","grid":"FN31"},{"call":"WA3THL","name":"ROBERT D MORRIS","date":"2021-07-02","time":"0151","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-17","country":"United States","state":"DE","qth":"WILMINGTON","lotw":"Y","dist":"1818","grid":"FM29FU"},{"call":"CO5DOR","name":"David Ortega Alberto","date":"2021-07-02","time":"0155","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"Cuba","state":"","qth":"Matanzas","lotw":"Y","dist":"1604","grid":"EL93fa"},{"call":"OZ1RH","name":"PALLE PREBEN-HANSEN","date":"2021-07-02","time":"0157","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-02","country":"Denmark","state":"","qth":"Store Merl\ufffdse, DENMARK","lotw":"Y","dist":"7949","grid":"JO55tn"},{"call":"WA3VXJ","name":"KARL F PASTORAK","date":"2021-07-02","time":"0200","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-06","country":"United States","state":"PA","qth":"CARNEGIE","lotw":"N","dist":"1496","grid":"EN90"},{"call":"KB1IVE","name":"STEPHEN D JOHNSON","date":"2021-07-02","time":"0205","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-06","country":"United States","state":"NY","qth":"Fort Edward","lotw":"N","dist":"2122","grid":"FN33FG"},{"call":"HK3RAY","name":"ROBERTO (BOB) PAULINA G.","date":"2021-07-02","time":"0208","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-15","country":"Colombia","state":"","qth":"BOGOTA D.C.","lotw":"Y","dist":"3708","grid":"FJ24WP"},{"call":"CO5DOR","name":"David Ortega Alberto","date":"2021-07-02","time":"0223","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-13","country":"Cuba","state":"","qth":"Matanzas","lotw":"N","dist":"1604","grid":"EL93FA"},{"call":"KC3OJV","name":"Anthony B Rossi","date":"2021-07-02","time":"0231","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-04","country":"United States","state":"PA","qth":"Lititz","lotw":"N","dist":"1772","grid":"FN10ud"},{"call":"N9YZG","name":"THOMAS A GRUBER","date":"2021-07-02","time":"0234","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"+00","country":"United States","state":"IL","qth":"CHICAGO","lotw":"Y","dist":"1154","grid":"EN61CT"},{"call":"HK3UA","name":"MARIO GARCIA","date":"2021-07-02","time":"0250","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-10","country":"Colombia","state":"","qth":"MIAMI, FL , 33102-5242","lotw":"Y","dist":"3707","grid":"FJ24WP"},{"call":"K7DHR","name":"DON H RAWLINSON","date":"2021-07-02","time":"0252","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-11","country":"United States","state":"UT","qth":"Pleasant Grove","lotw":"Y","dist":"1826","grid":"DN40DI"},{"call":"K2D","name":"Doug Gerard - NP2GG","date":"2021-07-02","time":"0255","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+00","country":"United States","state":"CT","qth":"New Hartford","lotw":"Y","dist":"1853","grid":"FN31"},{"call":"W5MH","name":"CHARLES J GANUCHEAU, JR","date":"2021-07-02","time":"0258","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-06","country":"United States","state":"AZ","qth":"Gilbert","lotw":"Y","dist":"1685","grid":"DM43CJ"},{"call":"HI3MM","name":"Cesar Martinez","date":"2021-07-02","time":"0302","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-06","country":"Dominican Republic","state":"","qth":"SANTIAGO","lotw":"Y","dist":"2707","grid":"FK49pl"},{"call":"K7DTB","name":"David T Bly","date":"2021-07-02","time":"0308","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-01","country":"United States","state":"AZ","qth":"Sierra Vista","lotw":"Y","dist":"1564","grid":"DM41UN"},{"call":"UT3RS","name":"Serhii Nedilko","date":"2021-07-02","time":"0320","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-15","country":"Ukraine","state":"","qth":"Pryluky, ul. Rakitna, 51","lotw":"Y","dist":"9368","grid":"KO60EN"},{"call":"UR3HC","name":"Alexander S. Nakonechny","date":"2021-07-02","time":"0339","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-11","country":"Ukraine","state":"","qth":"KREMENCHUK","lotw":"Y","dist":"9526","grid":"KN69PE"},{"call":"KB0US","name":"MARK W ROSNECK","date":"2021-07-02","time":"0353","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-08","country":"United States","state":"ID","qth":"Twin Falls","lotw":"Y","dist":"2134","grid":"DN22"},{"call":"YO9HP","name":"Alex Panoiu","date":"2021-07-02","time":"0356","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-18","country":"Romania","state":"","qth":"PLEASA, Prahova, RO-107113","lotw":"Y","dist":"9472","grid":"KN35BA"},{"call":"K2G","name":"Nathan H. Wood","date":"2021-07-02","time":"0425","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"GA","qth":"Powder Springs","lotw":"N","dist":"850","grid":"EM73pv"},{"call":"K2M","name":"13 Colonies Pa Special Event Station","date":"2021-07-02","time":"0434","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"PA","qth":"New Kensington","lotw":"N","dist":"1895","grid":"FN22bc"},{"call":"W4RN","name":"mike","date":"2021-06-11","time":"1857","band":"10M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"VA","qth":"ROUND HILL","lotw":"Y","dist":"1603","grid":"FM19cb"},{"call":"W0YES","name":"Patrick W Gearty","date":"2021-06-11","time":"1912","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"WI","qth":"Plymouth","lotw":"Y","dist":"1539","grid":"EN36xh"},{"call":"KU8T","name":"THOMAS R RUPP","date":"2021-06-11","time":"1921","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"IN","qth":"FORT WAYNE","lotw":"Y","dist":"1203","grid":"EN71ia"},{"call":"WA9THI","name":"Jerry W Hankins, Jr","date":"2021-07-02","time":"0620","band":"80M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-10","country":"United States","state":"IN","qth":"North Terre Haute","lotw":"Y","dist":"970","grid":"EM69HN"},{"call":"EA8TL","name":"JORGE GARCIA","date":"2021-07-02","time":"0629","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-15","country":"Canary Islands","state":"","qth":"Tenerife island (remote control station)","lotw":"Y","dist":"7223","grid":"IL18NF"},{"call":"K2L","name":"The Annual 13 Colonies Special Event July 1 through July 7, 2021","date":"2021-07-02","time":"0635","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-17","country":"United States","state":"SC","qth":"Beaufort","lotw":"N","dist":"1390","grid":"FM02"},{"call":"9Y4DG","name":"DEV GOSINE","date":"2021-07-02","time":"0642","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-23","country":"Trinidad and Tobago","state":"","qth":"San Fernando","lotw":"Y","dist":"4130","grid":"FK90GF"},{"call":"EC8AXS","name":"Alfonso Delgado","date":"2021-07-02","time":"0651","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"Canary Islands","state":"","qth":"MASDACHE 35572 ( TIAS ) . LANZAROTE ISLAND","lotw":"N","dist":"7409","grid":"IL38ex"},{"call":"W8MSC","name":"Michael S Case","date":"2021-07-02","time":"1750","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-11","country":"United States","state":"MI","qth":"SOUTH LYON","lotw":"N","dist":"1382","grid":"EN82el"},{"call":"AA0DY","name":"Paul M Coleman","date":"2021-07-02","time":"1756","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-18","country":"United States","state":"CO","qth":"Colorado Springs","lotw":"N","dist":"1272","grid":"DM78"},{"call":"KD2SXD","name":"Michael Robinson","date":"2021-07-02","time":"1807","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Jacksonville","lotw":"N","dist":"1159","grid":"EM90dk"},{"call":"K2L","name":"The Annual 13 Colonies Special Event July 1 Through July 7, 2021","date":"2021-07-02","time":"1814","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"SC","qth":"Beaufort","lotw":"Y","dist":"1390","grid":"EN82cg"},{"call":"KO4PKC","name":"Isaac D Simmons","date":"2021-07-02","time":"2106","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-06","country":"United States","state":"FL","qth":"Gainesville","lotw":"Y","dist":"1130","grid":"EL89UP"},{"call":"K2J","name":"13 Colonies Special Event - North Carolina","date":"2021-07-06","time":"1807","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NC","qth":"McAdenville","lotw":"N","dist":"1453","grid":"FM05tp"},{"call":"K2J","name":"13 Colonies Special Event - North Carolina","date":"2021-07-06","time":"2225","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-08","country":"United States","state":"NC","qth":"McAdenville","lotw":"N","dist":"1452","grid":"EM96"},{"call":"KB9ZM","name":"James C Couture","date":"2021-07-06","time":"2234","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-10","country":"United States","state":"IL","qth":"West Frankfort","lotw":"Y","dist":"742","grid":"EM57OV"},{"call":"K2K","name":"13 Colonies Special Event - New Hampshire","date":"2021-07-06","time":"2249","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-09","country":"United States","state":"NH","qth":"Hollis","lotw":"Y","dist":"2240","grid":"FN43"},{"call":"K2D","name":"Doug Gerard - Np2gg","date":"2021-07-07","time":"0019","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CT","qth":"New Hartford","lotw":"Y","dist":"1856","grid":"FM29lt"},{"call":"K2A","name":"Kenneth Goetz-K2a Qsl Manager","date":"2021-07-07","time":"0034","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NY","qth":"Cairo","lotw":"N","dist":"2038","grid":"FN22xh"},{"call":"AF9FA","name":"Pete L Klotzbach","date":"2021-07-09","time":"2053","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-14","country":"United States","state":"WI","qth":"Waunakee","lotw":"N","dist":"1231","grid":"EN53ge"},{"call":"W4SYB","name":"Bradley S Davis","date":"2021-07-09","time":"2056","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-14","country":"United States","state":"GA","qth":"Marietta","lotw":"Y","dist":"872","grid":"EM73SW"},{"call":"KF0BCJ","name":"Christopher A Painter","date":"2021-07-09","time":"2059","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-15","country":"United States","state":"MO","qth":"Gower","lotw":"Y","dist":"791","grid":"EM29QO"},{"call":"N5EYT","name":"RICHARD P FRAY","date":"2021-07-09","time":"2105","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-10","country":"United States","state":"OH","qth":"KETTERING","lotw":"Y","dist":"1168","grid":"EM79VQ"},{"call":"KB5TLU","name":"PATRICK L ACHORD","date":"2021-07-09","time":"2107","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-02","country":"United States","state":"LA","qth":"Jackson","lotw":"Y","dist":"310","grid":"EM40JR"},{"call":"KE7OHK","name":"John G Lea","date":"2021-07-24","time":"0146","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-18","country":"United States","state":"AZ","qth":"CHANDLER","lotw":"Y","dist":"1704","grid":"DM43AH"},{"call":"K0RUG","name":"Eric M Krug","date":"2021-07-24","time":"0219","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-13","country":"United States","state":"CO","qth":"Loveland","lotw":"Y","dist":"1343","grid":"DN70KJ"},{"call":"RD4D","name":"Yury Sergeevich Gorbunov","date":"2021-07-24","time":"0222","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-22","country":"Russia","state":"","qth":"Balakovo, Saratov region","lotw":"N","dist":"9871","grid":"LO32va"},{"call":"NI2E","name":"MICHAEL P COLLINS","date":"2021-07-24","time":"0232","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-12","country":"United States","state":"NJ","qth":"Collingswood","lotw":"Y","dist":"1857","grid":"FM29KW"},{"call":"RN6HGZ","name":"Oleg V Fisenko","date":"2021-07-24","time":"0237","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-18","country":"Russia","state":"","qth":"Pyatigorsk","lotw":"Y","dist":"10433","grid":"LN14LB"},{"call":"CT1BWU","name":"Joao Coelho","date":"2021-07-24","time":"0241","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-16","country":"Portugal","state":"","qth":"Almeirim","lotw":"Y","dist":"7413","grid":"IM59QE"},{"call":"UR4QX","name":"Yuri Ivanov","date":"2021-07-24","time":"0243","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-18","country":"Ukraine","state":"","qth":"71113, Berdyansk, Zaporozhskaya obl.","lotw":"Y","dist":"9902","grid":"KN86JS"},{"call":"K5HDU","name":"Michael E Hunter","date":"2021-07-24","time":"0250","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-14","country":"United States","state":"UT","qth":"Heber City","lotw":"Y","dist":"1815","grid":"DN40GN"},{"call":"KN6OX","name":"Stephen L Porten","date":"2021-07-24","time":"0256","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-10","country":"United States","state":"CA","qth":"FOLSOM","lotw":"N","dist":"2623","grid":"CM98kp"},{"call":"KJ7WDF","name":"GARY BLACKER","date":"2021-07-24","time":"0258","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-10","country":"United States","state":"UT","qth":"SPANISH FORK","lotw":"Y","dist":"1809","grid":"DN40EC"},{"call":"KD6RC","name":"Jeffrey L Foster","date":"2021-07-24","time":"0341","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-14","country":"United States","state":"CA","qth":"SANTA ROSA","lotw":"N","dist":"2751","grid":"CM88ql"},{"call":"KS4OT","name":"JIMMY N COLLIS","date":"2021-07-24","time":"0345","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-14","country":"United States","state":"GA","qth":"EATONTON","lotw":"Y","dist":"979","grid":"EM83IJ"},{"call":"WA4MB","name":"RIGOBERTO MASSON BOLANOS","date":"2021-07-29","time":"2358","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-19","country":"United States","state":"FL","qth":"HIALEAH","lotw":"Y","dist":"1500","grid":"EL95UU"},{"call":"K6RCS","name":"Randall Stone","date":"2021-07-30","time":"0007","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-16","country":"United States","state":"CA","qth":"Chico","lotw":"Y","dist":"2702","grid":"CM99br"},{"call":"WA6OVP","name":"Tom M Arnold","date":"2021-07-30","time":"0028","band":"20M","mode":"FT8","rst_sent":"-23","rst_rcvd":"-03","country":"United States","state":"NV","qth":"SPARKS","lotw":"N","dist":"2786","grid":"CM88"},{"call":"KC9QQO","name":"Alan L Homan","date":"2021-08-20","time":"2133","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"OCEANSIDE","lotw":"N","dist":"2199","grid":"DM13IG47"},{"call":"K5QBF","name":"Shane Hale","date":"2021-08-20","time":"2140","band":"40M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"AL","qth":"Huntsville","lotw":"Y","dist":"662","grid":"EM17iq"},{"call":"KD9MEQ","name":"Derek M Fronek","date":"2021-08-20","time":"2144","band":"40M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"IN","qth":"Carmel","lotw":"N","dist":"1071","grid":"EM69XX01"},{"call":"KJ6ER","name":"Greg C Mihran","date":"2021-08-20","time":"2147","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"Campbell","lotw":"Y","dist":"2619","grid":"CM97AG59"},{"call":"KG6UO","name":"James E Carlson","date":"2021-08-20","time":"2150","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"San Jose","lotw":"Y","dist":"2604","grid":"CM97cf"},{"call":"NB7B","name":"GARY W CLARK","date":"2021-09-03","time":"1737","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-13","country":"United States","state":"UT","qth":"LAYTON","lotw":"Y","dist":"1881","grid":"DN31XB"},{"call":"KC2NXC","name":"Ivan W Proctor","date":"2021-09-03","time":"1751","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-24","country":"United States","state":"NY","qth":"Scotia","lotw":"Y","dist":"2072","grid":"FN32AT"},{"call":"KB5GH","name":"Robert J Fox","date":"2021-09-03","time":"1800","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-04","country":"United States","state":"GA","qth":"JESUP","lotw":"N","dist":"1051","grid":"EM91bo"},{"call":"N7LD","name":"Lee M Dusbabek","date":"2021-09-04","time":"1813","band":"17M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-05","country":"United States","state":"NV","qth":"LAS VEGAS","lotw":"Y","dist":"2083","grid":"DM26if"},{"call":"V31DL","name":"Dr. Andre T. Scholz","date":"2021-09-04","time":"1814","band":"17M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-16","country":"Belize","state":"","qth":"Belmopan","lotw":"N","dist":"1744","grid":"EK57nf"},{"call":"W3B","name":"Mercer County Amateur Radio Club","date":"2021-09-04","time":"1828","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-05","country":"United States","state":"PA","qth":"Sharon","lotw":"N","dist":"1518","grid":"EN91"},{"call":"KN4KNC","name":"Loretta S Kirbyson","date":"2021-09-04","time":"1837","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-18","country":"United States","state":"FL","qth":"St. Johns","lotw":"Y","dist":"1188","grid":"EM90FB"},{"call":"WB2TQE","name":"Howard E Koenig","date":"2021-09-04","time":"1843","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-17","country":"United States","state":"FL","qth":"COCONUT CREEK","lotw":"Y","dist":"1415","grid":"EL96vh"},{"call":"K4KKK","name":"Michael Mathias","date":"2021-09-04","time":"1906","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-04","country":"United States","state":"FL","qth":"Boynton Beach","lotw":"Y","dist":"1474","grid":"EL96WM"},{"call":"K8EIJ","name":"James S Hartzler","date":"2021-09-04","time":"1933","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-15","country":"United States","state":"OH","qth":"Xenia","lotw":"N","dist":"1142","grid":"EM89aq"},{"call":"KC3QIU","name":"Paul T Harig, Jr","date":"2021-09-04","time":"1942","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-08","country":"United States","state":"PA","qth":"CARLISLE","lotw":"Y","dist":"1650","grid":"FN10je"},{"call":"N5VX","name":"DALE R TOWN","date":"2021-09-04","time":"2016","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"NC","qth":"JACKSONVILLE","lotw":"Y","dist":"1521","grid":"FM14GS"},{"call":"W4NRG","name":"CHRISTOPHER J WHEELER","date":"2021-09-04","time":"2020","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-06","country":"United States","state":"MD","qth":"CALIFORNIA","lotw":"Y","dist":"1677","grid":"FM18RG"},{"call":"KC3MAL","name":"Richard (Stuart) Banta","date":"2021-09-04","time":"2036","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-10","country":"United States","state":"DE","qth":"Lewes","lotw":"Y","dist":"1757","grid":"FM28"},{"call":"K7TFT","name":"ANTHONY M BEST","date":"2021-09-04","time":"2033","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-14","country":"United States","state":"UT","qth":"SALT LAKE CITY","lotw":"Y","dist":"1834","grid":"DN40"},{"call":"KI6RRD","name":"Jerry F Shaw","date":"2021-09-04","time":"2231","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-20","country":"United States","state":"CA","qth":"Redondo Beach","lotw":"Y","dist":"2295","grid":"DM03TU"},{"call":"IZ4IRO","name":"Marco Furletti","date":"2021-09-04","time":"2259","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-09","country":"Italy","state":"","qth":"43039 SALSOMAGGIORE T. (PARMA)","lotw":"Y","dist":"8386","grid":"JN44"},{"call":"AI4MS","name":"Carmelo J Montalbano","date":"2021-09-04","time":"2318","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-19","country":"United States","state":"AZ","qth":"SUN CITY WEST","lotw":"Y","dist":"1807","grid":"DM33tp"},{"call":"N2FBV","name":"KENNETH N SWEENEY","date":"2021-09-04","time":"2344","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-11","country":"United States","state":"NY","qth":"BROOKLYN","lotw":"Y","dist":"1978","grid":"FN30"},{"call":"KB3VCQ","name":"Serg Koren","date":"2021-09-04","time":"2345","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-09","country":"United States","state":"DE","qth":"Dover","lotw":"Y","dist":"1736","grid":"FM29fd"},{"call":"W9ICK","name":"ROBERT G FRICK","date":"2021-09-04","time":"2347","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-07","country":"United States","state":"FL","qth":"Palm Bay","lotw":"Y","dist":"1346","grid":"EL98PA"},{"call":"KP4YRS","name":"JORGE R JORDAN","date":"2021-09-04","time":"2352","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-10","country":"Puerto Rico","state":"","qth":"UTUADO","lotw":"Y","dist":"3127","grid":"FK68PF"},{"call":"VE2DA","name":"Danie Pelletier","date":"2021-09-04","time":"2354","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-08","country":"Canada","state":"","qth":"Saint-Jean-sur-Richelieu","lotw":"Y","dist":"2254","grid":"FN35IH"},{"call":"N7LD","name":"Lee M Dusbabek","date":"2021-09-05","time":"0007","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-02","country":"United States","state":"NV","qth":"LAS VEGAS","lotw":"Y","dist":"2060","grid":"DM26"},{"call":"KE3QZ","name":"RANDOLPH M NORRIS","date":"2021-09-05","time":"0011","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+03","country":"United States","state":"MD","qth":"HOLLYWOOD","lotw":"Y","dist":"1678","grid":"FM18RI"},{"call":"AK4IM","name":"LUIS M KNIPPING","date":"2021-09-05","time":"0017","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-04","country":"United States","state":"FL","qth":"MIAMI","lotw":"Y","dist":"1506","grid":"EL95VS"},{"call":"CO2YT","name":"Yosvany Rodriguez Sanchez","date":"2021-09-05","time":"0024","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-10","country":"Cuba","state":"","qth":"La magdalena,Cotorro, La Habana.","lotw":"Y","dist":"1487","grid":"EL83ua"},{"call":"HP8DPD","name":"Joaquin Garces.Ortega","date":"2021-09-05","time":"0026","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-06","country":"Panama","state":"","qth":"entrega general.","lotw":"N","dist":"3023","grid":"EJ98RF"},{"call":"KO4DQZ","name":"Gary L Mintz","date":"2021-09-05","time":"0028","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-02","country":"United States","state":"VA","qth":"Chesapeake","lotw":"Y","dist":"1658","grid":"FM16UP"},{"call":"WA3ZSC","name":"Gerald K Smith","date":"2021-09-05","time":"0030","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"+02","country":"United States","state":"PA","qth":"CARLTON","lotw":"Y","dist":"1529","grid":"FN01al"},{"call":"WA4WGY","name":"Gary R Benson","date":"2021-09-05","time":"0031","band":"20M","mode":"FT8","rst_sent":"+11","rst_rcvd":"-08","country":"United States","state":"NC","qth":"Youngsville","lotw":"Y","dist":"1393","grid":"FM06sa"},{"call":"VE3XET","name":"Eric Todd","date":"2021-09-05","time":"0041","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-15","country":"Canada","state":"ON","qth":"Thunder Bay","lotw":"N","dist":"1803","grid":"EN58hl"},{"call":"K9BM","name":"BRADFORD Y McGann","date":"2021-09-05","time":"0045","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-08","country":"United States","state":"MT","qth":"Big Timber","lotw":"Y","dist":"2023","grid":"DN55AS"},{"call":"VE2FVV","name":"Benoit Rouleau","date":"2021-09-05","time":"0047","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-14","country":"Canada","state":"QC","qth":"BAIE-COMEAU","lotw":"N","dist":"2762","grid":"FN59ue"},{"call":"WC4H","name":"CARL M HERRERA","date":"2021-09-05","time":"0048","band":"20M","mode":"FT8","rst_sent":"+19","rst_rcvd":"+03","country":"United States","state":"FL","qth":"Belleview","lotw":"Y","dist":"1177","grid":"EL89XB"},{"call":"KJ4SBG","name":"James C Winfrey","date":"2021-09-05","time":"0051","band":"20M","mode":"FT8","rst_sent":"+15","rst_rcvd":"+08","country":"United States","state":"FL","qth":"Jacksonville","lotw":"Y","dist":"1094","grid":"EM90cf"},{"call":"V31DL","name":"Dr. Andre T. Scholz","date":"2021-09-05","time":"0053","band":"20M","mode":"FT8","rst_sent":"+12","rst_rcvd":"-07","country":"Belize","state":"","qth":"Belmopan","lotw":"Y","dist":"1744","grid":"EK57nf"},{"call":"W7MD","name":"DAMON S RAPHAEL, MD","date":"2021-09-05","time":"0059","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"United States","state":"AZ","qth":"VAIL","lotw":"Y","dist":"1609","grid":"DM41"},{"call":"AA1SU","name":"Paul N Gayet","date":"2021-09-05","time":"0059","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-15","country":"United States","state":"VT","qth":"ESSEX JUNCTION","lotw":"Y","dist":"2174","grid":"FN34kl"},{"call":"KE8OSX","name":"Ronald E Duvall, Ii","date":"2021-09-05","time":"0101","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"+00","country":"United States","state":"MI","qth":"MONROE","lotw":"Y","dist":"1337","grid":"EN81"},{"call":"AB1WG","name":"CLIFFORD A LANG","date":"2021-09-05","time":"0102","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-22","country":"United States","state":"VT","qth":"Burlington","lotw":"Y","dist":"2211","grid":"FN34IM"},{"call":"KN4IOU","name":"Stephen J Pederson","date":"2021-09-05","time":"0104","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-10","country":"United States","state":"VA","qth":"Front Royal","lotw":"Y","dist":"1523","grid":"FM08ww"},{"call":"K0JV","name":"Jerry K Van Vactor","date":"2021-09-05","time":"0107","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-11","country":"United States","state":"SD","qth":"Rapid City","lotw":"Y","dist":"1573","grid":"DN84ic"},{"call":"VA3MBT","name":"Michael Bell","date":"2021-09-05","time":"0111","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-13","country":"Canada","state":"ON","qth":"KINGSTON","lotw":"N","dist":"1940","grid":"FN14sf"},{"call":"N7ILO","name":"Joseph J Fitzgerald","date":"2021-09-05","time":"0118","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-05","country":"United States","state":"NM","qth":"Rio Rancho","lotw":"Y","dist":"1301","grid":"DM65pg"},{"call":"KC3RCM","name":"Walter Sinatra","date":"2021-09-05","time":"0120","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+09","country":"United States","state":"PA","qth":"Williamsport","lotw":"Y","dist":"1708","grid":"FN11ke"},{"call":"KE4TP","name":"Paul J Gerardi","date":"2021-09-05","time":"0129","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-01","country":"United States","state":"FL","qth":"Riverview","lotw":"Y","dist":"1138","grid":"EL87tv"},{"call":"XE2BHL","name":"Jose Manuel Rojo Marquez","date":"2021-09-05","time":"0142","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"","country":"Mexico","state":"","qth":"Tijuana","lotw":"N","dist":"2184","grid":"DM12"},{"call":"KI6NAZ","name":"Josh B Nass","date":"2021-09-05","time":"0205","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-12","country":"United States","state":"CA","qth":"Cerritos","lotw":"Y","dist":"2330","grid":"DM03xu"},{"call":"WB7QMR","name":"David D Larsen","date":"2021-09-05","time":"0227","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-03","country":"United States","state":"AZ","qth":"TUCSON","lotw":"Y","dist":"1679","grid":"DM42nc"},{"call":"KC2YME","name":"Douglas E Backer, Sr","date":"2021-09-05","time":"0232","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"+01","country":"United States","state":"NY","qth":"Oriskany Falls","lotw":"Y","dist":"1970","grid":"FN22GW"},{"call":"K0JEB","name":"Joshua E Burke","date":"2021-09-05","time":"0235","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-12","country":"United States","state":"CT","qth":"Groton","lotw":"Y","dist":"2153","grid":"FN31XI"},{"call":"N2VOX","name":"DAMON BASS","date":"2021-09-05","time":"0238","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-03","country":"United States","state":"LA","qth":"Shreveport","lotw":"Y","dist":"9","grid":"EM32DK"},{"call":"K2LTM","name":"Lester Tirado","date":"2021-09-05","time":"0239","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-16","country":"United States","state":"NY","qth":"Yonkers","lotw":"N","dist":"1940","grid":"FN30bv"},{"call":"W6DAD","name":"DUANE A DAHLBERG","date":"2021-09-05","time":"0243","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-23","country":"United States","state":"AZ","qth":"Goodyear","lotw":"Y","dist":"1747","grid":"DM33SK"},{"call":"W1PR","name":"Paul R Ryack","date":"2021-09-05","time":"0248","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-09","country":"United States","state":"CA","qth":"SANTA BARBARA","lotw":"Y","dist":"2490","grid":"DM04ck"},{"call":"N6UNH","name":"Dirk L Snyder","date":"2021-09-05","time":"0253","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-11","country":"United States","state":"CA","qth":"MORENO VALLEY","lotw":"Y","dist":"2255","grid":"DM13jw"},{"call":"K0TX","name":"Denis Grisak","date":"2021-09-07","time":"2137","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"United States","state":"CO","qth":"Grand Junction","lotw":"Y","dist":"1526","grid":"DM59QC"},{"call":"WC8L","name":"Harold G Jobe","date":"2021-09-07","time":"2139","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-06","country":"United States","state":"WV","qth":"Center Point","lotw":"Y","dist":"1405","grid":"EM99QK"},{"call":"WA2ONG","name":"ANDREW M Jezioro","date":"2021-09-07","time":"2143","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-16","country":"United States","state":"VA","qth":"McGaheysville","lotw":"Y","dist":"1502","grid":"FM08PJ"},{"call":"LZ3CB","name":"Todor Ivanov","date":"2021-09-07","time":"2229","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-21","country":"Bulgaria","state":"","qth":"Burgas 8000","lotw":"Y","dist":"9743","grid":"KN32RL"},{"call":"NF3R","name":"Joel R Rubincam","date":"2021-09-07","time":"2234","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-11","country":"United States","state":"PA","qth":"Pottstown","lotw":"Y","dist":"1823","grid":"FN20DG"},{"call":"F1PPH","name":"DIDIER TRUDELLE","date":"2021-09-07","time":"2236","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-23","country":"France","state":"","qth":"MULSANNE","lotw":"Y","dist":"7660","grid":"JN07CV"},{"call":"WX1H","name":"Paul J Marciello","date":"2021-09-07","time":"2250","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-12","country":"United States","state":"VA","qth":"Chantilly","lotw":"Y","dist":"1626","grid":"FM18GV"},{"call":"KW7E","name":"MELVIN F LEHMANN","date":"2021-09-07","time":"2255","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-07","country":"United States","state":"AZ","qth":"Phoenix","lotw":"Y","dist":"1724","grid":"DM33VL"},{"call":"CO8VQ","name":"V\ufffdCTOR MEJ\ufffdAS SANAM\ufffd","date":"2021-09-07","time":"2306","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"","country":"Cuba","state":"","qth":"MOA, HOLGUIN","lotw":"Y","dist":"2278","grid":"FL20"},{"call":"N3TQM","name":"THOMAS R DAVIS","date":"2021-09-07","time":"2307","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-14","country":"United States","state":"PA","qth":"MOUNT CARMEL","lotw":"Y","dist":"1789","grid":"FN10ST"},{"call":"W4SIJ","name":"Scott J Gallagher","date":"2021-09-07","time":"2311","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-08","country":"United States","state":"VA","qth":"Gainesville","lotw":"Y","dist":"1607","grid":"FM18ES"},{"call":"K3WHD","name":"DAVID K ENRIGHT","date":"2021-09-07","time":"2312","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-08","country":"United States","state":"NY","qth":"Rochester","lotw":"Y","dist":"1840","grid":"FN13FE"},{"call":"WQ7F","name":"DAVID M HARTLEY","date":"2021-09-07","time":"2315","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-10","country":"United States","state":"MD","qth":"ROCKVILLE","lotw":"Y","dist":"1660","grid":"FM19KC"},{"call":"KC3TD","name":"Roger L Carl","date":"2021-09-07","time":"2337","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-17","country":"United States","state":"PA","qth":"Berwick","lotw":"Y","dist":"1823","grid":"FN11VC"},{"call":"K4NYX","name":"Michael J Lettera","date":"2021-09-07","time":"2341","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"+01","country":"United States","state":"FL","qth":"Port Saint Lucie","lotw":"Y","dist":"1409","grid":"EL97TG"},{"call":"N7JFF","name":"JEFFREY G BRUBAKER","date":"2021-09-07","time":"2345","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-20","country":"United States","state":"MT","qth":"HELENA","lotw":"Y","dist":"2198","grid":"DN46BO"},{"call":"K5HK","name":"Carl E Young","date":"2021-09-07","time":"2349","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-08","country":"United States","state":"NV","qth":"Reno","lotw":"Y","dist":"2464","grid":"DM09"},{"call":"K7SWT","name":"WILLIAM B LEWIS","date":"2021-09-07","time":"2353","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-04","country":"United States","state":"UT","qth":"VERNAL","lotw":"N","dist":"1666","grid":"DN50FL"},{"call":"KK7O","name":"Anthony C Sotos","date":"2021-09-08","time":"0006","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-01","country":"United States","state":"AZ","qth":"Mesa","lotw":"Y","dist":"1680","grid":"DM43dl"},{"call":"KC6MIE","name":"Stephen D Spencer","date":"2021-09-08","time":"0011","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-04","country":"United States","state":"CA","qth":"FALLBROOK","lotw":"Y","dist":"2192","grid":"DM13JI"},{"call":"VE1ZA","name":"A Ratajczak","date":"2021-09-08","time":"0022","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-15","country":"Canada","state":"","qth":"HAMMONDS PLAINS","lotw":"N","dist":"2908","grid":"FN84CR"},{"call":"W1FM","name":"JACOB HANDWERKER","date":"2021-09-08","time":"0024","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-04","country":"United States","state":"MA","qth":"LEXINGTON","lotw":"Y","dist":"2258","grid":"FN42JK"},{"call":"K0HMZ","name":"Robert L Evjen","date":"2021-09-08","time":"0027","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-12","country":"United States","state":"ND","qth":"Williston","lotw":"Y","dist":"1927","grid":"DN88EE"},{"call":"KC1OEV","name":"STEVEN A NELSON, JR","date":"2021-09-08","time":"0031","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-22","country":"United States","state":"RI","qth":"JOHNSTON","lotw":"N","dist":"2209","grid":"FN41FT"},{"call":"HK1REB","name":"Rafael E. Badel","date":"2021-09-08","time":"0039","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-20","country":"Colombia","state":"","qth":"Barranquilla, Atl\ufffdntico","lotw":"Y","dist":"3076","grid":"FK21"},{"call":"W3TW","name":"THOMAS F WAS","date":"2021-09-08","time":"0108","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-10","country":"United States","state":"NY","qth":"HUNTINGTON STATION","lotw":"Y","dist":"2026","grid":"FN30HU"},{"call":"ZP9MCE","name":"Manu Codas","date":"2021-09-09","time":"2359","band":"20M","mode":"FT8","rst_sent":"","rst_rcvd":"-14","country":"Paraguay","state":"","qth":"Hohenau-Itap\ufffda","lotw":"N","dist":"7755","grid":"GG22EW"},{"call":"KP4JRS","name":"JOSE A RIVERA-SALAMAN","date":"2021-09-10","time":"0003","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-23","country":"Puerto Rico","state":"","qth":"TRUJILLO ALTO","lotw":"Y","dist":"3180","grid":"FK68"},{"call":"KO4HMB","name":"DAVID L KOPPEL","date":"2021-09-10","time":"0006","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"+00","country":"United States","state":"VA","qth":"DANVILLE","lotw":"Y","dist":"1384","grid":"FM06HO"},{"call":"VA3CTX","name":"Scott Westover","date":"2021-09-10","time":"0013","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-05","country":"Canada","state":"","qth":"Brantford, Ontario","lotw":"N","dist":"1830","grid":"EN93UD"},{"call":"PP5TG","name":"WALFREDO BABEL FALCONS DX GROUP","date":"2021-09-10","time":"0017","band":"15M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-08","country":"Brazil","state":"","qth":"BLUMENAU - SC","lotw":"Y","dist":"8119","grid":"GG53KC"},{"call":"PY5JO","name":"JOAO FABIO OLIVEIRA (JOHN)","date":"2021-09-10","time":"0019","band":"15M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-12","country":"Brazil","state":"","qth":"CURITIBA","lotw":"Y","dist":"7974","grid":"GG54HO"},{"call":"KG4ASZ","name":"ROBERT S KERSHAW","date":"2021-09-10","time":"0027","band":"40M","mode":"FT8","rst_sent":"","rst_rcvd":"-17","country":"United States","state":"FL","qth":"MELBOURNE","lotw":"N","dist":"1339","grid":"EL98QE"},{"call":"W1JMA","name":"JOHN M AHLE","date":"2021-09-10","time":"0033","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-13","country":"United States","state":"CT","qth":"RIDGEFIELD","lotw":"Y","dist":"2036","grid":"FN31GH"},{"call":"W6SJ","name":"RANDY JOHNSON","date":"2021-09-10","time":"0035","band":"40M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-13","country":"United States","state":"CA","qth":"CORONA DEL MAR","lotw":"Y","dist":"2249","grid":"FM19"},{"call":"N7TTA","name":"ROBERT TOWNSEND","date":"2021-09-10","time":"0039","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-13","country":"United States","state":"AZ","qth":"TUCSON","lotw":"Y","dist":"1638","grid":"DM42KE"},{"call":"KO4O","name":"ROGER D COOK","date":"2021-09-10","time":"0048","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-04","country":"United States","state":"AL","qth":"TRINITY","lotw":"N","dist":"646","grid":"EM64LO"},{"call":"AH6HY","name":"DAVID A FLACK","date":"2021-09-10","time":"0202","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-20","country":"Hawaii","state":"","qth":"HONOLULU","lotw":"Y","dist":"6390","grid":"BL11AI"},{"call":"N5AQM","name":"MICHAEL A HENRY","date":"2021-09-10","time":"0206","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-07","country":"United States","state":"AZ","qth":"CHANDLER","lotw":"N","dist":"1700","grid":"DM43AH"},{"call":"WB6WUW","name":"BARTON E PULVERMAN","date":"2021-09-10","time":"0217","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-25","country":"United States","state":"CA","qth":"BUENA PARK","lotw":"Y","dist":"2259","grid":"DM13AU13"},{"call":"W9RNR","name":"ROD N REPP","date":"2021-09-10","time":"0251","band":"40M","mode":"FT8","rst_sent":"","rst_rcvd":"-08","country":"United States","state":"IL","qth":"TROY","lotw":"Y","dist":"768","grid":"EM58BR"},{"call":"WA2NYC","name":"Wireless Association Of New York City","date":"2021-09-10","time":"0301","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-12","country":"United States","state":"NY","qth":"Staten Island","lotw":"Y","dist":"1973","grid":"FN20"},{"call":"N9KT","name":"DAVID A SPOELSTRA","date":"2021-09-10","time":"0309","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-15","country":"United States","state":"IN","qth":"INDIANAPOLIS","lotw":"Y","dist":"1063","grid":"EM69WV"},{"call":"WA4WGY","name":"GARY R BENSON","date":"2021-09-10","time":"0312","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-12","country":"United States","state":"NC","qth":"Youngsville","lotw":"Y","dist":"1451","grid":"FM06SA"},{"call":"W7XZ","name":"JAMES L JENNINGS","date":"2021-09-10","time":"0317","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-15","country":"United States","state":"CA","qth":"OROVILLE","lotw":"Y","dist":"2611","grid":"CM99"},{"call":"KH6M","name":"MITCHELL D WEIN","date":"2021-09-10","time":"0331","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-02","country":"United States","state":"FL","qth":"NAPLES","lotw":"Y","dist":"1366","grid":"EL96FG"},{"call":"K9US","name":"Timothy J Miller","date":"2021-09-10","time":"0334","band":"40M","mode":"FT8","rst_sent":"+18","rst_rcvd":"-12","country":"United States","state":"IN","qth":"Bedford","lotw":"Y","dist":"954","grid":"EM68RU"},{"call":"KO4MLW","name":"Miguel A Perello","date":"2021-09-10","time":"0338","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-07","country":"United States","state":"FL","qth":"Orlando","lotw":"N","dist":"1259","grid":"EL98HN"},{"call":"WE0D","name":"Gregory M Crossman","date":"2021-09-10","time":"0345","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-19","country":"United States","state":"FL","qth":"Summerfield","lotw":"Y","dist":"1183","grid":"EL89"},{"call":"W0MU","name":"KENNETH M FATCHETT","date":"2021-09-10","time":"0347","band":"40M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-09","country":"United States","state":"CO","qth":"PARKER","lotw":"N","dist":"1266","grid":"DM79"},{"call":"N7MDW","name":"Michael D Wright","date":"2021-09-10","time":"0349","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-03","country":"United States","state":"TN","qth":"Maryville","lotw":"Y","dist":"956","grid":"EM75XR"},{"call":"K4YDV","name":"DANIEL F FORD-HOPKINS","date":"2021-09-10","time":"0351","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+06","country":"United States","state":"FL","qth":"ORANGE CITY","lotw":"Y","dist":"1246","grid":"EL98"},{"call":"K0LWC","name":"Matthew L Kaskavitch","date":"2021-09-10","time":"0352","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+00","country":"United States","state":"MN","qth":"Maple Grove","lotw":"Y","dist":"1397","grid":"EN35GC"},{"call":"XE3AA","name":"Julio Cesar Maga\ufffda Alborno","date":"2021-09-10","time":"0354","band":"40M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-09","country":"Mexico","state":"","qth":"champoton campeche","lotw":"Y","dist":"1500","grid":"EK49PH"},{"call":"W2/JR1AQN","name":"Masaaki Maeda","date":"2021-09-10","time":"0356","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-05","country":"United States","state":"NY","qth":"Briarcliff Manor","lotw":"Y","dist":"2007","grid":"FN31cd"},{"call":"5T5PA","name":"Johannes Hafkenscheid","date":"2021-09-10","time":"0411","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-07","country":"Mauritania","state":"","qth":"Nouadhibou","lotw":"Y","dist":"7567","grid":"IL10LW"},{"call":"N0BEL","name":"KEVIN E UHLIR","date":"2021-09-10","time":"0412","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"","country":"United States","state":"MN","qth":"APPLE VALLEY","lotw":"Y","dist":"1357","grid":"EN34"},{"call":"K0HB","name":"H HANS BRAKOB","date":"2021-09-10","time":"0420","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-06","country":"United States","state":"MN","qth":"PLYMOUTH","lotw":"Y","dist":"1385","grid":"EN34GX"},{"call":"WC7WB","name":"WYOMING COLORADO AMATEUR RADIO CLUB","date":"2021-09-10","time":"0424","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-07","country":"United States","state":"WY","qth":"Alcova","lotw":"Y","dist":"1598","grid":"DN62"},{"call":"W6G","name":"\"Route 66 On The Air\" Special Event","date":"2021-09-16","time":"2113","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"AZ","qth":"Flagstaff","lotw":"N","dist":"1669","grid":"DM45ff"},{"call":"W6TWH","name":"Thomas W Harleman, Jr","date":"2021-09-16","time":"2213","band":"20M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-17","country":"United States","state":"CA","qth":"Carlsbad","lotw":"Y","dist":"2197","grid":"DM13IC"},{"call":"ON7NQ","name":"DANNY MEES","date":"2021-09-16","time":"2230","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-12","country":"Belgium","state":"","qth":"Brecht , B-2960","lotw":"Y","dist":"7773","grid":"JO21HH35"},{"call":"N2NCB","name":"PAUL B SLOCUM","date":"2021-09-16","time":"2231","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-13","country":"United States","state":"NY","qth":"OWEGO","lotw":"N","dist":"1864","grid":"FN12UC"},{"call":"WA6OWM","name":"RAYMOND GRACE, JR","date":"2021-09-16","time":"2235","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-03","country":"United States","state":"CA","qth":"REDONDO BEACH","lotw":"Y","dist":"2293","grid":"DM03TU"},{"call":"KB2BON","name":"DOUGLAS M BULLIVANT","date":"2021-09-16","time":"2257","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-07","country":"United States","state":"NY","qth":"INTERLAKEN","lotw":"N","dist":"1863","grid":"FN12PO"},{"call":"W8RGB","name":"GARY BALLOU","date":"2021-09-16","time":"2305","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-13","country":"United States","state":"WV","qth":"MARTINSBURG","lotw":"Y","dist":"1607","grid":"FM19AM"},{"call":"N0EUV","name":"MILAN SEIFERT","date":"2021-09-16","time":"2309","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-12","country":"United States","state":"VA","qth":"Stanley","lotw":"Y","dist":"1522","grid":"FM08RO"},{"call":"WA2HIP","name":"JOHN R PETROCELLI","date":"2021-09-16","time":"2311","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-14","country":"United States","state":"ME","qth":"Brewer","lotw":"Y","dist":"2541","grid":"FN54OT"},{"call":"KJ7FPD","name":"David M Serna","date":"2021-09-16","time":"2324","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"+19","country":"United States","state":"NV","qth":"Fallon","lotw":"Y","dist":"2372","grid":"DM09OJ"},{"call":"W2CG","name":"MARTIN J GROZINSKI, JR","date":"2021-09-17","time":"0102","band":"20M","mode":"FT8","rst_sent":"+16","rst_rcvd":"-13","country":"United States","state":"NJ","qth":"FLEMINGTON","lotw":"Y","dist":"1907","grid":"FN20ON"},{"call":"W6A","name":"Route 66 On The Air 2020 - Santa Monica","date":"2021-09-17","time":"0109","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"57","country":"United States","state":"CA","qth":"Los Angeles","lotw":"N","dist":"2301","grid":"DM04sa"},{"call":"W6E","name":"Barstow Amateur Radio Club","date":"2021-09-17","time":"1752","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"Barstow","lotw":"N","dist":"1954","grid":"DM22qu"},{"call":"KM4VEN","name":"James H Geibel, Ii","date":"2021-09-17","time":"1803","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"VA","qth":"Clifton","lotw":"Y","dist":"1622","grid":"FM18gt"},{"call":"W6H","name":"Bill Mader","date":"2021-09-17","time":"1928","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NM","qth":"Rio Rancho","lotw":"N","dist":"13625","grid":"AA00aa"},{"call":"S51DX","name":"Janez Celarc","date":"2021-09-17","time":"1938","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"Slovenia","state":"","qth":"1360 VRHNIKA","lotw":"N","dist":"8688","grid":"JN75dx"},{"call":"W6D","name":"K6qwr Special Event Callsign - Route 66 On The Air","date":"2021-09-17","time":"2041","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"Apple Valley","lotw":"N","dist":"2638","grid":"CM87vd"},{"call":"W6B","name":"Route 66 On The Air 2020 - Los Angeles","date":"2021-09-17","time":"2047","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"Los Angeles","lotw":"N","dist":"2301","grid":"DM04sa"},{"call":"W6N","name":"Joplin Amateur Radio Club","date":"2021-09-18","time":"0035","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"MO","qth":"JOPLIN","lotw":"N","dist":"508","grid":"EM27sb"},{"call":"W6M","name":"Western Kansas ARC c/o K0BJ","date":"2021-09-18","time":"0052","band":"40M","mode":"FT4","rst_sent":"+05","rst_rcvd":"-08","country":"United States","state":"KS","qth":"Colby","lotw":"Y","dist":"974","grid":"DM99MA"},{"call":"KB5HC","name":"HORACE E CRUTHIRDS","date":"2021-09-18","time":"0053","band":"40M","mode":"FT4","rst_sent":"+08","rst_rcvd":"+02","country":"United States","state":"MS","qth":"SAUCIER","lotw":"Y","dist":"479","grid":"EM50KP"},{"call":"W6B","name":"Route 66 on the Air 2020 - Los Angeles","date":"2021-09-18","time":"0056","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-14","country":"United States","state":"CA","qth":"Los Angeles","lotw":"N","dist":"10355","grid":"DM04SA"},{"call":"W6J","name":"Mid-Del Amateur Radio Club","date":"2021-09-18","time":"0103","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-19","country":"United States","state":"OK","qth":"Midwest City","lotw":"N","dist":"448","grid":"EM15"},{"call":"W6V","name":"2021 Route 66 On The Air Special Event","date":"2021-09-18","time":"0221","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"AZ","qth":"P.O. Box 6908, Kingman","lotw":"N","dist":"1897","grid":"DM25xe"},{"call":"W6T","name":"Ronald J Gerlak","date":"2021-09-18","time":"0227","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"AZ","qth":"Goodyear","lotw":"N","dist":"1711","grid":"DM45ag"},{"call":"W1Z","name":"Larry Krainson","date":"2021-09-18","time":"0250","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"MA","qth":"Longmeadow","lotw":"N","dist":"2140","grid":"FN32rb"},{"call":"W6C","name":"W6jbt Special Event Callsign - Route 66 On The Air","date":"2021-09-18","time":"0257","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"San Bernardino","lotw":"N","dist":"2184","grid":"DM14jd"},{"call":"W6U","name":"Wilmington Area Amateur Radio Club","date":"2021-09-18","time":"0315","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"IL","qth":"Wilmington","lotw":"N","dist":"1092","grid":"EN51wh"},{"call":"W6P","name":"ROUTE 66 On-The-Air","date":"2021-09-18","time":"0355","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-24","country":"United States","state":"MO","qth":"ST LOUIS","lotw":"Y","dist":"743","grid":"EM48UO"},{"call":"AF4CD","name":"Lynn E Gahagan","date":"2021-09-18","time":"0517","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-06","country":"United States","state":"VA","qth":"Chesapeake","lotw":"Y","dist":"1663","grid":"FM16VT"},{"call":"N0GLJ","name":"Graham L Jackson","date":"2021-09-18","time":"0518","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-14","country":"United States","state":"CO","qth":"Glenwood Springs","lotw":"Y","dist":"1449","grid":"DM69IN"},{"call":"KK7O","name":"Anthony C Sotos","date":"2021-09-18","time":"0520","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+01","country":"United States","state":"AZ","qth":"Mesa","lotw":"Y","dist":"1680","grid":"DM43dl"},{"call":"N7KDL","name":"NEIL A WOLVIN","date":"2021-09-18","time":"0532","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+02","country":"United States","state":"AZ","qth":"San Tan Valley","lotw":"Y","dist":"1666","grid":"DM43FD"},{"call":"N2OO","name":"Robert W Schenck","date":"2021-09-18","time":"1716","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"TUCKERTON","lotw":"Y","dist":"1910","grid":"FM29up"},{"call":"W2ZQ","name":"Delaware Valley Radio Association Inc","date":"2021-09-18","time":"1717","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"West Trenton","lotw":"Y","dist":"1892","grid":"FN20og"},{"call":"WO2T","name":"Alfonse S Rossi, Sr.","date":"2021-09-18","time":"1722","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"FAIRFIELD","lotw":"Y","dist":"1959","grid":"FN20uv"},{"call":"KK2TK","name":"Robert Larson Memorial Society","date":"2021-09-18","time":"1726","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"Stockholm","lotw":"N","dist":"1948","grid":"FN21rc"},{"call":"KK2TK","name":"Robert Larson Memorial Society","date":"2021-09-18","time":"1732","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"Stockholm","lotw":"N","dist":"1948","grid":"FN21rc"},{"call":"K2UT","name":"Robert Applegate","date":"2021-09-18","time":"1736","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"Medford","lotw":"Y","dist":"1877","grid":"FM29ou"},{"call":"N2MM","name":"Carol Richards","date":"2021-09-18","time":"1739","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"SHAMONG","lotw":"Y","dist":"1884","grid":"FM29pt"},{"call":"K2RET","name":"Robert E Tomkovich, Jr","date":"2021-09-18","time":"1810","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"Waretown","lotw":"Y","dist":"1919","grid":"FM29vs"},{"call":"K2CYS","name":"Cyril A Stanway","date":"2021-09-18","time":"1826","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"Ocean Township","lotw":"Y","dist":"1949","grid":"FN20xf"},{"call":"W1W","name":"Larry Krainson","date":"2021-09-18","time":"1839","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"MA","qth":"Longmeadow","lotw":"N","dist":"2200","grid":"FN42ai"},{"call":"W6S","name":"David S Nadxa","date":"2021-09-18","time":"1911","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"AZ","qth":"Flagstaff","lotw":"N","dist":"1684","grid":"DM45de"},{"call":"W2OIB","name":"Allan J Schnabolk","date":"2021-09-18","time":"1943","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"OCEAN","lotw":"Y","dist":"1952","grid":"FN20xg"},{"call":"KA2K","name":"Scott D Schindewolf","date":"2021-09-18","time":"1949","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"Lumberton","lotw":"Y","dist":"1881","grid":"FM29ox"},{"call":"KS0CW","name":"KEVIN A SCHAFER","date":"2021-09-18","time":"2015","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-05","country":"United States","state":"VA","qth":"Chesapeake","lotw":"Y","dist":"1662","grid":"FM16VQ"},{"call":"F1RHS","name":"ERIC GALANTE","date":"2021-09-18","time":"2031","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-15","country":"France","state":"","qth":"82370 CAMPSAS","lotw":"Y","dist":"7935","grid":"JN03PV"},{"call":"N2FIX","name":"Nathan L Fix","date":"2021-09-18","time":"2038","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-03","country":"United States","state":"NY","qth":"Attica","lotw":"Y","dist":"1775","grid":"FN02UV"},{"call":"WV2M","name":"FRANCIS M GALLO","date":"2021-09-18","time":"2052","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-07","country":"United States","state":"PA","qth":"Harleysville","lotw":"Y","dist":"1847","grid":"FN20HF"},{"call":"AE1N","name":"LAYNE LA BAUME","date":"2021-09-18","time":"2057","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-19","country":"United States","state":"NH","qth":"NASHUA","lotw":"N","dist":"13626","grid":"FN42FT"},{"call":"N5DO","name":"David L Cockrum","date":"2021-09-18","time":"2129","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"TX","qth":"Victoria","lotw":"N","dist":"517","grid":"EL18lu"},{"call":"N5JJ","name":"Richard J Schneble, Jr","date":"2021-09-18","time":"2141","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"TX","qth":"ALVIN","lotw":"N","dist":"363","grid":"EL29fq"},{"call":"W6K","name":"Route 66 On The Air Special Event","date":"2021-09-18","time":"2148","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-08","country":"United States","state":"OK","qth":"Oklahoma City","lotw":"N","dist":"10355","grid":"EM15GK"},{"call":"W6I","name":"C/O Daniel Holcomb","date":"2021-09-18","time":"2150","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-01","country":"United States","state":"TX","qth":"AMARILLO","lotw":"N","dist":"815","grid":"DM85"},{"call":"W6L","name":"W5IAS Tulsa Amateur Radio Club","date":"2021-09-18","time":"2212","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-13","country":"United States","state":"OK","qth":"Tulsa","lotw":"N","dist":"450","grid":"EM26bd"},{"call":"K5HOY","name":"Joanne C Thompson","date":"2021-09-19","time":"0032","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NM","qth":"PLACITAS","lotw":"N","dist":"1217","grid":"DM65sh"},{"call":"W2ZQ","name":"Delaware Valley Radio Association Inc","date":"2021-09-19","time":"0022","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"West Trenton","lotw":"Y","dist":"1892","grid":"FN20og"},{"call":"N7PHY","name":"Edward W Sershon","date":"2021-09-19","time":"0245","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"WA","qth":"EDMONDS","lotw":"Y","dist":"2937","grid":"CN87uu"},{"call":"W6H","name":"Bill Mader","date":"2021-09-19","time":"0306","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NM","qth":"Rio Rancho","lotw":"N","dist":"10355","grid":"AA00aa"},{"call":"K7ANE","name":"Timothy B Kane","date":"2021-09-19","time":"0312","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"WA","qth":"Seattle","lotw":"N","dist":"2928","grid":"CN87tn"},{"call":"W5TTW","name":"Paul A Culin","date":"2021-09-19","time":"0408","band":"80M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-10","country":"United States","state":"TX","qth":"The Woodlands","lotw":"Y","dist":"313","grid":"EM20FE"},{"call":"K9MP","name":"Laurence L Denny","date":"2021-09-19","time":"0432","band":"80M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-13","country":"United States","state":"MN","qth":"Saint Cloud","lotw":"Y","dist":"1445","grid":"EN25VM"},{"call":"W5RAW","name":"RAYMOND A WINTER","date":"2021-09-19","time":"0032","band":"40M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"TX","qth":"Amarillo","lotw":"Y","dist":"806","grid":"DM95BB55"},{"call":"WB9TQW","name":"FRANCIS J FOURNIER, JR","date":"2021-09-21","time":"2049","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+01","country":"United States","state":"WI","qth":"GREEN BAY","lotw":"Y","dist":"1417","grid":"EN54XM"},{"call":"K7CAR","name":"KENT B O SELL","date":"2021-09-21","time":"2104","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"+04","country":"United States","state":"NV","qth":"Mesquite","lotw":"Y","dist":"1834","grid":"DM37"},{"call":"W2GLD","name":"GERALD L DUBZAK, Jr.","date":"2021-09-21","time":"2120","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-08","country":"United States","state":"MI","qth":"Pinckney","lotw":"Y","dist":"1396","grid":"EN82AL"},{"call":"WD9GKG","name":"GREGORY H SEAMAN","date":"2021-09-21","time":"2204","band":"20M","mode":"FT8","rst_sent":"+10","rst_rcvd":"-02","country":"United States","state":"FL","qth":"MELBOURNE","lotw":"Y","dist":"1345","grid":"EL98QD"},{"call":"KE8FHH","name":"John M Weeman","date":"2021-09-21","time":"2211","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"+11","country":"United States","state":"OH","qth":"Wooster","lotw":"Y","dist":"1394","grid":"EN90AT"},{"call":"9A2CD","name":"CONJO DIANKOV","date":"2021-09-21","time":"2219","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-18","country":"Croatia","state":"","qth":"HR-10010 ZAGREB","lotw":"N","dist":"10355","grid":"JN75XS"},{"call":"KA1MR","name":"RONALD R MAROTTA","date":"2021-09-21","time":"2222","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"+00","country":"United States","state":"MA","qth":"EAST DENNIS","lotw":"Y","dist":"2314","grid":"FN41WR"},{"call":"KC1HXR","name":"Merrill B Clark","date":"2021-09-21","time":"2231","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-10","country":"United States","state":"MA","qth":"Merrimac","lotw":"Y","dist":"2287","grid":"FN42LT"},{"call":"KC9LBE","name":"Ronald D Langerud","date":"2021-09-21","time":"2248","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-14","country":"United States","state":"WI","qth":"South Range","lotw":"N","dist":"1573","grid":"EN46BO"},{"call":"W3DON","name":"DONALD C PICKEL, JR","date":"2021-09-21","time":"2254","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"+03","country":"United States","state":"PA","qth":"LANCASTER","lotw":"Y","dist":"1763","grid":"FN10UB"},{"call":"AC3HI","name":"VICTOR R ALMONTE","date":"2021-09-21","time":"2326","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-14","country":"United States","state":"PA","qth":"DREXEL HILL","lotw":"Y","dist":"1840","grid":"FM29IX"},{"call":"W1WWB","name":"JAMES R BOYLES","date":"2021-09-21","time":"2329","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+01","country":"United States","state":"NC","qth":"STATESVILLE","lotw":"N","dist":"1232","grid":"EM95NS"},{"call":"N7WWL","name":"KURT J LIVINGSTON","date":"2021-09-21","time":"2334","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-04","country":"United States","state":"FL","qth":"WINTER GARDEN","lotw":"Y","dist":"1239","grid":"EL98EN"},{"call":"W0OVX","name":"ROBERT M ANDERSON","date":"2021-09-21","time":"2344","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-03","country":"United States","state":"ND","qth":"MINOT","lotw":"Y","dist":"1841","grid":"DN98KC"},{"call":"K8KWG","name":"Bob Murrow","date":"2021-09-22","time":"0004","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-11","country":"United States","state":"CA","qth":"Vance","lotw":"N","dist":"1246","grid":"EM93"},{"call":"KF4AAF","name":"Christopher J Russell","date":"2021-09-22","time":"0010","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+00","country":"United States","state":"FL","qth":"Jacksonville","lotw":"Y","dist":"1186","grid":"EM90GG"},{"call":"W4CHI","name":"Ronald T Barber","date":"2021-06-27","time":"0124","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NC","qth":"ASHEBORO","lotw":"Y","dist":"1316","grid":"FM05br"},{"call":"N4F","name":"Steve Masticola","date":"2021-10-05","time":"1457","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"8 Fernwood Road, Florham Park","lotw":"N","dist":"883","grid":"EM74ta"},{"call":"W1SRR","name":"Miguel A Acevedo","date":"2021-10-05","time":"1510","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Orlando","lotw":"Y","dist":"1265","grid":"EL98hk"},{"call":"AC9HP","name":"Wayne R Michael","date":"2021-10-05","time":"1548","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+03","country":"United States","state":"IN","qth":"Indianapolis","lotw":"Y","dist":"1041","grid":"EM69TS"},{"call":"WY6T","name":"DONALD V LOHSE","date":"2021-10-05","time":"1557","band":"20M","mode":"FT8","rst_sent":"+03","rst_rcvd":"+02","country":"United States","state":"CA","qth":"Tehachapi","lotw":"Y","dist":"2313","grid":"DM05QE"},{"call":"KD4MZM","name":"ERIC T OWEN","date":"2021-10-05","time":"1559","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+00","country":"United States","state":"FL","qth":"SARASOTA","lotw":"N","dist":"1224","grid":"EL86"},{"call":"W4GY","name":"GARON L BALLARD","date":"2021-10-05","time":"1610","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-23","country":"United States","state":"NC","qth":"MAIDEN","lotw":"Y","dist":"1198","grid":"EM95"},{"call":"N9AJD","name":"AUSTIN J DEVENTER","date":"2021-10-05","time":"1620","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+03","country":"United States","state":"IN","qth":"FORT WAYNE","lotw":"Y","dist":"1225","grid":"EN71KE"},{"call":"N6VF","name":"RODGER D ZINK","date":"2021-10-05","time":"1638","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-05","country":"United States","state":"OH","qth":"FAIRBORN","lotw":"Y","dist":"1185","grid":"EM79XT"},{"call":"VE7SZ","name":"Allan Buckshon","date":"2021-10-05","time":"1653","band":"20M","mode":"FT4","rst_sent":"-04","rst_rcvd":"-10","country":"Canada","state":"BC","qth":"Langley","lotw":"Y","dist":"3018","grid":"CN89RC"},{"call":"WD4SFR","name":"CHARLES R JOHNSON","date":"2021-10-05","time":"1654","band":"20M","mode":"FT4","rst_sent":"-15","rst_rcvd":"-18","country":"United States","state":"FL","qth":"ORANGE PARK","lotw":"N","dist":"1163","grid":"EM90CD"},{"call":"VA3FIRE","name":"National Fire Prevention Week S E S-Station Owner Ve3img","date":"2021-10-05","time":"1738","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"Canada","state":"NJ","qth":"8 Fernwood Road, Florham Park","lotw":"N","dist":"1828","grid":"FN04jm"},{"call":"VA3FIRE","name":"National Fire Prevention Week S E S-Station owner VE3IMG","date":"2021-10-05","time":"1803","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-03","country":"Canada","state":"NJ","qth":"8 Fernwood Road, Florham Park","lotw":"N","dist":"10355","grid":"FN04jm"},{"call":"OH3FM","name":"Mikko Toivonen","date":"2021-10-05","time":"1810","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-15","country":"Finland","state":"","qth":"36810 Kuhmalahti","lotw":"Y","dist":"8186","grid":"KP21GM"},{"call":"VE2NCG","name":"Nicolas Gagnon","date":"2021-10-05","time":"1814","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-10","country":"Canada","state":"","qth":"MONTR\ufffdAL-NORD","lotw":"N","dist":"2250","grid":"FN47"},{"call":"N3F","name":"Dickson City Fire Dept ARC N3F: Fire Prevention Week SES Station","date":"2021-10-05","time":"1822","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-02","country":"United States","state":"NJ","qth":"Florham Park, NJ 07932","lotw":"N","dist":"1882","grid":"FN21EL"},{"call":"KJ7SPV","name":"Joe M Domingeuz, Jr.","date":"2021-10-05","time":"1849","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-16","country":"United States","state":"AZ","qth":"TUCSON","lotw":"N","dist":"1624","grid":"DM42"},{"call":"N8JCM","name":"JACOB C MOL, III","date":"2021-10-05","time":"1852","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"+05","country":"United States","state":"MI","qth":"Zeeland","lotw":"Y","dist":"1332","grid":"EN73"},{"call":"N4AED","name":"RICHARD O FUTRELL","date":"2021-10-05","time":"1858","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-09","country":"United States","state":"NC","qth":"Raleigh","lotw":"Y","dist":"1119","grid":"FM05TS"},{"call":"W8SEG","name":"Nicholas R Gorham","date":"2021-10-05","time":"1909","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-01","country":"United States","state":"OH","qth":"AKRON","lotw":"Y","dist":"1445","grid":"EN91"},{"call":"KE8FHH","name":"John M Weeman","date":"2021-10-05","time":"1911","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-01","country":"United States","state":"OH","qth":"Wooster","lotw":"Y","dist":"1394","grid":"EN90AT"},{"call":"WY8F","name":"Gerald D Rutter, Jr","date":"2021-10-05","time":"1919","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-07","country":"United States","state":"OH","qth":"Avon Lake","lotw":"Y","dist":"1438","grid":"EN91AM"},{"call":"YT3PL","name":"Ljubisa Petrovic","date":"2021-10-05","time":"1949","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-16","country":"Serbia","state":"","qth":"Bobovo","lotw":"Y","dist":"9237","grid":"KN04OF"},{"call":"KJ7BES","name":"Steve H Walters","date":"2021-10-05","time":"2026","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"UT","qth":"OREM","lotw":"Y","dist":"1820","grid":"DN40dg"},{"call":"NOF","name":"","date":"2021-10-06","time":"2340","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"57","country":"United States","state":"","qth":"","lotw":"N","dist":"","grid":""},{"call":"AA4RF","name":"Lewis R Mcallister","date":"2021-10-07","time":"0005","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-10","country":"United States","state":"VA","qth":"COVINGTON","lotw":"Y","dist":"1367","grid":"FM07"},{"call":"AD0TY","name":"Sutton M Doty","date":"2021-10-07","time":"0007","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-11","country":"United States","state":"IN","qth":"ROSEDALE","lotw":"Y","dist":"970","grid":"EM69HO"},{"call":"W4RFA","name":"Ronald F Appel","date":"2021-10-07","time":"0038","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-15","country":"United States","state":"FL","qth":"DUNEDIN","lotw":"N","dist":"1162","grid":"EL88PC"},{"call":"N4F","name":"Steve Masticola","date":"2021-10-07","time":"0102","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"8 Fernwood Road, Florham Park","lotw":"N","dist":"883","grid":"EM74ta"},{"call":"N8F","name":"N8f: Fire Prevention Week Ses - Station Owner Kb8uey","date":"2021-10-07","time":"0110","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NJ","qth":"Florham Park","lotw":"N","dist":"10355","grid":""},{"call":"KE8INO","name":"Chris R Abod","date":"2021-10-07","time":"2058","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"MI","qth":"Croswell","lotw":"N","dist":"1534","grid":"EN83qg"},{"call":"KD2RWC","name":"Paul A Mann","date":"2021-10-07","time":"2225","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-03","country":"United States","state":"NY","qth":"Albion","lotw":"Y","dist":"1804","grid":"FN03VG"},{"call":"VA3MBT","name":"Michael Bell","date":"2021-10-07","time":"2228","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-04","country":"Canada","state":"ON","qth":"KINGSTON","lotw":"N","dist":"1984","grid":"FN14SF"},{"call":"KD9TWA","name":"Kenneth W Deans, Sr","date":"2021-10-07","time":"2230","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-02","country":"United States","state":"IL","qth":"Evanston","lotw":"Y","dist":"1183","grid":"EN62DB"},{"call":"ON3KV","name":"Kris Verhasselt","date":"2021-10-07","time":"2232","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-13","country":"Belgium","state":"","qth":"AALST","lotw":"Y","dist":"7757","grid":"JO20AW"},{"call":"W3CHH","name":"Charles H Hemstreet, III","date":"2021-10-07","time":"2235","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-09","country":"United States","state":"FL","qth":"North Port","lotw":"N","dist":"1268","grid":"EL87WC"},{"call":"N8OCJ","name":"Brian R Williams","date":"2021-10-07","time":"2239","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+00","country":"United States","state":"OH","qth":"Columbus","lotw":"Y","dist":"1257","grid":"EM89LW"},{"call":"KJ7PO","name":"Donald R Kling","date":"2021-10-07","time":"2241","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"+09","country":"United States","state":"FL","qth":"St. Cloud","lotw":"Y","dist":"1685","grid":"EL98"},{"call":"WD4MTK","name":"HUGH W MOHR","date":"2021-10-07","time":"2244","band":"20M","mode":"FT8","rst_sent":"+15","rst_rcvd":"+18","country":"United States","state":"NC","qth":"WILMINGTON","lotw":"N","dist":"1481","grid":"FM14BF"},{"call":"KD4MZM","name":"ERIC T OWEN","date":"2021-10-07","time":"2255","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"+10","country":"United States","state":"FL","qth":"SARASOTA","lotw":"N","dist":"1224","grid":"EL87RG"},{"call":"AI6LL","name":"Bill S Chan","date":"2021-10-07","time":"2259","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-14","country":"United States","state":"CA","qth":"Sunnyvale","lotw":"N","dist":"2626","grid":"CM87XI"},{"call":"N4YZ","name":"TOMMIE L WOOD","date":"2021-10-07","time":"2300","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"+01","country":"United States","state":"NC","qth":"SALISBURY","lotw":"N","dist":"1260","grid":"EM95RN"},{"call":"WB8CZH","name":"Sean W Walczak","date":"2021-10-07","time":"2302","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-04","country":"United States","state":"FL","qth":"Tampa","lotw":"Y","dist":"1194","grid":"EL88UD"},{"call":"AC7JM","name":"JOHN A MITCHELL","date":"2021-10-07","time":"2307","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-04","country":"United States","state":"AZ","qth":"GREEN VALLEY","lotw":"Y","dist":"1631","grid":"DM41LT"},{"call":"K8JDS","name":"Jason D Southwell","date":"2021-10-07","time":"2310","band":"20M","mode":"FT8","rst_sent":"+04","rst_rcvd":"+08","country":"United States","state":"MI","qth":"Mason","lotw":"Y","dist":"1380","grid":"EN72RO"},{"call":"KF6XJ","name":"CHARLES F MC MILLAN","date":"2021-10-07","time":"2317","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-10","country":"United States","state":"NM","qth":"LOS ALAMOS","lotw":"Y","dist":"1219","grid":"DM76"},{"call":"W9HJ","name":"William H Johnston","date":"2021-10-07","time":"2321","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-06","country":"United States","state":"PA","qth":"Hanover","lotw":"Y","dist":"1702","grid":"FM19MS"},{"call":"AB9QT","name":"Gilbert A Daniel, III","date":"2021-10-07","time":"2323","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+20","country":"United States","state":"WI","qth":"Rhinelander","lotw":"Y","dist":"1502","grid":"EN55GP"},{"call":"N4JLR","name":"Jay S Kaplan","date":"2021-10-07","time":"2325","band":"20M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-08","country":"United States","state":"FL","qth":"Melbourne","lotw":"N","dist":"1348","grid":"EL98QB"},{"call":"W8JES","name":"John E Santmire","date":"2021-10-07","time":"2333","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+04","country":"United States","state":"OH","qth":"Findlay","lotw":"Y","dist":"1302","grid":"EN81EB"},{"call":"K9WKJ","name":"WAYNE K JOHNSON","date":"2021-10-07","time":"2335","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-06","country":"United States","state":"WI","qth":"CHIPPEWA FALLS","lotw":"Y","dist":"1394","grid":"EN44HW"},{"call":"WA2COU","name":"ROBERT L KELLY","date":"2021-10-07","time":"2337","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-16","country":"United States","state":"NC","qth":"945 Dalmore Dr, Fayetteville","lotw":"N","dist":"1396","grid":"FM05ND"},{"call":"K7UGA","name":"CENTRAL ARIZONA DX ASSN","date":"2021-10-07","time":"2348","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-05","country":"United States","state":"AZ","qth":"TEMPE","lotw":"Y","dist":"1701","grid":"DM33"},{"call":"KC3PIB","name":"CHRISTOPHER ANDERSON","date":"2021-10-07","time":"2352","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-04","country":"United States","state":"PA","qth":"PITTSBURGH","lotw":"Y","dist":"1502","grid":"EN90XJ"},{"call":"K7UGA","name":"Central Arizona Dx Assn","date":"2021-10-08","time":"0000","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"AZ","qth":"TEMPE","lotw":"Y","dist":"1705","grid":"DM43aj"},{"call":"K7UGA","name":"Central Arizona Dx Assn","date":"2021-10-08","time":"0135","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"AZ","qth":"TEMPE","lotw":"N","dist":"1705","grid":"DM43aj"},{"call":"AA4RF","name":"Lewis R Mcallister","date":"2021-10-08","time":"0141","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-07","country":"United States","state":"VA","qth":"COVINGTON","lotw":"Y","dist":"1367","grid":"FM07"},{"call":"N6F","name":"N6F: Fire Prevention Week SES - Station Owner K6QCB","date":"2021-10-08","time":"0148","band":"40M","mode":"FT8","rst_sent":"+06","rst_rcvd":"-14","country":"United States","state":"NJ","qth":"Florham Park","lotw":"N","dist":"2535","grid":"DM14"},{"call":"WA3THL","name":"ROBERT D MORRIS","date":"2021-10-08","time":"0203","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"+02","country":"United States","state":"DE","qth":"WILMINGTON","lotw":"Y","dist":"1818","grid":"FM29FU"},{"call":"N3MK","name":"Donald G Snider, Jr","date":"2021-10-08","time":"0212","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-14","country":"United States","state":"VA","qth":"Chincoteague","lotw":"Y","dist":"1764","grid":"FM27HV"},{"call":"KB3MXK","name":"MITCHELL J PITTINGER","date":"2021-10-08","time":"0221","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-17","country":"United States","state":"MD","qth":"REISTERSTOWN","lotw":"Y","dist":"1694","grid":"FM19NL"},{"call":"KC7RR","name":"MATTHEW B RICHINS","date":"2021-10-08","time":"0424","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-07","country":"United States","state":"AZ","qth":"SAN TAN VALLEY","lotw":"Y","dist":"1668","grid":"DM44"},{"call":"KN7D","name":"Lawrence V Hanney","date":"2021-10-08","time":"1652","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"UT","qth":"KAYSVILLE","lotw":"Y","dist":"1878","grid":"DN41ab"},{"call":"K4DXW","name":"Keith Weaver","date":"2021-10-08","time":"1704","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"VA","qth":"New Kent","lotw":"N","dist":"1618","grid":"FM17mm"},{"call":"N6GR","name":"Brad Rich","date":"2021-10-08","time":"1728","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"NM","qth":"Alamogordo","lotw":"N","dist":"1147","grid":"DM72as"},{"call":"K8AH","name":"('Russ')William R MC INTYRE, JR","date":"2021-10-08","time":"1802","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"MI","qth":"Holland","lotw":"Y","dist":"1317","grid":"EN74"},{"call":"N9WQP","name":"Jerry W Hankins, III","date":"2021-10-08","time":"1820","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-08","country":"United States","state":"IN","qth":"Terre Haute","lotw":"Y","dist":"946","grid":"EM69GJ"},{"call":"W4MLB","name":"Platinum Coast Amateur Radio Society","date":"2021-10-08","time":"1950","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Melbourne","lotw":"N","dist":"1353","grid":"EL97qx"},{"call":"W7SW","name":"Scotty W Rathjen","date":"2021-10-08","time":"2045","band":"20M","mode":"CW","rst_sent":"599","rst_rcvd":"599","country":"United States","state":"AZ","qth":"Sun City West","lotw":"N","dist":"831","grid":"DM33up"},{"call":"K4DKW","name":"JEFFREY A MEYER","date":"2021-06-26","time":"1833","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2B","country":"United States","state":"MI","qth":"Painesville","lotw":"N","dist":"","grid":"EN64"},{"call":"VE2CSP","name":"ASSOCIATION RADIO AMATEUR PORTNEUF INC.","date":"2021-06-26","time":"1854","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2E","country":"Canada","state":"QC","qth":"DONNACONA","lotw":"Y","dist":"","grid":"FN46"},{"call":"KU4GC","name":"DIETOLF RAMM","date":"2021-06-26","time":"1857","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2D","country":"United States","state":"NC","qth":"HILLSBOROUGH","lotw":"N","dist":"1399","grid":"FM06lb"},{"call":"N8MME","name":"DAVID L GAMAGE","date":"2021-06-26","time":"1907","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"DAVISON","lotw":"N","dist":"","grid":"EN83ga"},{"call":"K4GHR","name":"Brent E Williams, 667","date":"2021-06-26","time":"1910","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"AL","qth":"Orange Beach","lotw":"N","dist":"876","grid":"EM73sx"},{"call":"K4AKS","name":"Richard G Coloyan","date":"2021-06-26","time":"1921","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"FL","qth":"PORT RICHEY","lotw":"Y","dist":"","grid":"EL88ph"},{"call":"W8NK","name":"Terry L Williams","date":"2021-06-26","time":"1926","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"Freeport","lotw":"Y","dist":"","grid":"EN72IS38"},{"call":"W3WDK","name":"DONALD C WEAVER","date":"2021-06-26","time":"1929","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"PA","qth":"MC KEAN","lotw":"Y","dist":"","grid":"EN92wa"},{"call":"W9LR","name":"WILLIAM L RIBISH","date":"2021-06-26","time":"1940","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"WI","qth":"NEW BERLIN","lotw":"N","dist":"","grid":"EN52"},{"call":"N0DL","name":"DAVID J LE VASSEUR","date":"2021-06-26","time":"1945","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"6A","country":"United States","state":"SD","qth":"WATERTOWN","lotw":"Y","dist":"","grid":"EN14kv"},{"call":"W8MAL","name":"Michael A Lacumsky","date":"2021-06-26","time":"1956","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"7A","country":"United States","state":"OH","qth":"Oak Harbor","lotw":"Y","dist":"","grid":"EN81KL11"},{"call":"W9UUU","name":"Wabash Valley Amateur Radio Association Inc","date":"2021-06-26","time":"2003","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"8A","country":"United States","state":"IN","qth":"Terre Haute","lotw":"N","dist":"955","grid":"EM69hl"},{"call":"N9ZE","name":"Steven C Jurasek","date":"2021-06-26","time":"2018","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"MI","qth":"Elmhurst","lotw":"Y","dist":"","grid":"EN61av"},{"call":"N4GXX","name":"STEPHEN D STROM","date":"2021-06-26","time":"2020","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"CRESTVIEW","lotw":"N","dist":"703","grid":"EM60qr"},{"call":"N8H","name":"The Hell Schreibers from West MICHIGAN","date":"2021-06-26","time":"2025","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"OH","qth":"Rockford","lotw":"N","dist":"","grid":""},{"call":"VA3NNW","name":"Nick Waterman","date":"2021-06-26","time":"2030","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"Canada","state":"ON","qth":"WATERLOO","lotw":"N","dist":"1671","grid":"EN93rl"},{"call":"KG5KUQ","name":"George G Robertson","date":"2021-06-26","time":"2036","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"Midland","lotw":"N","dist":"","grid":"DM82WA54"},{"call":"K8UU","name":"DRAKE ARC CONTEST GROUP","date":"2021-06-26","time":"2038","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"OH","qth":"Springboro","lotw":"N","dist":"1157","grid":"EM79vn"},{"call":"W5YGS","name":"","date":"2021-06-26","time":"2039","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"OK","qth":"","lotw":"Y","dist":"","grid":""},{"call":"KD5QHV","name":"Bernard G Krasowski","date":"2021-06-26","time":"2041","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"El Paso","lotw":"Y","dist":"","grid":"DM61us"},{"call":"W3ARO","name":"Wayne County Amateur Radio Club","date":"2021-06-26","time":"2046","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"5A","country":"United States","state":"PA","qth":"Waymart","lotw":"N","dist":"1898","grid":"FN21gn"},{"call":"W8GMM","name":"EAST PALESTINE AMATEUR RADIO CLUB","date":"2021-06-26","time":"2057","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"OH","qth":"East Palestine","lotw":"N","dist":"1491","grid":"EN90ru"},{"call":"KD2SSS","name":"Dane E Groszek","date":"2021-06-26","time":"2105","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NY","qth":"Middletown","lotw":"N","dist":"","grid":"FN21SK10"},{"call":"N5CET","name":"Charles E Troxel, Jr","date":"2021-06-26","time":"2124","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"TX","qth":"Alpine","lotw":"N","dist":"","grid":"DM80EG83"},{"call":"W2C","name":"Warren County Radio Club Inc","date":"2021-06-26","time":"2132","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"5A","country":"United States","state":"NY","qth":"Glens Falls","lotw":"N","dist":"2037","grid":"FN30js"},{"call":"WO4D","name":"ORRIN M DELANEY","date":"2021-06-26","time":"2134","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"MELBOURNE","lotw":"Y","dist":"1348","grid":"EL98qb"},{"call":"W5APO","name":"ROBERT C SWAIN","date":"2021-06-26","time":"2145","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"SAINT PETERSBURG","lotw":"N","dist":"","grid":"EL87qr"},{"call":"N4QEP","name":"CHARLES E STRNAD","date":"2021-06-26","time":"2223","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"MILTON","lotw":"N","dist":"667","grid":"EM60lo"},{"call":"K6RWM","name":"BOB MUELLER","date":"2021-06-26","time":"2337","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"CA","qth":"ALTA LOMA","lotw":"Y","dist":"","grid":"DM14ed"},{"call":"W1DYJ","name":"Lawrence W Banks","date":"2021-06-26","time":"2342","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MA","qth":"Woburn","lotw":"Y","dist":"","grid":"FN42kl"},{"call":"W9HH","name":"STEVEN J MARCUM","date":"2021-06-26","time":"2347","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"IL","qth":"STILLMAN VALLEY","lotw":"Y","dist":"1136","grid":"EN52jc"},{"call":"KD7RF","name":"MICHAEL J MORONEY, III","date":"2021-06-27","time":"0008","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AL","qth":"New Market","lotw":"Y","dist":"","grid":"EM64RV93"},{"call":"K5JCN","name":"James C Nocker, Sr","date":"2021-06-27","time":"0016","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"OK","qth":"Edmond","lotw":"N","dist":"487","grid":"EM15gp"},{"call":"K4HY","name":"OWENSBORO AMATEUR RADIO CLUB","date":"2021-06-27","time":"0021","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"KY","qth":"Owensboro","lotw":"N","dist":"833","grid":"EM67ks"},{"call":"KG5MUC","name":"Kelley S Unger","date":"2021-06-27","time":"0028","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1F","country":"United States","state":"TX","qth":"Santa Fe","lotw":"Y","dist":"","grid":"EL29LI72"},{"call":"AG5T","name":"MARTIN G BLAISE","date":"2021-06-27","time":"0048","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"HOUSTON","lotw":"Y","dist":"","grid":"EL29FU98"},{"call":"W8HW","name":"BRUCE L CAMPBELL","date":"2021-06-27","time":"0050","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"FL","qth":"PORT SAINT LUCIE","lotw":"Y","dist":"","grid":"EL97TF65"},{"call":"K7DOD","name":"FRED DOEHRING","date":"2021-06-27","time":"0109","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"UT","qth":"SANDY","lotw":"Y","dist":"","grid":"DN40BO42"},{"call":"K4KGM","name":"Kevin G Medlin","date":"2021-06-27","time":"0112","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"NC","qth":"Durham","lotw":"N","dist":"","grid":"FM06NB03"},{"call":"W4LX","name":"FORT MYERS AMATEUR RADIO CLUB","date":"2021-06-27","time":"0115","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"6A","country":"United States","state":"FL","qth":"Fort Myers","lotw":"N","dist":"1323","grid":"EL96cp"},{"call":"NG3Y","name":"Tadeusz Robak","date":"2021-06-27","time":"0118","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MD","qth":"COCKEYSVILLE","lotw":"Y","dist":"1715","grid":"FM19ql"},{"call":"WB4EHG","name":"Richard B Joerger","date":"2021-06-27","time":"0131","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"DAVIE","lotw":"Y","dist":"","grid":"EL96tc"},{"call":"VE3NRT","name":"Christopher John Sullivan","date":"2021-06-27","time":"0134","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"Canada","state":"ON","qth":"AURORA","lotw":"Y","dist":"","grid":"FN03gx"},{"call":"K3WEB","name":"Masonic Village Amateur Radio Club","date":"2021-06-27","time":"0143","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"4E","country":"United States","state":"PA","qth":"Elizabethtown","lotw":"N","dist":"1744","grid":"FN10qd"},{"call":"WJ8B","name":"ANDREW C SMITH","date":"2021-06-27","time":"0152","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3E","country":"United States","state":"OH","qth":"Gahanna","lotw":"N","dist":"1278","grid":"EN80na"},{"call":"W9AWX","name":"Gregg R Schulz","date":"2021-06-27","time":"0157","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"WI","qth":"Waukesha","lotw":"N","dist":"","grid":"EN53va"},{"call":"W4AMC","name":"BRIGHT LEAF AMATEUR RADIO CLUB","date":"2021-06-27","time":"0159","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"NC","qth":"GREENVILLE","lotw":"N","dist":"1543","grid":"FM15hn"},{"call":"K4PH","name":"STEVEN T APPLETON","date":"2021-06-27","time":"0204","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"NC","qth":"LEXINGTON","lotw":"N","dist":"1284","grid":"EM95ur"},{"call":"N3DGE","name":"MICHAEL TRACHTENBERG","date":"2021-06-27","time":"0208","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2E","country":"United States","state":"PA","qth":"Philadelphia","lotw":"Y","dist":"","grid":"FN20ja"},{"call":"K8RJH","name":"Ronald J Hollas","date":"2021-06-27","time":"0210","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"OH","qth":"Bedford","lotw":"Y","dist":"1459","grid":"EN91fj"},{"call":"AC8TO","name":"Donald C Winsor","date":"2021-06-27","time":"0211","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"MI","qth":"Ann Arbor","lotw":"Y","dist":"","grid":"EN82CE98"},{"call":"W8SSM","name":"Robert W Donaldson","date":"2021-06-27","time":"0214","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"MI","qth":"Sault Sainte Marie","lotw":"Y","dist":"","grid":"EN76TK29"},{"call":"W2CBL","name":"Ohio Army National Guard Veterans Radio Club","date":"2021-06-27","time":"0216","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3E","country":"United States","state":"OH","qth":"Newark","lotw":"N","dist":"","grid":"EN80sb"},{"call":"W4LHS","name":"COASTAL AMATEUR RADIO SOCIETY","date":"2021-06-27","time":"0237","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"GA","qth":"Tybee","lotw":"Y","dist":"1183","grid":"EM91kx"},{"call":"KR4EE","name":"Jill Dybka","date":"2021-06-27","time":"0241","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TN","qth":"Sparta","lotw":"Y","dist":"","grid":"EM75dx"},{"call":"W4IZT","name":"Mountain Amateur Radio Contest Org","date":"2021-06-27","time":"0317","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"GA","qth":"Marietta","lotw":"N","dist":"874","grid":"EM85"},{"call":"N4N","name":"North Fulton Amateur Radio League","date":"2021-06-27","time":"0323","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"GA","qth":"Roswell","lotw":"N","dist":"883","grid":"EM74"},{"call":"W7TBC","name":"THUNDERBIRD AMATEUR RADIO CLUB","date":"2021-06-27","time":"0422","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3D","country":"United States","state":"AZ","qth":"Phoenix","lotw":"N","dist":"1723","grid":"DM33vo"},{"call":"ND1J","name":"DAVID BLUBAUGH","date":"2021-06-27","time":"0429","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NC","qth":"Senoia","lotw":"Y","dist":"","grid":"EM73RH56"},{"call":"W8GVB","name":"MARION AMATEUR RADIO CLUB","date":"2021-06-27","time":"0447","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"OH","qth":"Marion","lotw":"N","dist":"1300","grid":"EN80lm"},{"call":"KD0MZT","name":"Christopher J Michas","date":"2021-06-27","time":"0455","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"CO","qth":"Denver","lotw":"Y","dist":"","grid":"DM79mq"},{"call":"KD0ZSA","name":"Riverbend Wireless And Mechanical Society","date":"2021-06-27","time":"0520","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"MN","qth":"Faribault","lotw":"N","dist":"1310","grid":"EN34ih"},{"call":"N5MT","name":"MICHAEL A DAVIDSON","date":"2021-06-27","time":"0523","band":"80M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"LA","qth":"Denham Springs","lotw":"N","dist":"","grid":"EM40"},{"call":"N5QXP","name":"FRANCISCO AGUILAR, JR","date":"2021-06-27","time":"0559","band":"80M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"SPRING","lotw":"Y","dist":"","grid":"EM20GD74"},{"call":"KP4ES","name":"PUERTO RICO AMATEUR RADIO LEAGUE","date":"2021-06-27","time":"0604","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"Puerto Rico","state":"PR","qth":"Humacao","lotw":"N","dist":"3173","grid":"FK78"},{"call":"W1J","name":"Boy Scouts of America Jamboree on The Air Daniel Webster Council","date":"2021-06-27","time":"0617","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"GA","qth":"Newmarket","lotw":"N","dist":"2308","grid":"EM74"},{"call":"K8MAO","name":"Andrew W Nichols","date":"2021-06-27","time":"0744","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"WV","qth":"Valley Bend","lotw":"Y","dist":"","grid":"FM08"},{"call":"KA6BIM","name":"DAVID B TUCKER","date":"2021-06-27","time":"0748","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2D","country":"United States","state":"OR","qth":"COQUILLE","lotw":"Y","dist":"2898","grid":"CN73"},{"call":"W3VPR","name":"ANNE ARUNDEL RADIO CLUB","date":"2021-06-27","time":"0751","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"MD","qth":"Davidsonville","lotw":"N","dist":"1690","grid":"FM18qv"},{"call":"NK8O","name":"CHARLES W POWELL","date":"2021-06-27","time":"0805","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"AL","qth":"Louisburg","lotw":"Y","dist":"","grid":"EM63"},{"call":"AB1WG","name":"CLIFFORD A LANG","date":"2021-06-27","time":"0806","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"VT","qth":"Burlington","lotw":"Y","dist":"","grid":"FN34"},{"call":"KC3QVQ","name":"Frederick J Roeper","date":"2021-06-27","time":"0813","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MD","qth":"Parkton","lotw":"Y","dist":"","grid":"FM19"},{"call":"KW4XZ","name":"LARRY E BARKER","date":"2021-06-27","time":"0817","band":"40M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"VA","qth":"FREDERICKSBURG","lotw":"Y","dist":"","grid":"FM18gg"},{"call":"N4FA","name":"Richard Melnik","date":"2021-06-27","time":"1639","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"FL","qth":"Cape Coral","lotw":"Y","dist":"","grid":"EL96BM65"},{"call":"W4KPR","name":"KINGS POINT AMATEUR CLUB","date":"2021-06-27","time":"1651","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3F","country":"United States","state":"FL","qth":"Sun City Center","lotw":"Y","dist":"","grid":"EL87TR70"},{"call":"K7RE","name":"BRIAN D KASSEL","date":"2021-06-27","time":"1657","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"SD","qth":"SPEARFISH","lotw":"Y","dist":"","grid":"DN84AM66"},{"call":"W7TBC","name":"THUNDERBIRD AMATEUR RADIO CLUB","date":"2021-06-27","time":"1701","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3D","country":"United States","state":"AZ","qth":"Phoenix","lotw":"Y","dist":"1723","grid":"DM33vo"},{"call":"KF0X","name":"Randall S Malick","date":"2021-06-27","time":"1710","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1F","country":"United States","state":"AZ","qth":"Oro Valley","lotw":"Y","dist":"","grid":"DM42mk"},{"call":"KG7DYX","name":"Russell M Bohnhoff","date":"2021-06-27","time":"1715","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AZ","qth":"Tucson","lotw":"N","dist":"","grid":"DM42kh"},{"call":"K5OA","name":"RUSSELL J GUIDRY, SR","date":"2021-06-27","time":"1717","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"CA","qth":"Murrieta","lotw":"Y","dist":"","grid":"DM14mg"},{"call":"KI7TIG","name":"Max L Presnell, Jr","date":"2021-06-26","time":"2151","band":"20M","mode":"DIG","rst_sent":"","rst_rcvd":"","country":"United States","state":"AZ","qth":"Tucson","lotw":"","dist":"","grid":"DM42IB84"},{"call":"KJ4ZU","name":"Jason M Cardwell","date":"2021-10-15","time":"2024","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Orlando","lotw":"N","dist":"1286","grid":"EL98km"},{"call":"K7JSG","name":"Scott Green","date":"2021-10-15","time":"2056","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"UT","qth":"Eagle Mountain","lotw":"Y","dist":"1845","grid":"DN40ai"},{"call":"VE6CQ","name":"Rick - Ve6cq","date":"2021-10-15","time":"2323","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"Canada","state":"AB","qth":"Calgary","lotw":"N","dist":"2651","grid":"DO21vb"},{"call":"N7HG","name":"Herbert Goodluck","date":"2021-10-15","time":"2333","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"AZ","qth":"LUKACHUKAI","lotw":"N","dist":"1485","grid":"DM56jk"},{"call":"K0OO","name":"PATRICK Z BENSON","date":"2021-10-16","time":"0250","band":"40M","mode":"RTTY","rst_sent":"599","rst_rcvd":"599","country":"United States","state":"MO","qth":"LIBERTY","lotw":"Y","dist":"749","grid":"EM29sf"},{"call":"WB3DDJ","name":"MICHAEL E KIMBLE","date":"2021-10-16","time":"0352","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-19","country":"United States","state":"PA","qth":"Elkland","lotw":"Y","dist":"1785","grid":"FN11IX"},{"call":"KJ7OPR","name":"Andrew T Wells","date":"2021-10-16","time":"0424","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-14","country":"United States","state":"WY","qth":"Moose","lotw":"Y","dist":"1925","grid":"DN43PO"},{"call":"KB4DW","name":"Danilo Whittaker","date":"2021-10-20","time":"2115","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Brandon","lotw":"Y","dist":"1150","grid":"EL87ts"},{"call":"W8SH","name":"MICHIGAN STATE UNIVERSITY AMA RAD CLUB","date":"2021-10-20","time":"2139","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"MI","qth":"EAST LANSING","lotw":"N","dist":"1364","grid":"EN72sr"},{"call":"W8CUL","name":"WEST VIRGINIA UNIV AMATEUR RADIO CLUB","date":"2021-10-20","time":"2222","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"WV","qth":"MORGANTOWN","lotw":"N","dist":"1415","grid":"FM09ap"},{"call":"W7HU","name":"ELIXANDER VALLADARES","date":"2021-10-20","time":"2306","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"CUTLER BAY","lotw":"Y","dist":"1450","grid":"EL95tn"},{"call":"N5DCH","name":"DAVID C HERRING","date":"2021-10-21","time":"2218","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-14","country":"United States","state":"NM","qth":"Los Lunas","lotw":"Y","dist":"1229","grid":"DM64PT"},{"call":"WW9GS/4","name":"","date":"2021-10-21","time":"2221","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-11","country":"United States","state":"","qth":"","lotw":"N","dist":"","grid":""},{"call":"KO4HJL","name":"David A Schultz","date":"2021-10-21","time":"2226","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-09","country":"United States","state":"VA","qth":"Lorton","lotw":"N","dist":"1635","grid":"FM18JQ"},{"call":"NK3L","name":"THIEU D LE","date":"2021-10-21","time":"2239","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-13","country":"United States","state":"WA","qth":"ISSAQUAH","lotw":"Y","dist":"2906","grid":"CM97"},{"call":"KC9MEG","name":"Dennis C Blaha","date":"2021-10-21","time":"2245","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-07","country":"United States","state":"IL","qth":"Wonder Lake","lotw":"Y","dist":"1190","grid":"EN52TI"},{"call":"KK6MYO","name":"William G Meyerchak","date":"2021-10-21","time":"2251","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-07","country":"United States","state":"CO","qth":"HGHLNDS RANCH","lotw":"Y","dist":"1272","grid":"DM79MM"},{"call":"KB2DSQ","name":"Christopher W Getman","date":"2021-10-21","time":"2254","band":"20M","mode":"FT8","rst_sent":"-22","rst_rcvd":"-19","country":"United States","state":"NY","qth":"ROCHESTER","lotw":"Y","dist":"1826","grid":"FN13DC"},{"call":"KD2BS","name":"Steven E Schopp","date":"2021-10-21","time":"2305","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-08","country":"United States","state":"NY","qth":"Westbury","lotw":"Y","dist":"2010","grid":"FN30FS"},{"call":"W9YB","name":"PURDUE AMATEUR RADIO CLUB","date":"2021-10-21","time":"2346","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"IN","qth":"Lafayette","lotw":"N","dist":"1070","grid":"EN60nk"},{"call":"KC8YDS","name":"Steven T Ruman, Jr","date":"2021-10-22","time":"0256","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-06","country":"United States","state":"OH","qth":"Niles","lotw":"Y","dist":"1496","grid":"EN91OE"},{"call":"KB8NCE","name":"GREGG A WALTON","date":"2021-10-22","time":"0313","band":"40M","mode":"FT8","rst_sent":"08","rst_rcvd":"06","country":"United States","state":"OH","qth":"AKRON","lotw":"Y","dist":"1430","grid":"EN91"},{"call":"VA3EKG","name":"Jerome Cloutier","date":"2021-10-22","time":"0323","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-16","country":"Canada","state":"","qth":"Wheatley Ontario","lotw":"Y","dist":"1451","grid":"EN82RD"},{"call":"W6AER","name":"Lucas L Ford","date":"2021-10-22","time":"0326","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-23","country":"United States","state":"CA","qth":"Pacifica","lotw":"Y","dist":"2668","grid":"CM87SP"},{"call":"VE3CCD","name":"Curtis Derrick Davis","date":"2021-10-22","time":"0328","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-14","country":"Canada","state":"","qth":"Unit 65","lotw":"N","dist":"1830","grid":"FN04JM"},{"call":"VE4HQ","name":"Thomas James Blatch","date":"2021-10-22","time":"0348","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-13","country":"Canada","state":"","qth":"WINNIPEG","lotw":"Y","dist":"1948","grid":"EN19MV"},{"call":"N8OHA","name":"MARK A BAILEY","date":"2021-10-22","time":"0352","band":"40M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-03","country":"United States","state":"OH","qth":"North Ridgeville","lotw":"Y","dist":"1425","grid":"EN81XI"},{"call":"TI2VVV","name":"Victor Carrera","date":"2021-10-22","time":"0409","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-09","country":"Costa Rica","state":"","qth":"Sanjose","lotw":"Y","dist":"2701","grid":"EJ79"},{"call":"W6SA","name":"WALT FLESHER","date":"2021-10-22","time":"0436","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"United States","state":"NV","qth":"HENDERSON","lotw":"Y","dist":"1986","grid":"DM26MA"},{"call":"S55OO","name":"GORAN ANDRIC","date":"2021-10-22","time":"0525","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-24","country":"Slovenia","state":"","qth":"Kamnik","lotw":"Y","dist":"8697","grid":"JN76HD"},{"call":"NK1I","name":"Roger C Pushor","date":"2021-10-22","time":"0547","band":"40M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-24","country":"United States","state":"ME","qth":"Falmouth","lotw":"Y","dist":"2383","grid":"FN43TT"},{"call":"KO3D","name":"VAUGHN E COST","date":"2021-10-22","time":"1912","band":"20M","mode":"SSTV","rst_sent":"555","rst_rcvd":"353","country":"United States","state":"PA","qth":"LIGONIER","lotw":"N","dist":"1551","grid":"FN00jf"},{"call":"W8CFS","name":"Jordan D Mantey","date":"2021-10-23","time":"0002","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"IL","qth":"Bartlett","lotw":"Y","dist":"1483","grid":"EN83gm"},{"call":"W8LYO","name":"John F Dolinar","date":"2021-10-23","time":"0121","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-03","country":"United States","state":"OH","qth":"North Ridgeville","lotw":"Y","dist":"1424","grid":"EN81XI"},{"call":"KD9OFI","name":"Jason R Scholz","date":"2021-10-23","time":"0123","band":"40M","mode":"FT8","rst_sent":"03","rst_rcvd":"-03","country":"United States","state":"WI","qth":"Sun Prairie","lotw":"Y","dist":"1245","grid":"EN53JE"},{"call":"NK0V","name":"AREND SCHUURMAN","date":"2021-10-23","time":"0125","band":"40M","mode":"FT8","rst_sent":"14","rst_rcvd":"-05","country":"United States","state":"SD","qth":"ELKTON","lotw":"Y","dist":"1323","grid":"EN14SF"},{"call":"K8DID","name":"RONALD L GORZYNSKI","date":"2021-10-23","time":"0129","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-10","country":"United States","state":"MI","qth":"LUDINGTON","lotw":"Y","dist":"1420","grid":"EN63SX"},{"call":"K0TG","name":"JOHN T DESMOND","date":"2021-10-23","time":"0145","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-12","country":"United States","state":"MN","qth":"VADNAIS HEIGHTS","lotw":"Y","dist":"1395","grid":"EN35LB"},{"call":"N3NVA","name":"BARRY A VOGT","date":"2021-10-23","time":"0148","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-11","country":"United States","state":"PA","qth":"WIND GAP","lotw":"Y","dist":"1878","grid":"FN20IT"},{"call":"KF0FFZ","name":"Jeremy Hanson","date":"2021-10-23","time":"0150","band":"40M","mode":"FT8","rst_sent":"03","rst_rcvd":"-06","country":"United States","state":"MN","qth":"NEW LONDON","lotw":"Y","dist":"1429","grid":"EN25LI"},{"call":"NK4DX","name":"Ezequiel Prado","date":"2021-10-23","time":"0157","band":"40M","mode":"FT8","rst_sent":"07","rst_rcvd":"-13","country":"United States","state":"FL","qth":"FORT LAUDERDALE","lotw":"N","dist":"1493","grid":"EL97"},{"call":"K4RQZ","name":"MICHAEL KATO","date":"2021-10-23","time":"0204","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-16","country":"United States","state":"VA","qth":"ALEXANDRIA","lotw":"Y","dist":"1655","grid":"FM18LT"},{"call":"N6AMQ","name":"RYAN T HERBST","date":"2021-10-23","time":"0212","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-13","country":"United States","state":"CA","qth":"REDWOOD CITY","lotw":"Y","dist":"2644","grid":"CM87VK"},{"call":"NF7Z","name":"Nelson J Farrier","date":"2021-10-23","time":"0235","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-05","country":"United States","state":"OR","qth":"Eugene","lotw":"Y","dist":"2850","grid":"CN84"},{"call":"W4EMJ","name":"FRANK SIMMONS, JR","date":"2021-10-23","time":"0249","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-13","country":"United States","state":"VA","qth":"HAMPTON","lotw":"Y","dist":"1661","grid":"FM17UB"},{"call":"NL7D","name":"Timothy H Michael","date":"2021-10-23","time":"0254","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"AZ","qth":"TUCSON","lotw":"Y","dist":"1605","grid":"DM42MF"},{"call":"NK4DX","name":"Ezequiel Prado","date":"2021-10-23","time":"0306","band":"40M","mode":"FT8","rst_sent":"03","rst_rcvd":"-10","country":"United States","state":"FL","qth":"FORT LAUDERDALE","lotw":"N","dist":"1493","grid":"EL97"},{"call":"K7CAR","name":"KENT B O SELL","date":"2021-10-23","time":"0309","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-08","country":"United States","state":"NV","qth":"Mesquite","lotw":"Y","dist":"1834","grid":"DM37NP"},{"call":"KD4HQQ","name":"KENNETH L LUNG","date":"2021-10-23","time":"0326","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-13","country":"United States","state":"FL","qth":"Homestead","lotw":"N","dist":"1508","grid":"FM16"},{"call":"KD1ELK","name":"JUSTIN L CHERINGTON","date":"2021-10-23","time":"0343","band":"80M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-16","country":"United States","state":"AZ","qth":"GILBERT","lotw":"Y","dist":"1684","grid":"DM43DI"},{"call":"WQ0P","name":"GREGORY A CERNY, SR","date":"2021-10-26","time":"1435","band":"30M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-03","country":"United States","state":"KS","qth":"Saint Marys","lotw":"Y","dist":"776","grid":"EM19WF"},{"call":"AC9HP","name":"Wayne R Michael","date":"2021-10-26","time":"1438","band":"30M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-01","country":"United States","state":"IN","qth":"Indianapolis","lotw":"Y","dist":"1041","grid":"EM69TS"},{"call":"K9RDU","name":"Rusty \"Nick\" Atkins","date":"2021-10-26","time":"1440","band":"30M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-08","country":"United States","state":"NC","qth":"Apex","lotw":"Y","dist":"1410","grid":"FM05"},{"call":"KY4GS","name":"AMANDA PLEXICO","date":"2021-10-26","time":"1443","band":"30M","mode":"FT8","rst_sent":"05","rst_rcvd":"-13","country":"United States","state":"SC","qth":"SYCAMORE","lotw":"Y","dist":"1159","grid":"EM93IA"},{"call":"W4PPC","name":"Stephen J Duncheskie","date":"2021-10-26","time":"1444","band":"30M","mode":"FT8","rst_sent":"04","rst_rcvd":"10","country":"United States","state":"AL","qth":"Huntsville","lotw":"Y","dist":"713","grid":"EM64SS"},{"call":"K8TE","name":"WILLIAM A MADER, JR","date":"2021-10-26","time":"1447","band":"30M","mode":"FT8","rst_sent":"01","rst_rcvd":"-06","country":"United States","state":"NM","qth":"RIO RANCHO","lotw":"Y","dist":"1230","grid":"DM65QG"},{"call":"WD4GZW","name":"WILLIAM R CASHION","date":"2021-10-26","time":"1450","band":"30M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-17","country":"United States","state":"TN","qth":"COOKEVILLE","lotw":"Y","dist":"850","grid":"EM76FD"},{"call":"K8TE","name":"WILLIAM A MADER, JR","date":"2021-10-26","time":"1622","band":"17M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-02","country":"United States","state":"NM","qth":"RIO RANCHO","lotw":"Y","dist":"1230","grid":"DM65QG"},{"call":"VE7AT","name":"Michael Plant","date":"2021-10-26","time":"1624","band":"17M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-09","country":"Canada","state":"","qth":"Princeton","lotw":"Y","dist":"2909","grid":"CN99RL"},{"call":"KZ5AT","name":"Arden L Bennett, Jr","date":"2021-10-26","time":"1649","band":"12M","mode":"FT8","rst_sent":"04","rst_rcvd":"-03","country":"United States","state":"CA","qth":"Oceanside","lotw":"Y","dist":"2198","grid":"DM13IF"},{"call":"AG7TH","name":"Gary E Hale","date":"2021-10-26","time":"1655","band":"10M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-16","country":"United States","state":"OR","qth":"Blachly","lotw":"Y","dist":"2882","grid":"CN84FF"},{"call":"VE2GCE","name":"Tino Zottola","date":"2021-10-26","time":"1843","band":"15M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-13","country":"Canada","state":"","qth":"BEACONSFIELD","lotw":"Y","dist":"2222","grid":"FN35BK"},{"call":"N7LWD","name":"LARRY W DAYHUFF","date":"2021-10-26","time":"1910","band":"20M","mode":"FT8","rst_sent":"02","rst_rcvd":"08","country":"United States","state":"FL","qth":"Lecanto","lotw":"N","dist":"1151","grid":"EL89"},{"call":"KE3QZ","name":"RANDY NORRIS","date":"2021-10-26","time":"1930","band":"20M","mode":"FT4","rst_sent":"05","rst_rcvd":"05","country":"United States","state":"MD","qth":"HOLLYWOOD","lotw":"Y","dist":"1678","grid":"FM18RI"},{"call":"K3ZK","name":"k3zk","date":"2021-10-26","time":"1932","band":"20M","mode":"FT4","rst_sent":"09","rst_rcvd":"01","country":"United States","state":"PA","qth":"NANTICOKE","lotw":"Y","dist":"1841","grid":"FN21AE"},{"call":"N3PKC","name":"Joseph H Jaffer, Jr","date":"2021-10-26","time":"1933","band":"20M","mode":"FT4","rst_sent":"-03","rst_rcvd":"-17","country":"United States","state":"PA","qth":"Waymart","lotw":"Y","dist":"1903","grid":"FN21HO"},{"call":"WA6YOU","name":"RONALD C PAYNE","date":"2021-10-26","time":"1934","band":"20M","mode":"FT4","rst_sent":"04","rst_rcvd":"-03","country":"United States","state":"VA","qth":"FAIRFAX","lotw":"Y","dist":"1633","grid":"FM18IU"},{"call":"KB8TXZ","name":"JAMES VIGNE","date":"2021-10-26","time":"1946","band":"20M","mode":"FT4","rst_sent":"-03","rst_rcvd":"00","country":"United States","state":"MI","qth":"ORION","lotw":"N","dist":"1453","grid":"FM29"},{"call":"WB2TQE","name":"HOWARD E KOENIG","date":"2021-10-26","time":"1947","band":"20M","mode":"FT4","rst_sent":"02","rst_rcvd":"-02","country":"United States","state":"FL","qth":"COCONUT CREEK","lotw":"Y","dist":"1479","grid":"EL96VH"},{"call":"KF0UR","name":"SHELDON W RADIN","date":"2021-10-26","time":"1948","band":"20M","mode":"FT4","rst_sent":"00","rst_rcvd":"11","country":"United States","state":"CO","qth":"COLORADO SPRINGS","lotw":"Y","dist":"1233","grid":"DM68"},{"call":"KB0GT","name":"Robert N Meyer","date":"2021-10-26","time":"1950","band":"20M","mode":"FT4","rst_sent":"-02","rst_rcvd":"-03","country":"United States","state":"MN","qth":"Rochester","lotw":"Y","dist":"1278","grid":"EN33SX"},{"call":"KC0WEA","name":"Anthony M Bernardo","date":"2021-10-26","time":"1953","band":"20M","mode":"FT4","rst_sent":"-06","rst_rcvd":"14","country":"United States","state":"CO","qth":"Colorado Springs","lotw":"Y","dist":"1222","grid":"DM78OU"},{"call":"KK4HEG","name":"Fred J Gaisser","date":"2021-10-26","time":"1959","band":"20M","mode":"FT4","rst_sent":"06","rst_rcvd":"01","country":"United States","state":"NC","qth":"Crouse","lotw":"N","dist":"1186","grid":"EM95IJ"},{"call":"KP2BH","name":"JAMES SOTO","date":"2021-10-26","time":"2002","band":"20M","mode":"FT4","rst_sent":"-08","rst_rcvd":"-03","country":"US Virgin Islands","state":"","qth":"FREDERIKSTED","lotw":"Y","dist":"3322","grid":"FK77NQ"},{"call":"G8BCG","name":"PETER TAYLOR","date":"2021-10-26","time":"2007","band":"20M","mode":"FT4","rst_sent":"-16","rst_rcvd":"-16","country":"England","state":"","qth":"LISKEARD","lotw":"Y","dist":"7232","grid":"IO70RK"},{"call":"AD4C","name":"Hector Padron","date":"2021-10-26","time":"2009","band":"20M","mode":"FT4","rst_sent":"05","rst_rcvd":"01","country":"United States","state":"FL","qth":"PORT ST LUCIE","lotw":"N","dist":"1469","grid":"EL97TH"},{"call":"KD8DEY","name":"ROBERT ANDERSON, JR","date":"2021-10-26","time":"2012","band":"20M","mode":"FT4","rst_sent":"04","rst_rcvd":"-04","country":"United States","state":"KY","qth":"Bronston","lotw":"Y","dist":"963","grid":"EM76"},{"call":"WB4ZKW","name":"Tanner B Hamm","date":"2021-10-26","time":"2047","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"KY","qth":"Science Hill","lotw":"Y","dist":"926","grid":"EM77qe"},{"call":"WG1V","name":"CARL D HOWE","date":"2021-10-26","time":"2112","band":"20M","mode":"FT4","rst_sent":"-14","rst_rcvd":"03","country":"United States","state":"MA","qth":"STOW","lotw":"Y","dist":"2235","grid":"FN42FK"},{"call":"VE3QK","name":"Allen S. Laverty","date":"2021-10-26","time":"2114","band":"20M","mode":"FT4","rst_sent":"-08","rst_rcvd":"-07","country":"Canada","state":"On","qth":"Smiths Falls","lotw":"N","dist":"10355","grid":"FN14"},{"call":"K2MFW","name":"MATT WILSON","date":"2021-10-26","time":"2117","band":"20M","mode":"FT4","rst_sent":"-05","rst_rcvd":"-07","country":"United States","state":"NJ","qth":"MILLVILLE","lotw":"N","dist":"1839","grid":"FM29LJ"},{"call":"KP2N","name":"RONALD A HALL, SR","date":"2021-10-26","time":"2119","band":"20M","mode":"FT4","rst_sent":"15","rst_rcvd":"-06","country":"United States","state":"FL","qth":"Saint Augustine","lotw":"N","dist":"1215","grid":"EL99"},{"call":"K0HKL","name":"Keith L Halverson","date":"2021-10-26","time":"2121","band":"20M","mode":"FT4","rst_sent":"00","rst_rcvd":"-09","country":"United States","state":"SD","qth":"SIOUX FALLS","lotw":"Y","dist":"1249","grid":"EN13OM"},{"call":"WA4BUO","name":"THOMAS E MORGAN","date":"2021-10-26","time":"2126","band":"20M","mode":"FT4","rst_sent":"17","rst_rcvd":"09","country":"United States","state":"SC","qth":"BISHOPVILLE","lotw":"N","dist":"1261","grid":"EM94UF"},{"call":"KN4TGU","name":"Todd P Johnson","date":"2021-10-26","time":"2131","band":"20M","mode":"FT4","rst_sent":"05","rst_rcvd":"04","country":"United States","state":"FL","qth":"Ormond Beach","lotw":"Y","dist":"1255","grid":"EL99LI"},{"call":"WM8Q","name":"John A Van Tol","date":"2021-10-26","time":"2133","band":"20M","mode":"FT4","rst_sent":"-02","rst_rcvd":"-15","country":"United States","state":"WY","qth":"Saratoga","lotw":"Y","dist":"1526","grid":"DN61ok"},{"call":"W6ZD","name":"James L Cruz","date":"2021-10-26","time":"2136","band":"20M","mode":"FT4","rst_sent":"-05","rst_rcvd":"13","country":"United States","state":"FL","qth":"Wellington","lotw":"Y","dist":"1451","grid":"EL96UQ"},{"call":"WP4J","name":"MANUEL GONZALEZ","date":"2021-10-26","time":"2139","band":"20M","mode":"FT4","rst_sent":"00","rst_rcvd":"00","country":"Puerto Rico","state":"","qth":"PONCE","lotw":"Y","dist":"3149","grid":"FK67QX"},{"call":"WB0N","name":"BERT F BENJAMINSON","date":"2021-10-26","time":"2141","band":"20M","mode":"FT4","rst_sent":"01","rst_rcvd":"20","country":"United States","state":"MN","qth":"BLOOMINGTON","lotw":"Y","dist":"1367","grid":"EN34HT"},{"call":"VA6AKA","name":"Torstein Tidemann","date":"2021-10-26","time":"2144","band":"20M","mode":"FT4","rst_sent":"-06","rst_rcvd":"-21","country":"Canada","state":"","qth":"Blackfalds, Alberta","lotw":"Y","dist":"2734","grid":"DO32"},{"call":"VA3MBT","name":"Michael Bell","date":"2021-10-26","time":"2204","band":"20M","mode":"FT4","rst_sent":"-06","rst_rcvd":"-04","country":"Canada","state":"ON","qth":"KINGSTON","lotw":"N","dist":"1984","grid":"FN14SF"},{"call":"N4PLR","name":"Shane D Yarnall","date":"2021-10-26","time":"2044","band":"20M","mode":"SSB","rst_sent":"","rst_rcvd":"","country":"United States","state":"FL","qth":"Orlando","lotw":"Y","dist":"1280","grid":"EL98ko"},{"call":"WE7P","name":"Bruce W Hanson","date":"2021-10-26","time":"2148","band":"20M","mode":"FT4","rst_sent":"","rst_rcvd":"","country":"United States","state":"WA","qth":"Tacoma","lotw":"Y","dist":"","grid":"CN87sf"},{"call":"N1TQ","name":"THOMAS L QUALTIERI","date":"2021-10-26","time":"2151","band":"20M","mode":"FT4","rst_sent":"","rst_rcvd":"","country":"United States","state":"MA","qth":"DOUGLAS","lotw":"Y","dist":"2206","grid":"FN42DB"},{"call":"K2AK","name":"JEFFREY R THOMAS","date":"2021-10-26","time":"2153","band":"20M","mode":"FT4","rst_sent":"","rst_rcvd":"","country":"United States","state":"AZ","qth":"SIERRA VISTA","lotw":"Y","dist":"","grid":"DM41un"},{"call":"KA9FOX","name":"SCOTT E NEADER","date":"2021-10-29","time":"0143","band":"40M","mode":"FT4","rst_sent":"07","rst_rcvd":"-06","country":"United States","state":"WI","qth":"LA CROSSE","lotw":"Y","dist":"1271","grid":"EN43KS"},{"call":"KE3QZ","name":"RANDY NORRIS","date":"2021-10-29","time":"0144","band":"40M","mode":"FT4","rst_sent":"09","rst_rcvd":"02","country":"United States","state":"MD","qth":"HOLLYWOOD","lotw":"Y","dist":"1678","grid":"FM18RI"},{"call":"N3JD","name":"JEFFREY D DESALVO","date":"2021-10-29","time":"0212","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-06","country":"United States","state":"PA","qth":"NEW CASTLE","lotw":"Y","dist":"1520","grid":"EN91UA"},{"call":"K6JDC","name":"Jason D Corbin","date":"2021-10-29","time":"0218","band":"40M","mode":"FT8","rst_sent":"06","rst_rcvd":"-12","country":"United States","state":"VA","qth":"Zion Crossroads","lotw":"Y","dist":"1529","grid":"FM07VX"},{"call":"N7DEN","name":"DENNIS H LAYMAN","date":"2021-10-29","time":"0224","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-06","country":"United States","state":"WY","qth":"CHEYENNE","lotw":"Y","dist":"1370","grid":"DN71OD"},{"call":"PJ4G","name":"Special Contest Callsign Usually ARRL SSB Contest","date":"2021-10-31","time":"0649","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"Bonaire","state":"","qth":"Netherlands Antilles","lotw":"N","dist":"3390","grid":"FK52ud"},{"call":"PJ4K","name":"Rich Smith, N6KT","date":"2021-10-31","time":"0651","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"Bonaire","state":"","qth":"Bonaire","lotw":"Y","dist":"3349","grid":"FK52nc"},{"call":"HK1T","name":"Salim (Sal) Gechem R.","date":"2021-10-31","time":"0653","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"Colombia","state":"","qth":"Atlantico","lotw":"Y","dist":"3032","grid":"FK21oa"},{"call":"W2A","name":"L.I. Super-Fun Contest Reunion","date":"2021-10-31","time":"0700","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"","qth":"October 16th thru October 31st 2021","lotw":"N","dist":"2007","grid":"FN30lw"},{"call":"W4MLB","name":"PLATINUM COAST AMATEUR RADIO SOCIETY","date":"2021-10-31","time":"0744","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Melbourne","lotw":"N","dist":"1291","grid":"EL97qx"},{"call":"PJ2T","name":"CARIBBEAN CONTESTING CONSORTIUM","date":"2021-10-31","time":"0832","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"Curacao","state":"","qth":"#1 Groot Santa Marta","lotw":"Y","dist":"3317","grid":"FK52kg"},{"call":"VE7GL","name":"Dale Jackaman","date":"2021-10-31","time":"0846","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"Canada","state":"BC","qth":"CHILLIWACK","lotw":"N","dist":"3035","grid":"CN89xc"},{"call":"F11BAO","name":"Christophe Picard","date":"2021-10-31","time":"0728","band":"40M","mode":"LSB","rst_sent":"5904","rst_rcvd":"5909","country":"France","state":"","qth":"Givenchy Les La Bassee","lotw":"N","dist":"7696","grid":"JO10jm"},{"call":"W8F","name":"The Livonia Amateur Radio Club","date":"2021-11-02","time":"2009","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-09","country":"United States","state":"MI","qth":"Livonia","lotw":"N","dist":"1442","grid":"EN82"},{"call":"N4MUH","name":"Michael W Zulli, Mr","date":"2021-11-02","time":"2015","band":"20M","mode":"FT8","rst_sent":"05","rst_rcvd":"04","country":"United States","state":"FL","qth":"Jacksonville","lotw":"Y","dist":"1161","grid":"EM90CF"},{"call":"KD9MKR","name":"W Scott Tobey","date":"2021-11-02","time":"2022","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"12","country":"United States","state":"SC","qth":"Simpsonville","lotw":"Y","dist":"1092","grid":"EM84UQ"},{"call":"WV8DL","name":"Derek V Long","date":"2021-11-02","time":"2047","band":"20M","mode":"FT8","rst_sent":"11","rst_rcvd":"12","country":"United States","state":"WV","qth":"Buckhannon","lotw":"Y","dist":"1405","grid":"EM98UX"},{"call":"KE0WSW","name":"Charles J Robbins","date":"2021-11-02","time":"2049","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-12","country":"United States","state":"ND","qth":"Fargo","lotw":"Y","dist":"1623","grid":"EN16OW"},{"call":"CO2VE","name":"MARCOS BRUZON HERNANDEZ","date":"2021-11-02","time":"2058","band":"20M","mode":"FT8","rst_sent":"02","rst_rcvd":"-14","country":"Cuba","state":"","qth":"HABANA 6","lotw":"Y","dist":"1525","grid":"EL83SB"},{"call":"AC9LF","name":"Nicholas G Demos","date":"2021-11-02","time":"2100","band":"20M","mode":"FT8","rst_sent":"06","rst_rcvd":"-01","country":"United States","state":"WI","qth":"Wauwatosa","lotw":"Y","dist":"1275","grid":"EN53XC"},{"call":"WA4HEI","name":"PETER C MARKHAM","date":"2021-11-02","time":"2107","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"01","country":"United States","state":"MI","qth":"MANISTIQUE","lotw":"Y","dist":"1624","grid":"EN65UX"},{"call":"K5JF","name":"Jeffery A Elkins","date":"2021-11-02","time":"2108","band":"20M","mode":"FT8","rst_sent":"03","rst_rcvd":"07","country":"United States","state":"FL","qth":"OCALA","lotw":"Y","dist":"1171","grid":"EL89WC"},{"call":"KO4DCR","name":"Millenium On The Air","date":"2021-11-02","time":"2110","band":"20M","mode":"FT8","rst_sent":"18","rst_rcvd":"03","country":"United States","state":"FL","qth":"Kissimmee","lotw":"N","dist":"1272","grid":"EL98"},{"call":"KD7KZ","name":"HOWARD E VORPAHL","date":"2021-11-02","time":"2116","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-10","country":"United States","state":"AZ","qth":"benson","lotw":"N","dist":"1559","grid":"DM42UA"},{"call":"AC1EG","name":"Keith R Thompson","date":"2021-11-02","time":"2122","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-05","country":"United States","state":"CO","qth":"Colorado Springs","lotw":"Y","dist":"2662","grid":"DM78PW"},{"call":"N4DWD","name":"CARLOS E PERKINS","date":"2021-11-02","time":"2123","band":"20M","mode":"FT8","rst_sent":"10","rst_rcvd":"01","country":"United States","state":"VA","qth":"DANTE","lotw":"Y","dist":"1153","grid":"EM86UX"},{"call":"KC1BUF","name":"James C Eldridge","date":"2021-11-02","time":"2129","band":"20M","mode":"FT8","rst_sent":"-24","rst_rcvd":"-05","country":"United States","state":"NH","qth":"Epsom","lotw":"Y","dist":"2282","grid":"FN43HF"},{"call":"N1KWF","name":"RANDALL R LAKE","date":"2021-11-02","time":"2131","band":"20M","mode":"FT8","rst_sent":"20","rst_rcvd":"-06","country":"United States","state":"NH","qth":"KEENE","lotw":"Y","dist":"2201","grid":"FN32UX"},{"call":"YV5DRN","name":"Leandro ( Len ) Chique S.","date":"2021-11-02","time":"2133","band":"20M","mode":"FT8","rst_sent":"02","rst_rcvd":"-19","country":"Venezuela","state":"","qth":"Maracay, Aragua","lotw":"Y","dist":"3644","grid":"FK60EG"},{"call":"WT8J","name":"Julie A Martin","date":"2021-11-02","time":"2145","band":"20M","mode":"FT8","rst_sent":"00","rst_rcvd":"-18","country":"United States","state":"MI","qth":"Ann Arbor","lotw":"N","dist":"1392","grid":"DM89"},{"call":"KO4HDC","name":"William C Mitchell, Jr","date":"2021-11-05","time":"2116","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Lecanto","lotw":"N","dist":"1151","grid":"EL88SU88"},{"call":"OX7AKT","name":"Mikkel Nielsen","date":"2021-11-05","time":"2125","band":"20M","mode":"FT4","rst_sent":"-03","rst_rcvd":"-02","country":"Greenland","state":"","qth":"Kangerlussuaq","lotw":"Y","dist":"10355","grid":"GP47"},{"call":"KD8PGL","name":"Richard D Boozer","date":"2021-11-05","time":"2126","band":"20M","mode":"FT4","rst_sent":"20","rst_rcvd":"14","country":"United States","state":"OH","qth":"Wakeman","lotw":"Y","dist":"1394","grid":"EN81TF"},{"call":"YV5DRN","name":"Leandro ( Len ) Chique S.","date":"2021-11-05","time":"2128","band":"20M","mode":"FT4","rst_sent":"05","rst_rcvd":"-03","country":"Venezuela","state":"","qth":"Maracay, Aragua","lotw":"Y","dist":"3644","grid":"FK60EG"},{"call":"XE1ACA","name":"Alfonso Carlos Amezcua Herrera","date":"2021-11-05","time":"2129","band":"20M","mode":"FT4","rst_sent":"-11","rst_rcvd":"-01","country":"Mexico","state":"","qth":"CDMX,MEXICO","lotw":"Y","dist":"1562","grid":"EK09GG"},{"call":"AA4RF","name":"Lewis R Mcallister","date":"2021-11-05","time":"2131","band":"20M","mode":"FT4","rst_sent":"12","rst_rcvd":"11","country":"United States","state":"VA","qth":"COVINGTON","lotw":"Y","dist":"1367","grid":"FM07"},{"call":"VA3WR","name":"James R Davidson","date":"2021-11-05","time":"2133","band":"20M","mode":"FT4","rst_sent":"-16","rst_rcvd":"-02","country":"Canada","state":"ON","qth":"STRATFORD","lotw":"Y","dist":"1638","grid":"EN93MI"},{"call":"K4CU","name":"STEVEN K ATKINS","date":"2021-11-05","time":"2134","band":"20M","mode":"FT4","rst_sent":"14","rst_rcvd":"07","country":"United States","state":"SC","qth":"Murrells Inlet","lotw":"Y","dist":"1362","grid":"FM03LN"},{"call":"KO4PZW","name":"David C Patton","date":"2021-11-05","time":"2138","band":"20M","mode":"FT4","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"VA","qth":"Arlington","lotw":"Y","dist":"1649","grid":"FM18KV"},{"call":"KC2IEB","name":"Christopher R Wawak","date":"2021-11-05","time":"2142","band":"20M","mode":"FT4","rst_sent":"05","rst_rcvd":"-05","country":"United States","state":"NJ","qth":"Haddon Township","lotw":"Y","dist":"1858","grid":"FM29LW"},{"call":"KC0GFD","name":"GLENN C TRTANJ","date":"2021-11-05","time":"2154","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-04","country":"United States","state":"MN","qth":"FORT RIPLEY","lotw":"Y","dist":"1520","grid":"EN26VI"},{"call":"TI2VVV","name":"Victor Carrera","date":"2021-11-05","time":"2252","band":"20M","mode":"FT8","rst_sent":"00","rst_rcvd":"-06","country":"Costa Rica","state":"","qth":"Sanjose","lotw":"Y","dist":"2701","grid":"EJ79XW"},{"call":"W3DJ","name":"Ron DePas","date":"2021-11-05","time":"2316","band":"40M","mode":"FT8","rst_sent":"03","rst_rcvd":"-24","country":"United States","state":"MD","qth":"Tracys Landing","lotw":"N","dist":"1700","grid":"FM18QS"},{"call":"AC9QM","name":"Rik R Rhodes","date":"2021-11-05","time":"2357","band":"40M","mode":"FT4","rst_sent":"-10","rst_rcvd":"-11","country":"United States","state":"IN","qth":"Hartford City","lotw":"Y","dist":"1151","grid":"EN70"},{"call":"KI4TXP","name":"JOHN IVES","date":"2021-11-05","time":"2359","band":"40M","mode":"FT4","rst_sent":"-21","rst_rcvd":"-08","country":"United States","state":"DE","qth":"Ocean View","lotw":"Y","dist":"1805","grid":"FM28KN"},{"call":"K4WH","name":"H LANCE LANDGRAF","date":"2021-11-06","time":"0002","band":"40M","mode":"FT4","rst_sent":"-05","rst_rcvd":"-02","country":"United States","state":"SC","qth":"CLOVER","lotw":"N","dist":"1192","grid":"EM95"},{"call":"KE8QYK","name":"Thomas L Kulka","date":"2021-11-06","time":"0006","band":"40M","mode":"FT4","rst_sent":"-01","rst_rcvd":"-13","country":"United States","state":"OH","qth":"Mansfield","lotw":"Y","dist":"1349","grid":"EN80RR"},{"call":"W8MTB","name":"Jacob C Mol, IV","date":"2021-11-06","time":"0013","band":"40M","mode":"FT4","rst_sent":"-07","rst_rcvd":"03","country":"United States","state":"MI","qth":"Zeeland","lotw":"Y","dist":"1333","grid":"EN72au"},{"call":"K4HXM","name":"Justin M Colville","date":"2021-11-06","time":"0020","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-07","country":"United States","state":"VA","qth":"Evington","lotw":"Y","dist":"1417","grid":"FM07JF"},{"call":"WD4GBW","name":"JACK T MOORE","date":"2021-11-06","time":"0059","band":"40M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-11","country":"United States","state":"VA","qth":"MIDLOTHIAN","lotw":"Y","dist":"1561","grid":"FM17EK"},{"call":"K5DTC","name":"DANIEL T COUGHLIN","date":"2021-11-09","time":"1822","band":"12M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-22","country":"United States","state":"WA","qth":"WASHOUGAL","lotw":"Y","dist":"2842","grid":"CN85UO"},{"call":"WB6WUW","name":"BARTON E PULVERMAN","date":"2021-11-09","time":"1835","band":"15M","mode":"FT8","rst_sent":"01","rst_rcvd":"-12","country":"United States","state":"CA","qth":"BUENA PARK","lotw":"Y","dist":"2259","grid":"DM13AU"},{"call":"KM6KPW","name":"ALAN K SERL","date":"2021-11-09","time":"1837","band":"15M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-02","country":"United States","state":"CA","qth":"JURUPA VALLEY","lotw":"Y","dist":"2207","grid":"DM14GA"},{"call":"CO8LY","name":"Eduardo Somoano Cremati","date":"2021-11-09","time":"1841","band":"15M","mode":"FT8","rst_sent":"-05","rst_rcvd":"02","country":"Cuba","state":"","qth":"Santiago de Cuba","lotw":"N","dist":"2257","grid":"FL20CA"},{"call":"K1NH","name":"DAVID M LAVOIE","date":"2021-11-09","time":"1843","band":"15M","mode":"FT8","rst_sent":"15","rst_rcvd":"-05","country":"United States","state":"NH","qth":"PETERBOROUGH","lotw":"Y","dist":"2223","grid":"FN42AV"},{"call":"K2AK","name":"JEFFREY R THOMAS","date":"2021-11-09","time":"1908","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-06","country":"United States","state":"AZ","qth":"SIERRA VISTA","lotw":"Y","dist":"1564","grid":"DM41UN"},{"call":"AL7JX","name":"GLEN A FULLER","date":"2021-12-24","time":"2209","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"Alaska","state":"AK","qth":"Anchor Point","lotw":"N","dist":"","grid":"BO49CS86"},{"call":"CO3HK","name":"Nelson Martinez Montero","date":"2022-01-22","time":"1938","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-09","country":"Cuba","state":"","qth":"Central Abraham Lincoln, Artemisa","lotw":"N","dist":"1522","grid":"EL82OT"},{"call":"AC9WQ","name":"Philip R Bough","date":"2022-01-22","time":"1942","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+12","country":"United States","state":"IN","qth":"La Porte","lotw":"N","dist":"1180","grid":"EN61PO"},{"call":"K9DN","name":"DON J NORWOOD","date":"2022-01-22","time":"2000","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-13","country":"United States","state":"WI","qth":"Janesville","lotw":"Y","dist":"1200","grid":"EN52LQ"},{"call":"V31XX","name":"Bill Kollenbaum","date":"2022-01-22","time":"2048","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"Belize","state":"","qth":"Corozal District","lotw":"N","dist":"1659","grid":"EK58uk"},{"call":"VE3PAB","name":"Peter DesRochers","date":"2022-01-22","time":"2220","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-08","country":"Canada","state":"","qth":"Penetanguishene","lotw":"N","dist":"1829","grid":"FN04AS"},{"call":"WW2FLY","name":"WWII Flying Fortress Amateur Radio Club","date":"2022-01-22","time":"2227","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-14","country":"United States","state":"NY","qth":"Attica","lotw":"N","dist":"1775","grid":"FN12"},{"call":"K1WTK","name":"John R Peschier","date":"2022-01-22","time":"2228","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+05","country":"United States","state":"FL","qth":"Venice","lotw":"Y","dist":"1250","grid":"EL87TA"},{"call":"VA3FF","name":"Igor Mordick","date":"2022-01-22","time":"2253","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-01","country":"Canada","state":"","qth":"Brampton","lotw":"Y","dist":"1740","grid":"FN03DR"},{"call":"AC8TO","name":"Donald C Winsor","date":"2022-01-22","time":"2257","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-13","country":"United States","state":"MI","qth":"Ann Arbor","lotw":"Y","dist":"1386","grid":"EN82CE"},{"call":"AC2SB","name":"Paul E Kudla","date":"2022-01-22","time":"2300","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-19","country":"United States","state":"NY","qth":"North Tonawanda","lotw":"Y","dist":"1745","grid":"FN03NA"},{"call":"KN4MKX","name":"James L Pascoe","date":"2022-01-22","time":"2306","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"+06","country":"United States","state":"VA","qth":"Blacksburg","lotw":"Y","dist":"1309","grid":"EM97RE"},{"call":"VE6JHH","name":"Joseph Hoffmann","date":"2022-01-22","time":"2307","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-14","country":"Canada","state":"","qth":"Calgary","lotw":"Y","dist":"1830","grid":"DO20"},{"call":"KB3MXK","name":"MITCHELL J PITTINGER","date":"2022-01-22","time":"2321","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-05","country":"United States","state":"MD","qth":"REISTERSTOWN","lotw":"Y","dist":"1694","grid":"FM19NL"},{"call":"KJ1R","name":"SPIRO MAGOULAS","date":"2022-01-22","time":"2329","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-14","country":"United States","state":"MA","qth":"AGAWAM","lotw":"Y","dist":"2135","grid":"FN32QB"},{"call":"WK2P","name":"Edwin Simoncek","date":"2022-01-22","time":"2339","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-15","country":"United States","state":"PA","qth":"Mechanicsburg","lotw":"Y","dist":"1717","grid":"FN10LG"},{"call":"N4ZZ","name":"Donald H Binkley","date":"2022-01-22","time":"2351","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"TN","qth":"NASHVILLE","lotw":"Y","dist":"760","grid":"EM66pe"},{"call":"W4UT","name":"Ronald C Duncan","date":"2022-01-23","time":"0004","band":"40M","mode":"LSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"TN","qth":"LAKESITE","lotw":"Y","dist":"847","grid":"EM75kf"},{"call":"KE5CVM","name":"Robert J Garcia","date":"2022-01-29","time":"0005","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-08","country":"United States","state":"TX","qth":"Corpus Christi","lotw":"Y","dist":"641","grid":"EL17EU"},{"call":"KF0CQN","name":"CURTIS R BATES, JR","date":"2022-01-29","time":"0013","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-22","country":"United States","state":"MO","qth":"VILLA RIDGE","lotw":"Y","dist":"708","grid":"EM48NL"},{"call":"W1MET","name":"Jacob F Maschino, Jr","date":"2022-01-29","time":"0027","band":"40M","mode":"FT4","rst_sent":"-21","rst_rcvd":"-17","country":"United States","state":"ME","qth":"Chelsea","lotw":"Y","dist":"2447","grid":"FN54CG"},{"call":"N2JW","name":"JOHN A WOODFORD","date":"2022-01-29","time":"0030","band":"40M","mode":"FT4","rst_sent":"-14","rst_rcvd":"-10","country":"United States","state":"FL","qth":"LAKE MARY","lotw":"Y","dist":"1254","grid":"EL98IS"},{"call":"N3VXM","name":"Terry L Lowery","date":"2022-03-04","time":"0055","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-06","country":"United States","state":"TX","qth":"San Antonio","lotw":"Y","dist":"575","grid":"EL09TM"},{"call":"WE2LEW","name":"Lewis E Ellwanger","date":"2022-03-04","time":"0059","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+05","country":"United States","state":"NY","qth":"ROSE","lotw":"N","dist":"1876","grid":"DM91"},{"call":"K4WTZ","name":"Chelsea A Stachyra","date":"2022-03-04","time":"2246","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"SC","qth":"Sneedville","lotw":"N","dist":"1057","grid":"EM86jm"},{"call":"W0DHZ","name":"Dale R Henninger","date":"2022-03-04","time":"2323","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"MN","qth":"Inver Grove Heights","lotw":"Y","dist":"1367","grid":"EN34lt"},{"call":"ZF2WW","name":"Levi Jefferies","date":"2022-03-04","time":"2333","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"Cayman Islands","state":"","qth":"Vista","lotw":"N","dist":"1924","grid":"EK99IG56"},{"call":"KV4NI","name":"JOSEPH B GOODIN","date":"2022-04-16","time":"0233","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-09","country":"United States","state":"TN","qth":"Newport","lotw":"N","dist":"1042","grid":"EM85KW"},{"call":"KK6MF","name":"LAWRENCE C BLISS","date":"2022-04-16","time":"0239","band":"40M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-12","country":"United States","state":"CA","qth":"TRACY","lotw":"Y","dist":"2577","grid":"CM97GR"},{"call":"W8DGS","name":"DONALD G SPAETH","date":"2022-04-16","time":"0242","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-16","country":"United States","state":"MI","qth":"ALPENA","lotw":"Y","dist":"1652","grid":"EN85HB"},{"call":"W3YR","name":"THEODORE J WIEWORKA","date":"2022-04-16","time":"0253","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-09","country":"United States","state":"MD","qth":"Forest Hill","lotw":"Y","dist":"1745","grid":"FM19UO"},{"call":"KA3IRT","name":"BILL P ALMASY","date":"2022-04-16","time":"0258","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-09","country":"United States","state":"PA","qth":"CORAOPOLIS","lotw":"Y","dist":"1495","grid":"EN90VM"},{"call":"W4HTP","name":"HOWARD T PERRY, JR","date":"2022-05-07","time":"2046","band":"20M","mode":"RTTY","rst_sent":"","rst_rcvd":"","country":"United States","state":"NC","qth":"MINT HILL","lotw":"Y","dist":"1235","grid":"EM95PD69"},{"call":"W8CO","name":"GEORGE VERCIUC","date":"2022-06-25","time":"2043","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"OH","qth":"MILFORD","lotw":"N","dist":"1418","grid":"EN82dm"},{"call":"W5JR","name":"ORTEGA WIRELESS LEAGUE","date":"2022-06-25","time":"2051","band":"40M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"TX","qth":"","lotw":"N","dist":"2228","grid":"DM13em"},{"call":"W3RX","name":"STEPHEN LIGGETT","date":"2022-06-26","time":"0004","band":"40M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"TREASURE ISLAND","lotw":"N","dist":"1178","grid":"EL87or"},{"call":"W4MLB","name":"Norbert Piotrowski","date":"2022-06-26","time":"0118","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Melbourne","lotw":"N","dist":"1350","grid":"EN62ac"},{"call":"W6YX","name":"STANFORD AMATEUR RADIO CLUB","date":"2022-06-26","time":"0120","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"Stanford","lotw":"Y","dist":"2639","grid":"CM87wk"},{"call":"W6ZE","name":"GRAND RAPIDS AMATEUR RADIO ASSN","date":"2022-06-26","time":"0133","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"CA","qth":"Orange","lotw":"Y","dist":"2244","grid":"EN72dx"},{"call":"WC8VOA","name":"West Chester Amateur Radio Association","date":"2022-06-26","time":"0152","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"OH","qth":"West Chester","lotw":"N","dist":"1131","grid":"EM79ti"},{"call":"KY4BG","name":"KENTUCKY COLONEL AMATEUR RADIO CLUB","date":"2022-06-26","time":"1249","band":"40M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"KY","qth":"Bowling Green","lotw":"Y","dist":"829","grid":"EM66ux"},{"call":"W0JV","name":"IOWA CITY AMATEUR RADIO CLUB","date":"2022-06-26","time":"1252","band":"40M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"OH","qth":"Iowa City","lotw":"N","dist":"1034","grid":"EN41fq"},{"call":"W4CVY","name":"COLUMBUS AMATEUR RADIO CLUB","date":"2022-06-26","time":"1414","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"FL","qth":"Columbus","lotw":"N","dist":"822","grid":"EM72ml"},{"call":"W9DZ","name":"ALLEN JONES","date":"2022-06-26","time":"1450","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"IN","qth":"MICHIGAN CITY","lotw":"N","dist":"1175","grid":"EN61no"},{"call":"W9XB","name":"LAKE AMATEUR RADIO ASSOCIATION","date":"2022-06-26","time":"1510","band":"20M","mode":"SSB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"IL","qth":"WOODSTOCK","lotw":"N","dist":"1181","grid":"EL98ct"},{"call":"AF4FA","name":"Albert Flapan","date":"2022-06-25","time":"1830","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"FL","qth":"Lauderhill","lotw":"Y","dist":"1481","grid":"EL96ve"},{"call":"N2LEC","name":"Robert C Seyfarth","date":"2022-06-25","time":"1834","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NJ","qth":"Asbury","lotw":"N","dist":"1893","grid":"FN20mp"},{"call":"W8VTD","name":"WARREN AMATEUR RADIO ASSOCIATION","date":"2022-06-25","time":"1858","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"OH","qth":"Warren","lotw":"Y","dist":"1502","grid":"EN91"},{"call":"KD9JAY","name":"Marlin J Bontrager","date":"2022-06-25","time":"1918","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"IN","qth":"Middlebury","lotw":"N","dist":"1238","grid":"EN71dq"},{"call":"KC2SZ","name":"James L Higgins","date":"2022-06-25","time":"1924","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NJ","qth":"Cinnaminson","lotw":"N","dist":"1868","grid":"FM29mx"},{"call":"KY4CRC","name":"Charles R Carter","date":"2022-06-25","time":"1926","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"KY","qth":"Worthington","lotw":"N","dist":"1196","grid":"EM88pn"},{"call":"W3AO","name":"NATIONAL PRESS RADIO CLUB","date":"2022-06-25","time":"1937","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"11A","country":"United States","state":"MD","qth":"Mitchellville","lotw":"N","dist":"1688","grid":"FM18pv"},{"call":"W8DYY","name":"MOUND AMATEUR RADIO ASSN INC","date":"2022-06-25","time":"1941","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2D","country":"United States","state":"OH","qth":"MIAMISBURG","lotw":"N","dist":"1157","grid":"EM79up"},{"call":"AI4WL","name":"James T Hartmeyer","date":"2022-06-25","time":"1942","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"NC","qth":"Oriental","lotw":"Y","dist":"1600","grid":"FM15qc"},{"call":"WD9HSY","name":"BRIAN J BEDOE","date":"2022-06-25","time":"1944","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"IL","qth":"MOKENA","lotw":"Y","dist":"1121","grid":"EN61bl"},{"call":"K8HF","name":"HARRY M FRIETCHEN, III","date":"2022-06-25","time":"1947","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"OH","qth":"MANSFIELD","lotw":"Y","dist":"1346","grid":"EN80qs"},{"call":"WD4OBP","name":"Cliff W Boltz","date":"2022-06-25","time":"1955","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"VA","qth":"Courtland","lotw":"Y","dist":"1608","grid":"FM16op"},{"call":"K9SS","name":"Norbert J Piotrowski","date":"2022-06-25","time":"1957","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"IL","qth":"Arlington Heights","lotw":"N","dist":"1175","grid":"EN62ac"},{"call":"W3AND","name":"Andrew D Mummert","date":"2022-06-25","time":"2004","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"PA","qth":"CAMP HILL","lotw":"Y","dist":"1722","grid":"FN10MF62"},{"call":"K3NO","name":"RICHARD E GREEL, JR","date":"2022-06-25","time":"2012","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MD","qth":"BEL AIR","lotw":"N","dist":"1742","grid":"FM19ul"},{"call":"WE8M","name":"EARL D SHARP","date":"2022-06-25","time":"2017","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"OH","qth":"BEAVERCREEK","lotw":"N","dist":"1178","grid":"EM79"},{"call":"W1C","name":"The Providence Radio Association","date":"2022-06-25","time":"2022","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3E","country":"United States","state":"RI","qth":"Johnston","lotw":"Y","dist":"2214","grid":"FN41gt"},{"call":"K9OM","name":"DICK VAN ZANDT","date":"2022-06-25","time":"2118","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"FL","qth":"EDGEWATER","lotw":"Y","dist":"1289","grid":"EN65"},{"call":"W3SW","name":"ANDREW J SCHAEFER","date":"2022-06-25","time":"2119","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2B","country":"United States","state":"NY","qth":"BINGHAMTON","lotw":"N","dist":"1901","grid":"FN22"},{"call":"W3SW","name":"ANDREW J SCHAEFER","date":"2022-06-25","time":"2120","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2B","country":"United States","state":"NY","qth":"BINGHAMTON","lotw":"N","dist":"1901","grid":"FN22be"},{"call":"NF3R","name":"Joel R Rubincam","date":"2022-06-25","time":"2122","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3E","country":"United States","state":"PA","qth":"Pottstown","lotw":"Y","dist":"1823","grid":"FN20DG90"},{"call":"W9FEZ","name":"MIZPAH SHRINE RADIO UNIT","date":"2022-06-25","time":"2123","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"IN","qth":"FORT WAYNE","lotw":"N","dist":"1220","grid":"EN71kc"},{"call":"VA3EP","name":"Eric Pierce","date":"2022-06-25","time":"2124","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"Canada","state":"","qth":"PICTON","lotw":"Y","dist":"1929","grid":"FN14LA48"},{"call":"KY4HS","name":"Morehead Amateur Radio Society","date":"2022-06-25","time":"2127","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"6F","country":"United States","state":"KY","qth":"Morehead","lotw":"N","dist":"1114","grid":"EM88fe"},{"call":"KC2NFJ","name":"Michael A Abbey","date":"2022-06-25","time":"2137","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NJ","qth":"Short Hills","lotw":"Y","dist":"1950","grid":"FN20us"},{"call":"KB7RUQ","name":"JAMES H FISHER, JR","date":"2022-06-25","time":"2137","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"UT","qth":"CLINTON","lotw":"Y","dist":"1889","grid":"DN31xd"},{"call":"KM4LFT","name":"Larry D Gage","date":"2022-06-25","time":"2138","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"GA","qth":"Greensboro","lotw":"N","dist":"978","grid":"EM83IL86"},{"call":"K2TL","name":"JAMES J MATIS","date":"2022-06-25","time":"2139","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NJ","qth":"HOWELL","lotw":"Y","dist":"1935","grid":"FN20VD58"},{"call":"K8SCH","name":"OH KY IN AMATEUR RADIO SOCIETY INC","date":"2022-06-25","time":"2140","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"OH","qth":"Cincinnati","lotw":"Y","dist":"1098","grid":"EM79qc"},{"call":"KD4RH","name":"GARY W BADER","date":"2022-06-25","time":"2141","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"SC","qth":"ELGIN","lotw":"Y","dist":"1205","grid":"EM94ne"},{"call":"N9MKC","name":"DAVID A DEVENTER","date":"2022-06-25","time":"2143","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"IN","qth":"LAOTTO","lotw":"Y","dist":"1229","grid":"EN71jg"},{"call":"K2FJ","name":"James B Ewings","date":"2022-06-25","time":"2145","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"NJ","qth":"Montvale","lotw":"N","dist":"1984","grid":"FN21XB61"},{"call":"K4P","name":"Dublin Ga Festival","date":"2022-06-25","time":"2146","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"GA","qth":"Rentz","lotw":"N","dist":"1012","grid":"EM82nl"},{"call":"K6BIR","name":"Vincent J Walton","date":"2022-06-25","time":"2148","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"CA","qth":"Hayward","lotw":"Y","dist":"2633","grid":"CM87xq"},{"call":"WT0DX","name":"William L Thomas","date":"2022-06-25","time":"2149","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"CO","qth":"Aurora","lotw":"Y","dist":"1261","grid":"DM79pn"},{"call":"VE3BOE","name":"Marc Belanger","date":"2022-06-25","time":"2151","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"Canada","state":"ON","qth":"Metcalfe","lotw":"N","dist":"2110","grid":"FN25gg"},{"call":"AI7AQ","name":"John P Van Buskirk","date":"2022-06-25","time":"2156","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AZ","qth":"Chandler","lotw":"Y","dist":"1696","grid":"DM43bh"},{"call":"K8ES","name":"DELAWARE AMATEUR RADIO ASSOCIATION, INC.","date":"2022-06-25","time":"2158","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"4F","country":"United States","state":"OH","qth":"Sunbury","lotw":"N","dist":"1295","grid":"EN80ng"},{"call":"W2XRX","name":"XRX Amateur Radio Club","date":"2022-06-25","time":"2204","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"NY","qth":"Ontario","lotw":"N","dist":"1849","grid":"FN13gf"},{"call":"K4NN","name":"SIGNAL HILL AMATEUR RADIO CLUB","date":"2022-06-25","time":"2206","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"PA","qth":"Export","lotw":"N","dist":"1564","grid":"FM09ua"},{"call":"K8BF","name":"Portage County Amateur Radio Service Inc.","date":"2022-06-25","time":"2210","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"OH","qth":"Ravenna","lotw":"Y","dist":"1464","grid":"EN91HH28"},{"call":"W9WWI","name":"CLARK COUNTY AMATEUR RADIO CLUB","date":"2022-06-25","time":"2212","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"IN","qth":"Jeffersonville","lotw":"N","dist":"965","grid":"EM78dh"},{"call":"K4RCA","name":"STANLEY E DILLON","date":"2022-06-25","time":"2215","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"VA","qth":"MARTINSVILLE","lotw":"N","dist":"1346","grid":"FM06bq"},{"call":"WB9MSM","name":"DENNIS W BERG","date":"2022-06-25","time":"2217","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"WI","qth":"WATERTOWN","lotw":"Y","dist":"1263","grid":"EN53pe"},{"call":"W9FEZ","name":"MIZPAH SHRINE RADIO UNIT","date":"2022-06-25","time":"2222","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"IN","qth":"FORT WAYNE","lotw":"N","dist":"1220","grid":"EN71kc"},{"call":"N4DAB","name":"Daytona Beach CERT ARC","date":"2022-06-25","time":"2229","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3F","country":"United States","state":"FL","qth":"Daytona Beach","lotw":"N","dist":"1258","grid":"EL99kf"},{"call":"KI4ABA","name":"John N Mullins","date":"2022-06-25","time":"2243","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"LA","qth":"Haughton","lotw":"Y","dist":"8","grid":"EM32"},{"call":"WA1USA","name":"RICOMU","date":"2022-06-25","time":"2252","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2F","country":"United States","state":"RI","qth":"Warwick","lotw":"N","dist":"2213","grid":"FN41"},{"call":"N1A","name":"SOTA Jerks / 510 RG","date":"2022-06-25","time":"2255","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"MA","qth":"JUNE 25-26","lotw":"Y","dist":"1124","grid":"EM79ue"},{"call":"K1WAS","name":"Westport Astronomical Society Amateur Radio Club","date":"2022-06-25","time":"2313","band":"20M","mode":"FT8","rst_sent":"1D","rst_rcvd":"3D","country":"United States","state":"CT","qth":"Fairfield","lotw":"N","dist":"2050","grid":"FN31"},{"call":"N7QPP","name":"Joseph J Camilli","date":"2022-06-25","time":"2328","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"GA","qth":"Suwanee","lotw":"N","dist":"902","grid":"EM74vc"},{"call":"N7KDT","name":"TODD C CLINE","date":"2022-06-25","time":"2339","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2D","country":"United States","state":"AL","qth":"Huntsville","lotw":"Y","dist":"702","grid":"EM64"},{"call":"K9EEH","name":"RICHARD A LITTLE","date":"2022-06-26","time":"1147","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"IL","qth":"STERLING","lotw":"Y","dist":"1089","grid":"EN51"},{"call":"W0ZWY","name":"SIOUX EMPIRE AMATEUR RADIO CLUB","date":"2022-06-26","time":"1149","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"4F","country":"United States","state":"SD","qth":"Sioux Falls","lotw":"N","dist":"1258","grid":"EN13"},{"call":"W9AB","name":"MICHIANA AMATEUR RADIO CLUB INC","date":"2022-06-26","time":"1150","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"IN","qth":"SOUTH BEND","lotw":"N","dist":"1211","grid":"EN61"},{"call":"W4TGB","name":"RICHARD M BURTON","date":"2022-06-26","time":"1153","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TN","qth":"Louisville","lotw":"N","dist":"965","grid":"EM85at"},{"call":"WD9HSY","name":"BRIAN J BEDOE","date":"2022-06-26","time":"1155","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"IL","qth":"MOKENA","lotw":"Y","dist":"1121","grid":"EN61bl"},{"call":"K9EEH","name":"RICHARD A LITTLE","date":"2022-06-26","time":"1157","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"IL","qth":"STERLING","lotw":"Y","dist":"1089","grid":"EN51"},{"call":"W9I","name":"Special Eventn Special Event Station","date":"2022-06-26","time":"1200","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"In","qth":"","lotw":"N","dist":"889","grid":"EN62"},{"call":"W0MU","name":"KENNETH M FATCHETT","date":"2022-06-26","time":"1201","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"CO","qth":"PARKER","lotw":"N","dist":"1266","grid":"DM79"},{"call":"N7GHZ","name":"John R Payton","date":"2022-06-26","time":"1204","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"AZ","qth":"Tucson","lotw":"Y","dist":"1613","grid":"DM42MM"},{"call":"KB9S","name":"MARK V SEYFFER","date":"2022-06-26","time":"1206","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"WI","qth":"Eau Claire","lotw":"Y","dist":"1374","grid":"EN44gs"},{"call":"K8PI","name":"DIAL RADIO CLUB OF THE MIDDLETOWN AREA","date":"2022-06-26","time":"1207","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"OH","qth":"MIDDLETOWN","lotw":"Y","dist":"1140","grid":"EM79TM08"},{"call":"W8WRK","name":"Butler County Amateur Radio Association","date":"2022-06-26","time":"1209","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"OH","qth":"Fairfield","lotw":"Y","dist":"1116","grid":"EM79ri"},{"call":"W9FRG","name":"Local Emergency Field Radio Operating Group","date":"2022-06-26","time":"1212","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"WI","qth":"Grafton","lotw":"N","dist":"1298","grid":"EN63ah"},{"call":"KC8SWY","name":"Kenneth L Schneider","date":"2022-06-26","time":"1215","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"Kalamazoo","lotw":"Y","dist":"1288","grid":"EN72cg"},{"call":"KM4LFT","name":"Larry D Gage","date":"2022-06-26","time":"1217","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"GA","qth":"Greensboro","lotw":"N","dist":"978","grid":"EM83IL86"},{"call":"K4EGA","name":"DOUGLAS S BARKER","date":"2022-06-26","time":"1219","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"GA","qth":"EATONTON","lotw":"N","dist":"965","grid":"EM83hh"},{"call":"KC5RUO","name":"JAMES A FRAZIER, JR","date":"2022-06-26","time":"1225","band":"40M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"NM","qth":"ALBUQUERQUE","lotw":"N","dist":"1222","grid":"DM65re"},{"call":"N4N","name":"Ken Reecy, AC4TO","date":"2022-06-26","time":"1521","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"FL","qth":"Tallahassee","lotw":"N","dist":"941","grid":"EM74"},{"call":"W9RCA","name":"RCA AMATEUR RAD CLB OF INDIANAPOLIS","date":"2022-06-26","time":"1525","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"IN","qth":"Indianapolis","lotw":"N","dist":"1055","grid":"EM79"},{"call":"W4IAX","name":"MOBILE AMATEUR RADIO CLUB INC","date":"2022-06-26","time":"1527","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"AL","qth":"Mobile","lotw":"N","dist":"564","grid":"EM50"},{"call":"WB8SIG","name":"JAMES C MC MORRAN","date":"2022-06-26","time":"1544","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"OH","qth":"WARREN","lotw":"Y","dist":"1496","grid":"EN91NH41"},{"call":"K4SHA","name":"CHARLIE W CARPENTER","date":"2022-06-26","time":"1545","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AL","qth":"Shorter","lotw":"N","dist":"738","grid":"EM72CJ08"},{"call":"W8BM","name":"Cuyahoga Amateur Radio Society","date":"2022-06-26","time":"1551","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"6A","country":"United States","state":"OH","qth":"Independence","lotw":"N","dist":"1451","grid":"EN91ej"},{"call":"K9BY","name":"BRETT A JOHNSON","date":"2022-06-26","time":"1552","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"IL","qth":"SOUTH BELOIT","lotw":"Y","dist":"1181","grid":"EN52ml"},{"call":"VE3BOE","name":"Marc Belanger","date":"2022-06-26","time":"1602","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"Canada","state":"ON","qth":"Metcalfe","lotw":"Y","dist":"2110","grid":"FN25gg"},{"call":"K4EGA","name":"DOUGLAS S BARKER","date":"2022-06-26","time":"1603","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"GA","qth":"EATONTON","lotw":"N","dist":"965","grid":"EM83hh"},{"call":"K5PA","name":"FRANCIS E HINKLE, JR","date":"2022-06-26","time":"1606","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"Leander","lotw":"Y","dist":"454","grid":"EM10bm"},{"call":"AB7HP","name":"HEWLETT PACKARD BOISE AMATEUR RADIO CLUB","date":"2022-06-26","time":"1608","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"5A","country":"United States","state":"ID","qth":"BOISE","lotw":"Y","dist":"2319","grid":"DN13UP44"},{"call":"WA8LE","name":"LYSLE L ELDER","date":"2022-06-26","time":"1614","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"ESCANABA","lotw":"N","dist":"1575","grid":"EN65jt"},{"call":"NT5EE","name":"John F McKee","date":"2022-06-26","time":"1622","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"Odessa","lotw":"Y","dist":"817","grid":"DM81tv"},{"call":"W2YD","name":"MORRIS RADIO CLUB","date":"2022-06-26","time":"1623","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"NJ","qth":"Whippany","lotw":"Y","dist":"1944","grid":"FN20st"},{"call":"AD0ND","name":"SHAWN W MC CLINTOCK","date":"2022-06-26","time":"1626","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1A","country":"United States","state":"ND","qth":"Dazey","lotw":"Y","dist":"1673","grid":"EN07VE44"},{"call":"KN4USA","name":"ERIC H GILMAN","date":"2022-06-26","time":"1629","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"NC","qth":"SALISBURY","lotw":"Y","dist":"1261","grid":"EM95rq"},{"call":"KF0FXJ","name":"Zack Bush","date":"2022-06-26","time":"1630","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MO","qth":"Saint Charles","lotw":"Y","dist":"752","grid":"EM48rs"},{"call":"W4UWC","name":"Marshall Dominick","date":"2022-06-26","time":"1631","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"KY","qth":"NICHOLASVILLE","lotw":"Y","dist":"1011","grid":"EM77QT37"},{"call":"KC5ULN","name":"LOWNDES COUNTY AMATEUR RADIO CLUB","date":"2022-06-26","time":"1633","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"MS","qth":"COLUMBUS","lotw":"N","dist":"507","grid":"EM53tl"},{"call":"W4CRS","name":"Richard G Whitehouse","date":"2022-06-26","time":"1636","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AL","qth":"Montgomery","lotw":"N","dist":"703","grid":"EM62vj"},{"call":"W8HP","name":"HAZEL PARK AMATEUR RADIO CLUB","date":"2022-06-26","time":"1637","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"MI","qth":"Hazel Park","lotw":"Y","dist":"1444","grid":"EN82kl"},{"call":"WM4RT","name":"Myron R Tanner","date":"2022-06-26","time":"1638","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"SC","qth":"Aiken","lotw":"N","dist":"1120","grid":"EM93dm"},{"call":"W4RKC","name":"SHENANDOAH VALLEY AMAT RAD CLUB","date":"2022-06-26","time":"1642","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"VA","qth":"Winchester","lotw":"Y","dist":"1577","grid":"FM09vd"},{"call":"N1MHV","name":"Robert Trester","date":"2022-06-26","time":"1646","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"GA","qth":"Cumming","lotw":"Y","dist":"912","grid":"EM74WG82"},{"call":"WD8EKH","name":"James E Reinhart","date":"2022-06-26","time":"1649","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"OH","qth":"Medina","lotw":"Y","dist":"1411","grid":"EN91ab"},{"call":"AG5HC","name":"Wesley R Jensen","date":"2022-06-26","time":"1654","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AR","qth":"Cabot","lotw":"N","dist":"314","grid":"EM35xa"},{"call":"KK4AIZ","name":"Jon T Kessell","date":"2022-06-26","time":"1656","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TN","qth":"Franklin","lotw":"Y","dist":"733","grid":"EM65nx"},{"call":"KD9ISN","name":"Frank A Ousley","date":"2022-06-26","time":"1702","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"IL","qth":"Morrison","lotw":"Y","dist":"1073","grid":"EN41XR94"},{"call":"WE5Q","name":"JONATHAN D CARPENTER","date":"2022-06-26","time":"1706","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"ODESSA","lotw":"N","dist":"815","grid":"DM81tv"},{"call":"NV5B","name":"ROGER N SIMONSON","date":"2022-06-26","time":"1712","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"TX","qth":"Missouri City","lotw":"Y","dist":"373","grid":"EL29fn"},{"call":"N4LT","name":"Tennessee Valley DX Association","date":"2022-06-26","time":"1713","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"TN","qth":"Chattanooga","lotw":"Y","dist":"827","grid":"EM75ic"},{"call":"N7GHZ","name":"John R Payton","date":"2022-06-26","time":"1716","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1E","country":"United States","state":"AZ","qth":"Tucson","lotw":"Y","dist":"1613","grid":"DM42MM"},{"call":"W4CRS","name":"Richard G Whitehouse","date":"2022-06-26","time":"1720","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"AL","qth":"Montgomery","lotw":"N","dist":"703","grid":"EM62vj"},{"call":"KB5WCK","name":"Jeff Grantham","date":"2022-06-26","time":"1727","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TX","qth":"North Richland Hills","lotw":"Y","dist":"315","grid":"EM50"},{"call":"K0VM","name":"ALVIN H GROFF","date":"2022-06-26","time":"1733","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"IA","qth":"CEDAR RAPIDS","lotw":"Y","dist":"1072","grid":"EN42"},{"call":"KC4JXH","name":"BRIAN S MANNON","date":"2022-06-26","time":"1738","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"Riverview","lotw":"N","dist":"1218","grid":"EL87"},{"call":"N4GXX","name":"STEPHEN D STROM","date":"2022-06-26","time":"1743","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"FL","qth":"CRESTVIEW","lotw":"Y","dist":"703","grid":"EM60"},{"call":"W9AB","name":"MICHIANA AMATEUR RADIO CLUB INC","date":"2022-06-26","time":"1744","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"3A","country":"United States","state":"IN","qth":"SOUTH BEND","lotw":"N","dist":"1211","grid":"EN61"},{"call":"N0SS","name":"Mid Mo Amateur Radio Club Inc","date":"2022-06-26","time":"1746","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2A","country":"United States","state":"MO","qth":"Jefferson City","lotw":"N","dist":"690","grid":"EM38"},{"call":"KB4VL","name":"ROGER H CALENDINE","date":"2022-06-26","time":"1749","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"TN","qth":"Vonore","lotw":"Y","dist":"1836","grid":"FN13fb"},{"call":"K8YE","name":"DENNIS D FAIST","date":"2022-06-26","time":"1750","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1B","country":"United States","state":"MI","qth":"CALEDONIA","lotw":"N","dist":"1348","grid":"EN74"},{"call":"K8SIX","name":"ALBERT L BAILEY","date":"2022-06-26","time":"1751","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"MI","qth":"WATERFORD","lotw":"Y","dist":"1444","grid":"EN82"},{"call":"KB9NHZ","name":"MICHAEL F PAWLAK","date":"2022-06-26","time":"1753","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"1D","country":"United States","state":"IN","qth":"LOWELL","lotw":"Y","dist":"1121","grid":"EN61"},{"call":"AC5O","name":"Jeffrey J Guidry","date":"2022-06-26","time":"1754","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"2D","country":"United States","state":"LA","qth":"Raceland","lotw":"Y","dist":"436","grid":"EL49"},{"call":"N5GK","name":"Faulkner County Amateur Radio Club","date":"2022-06-26","time":"1756","band":"20M","mode":"FT4","rst_sent":"1D","rst_rcvd":"4A","country":"United States","state":"AR","qth":"Conway","lotw":"N","dist":"307","grid":"EM35"},{"call":"W4HTP","name":"HOWARD T PERRY, JR","date":"2022-05-07","time":"2046","band":"20M","mode":"DATA","rst_sent":"","rst_rcvd":"","country":"United States","state":"NC","qth":"MINT HILL","lotw":"Y","dist":"1235","grid":"EM95PD"},{"call":"WA2HQL","name":"John J Reid","date":"2022-07-09","time":"0212","band":"40M","mode":"RTTY","rst_sent":"-04","rst_rcvd":"-15","country":"United States","state":"NC","qth":"KANNAPOLIS","lotw":"Y","dist":"1250","grid":"EM95ql"},{"call":"K4SPB","name":"Adam L White","date":"2022-07-09","time":"0244","band":"40M","mode":"RTTY","rst_sent":"+02","rst_rcvd":"-08","country":"United States","state":"TX","qth":"Fort Worth","lotw":"Y","dist":"345","grid":"EM12hr"},{"call":"KN4EAR","name":"Michael A Shields","date":"2022-07-09","time":"0340","band":"30M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+02","country":"United States","state":"VA","qth":"Falls Church","lotw":"N","dist":"1646","grid":"EN72"},{"call":"N8HRZ","name":"Steven T Ruman, JR","date":"2022-07-09","time":"0347","band":"30M","mode":"FT8","rst_sent":"+11","rst_rcvd":"+06","country":"United States","state":"OH","qth":"Niles","lotw":"Y","dist":"1498","grid":"EN91OE"},{"call":"W0LEN","name":"LYNTON E NORSTAD","date":"2022-07-09","time":"0350","band":"30M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-10","country":"United States","state":"IL","qth":"Saint Charles","lotw":"Y","dist":"1150","grid":"EN51TX"},{"call":"F5RRS","name":"Damien FORESTIER","date":"2022-07-09","time":"0352","band":"30M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-14","country":"France","state":"","qth":"Saint Pierre en Faucigny","lotw":"Y","dist":"8167","grid":"JN36EB"},{"call":"AA0KU","name":"David G Wheaton","date":"2022-07-09","time":"0403","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-08","country":"United States","state":"CA","qth":"Rosamond","lotw":"Y","dist":"2276","grid":"DM04VU"},{"call":"K7CAR","name":"KENT B O SELL","date":"2022-07-09","time":"0415","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-09","country":"United States","state":"NV","qth":"Mesquite","lotw":"Y","dist":"1880","grid":"DM37GQ"},{"call":"K5WSC","name":"ROY G ACUFF","date":"2022-07-09","time":"0419","band":"20M","mode":"FT8","rst_sent":"+15","rst_rcvd":"+06","country":"United States","state":"TX","qth":"Burnet","lotw":"N","dist":"474","grid":"EM00US"},{"call":"KE7IN","name":"Kevin B Widener","date":"2022-07-09","time":"0440","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-08","country":"United States","state":"WA","qth":"Underwood","lotw":"Y","dist":"2794","grid":"CN95FR"},{"call":"WA7AAA","name":"PAUL GRUZYNSKI","date":"2022-07-09","time":"0448","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+02","country":"United States","state":"AZ","qth":"EL MIRAGE","lotw":"Y","dist":"1741","grid":"DM33TM"},{"call":"W2ZBT","name":"S. Richard Lesniak","date":"2022-07-09","time":"0458","band":"40M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-23","country":"United States","state":"NY","qth":"Buffalo","lotw":"N","dist":"1737","grid":"FN02NW"},{"call":"WY0V","name":"Gary L Johnson","date":"2022-07-09","time":"0500","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-12","country":"United States","state":"IA","qth":"SIOUX CITY","lotw":"Y","dist":"1135","grid":"EN12SM"},{"call":"AA9GE","name":"JAMES R JORDAN","date":"2022-07-09","time":"0504","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-04","country":"United States","state":"IL","qth":"Washington","lotw":"Y","dist":"982","grid":"EN50GQ"},{"call":"N3JHB","name":"James H Bricker","date":"2022-07-09","time":"0506","band":"40M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-16","country":"United States","state":"PA","qth":"McKeesport","lotw":"Y","dist":"1508","grid":"FN00BI"},{"call":"AI7EQ","name":"Sean J Hartley","date":"2022-07-09","time":"0510","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-13","country":"United States","state":"OR","qth":"Crooked River Ranch","lotw":"Y","dist":"2723","grid":"CN94IK"},{"call":"N3KCR","name":"DAVID P SWANEY","date":"2022-07-09","time":"0514","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-08","country":"United States","state":"PA","qth":"MIFFLINBURG","lotw":"Y","dist":"1749","grid":"FN10LW"},{"call":"KE8NBC","name":"James A Stinson, Jr","date":"2022-07-09","time":"0519","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-07","country":"United States","state":"OH","qth":"Xenia","lotw":"Y","dist":"1178","grid":"EM89AP"},{"call":"KM6JBI","name":"Herberto P Garcia","date":"2022-07-09","time":"0521","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-12","country":"United States","state":"CA","qth":"Penryn","lotw":"Y","dist":"2567","grid":"CM98JU"},{"call":"WW6RC","name":"Edward W Cowperthwaite","date":"2022-07-09","time":"0525","band":"40M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-15","country":"United States","state":"CA","qth":"Santa Rosa","lotw":"Y","dist":"2697","grid":"CM88PK14"},{"call":"W8BSD","name":"Stephen J Hurd","date":"2022-07-09","time":"0531","band":"40M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-09","country":"United States","state":"MI","qth":"Ada","lotw":"Y","dist":"1364","grid":"EN72GW"},{"call":"W6LVP","name":"Larry","date":"2022-07-09","time":"0551","band":"40M","mode":"RTTY","rst_sent":"-16","rst_rcvd":"-19","country":"United States","state":"CA","qth":"Santa Paula, CA USA","lotw":"Y","dist":"2354","grid":"DM04li"},{"call":"KC9EOQ","name":"Dean P Holste","date":"2022-07-09","time":"0658","band":"40M","mode":"FT8","rst_sent":"+03","rst_rcvd":"-02","country":"United States","state":"IL","qth":"AURORA","lotw":"Y","dist":"1130","grid":"EN51TS"},{"call":"K6WRJ","name":"James R Wilson","date":"2022-07-09","time":"0700","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-09","country":"United States","state":"CA","qth":"Poway","lotw":"Y","dist":"2198","grid":"DM12JR"},{"call":"KF9UG","name":"MICHAEL D DAY","date":"2022-07-09","time":"0705","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-03","country":"United States","state":"IN","qth":"LEO","lotw":"Y","dist":"1237","grid":"EN71MF"},{"call":"N4RAG","name":"RAFAEL A GENAO","date":"2022-07-09","time":"0714","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-15","country":"United States","state":"FL","qth":"HOLLYWOOD","lotw":"N","dist":"1498","grid":"EL96WA"},{"call":"K7CAR","name":"KENT B O SELL","date":"2022-07-09","time":"0715","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-05","country":"United States","state":"NV","qth":"Mesquite","lotw":"Y","dist":"1880","grid":"DM37GQ"},{"call":"AJ6HT","name":"Masahiro Ueno","date":"2022-07-09","time":"0721","band":"40M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-13","country":"United States","state":"CA","qth":"Mountain View","lotw":"Y","dist":"2629","grid":"CM87XI"},{"call":"N4PLR","name":"Shane D Yarnall","date":"2021-10-26","time":"2044","band":"20M","mode":"C4FM","rst_sent":"","rst_rcvd":"","country":"United States","state":"FL","qth":"Orlando","lotw":"N","dist":"1281","grid":"EL98kn"},{"call":"WB4UBK","name":"Donald L Wood","date":"2022-07-16","time":"2235","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"+06","country":"United States","state":"FL","qth":"Interlachen","lotw":"Y","dist":"1170","grid":"EL99BP"},{"call":"W9AV","name":"Julien C Sprott","date":"2022-07-16","time":"2312","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"WI","qth":"Madison","lotw":"Y","dist":"1230","grid":"EN43"},{"call":"W4NRG","name":"CHRISTOPHER J WHEELER","date":"2022-07-17","time":"0004","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-07","country":"United States","state":"MD","qth":"CALIFORNIA","lotw":"Y","dist":"1677","grid":"FM18"},{"call":"KD6SPN","name":"Sherwin P Notario","date":"2022-07-17","time":"0006","band":"20M","mode":"FT8","rst_sent":"-22","rst_rcvd":"-17","country":"United States","state":"CA","qth":"San Jose","lotw":"N","dist":"2621","grid":"CM97AJ"},{"call":"KM4UDX","name":"Don D Taylor","date":"2022-07-17","time":"0009","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"+00","country":"United States","state":"VA","qth":"Vienna","lotw":"Y","dist":"1639","grid":"FM18IW"},{"call":"KG7CL","name":"TIM E HOLLEMBAEK","date":"2022-07-17","time":"0013","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-09","country":"United States","state":"NV","qth":"Pahrump","lotw":"Y","dist":"2084","grid":"DM16XF"},{"call":"F6EAO","name":"Jean-Michel Chapron","date":"2022-07-17","time":"0017","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+02","country":"France","state":"","qth":"77580 Guerard Courbon","lotw":"Y","dist":"7796","grid":"JN18LS"},{"call":"KF7MCQ","name":"FRANCIS J MC HUGH","date":"2022-07-17","time":"0026","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"+02","country":"United States","state":"AZ","qth":"Sun City West","lotw":"N","dist":"1739","grid":"DM33TQ"},{"call":"DL1UDO","name":"UDO MUELLER","date":"2022-07-17","time":"0047","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-11","country":"Germany","state":"","qth":"45721 HALTERN","lotw":"Y","dist":"7910","grid":"JO31OR"},{"call":"VA3YVE","name":"Yves Isabelle","date":"2022-07-17","time":"0052","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-05","country":"Canada","state":"","qth":"Burlington","lotw":"N","dist":"1830","grid":"FN03CJ"},{"call":"W4JRK","name":"Jon R Kramer","date":"2022-07-17","time":"0100","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-13","country":"United States","state":"FL","qth":"Fort Lauderdale","lotw":"N","dist":"1479","grid":"EL96UE"},{"call":"HA7TM","name":"Tibor (Tibi) Nemeth","date":"2022-07-17","time":"0108","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-15","country":"Hungary","state":"H","qth":"ERD","lotw":"Y","dist":"8875","grid":"JN97KK"},{"call":"HG8LXL","name":"Laszlo Papp","date":"2022-07-17","time":"0109","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-11","country":"Hungary","state":"","qth":"Csongrad H-6640","lotw":"Y","dist":"8997","grid":"KN06BR"},{"call":"KO4YQU","name":"Jamie Creque","date":"2022-07-17","time":"0111","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"+02","country":"United States","state":"VA","qth":"Virginia Beach","lotw":"Y","dist":"1668","grid":"FM16VU"},{"call":"K7XRL","name":"RONALD P LABORDE","date":"2022-07-17","time":"0119","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-02","country":"United States","state":"UT","qth":"SUNNYSIDE","lotw":"Y","dist":"1688","grid":"DM49TN"},{"call":"9A5WA","name":"Max - Kamenko Crnjevic","date":"2022-07-17","time":"0141","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-12","country":"Croatia","state":"","qth":"43500 DARUVAR","lotw":"Y","dist":"8897","grid":"JN85OO"},{"call":"RZ1OA","name":"VLAD SADAKOV","date":"2022-07-17","time":"0242","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-18","country":"Russia","state":"","qth":"ARKHANGELSK, 163045","lotw":"Y","dist":"8517","grid":"LP04IM"},{"call":"KA4CID","name":"JOHN M BOLTON","date":"2022-07-17","time":"0302","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-12","country":"United States","state":"GA","qth":"RICHMOND HILL","lotw":"Y","dist":"1175","grid":"EM91JV"},{"call":"NY7H","name":"DARIN M CROWLEY","date":"2022-07-17","time":"0307","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-07","country":"United States","state":"AZ","qth":"Yuma","lotw":"Y","dist":"1934","grid":"DM22TP"},{"call":"F6EQZ","name":"Jean DERVIEUX-LECOCQ","date":"2022-07-17","time":"0340","band":"20M","mode":"FT4","rst_sent":"-05","rst_rcvd":"-11","country":"France","state":"","qth":"REIMS","lotw":"Y","dist":"7841","grid":"JN19XF"},{"call":"YO3TN","name":"Don Doru Militaru","date":"2022-07-17","time":"0341","band":"20M","mode":"FT4","rst_sent":"-11","rst_rcvd":"-10","country":"Romania","state":"","qth":"Bucharest","lotw":"N","dist":"9521","grid":"KN34BJ"},{"call":"AA8KY","name":"WILLIAM N MASSIE","date":"2022-07-17","time":"0342","band":"20M","mode":"FT4","rst_sent":"-07","rst_rcvd":"-13","country":"United States","state":"OH","qth":"PORTSMOUTH","lotw":"Y","dist":"1189","grid":"EM88MS"},{"call":"N7DUX","name":"Ducks On The Air","date":"2022-07-17","time":"0344","band":"20M","mode":"FT4","rst_sent":"-02","rst_rcvd":"-07","country":"United States","state":"OR","qth":"Eugene","lotw":"Y","dist":"2844","grid":"CN84LB"},{"call":"SP8AJK","name":"\"Tony\" Wojciech Putylo","date":"2022-07-17","time":"0345","band":"20M","mode":"FT4","rst_sent":"-01","rst_rcvd":"+12","country":"Poland","state":"","qth":"Rzeszow","lotw":"Y","dist":"8874","grid":"KO10AA"},{"call":"OM3LK","name":"PIOTR (PETER) KAPUSNIAK","date":"2022-07-17","time":"0407","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-08","country":"Slovak Republic","state":"","qth":"PECOVSKA NOVA VES","lotw":"Y","dist":"8882","grid":"KN09MC"},{"call":"W4CHF","name":"Brent M Le Fevre","date":"2022-07-17","time":"0412","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-06","country":"United States","state":"GA","qth":"Hinesville","lotw":"N","dist":"1139","grid":"EM92"},{"call":"OE6KDG","name":"SIEGFRIED KRAINER","date":"2022-07-17","time":"0432","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-09","country":"Austria","state":"A","qth":"A-8724 SPIELBERG","lotw":"N","dist":"8641","grid":"JN77JF"},{"call":"K0KWH","name":"KENNETH W HOOK, III","date":"2022-07-17","time":"0438","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-06","country":"United States","state":"CO","qth":"FOUNTAIN","lotw":"Y","dist":"1205","grid":"DM78PQ"},{"call":"AF7CF","name":"Corey J Fisher","date":"2022-07-17","time":"0453","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"+02","country":"United States","state":"OR","qth":"Hillsboro","lotw":"Y","dist":"2883","grid":"CN74"},{"call":"KE0EE","name":"Donald G Lewis","date":"2022-07-17","time":"0537","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-11","country":"United States","state":"CO","qth":"Longmont","lotw":"Y","dist":"1329","grid":"DN70KE"},{"call":"N9AJD","name":"AUSTIN J DEVENTER","date":"2022-07-17","time":"0539","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-15","country":"United States","state":"IN","qth":"FORT WAYNE","lotw":"Y","dist":"1225","grid":"EN71KE"},{"call":"WY0V","name":"Gary L Johnson","date":"2022-07-17","time":"0547","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-03","country":"United States","state":"IA","qth":"SIOUX CITY","lotw":"Y","dist":"1135","grid":"EN12SM"},{"call":"W9AV","name":"Julien C Sprott","date":"2022-07-17","time":"0548","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+08","country":"United States","state":"WI","qth":"Madison","lotw":"Y","dist":"1230","grid":"EN43"},{"call":"W4G","name":"Birmingham Amateur Radio Club","date":"2022-07-17","time":"0552","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-06","country":"United States","state":"AL","qth":"Birmingham","lotw":"Y","dist":"651","grid":"EM63OM"},{"call":"W6GP","name":"FRANKLIN J BOOTS","date":"2022-07-17","time":"0555","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-10","country":"United States","state":"CA","qth":"Rio Vista","lotw":"N","dist":"2605","grid":"CM98DE"},{"call":"KN4GFG","name":"CHARLES W SMITH, JR","date":"2022-07-17","time":"0559","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-03","country":"United States","state":"GA","qth":"HINESVILLE","lotw":"N","dist":"1138","grid":"EM91ET"},{"call":"W9JWR","name":"Justin W Ranton","date":"2022-07-17","time":"0600","band":"40M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-04","country":"United States","state":"WA","qth":"Roy","lotw":"N","dist":"2904","grid":"CN86TV"},{"call":"KN4GFG","name":"CHARLES W SMITH, JR","date":"2022-07-17","time":"0601","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-03","country":"United States","state":"GA","qth":"HINESVILLE","lotw":"N","dist":"1138","grid":"EM91"},{"call":"N1UL/2","name":"ULRICH L ROHDE, PhD","date":"2022-07-17","time":"0605","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-13","country":"United States","state":"NJ","qth":"Upper Saddle River","lotw":"Y","dist":"1977","grid":"FN21wb"},{"call":"KG6PH","name":"CHARLES L FURMAN","date":"2022-07-17","time":"0611","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-17","country":"United States","state":"TX","qth":"Plano","lotw":"Y","dist":"291","grid":"EM13OC"},{"call":"K7CAR","name":"KENT B O SELL","date":"2022-07-17","time":"0615","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-03","country":"United States","state":"NV","qth":"Mesquite","lotw":"Y","dist":"1880","grid":"DM37GQ"},{"call":"OA1F","name":"Carlos A. Lorenzo","date":"2022-07-17","time":"0619","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-20","country":"Peru","state":"","qth":"Chiclayo","lotw":"Y","dist":"4609","grid":"FI03BF"},{"call":"K0GSA","name":"GREGORY S AVERILL","date":"2022-07-17","time":"0621","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-09","country":"United States","state":"CO","qth":"FORT COLLINS","lotw":"Y","dist":"1352","grid":"DN70KN"},{"call":"EA8AQD","name":"Jose Enrique Jeronimo armas","date":"2022-07-17","time":"0631","band":"40M","mode":"FT8","rst_sent":"-20","rst_rcvd":"-24","country":"Canary Islands","state":"TF","qth":"Arafo","lotw":"Y","dist":"7256","grid":"IL18TI"},{"call":"N8ERV","name":"Thomas J Tackaberry","date":"2022-07-17","time":"0633","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-09","country":"United States","state":"MI","qth":"Yale","lotw":"N","dist":"1514","grid":"EN83OC"},{"call":"K4JKB","name":"Joseph K Bales","date":"2022-07-22","time":"2030","band":"20M","mode":"RTTY","rst_sent":"-13","rst_rcvd":"-14","country":"United States","state":"VA","qth":"MIDLOTHIAN","lotw":"Y","dist":"1558","grid":"FM17ej"},{"call":"K4JKB","name":"Joseph K Bales","date":"2022-07-22","time":"2032","band":"20M","mode":"RTTY","rst_sent":"-17","rst_rcvd":"-08","country":"United States","state":"VA","qth":"MIDLOTHIAN","lotw":"Y","dist":"1558","grid":"FM17ej"},{"call":"W8MRL","name":"Myrl R Lindsay, Jr","date":"2022-07-22","time":"2036","band":"20M","mode":"RTTY","rst_sent":"-14","rst_rcvd":"-08","country":"United States","state":"OH","qth":"HAMILTON","lotw":"N","dist":"1132","grid":"EM79rl"},{"call":"K9CRT","name":"Douglas H Stoutenborough","date":"2022-07-22","time":"2040","band":"20M","mode":"RTTY","rst_sent":"-17","rst_rcvd":"+04","country":"United States","state":"IL","qth":"DECATUR","lotw":"N","dist":"924","grid":"EM59mv"},{"call":"KN4ODH","name":"Gordon B Boucher, Jr","date":"2022-07-22","time":"2126","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-12","country":"United States","state":"FL","qth":"Inverness","lotw":"Y","dist":"1163","grid":"EL88UT"},{"call":"N6RVI","name":"PEDRITO M VILLAVER","date":"2022-07-22","time":"2242","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-01","country":"United States","state":"CA","qth":"SPRING VALLEY","lotw":"Y","dist":"2178","grid":"DM12LR"},{"call":"WB6WUW","name":"BARTON E PULVERMAN","date":"2022-07-22","time":"2248","band":"20M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-05","country":"United States","state":"CA","qth":"BUENA PARK","lotw":"Y","dist":"2259","grid":"DM13AU"},{"call":"KK7CWL","name":"James R Sloan","date":"2022-07-22","time":"2254","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-02","country":"United States","state":"OR","qth":"GOLD BEACH","lotw":"Y","dist":"2906","grid":"CN72SK"},{"call":"N9WQP","name":"Jerry W Hankins, III","date":"2022-07-22","time":"2300","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-03","country":"United States","state":"IN","qth":"Terre Haute","lotw":"Y","dist":"964","grid":"EM69HM"},{"call":"N6BQV","name":"STEPHEN J MC LAUGHLIN","date":"2022-07-22","time":"2304","band":"20M","mode":"FT8","rst_sent":"-21","rst_rcvd":"-12","country":"United States","state":"CA","qth":"Corona","lotw":"N","dist":"2210","grid":"DM13GV"},{"call":"KN6IUF","name":"Mike Smith","date":"2022-07-22","time":"2307","band":"20M","mode":"FT8","rst_sent":"-18","rst_rcvd":"-02","country":"United States","state":"CA","qth":"SUN VALLEY","lotw":"N","dist":"2293","grid":"DM04TG"},{"call":"W9YOU","name":"JOHN P REARDON, PE","date":"2022-07-22","time":"2308","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+03","country":"United States","state":"IL","qth":"Chicago","lotw":"Y","dist":"1170","grid":"EN61MO"},{"call":"N1PRR","name":"GARY BLANDINO","date":"2022-07-22","time":"2314","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-02","country":"United States","state":"AZ","qth":"Litchfield Park","lotw":"N","dist":"1749","grid":"DM33TL"},{"call":"KK6CTI","name":"Roger Hort","date":"2022-07-22","time":"2317","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-06","country":"United States","state":"CA","qth":"Poway","lotw":"N","dist":"2180","grid":"DM12LX"},{"call":"KD6VKF","name":"STEPHEN J BOTTS","date":"2022-07-22","time":"2321","band":"20M","mode":"FT8","rst_sent":"-23","rst_rcvd":"-12","country":"United States","state":"CA","qth":"RAMONA","lotw":"Y","dist":"2169","grid":"DM13MA"},{"call":"AD0AR","name":"PETER T DYRKE","date":"2022-07-22","time":"2327","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-26","country":"United States","state":"IA","qth":"SOLON","lotw":"N","dist":"1049","grid":"EN41FT"},{"call":"N8LES","name":"Leslie J Long","date":"2022-07-22","time":"2330","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-01","country":"United States","state":"OH","qth":"Lima","lotw":"N","dist":"1255","grid":"EN70XS"},{"call":"KC9GLR","name":"Kyle M Bandy","date":"2022-07-22","time":"2335","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-03","country":"United States","state":"IN","qth":"Indianapolis","lotw":"Y","dist":"1050","grid":"EM78"},{"call":"WC6Q","name":"Ryan K Ronning","date":"2022-07-22","time":"2346","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-18","country":"United States","state":"CA","qth":"Stevenson Ranch","lotw":"Y","dist":"2311","grid":"DM04RG"},{"call":"XE3LYC","name":"JOSE LUIS RAMIREZ HERNANDEZ","date":"2022-07-22","time":"2354","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-01","country":"Mexico","state":"","qth":"COL. UNIDAD MAGISTERIAL,CHILPANCINGO, GUERRERO","lotw":"N","dist":"1553","grid":"EK07GN"},{"call":"KB9GGR","name":"RAYMOND K ULVENES","date":"2022-07-22","time":"2359","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-22","country":"United States","state":"WI","qth":"Waterford","lotw":"Y","dist":"1236","grid":"EN52VS"},{"call":"KW9Q","name":"Douglas R Campbell","date":"2022-07-23","time":"0001","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-01","country":"United States","state":"IL","qth":"Carthage","lotw":"Y","dist":"901","grid":"EN40"},{"call":"W7OM","name":"RODNEY L LINKOUS","date":"2022-07-23","time":"0004","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-17","country":"United States","state":"WA","qth":"SEATTLE","lotw":"Y","dist":"2931","grid":"CN87TN"},{"call":"XE3LYC","name":"JOSE LUIS RAMIREZ HERNANDEZ","date":"2022-07-23","time":"0006","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"+01","country":"Mexico","state":"","qth":"COL. UNIDAD MAGISTERIAL,CHILPANCINGO, GUERRERO","lotw":"N","dist":"1553","grid":"EK07"},{"call":"AC3GI","name":"Michael J Pizano","date":"2022-07-23","time":"0008","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-17","country":"United States","state":"PA","qth":"Yatesville","lotw":"Y","dist":"1862","grid":"FN21CH"},{"call":"KD9TIP","name":"Jeremey R Jukes","date":"2022-07-23","time":"0011","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-02","country":"United States","state":"IN","qth":"Greenwood","lotw":"N","dist":"1041","grid":"EM69XO"},{"call":"VA2SS","name":"Jean-Fran\ufffdois M\ufffdnard","date":"2022-07-23","time":"0015","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-03","country":"Canada","state":"","qth":"SHERBROOKE","lotw":"Y","dist":"2346","grid":"FN45AJ"},{"call":"KF2FK","name":"Michael A Piccini","date":"2022-07-23","time":"0018","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-13","country":"United States","state":"NY","qth":"Hartsdale","lotw":"Y","dist":"2001","grid":"FN31CA"},{"call":"KA0BOJ","name":"MATTHEW N ANDERSON","date":"2022-07-23","time":"0020","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-11","country":"United States","state":"NE","qth":"Raymond","lotw":"Y","dist":"975","grid":"EN11TB40"},{"call":"KD2UBG","name":"Lawrence W Stucki","date":"2022-07-23","time":"0035","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-16","country":"United States","state":"NY","qth":"Pittsford","lotw":"Y","dist":"1840","grid":"FN13gc"},{"call":"YV5BRB","name":"Rodolfo Alberto Ramirez Bernal","date":"2022-07-23","time":"0037","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-12","country":"Venezuela","state":"","qth":"Catia la Mar","lotw":"Y","dist":"3210","grid":"FK60LO"},{"call":"AA0KW","name":"RALEIGH J SPINKS, JR","date":"2022-07-23","time":"0038","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-06","country":"United States","state":"IA","qth":"MARION","lotw":"N","dist":"1074","grid":"EN42FB"},{"call":"W4ZHA","name":"Corey F Blair","date":"2022-07-23","time":"0040","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-01","country":"United States","state":"TN","qth":"Hixson","lotw":"Y","dist":"837","grid":"EM75JD"},{"call":"WB0GAG","name":"Bruce C Dagel","date":"2022-07-23","time":"0044","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-04","country":"United States","state":"IA","qth":"Muscatine","lotw":"Y","dist":"1016","grid":"EN41LK"},{"call":"KD2TUS","name":"DANIEL P McCormick, III","date":"2022-07-23","time":"0056","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+03","country":"United States","state":"NJ","qth":"SEWELL","lotw":"Y","dist":"1851","grid":"FM29LS"},{"call":"N3WD","name":"WILLIAM A DOBSON, III","date":"2022-07-23","time":"0057","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-10","country":"United States","state":"MD","qth":"REISTERSTOWN","lotw":"N","dist":"1700","grid":"FM19OL"},{"call":"KB8SW","name":"MARK R JAVIT","date":"2022-07-23","time":"0107","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"+00","country":"United States","state":"MI","qth":"Brighton","lotw":"Y","dist":"1408","grid":"EN82CM"},{"call":"AC4BV","name":"NATHANIEL T PRIDE","date":"2022-07-23","time":"0110","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-06","country":"United States","state":"VA","qth":"PETERSBURG","lotw":"N","dist":"1561","grid":"FM17FE"},{"call":"VA3GLB","name":"Daniel Boulet","date":"2022-07-23","time":"0115","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-02","country":"Canada","state":"","qth":"Kanata","lotw":"Y","dist":"2088","grid":"FN25BH"},{"call":"W3YNI","name":"Charles L Mills","date":"2022-07-23","time":"0122","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-02","country":"United States","state":"PA","qth":"Irwin","lotw":"Y","dist":"1519","grid":"FN00DH"},{"call":"K5NON","name":"Matthew P Rottman","date":"2022-07-23","time":"0131","band":"20M","mode":"FT8","rst_sent":"-22","rst_rcvd":"-04","country":"United States","state":"TX","qth":"San Antonio","lotw":"N","dist":"576","grid":"EL09QN"},{"call":"EA1QR","name":"Carlos De Francisco","date":"2022-07-23","time":"0139","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-08","country":"Spain","state":"","qth":"36200 VIGO","lotw":"N","dist":"7276","grid":"IN52PG"},{"call":"HK3PSA","name":"ALBERTO MARIN CHAUX","date":"2022-07-23","time":"0142","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-09","country":"Colombia","state":"","qth":"Manizales","lotw":"Y","dist":"3593","grid":"FJ25GB"},{"call":"AC9HP","name":"Wayne R Michael","date":"2022-07-23","time":"0158","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-07","country":"United States","state":"IN","qth":"Indianapolis","lotw":"Y","dist":"1041","grid":"EM69TS"},{"call":"KA5SYP","name":"JEFFREY B BATCHELOR","date":"2022-07-23","time":"0205","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"+01","country":"United States","state":"VA","qth":"Vienna","lotw":"Y","dist":"1641","grid":"FM18IV"},{"call":"PY7ZC","name":"Marco Antonio Hardmeier","date":"2022-07-23","time":"0212","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-08","country":"Brazil","state":"","qth":"GRAVAT\ufffd","lotw":"N","dist":"7642","grid":"HI21FS"},{"call":"N2QDK","name":"Michael A Wren","date":"2022-07-23","time":"0215","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-09","country":"United States","state":"NY","qth":"Albany","lotw":"Y","dist":"2069","grid":"FN32BP"},{"call":"W7WKR","name":"JOHN R BINGHAM","date":"2022-07-23","time":"0217","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-15","country":"United States","state":"WA","qth":"STEHEKIN","lotw":"Y","dist":"2860","grid":"CN97"},{"call":"WA9DDK","name":"JEFFREY A GATWOOD","date":"2022-07-23","time":"0219","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-17","country":"United States","state":"GA","qth":"MACON","lotw":"Y","dist":"949","grid":"EM82FU"},{"call":"K5ERB","name":"Erbie H Massengill","date":"2022-07-23","time":"0222","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-04","country":"United States","state":"MS","qth":"Brandon","lotw":"N","dist":"361","grid":"EM52BE"},{"call":"K3VDR","name":"Christopher B Gaeth","date":"2022-07-23","time":"0223","band":"20M","mode":"FT8","rst_sent":"-22","rst_rcvd":"-07","country":"United States","state":"MD","qth":"Belcamp","lotw":"Y","dist":"1745","grid":"FM19VL"},{"call":"K7TTV","name":"PAUL A SATTER","date":"2022-07-23","time":"0228","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-04","country":"United States","state":"AZ","qth":"SCOTTSDALE","lotw":"N","dist":"1700","grid":"DM43AO"},{"call":"K9IHM","name":"JERROLD L JOHNSON","date":"2022-07-23","time":"0236","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-07","country":"United States","state":"TN","qth":"NEW MARKET","lotw":"Y","dist":"1010","grid":"EM86FC"},{"call":"ZF2CJ","name":"Colin Pokowitz","date":"2022-07-23","time":"0241","band":"20M","mode":"FT8","rst_sent":"-04","rst_rcvd":"+00","country":"Cayman Islands","state":"","qth":"Cayman Brac","lotw":"N","dist":"1985","grid":"EK99"},{"call":"RL9LR","name":"Alex Maksiuta","date":"2022-07-23","time":"0243","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-19","country":"Asiatic Russia","state":"","qth":"Tyumen","lotw":"N","dist":"9849","grid":"MO27"},{"call":"W5HVS","name":"Garrett C Martin","date":"2022-07-23","time":"0244","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-09","country":"United States","state":"TX","qth":"Purdon","lotw":"Y","dist":"335","grid":"FM17SK"},{"call":"N7FN","name":"FRANKLIN B NORAGON","date":"2022-07-23","time":"0251","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-11","country":"United States","state":"AZ","qth":"Buckeye","lotw":"Y","dist":"1765","grid":"DM33QQ"},{"call":"KI5DJJ","name":"Joshua A Ruby","date":"2022-07-23","time":"0257","band":"20M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-08","country":"United States","state":"TX","qth":"McKinney","lotw":"Y","dist":"294","grid":"EM13OE"},{"call":"KE6MAE","name":"LARRY C SPENCE","date":"2022-07-23","time":"0319","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-04","country":"United States","state":"CA","qth":"CALIMESA","lotw":"N","dist":"2170","grid":"DM13LX"},{"call":"WY6R","name":"ROBERT W TABER","date":"2022-07-23","time":"0324","band":"20M","mode":"FT8","rst_sent":"+09","rst_rcvd":"+07","country":"United States","state":"CA","qth":"APPLE VALLEY","lotw":"Y","dist":"2188","grid":"DM14JN"},{"call":"KK6MF","name":"LAWRENCE C BLISS","date":"2022-07-23","time":"0326","band":"20M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-06","country":"United States","state":"CA","qth":"TRACY","lotw":"Y","dist":"2577","grid":"CM97GR"},{"call":"KJ7FPD","name":"David M Serna","date":"2022-07-23","time":"0333","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"+01","country":"United States","state":"NV","qth":"Fallon","lotw":"Y","dist":"2374","grid":"DM09OJ"},{"call":"KG6MXE","name":"Maurice A Wyble","date":"2022-07-23","time":"0335","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-06","country":"United States","state":"CA","qth":"Norco","lotw":"N","dist":"2219","grid":"DM13FV"},{"call":"KJ7RGW","name":"Dale A Severns","date":"2022-07-23","time":"0341","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-16","country":"United States","state":"OR","qth":"KLAMATH FALLS","lotw":"Y","dist":"2690","grid":"CN92CE"},{"call":"K6YDS","name":"Robert E Isman","date":"2022-07-23","time":"0348","band":"20M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-14","country":"United States","state":"CA","qth":"Davis","lotw":"Y","dist":"2613","grid":"CM98DN"},{"call":"KN6PPZ","name":"Ferdinand Astrologo","date":"2022-07-23","time":"0354","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-13","country":"United States","state":"CA","qth":"Los Angeles","lotw":"Y","dist":"2286","grid":"DM04"},{"call":"W3TPL","name":"Timothy P Lyons","date":"2022-07-23","time":"0401","band":"20M","mode":"FT8","rst_sent":"-15","rst_rcvd":"-17","country":"United States","state":"NJ","qth":"Springfield","lotw":"Y","dist":"1942","grid":"FN20TQ"},{"call":"KN6NXD","name":"BRIAN BARKWILL","date":"2022-07-23","time":"0407","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-06","country":"United States","state":"CA","qth":"MATHER","lotw":"Y","dist":"2573","grid":"CM98IM"},{"call":"KN6MJK","name":"Brian H Roberts","date":"2022-07-23","time":"0408","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-10","country":"United States","state":"CA","qth":"Santee","lotw":"N","dist":"2178","grid":"DM12LU"},{"call":"VA2KBR","name":"Kevin Cantin","date":"2022-07-23","time":"0412","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-08","country":"Canada","state":"","qth":"QUEBEC","lotw":"Y","dist":"2471","grid":"FN46HU"},{"call":"KF7RQD","name":"Ronald R Ward","date":"2022-07-23","time":"0413","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-15","country":"United States","state":"OR","qth":"Prineville","lotw":"N","dist":"2684","grid":"CN94NH"},{"call":"HR1R","name":"Rudy Breve","date":"2022-07-23","time":"0420","band":"20M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-06","country":"Honduras","state":"","qth":"Doral, Florida 33122","lotw":"Y","dist":"2152","grid":"EK64JC"},{"call":"N1KI","name":"PHILLIP L DePorter","date":"2022-07-23","time":"0507","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-06","country":"United States","state":"TN","qth":"KNOXVILLE","lotw":"Y","dist":"960","grid":"EM75WX"},{"call":"K8SEL","name":"Joseph Mann","date":"2022-07-23","time":"0517","band":"40M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-04","country":"United States","state":"WV","qth":"SAINT ALBANS","lotw":"Y","dist":"1256","grid":"EM98CJ"},{"call":"AB0TA","name":"JOHN R FOULKS","date":"2022-07-23","time":"0520","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-04","country":"United States","state":"MO","qth":"SAINT PETERS","lotw":"Y","dist":"749","grid":"EM48RS"},{"call":"W9VUP","name":"Arthur R Garfield","date":"2022-07-23","time":"0525","band":"40M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-13","country":"United States","state":"OH","qth":"Uniontown","lotw":"Y","dist":"1438","grid":"EN90HX"},{"call":"KN4EOV","name":"John T Visage","date":"2022-07-23","time":"0531","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-09","country":"United States","state":"TN","qth":"Hixson","lotw":"N","dist":"831","grid":"EM75JC"},{"call":"WA7KS","name":"Kirk Scarbrough","date":"2022-07-23","time":"0533","band":"40M","mode":"FT8","rst_sent":"-16","rst_rcvd":"-10","country":"United States","state":"WA","qth":"WOODINVILLE","lotw":"Y","dist":"2924","grid":"CN87WS"},{"call":"KP2XX","name":"James L Latham","date":"2022-07-23","time":"0646","band":"40M","mode":"RTTY","rst_sent":"-16","rst_rcvd":"-07","country":"United States","state":"WI","qth":"New Richmond","lotw":"N","dist":"1271","grid":"EN35pe"},{"call":"WB2TQE","name":"Howard E Koenig","date":"2022-07-23","time":"0648","band":"40M","mode":"RTTY","rst_sent":"-06","rst_rcvd":"-10","country":"United States","state":"FL","qth":"COCONUT CREEK","lotw":"Y","dist":"1479","grid":"EL96"},{"call":"WS4BS","name":"Lee A Mannchen","date":"2022-07-23","time":"0650","band":"40M","mode":"RTTY","rst_sent":"-02","rst_rcvd":"-06","country":"United States","state":"SC","qth":"BONNEAU","lotw":"N","dist":"1282","grid":"FM03ah"},{"call":"WB2TQE","name":"Howard E Koenig","date":"2022-07-23","time":"0654","band":"40M","mode":"RTTY","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"FL","qth":"COCONUT CREEK","lotw":"Y","dist":"1479","grid":"EL96"},{"call":"WA9TT","name":"LARRY R PETERSON","date":"2022-07-29","time":"2005","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-08","country":"United States","state":"WI","qth":"Appleton","lotw":"Y","dist":"1384","grid":"EN54SH"},{"call":"N8CQD","name":"William G Maerkle","date":"2022-07-29","time":"2010","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-09","country":"United States","state":"NC","qth":"Greenville","lotw":"Y","dist":"1542","grid":"FM15HN"},{"call":"KI5IJB","name":"Deric A Adam","date":"2022-07-29","time":"2011","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-01","country":"United States","state":"TX","qth":"San Antonio","lotw":"Y","dist":"588","grid":"EL09PK"},{"call":"WD4FJF","name":"HAROLD E FEIGEL","date":"2022-07-29","time":"2017","band":"20M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-16","country":"United States","state":"MI","qth":"CEDAR","lotw":"N","dist":"1528","grid":"EN74BU"},{"call":"KA0BOJ","name":"MATTHEW N ANDERSON","date":"2022-07-29","time":"2018","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-19","country":"United States","state":"NE","qth":"Raymond","lotw":"Y","dist":"975","grid":"EN11TB40"},{"call":"KJ7KOJ","name":"Angus G Alexander","date":"2022-07-29","time":"2044","band":"20M","mode":"FT8","rst_sent":"-01","rst_rcvd":"+07","country":"United States","state":"WA","qth":"Woodinville","lotw":"N","dist":"2922","grid":"DM58"},{"call":"K9PLS","name":"Michael J Kilby","date":"2022-07-29","time":"2049","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-02","country":"United States","state":"IL","qth":"Monticello","lotw":"N","dist":"982","grid":"EN50MM"},{"call":"N2YCH","name":"CONRAD H TRAUTMANN, III","date":"2022-07-29","time":"2134","band":"20M","mode":"FT8","rst_sent":"+08","rst_rcvd":"-09","country":"United States","state":"CT","qth":"Trumbull","lotw":"Y","dist":"2058","grid":"FN31JG"},{"call":"WV2M","name":"FRANCIS M GALLO","date":"2022-07-29","time":"2152","band":"20M","mode":"FT8","rst_sent":"-03","rst_rcvd":"+03","country":"United States","state":"PA","qth":"Harleysville","lotw":"Y","dist":"1847","grid":"FN20HF"},{"call":"KJ7WFK","name":"Kelly T Smith","date":"2022-07-29","time":"2157","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+00","country":"United States","state":"AZ","qth":"Bullhead City","lotw":"Y","dist":"1940","grid":"DM25RE"},{"call":"VA6RCN","name":"Kevin Clements","date":"2022-07-29","time":"2202","band":"20M","mode":"FT8","rst_sent":"-19","rst_rcvd":"-21","country":"Canada","state":"AB","qth":"Stony Plain","lotw":"Y","dist":"2836","grid":"DO33AM"},{"call":"N7FVQ","name":"LANA L YOUNG","date":"2022-07-29","time":"2206","band":"20M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-11","country":"United States","state":"AZ","qth":"Gilbert","lotw":"Y","dist":"1687","grid":"DM43CH"},{"call":"AC2SB","name":"Paul E Kudla","date":"2022-07-29","time":"2207","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-15","country":"United States","state":"NY","qth":"North Tonawanda","lotw":"Y","dist":"1745","grid":"FN03NA"},{"call":"KC3SVR","name":"William T Lunsford, V","date":"2022-07-29","time":"2211","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-07","country":"United States","state":"MD","qth":"Bel Air","lotw":"Y","dist":"1741","grid":"FM19UM"},{"call":"KF6JXM","name":"ROBERT M COOK","date":"2022-07-29","time":"2212","band":"20M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-18","country":"United States","state":"CA","qth":"RAMONA","lotw":"Y","dist":"2162","grid":"DM13NA"},{"call":"M0BEW","name":"TIM GRANT ELWELL","date":"2022-07-29","time":"2226","band":"20M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-17","country":"England","state":"","qth":"Shropshire","lotw":"Y","dist":"7275","grid":"IO82rj"},{"call":"W7GSR","name":"Gregory S Rogers","date":"2022-07-29","time":"2229","band":"20M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-09","country":"United States","state":"UT","qth":"Hurricane","lotw":"Y","dist":"1862","grid":"DM37HE"},{"call":"IK7IMK","name":"NICOLA LAVOPA","date":"2022-07-29","time":"2248","band":"15M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-07","country":"Italy","state":"","qth":"BARI","lotw":"Y","dist":"9176","grid":"JN81KC"},{"call":"HK5WML","name":"HUGO CABRERA","date":"2022-07-29","time":"2252","band":"15M","mode":"FT8","rst_sent":"-14","rst_rcvd":"-08","country":"Colombia","state":"","qth":"CALI","lotw":"Y","dist":"3698","grid":"FJ13RK"},{"call":"W8RJD","name":"Ryan J Deel","date":"2022-09-24","time":"1337","band":"20M","mode":"VARA HF","rst_sent":"+03","rst_rcvd":"-08","country":"United States","state":"MI","qth":"ROCHESTER HLS","lotw":"N","dist":"1457","grid":"EN82kp"},{"call":"K8BL","name":"BOB LIDDY","date":"2022-09-24","time":"1423","band":"20M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-14","country":"United States","state":"OH","qth":"MENTOR","lotw":"Y","dist":"1489","grid":"EN91HP"},{"call":"AE0TB","name":"Thomas W Bicket","date":"2022-09-24","time":"1425","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-14","country":"United States","state":"IA","qth":"Reinbeck","lotw":"Y","dist":"1092","grid":"EN32QH"},{"call":"HI5MAH","name":"MIGUEL ANTONIO HEREDIA","date":"2022-09-24","time":"1441","band":"10M","mode":"FT8","rst_sent":"+08","rst_rcvd":"+16","country":"Dominican Republic","state":"","qth":"Barahona","lotw":"Y","dist":"2770","grid":"FK48KE"},{"call":"W1GTT","name":"William H Covey","date":"2022-09-24","time":"1457","band":"20M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-08","country":"United States","state":"SC","qth":"Chapin","lotw":"Y","dist":"1169","grid":"EM94ID"},{"call":"KO4UJE","name":"BRIAN M CHANDLER","date":"2022-09-24","time":"2015","band":"20M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-11","country":"United States","state":"NC","qth":"KERNERSVILLE","lotw":"Y","dist":"1311","grid":"EM96WE"},{"call":"AC9HP","name":"Wayne R Michael","date":"2022-09-24","time":"2024","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-17","country":"United States","state":"IN","qth":"Indianapolis","lotw":"Y","dist":"1041","grid":"EM69TS"},{"call":"KX4RS","name":"Robert J Smalley, SR","date":"2022-09-24","time":"2028","band":"20M","mode":"FT8","rst_sent":"+05","rst_rcvd":"-06","country":"United States","state":"FL","qth":"Webster","lotw":"Y","dist":"1191","grid":"EL88WO"},{"call":"KA4BVG","name":"RICHARD S KNOX","date":"2022-09-24","time":"2039","band":"20M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-14","country":"United States","state":"TN","qth":"Brentwood","lotw":"Y","dist":"747","grid":"EM65PX"},{"call":"WC8VOA","name":"West Chester Amateur Radio Association","date":"2022-09-24","time":"2212","band":"20M","mode":"USB","rst_sent":"59","rst_rcvd":"59","country":"United States","state":"OH","qth":"West Chester","lotw":"Y","dist":"1131","grid":"EM79ti"},{"call":"K4YT","name":"KARL J RENZ","date":"2023-02-19","time":"1057","band":"40M","mode":"FT8","rst_sent":"+07","rst_rcvd":"+04","country":"United States","state":"VA","qth":"Great Falls","lotw":"Y","dist":"1640","grid":"FM19IA"},{"call":"KE8NQL","name":"Walter Radowenchuk","date":"2023-02-19","time":"1100","band":"40M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-17","country":"United States","state":"OH","qth":"North Ridgeville","lotw":"Y","dist":"1431","grid":"EN91AJ"},{"call":"N8OC","name":"David E Witucki","date":"2023-02-19","time":"1103","band":"40M","mode":"FT8","rst_sent":"-06","rst_rcvd":"-07","country":"United States","state":"MI","qth":"Bay City","lotw":"Y","dist":"1494","grid":"EN83AO"},{"call":"KW4IG","name":"MICHAEL J LEACH","date":"2023-02-19","time":"1106","band":"40M","mode":"FT8","rst_sent":"-23","rst_rcvd":"-19","country":"United States","state":"FL","qth":"KISSIMMEE","lotw":"Y","dist":"1275","grid":"EL98HG"},{"call":"W9SV","name":"LAVALLE D LAABS","date":"2023-02-19","time":"1112","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-07","country":"United States","state":"WI","qth":"GENOA CITY","lotw":"Y","dist":"1208","grid":"EN52TM"},{"call":"K4IHS","name":"RALPH A STALLSWORTH, JR","date":"2023-02-19","time":"1122","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-16","country":"United States","state":"NC","qth":"STALLINGS","lotw":"Y","dist":"1237","grid":"EM95QC"},{"call":"N4ULE","name":"JAMES E QUICK","date":"2023-02-19","time":"1126","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-07","country":"United States","state":"SC","qth":"Lexington","lotw":"Y","dist":"1164","grid":"EM94IA"},{"call":"W4CNA","name":"JOHN H LONDON","date":"2023-02-19","time":"1130","band":"40M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-17","country":"United States","state":"NC","qth":"ASHEVILLE","lotw":"N","dist":"1081","grid":"EM85RM"},{"call":"NC1RL","name":"Robert S Latlippe, Jr","date":"2023-02-19","time":"1132","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-16","country":"United States","state":"ME","qth":"Auburn","lotw":"Y","dist":"2406","grid":"FN44VC"},{"call":"WE8R","name":"Robert D Rosenfelder","date":"2023-02-19","time":"1138","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-26","country":"United States","state":"OH","qth":"Kettering","lotw":"Y","dist":"1168","grid":"EL99HT"},{"call":"N9DWH","name":"Dennis W Henry","date":"2023-02-19","time":"1142","band":"40M","mode":"FT8","rst_sent":"+02","rst_rcvd":"+04","country":"United States","state":"IN","qth":"Goshen","lotw":"Y","dist":"1221","grid":"EN71CN"},{"call":"WB0TAX","name":"DENNIS D WATTERS","date":"2023-02-19","time":"1146","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-10","country":"United States","state":"LA","qth":"ELM GROVE","lotw":"N","dist":"27","grid":"EM32gi"},{"call":"N8KQ","name":"Randall L Hayes","date":"2023-02-19","time":"1211","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-10","country":"United States","state":"OH","qth":"LISBON","lotw":"Y","dist":"1471","grid":"EN90OT"},{"call":"W2RK","name":"Andrew V Pratti","date":"2023-02-19","time":"1216","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-10","country":"United States","state":"NJ","qth":"Millstone Township","lotw":"N","dist":"1917","grid":"FN20SF"},{"call":"N8JK","name":"JOHN J KERR, III","date":"2023-02-19","time":"1221","band":"40M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-09","country":"United States","state":"OH","qth":"WEST CHESTER","lotw":"Y","dist":"1127","grid":"EM79TH"},{"call":"KE4BCN","name":"ROSS R SLATER","date":"2023-02-19","time":"1225","band":"40M","mode":"FT8","rst_sent":"-11","rst_rcvd":"-09","country":"United States","state":"VA","qth":"WINCHESTER","lotw":"Y","dist":"1582","grid":"FM09WD"},{"call":"KC9HOZ","name":"David S Hepworth","date":"2023-02-19","time":"1228","band":"40M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-11","country":"United States","state":"IN","qth":"Butler","lotw":"Y","dist":"1253","grid":"EN71MJ"},{"call":"KO4UXX","name":"James A Dunham","date":"2023-02-19","time":"1230","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+04","country":"United States","state":"GA","qth":"Jackson","lotw":"N","dist":"905","grid":"EM73XE"},{"call":"KE0WWG","name":"Patrick R Hagge","date":"2023-02-19","time":"1233","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-20","country":"United States","state":"MN","qth":"Rochester","lotw":"Y","dist":"1281","grid":"EN34TA"},{"call":"K5VJZ","name":"Thomas Harson","date":"2023-02-19","time":"1236","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-02","country":"United States","state":"AR","qth":"Russellville","lotw":"Y","dist":"308","grid":"EM85TH"},{"call":"KB4VL","name":"ROGER H CALENDINE","date":"2023-02-19","time":"1248","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-07","country":"United States","state":"TN","qth":"Vonore","lotw":"Y","dist":"935","grid":"EM75VN"},{"call":"KC5SM","name":"CAROLYN S MC KEEL","date":"2023-02-19","time":"1249","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"+03","country":"United States","state":"AR","qth":"BROOKLAND","lotw":"Y","dist":"472","grid":"EM45RV"},{"call":"YL3CU","name":"Andris Mikelsteins","date":"2023-02-19","time":"1342","band":"10M","mode":"FT8","rst_sent":"+02","rst_rcvd":"-17","country":"Latvia","state":"","qth":"Liepaja","lotw":"Y","dist":"8372","grid":"KO06MM"},{"call":"DL1ARS","name":"Michael Engel","date":"2023-02-19","time":"1411","band":"10M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-15","country":"Germany","state":"","qth":"Geislingen / Binsdorf","lotw":"Y","dist":"8196","grid":"JN48JH"},{"call":"VE2DVG","name":"Normand Juneau","date":"2023-02-19","time":"1417","band":"10M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-02","country":"Canada","state":"QC","qth":"DRUMMONDVILLE","lotw":"Y","dist":"2341","grid":"FN35SV"},{"call":"WA1ITU","name":"John Lesuer","date":"2023-02-19","time":"1422","band":"10M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-05","country":"United States","state":"RI","qth":"Exeter","lotw":"Y","dist":"2188","grid":"FN41DN"},{"call":"IV3GOW","name":"ERVINO GOMBAC","date":"2023-02-19","time":"1435","band":"10M","mode":"FT8","rst_sent":"-03","rst_rcvd":"-12","country":"Italy","state":"","qth":"34149 BASOVIZZA TRIESTE","lotw":"Y","dist":"8682","grid":"JN65WP"},{"call":"EA5ET","name":"Javier Fernandez Ros","date":"2023-02-19","time":"1439","band":"10M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-22","country":"Spain","state":"","qth":"46.080-Valencia","lotw":"Y","dist":"8024","grid":"IM99RN"},{"call":"IU0RBE","name":"Diego Mariani","date":"2023-02-19","time":"1442","band":"10M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-20","country":"Italy","state":"","qth":"Spoleto","lotw":"Y","dist":"8788","grid":"JN62IS"},{"call":"KJ6QBD","name":"Randy Falls","date":"2023-02-19","time":"1502","band":"10M","mode":"FT8","rst_sent":"+07","rst_rcvd":"-04","country":"United States","state":"CA","qth":"Sacramento","lotw":"Y","dist":"2581","grid":"CM98GP"},{"call":"HC1M","name":"Mauricio E. Rosero Vasquez","date":"2023-02-19","time":"1536","band":"12M","mode":"FT8","rst_sent":"-01","rst_rcvd":"-08","country":"Ecuador","state":"","qth":"Calle Inca Roca N2-95 y Antonio Borrero. Conocoto, Quito DM.","lotw":"N","dist":"4079","grid":"FI09SR"},{"call":"WA7KQS","name":"DAVID R QUEST","date":"2023-02-19","time":"1541","band":"12M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-14","country":"United States","state":"NV","qth":"Mesquite","lotw":"Y","dist":"1923","grid":"DM26"},{"call":"CO8LY","name":"Eduardo Somoano Cremati","date":"2023-02-19","time":"1543","band":"12M","mode":"FT8","rst_sent":"+04","rst_rcvd":"-11","country":"Cuba","state":"","qth":"Santiago de Cuba","lotw":"N","dist":"2257","grid":"FL20CA"},{"call":"US0KW","name":"ALEX BETSAN","date":"2023-02-19","time":"1605","band":"12M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-08","country":"Ukraine","state":"","qth":"KORETS, 34700","lotw":"Y","dist":"9106","grid":"KO30"},{"call":"IK4LZH","name":"GIANLUCA \"John\" MAZZINI","date":"2023-02-19","time":"1611","band":"12M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-21","country":"Italy","state":"","qth":"40131 BOLOGNA","lotw":"Y","dist":"8588","grid":"JN54QM"},{"call":"KD0ZJV","name":"SHOGO J COTTRELL","date":"2023-05-30","time":"0346","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-12","country":"United States","state":"KS","qth":"OLATHE","lotw":"Y","dist":"716","grid":"EM28MV"},{"call":"K5TAR","name":"Ryan Vincent","date":"2023-05-30","time":"0348","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-11","country":"United States","state":"LA","qth":"Greenwell Springs","lotw":"N","dist":"339","grid":"EM40LM"},{"call":"WS7R","name":"Darren J Pferdehirt, Sr","date":"2023-05-30","time":"0355","band":"40M","mode":"FT8","rst_sent":"-17","rst_rcvd":"-12","country":"United States","state":"NV","qth":"HENDERSON","lotw":"Y","dist":"1986","grid":"DM25mx"},{"call":"AC9HP","name":"Wayne R Michael","date":"2023-05-30","time":"0358","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"+04","country":"United States","state":"IN","qth":"Indianapolis","lotw":"Y","dist":"1041","grid":"EM69TS"},{"call":"KB7SAT","name":"RICHARD G DITTMER, SR","date":"2023-05-30","time":"0400","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-20","country":"United States","state":"NV","qth":"Las Vegas","lotw":"Y","dist":"2012","grid":"DM26JG"},{"call":"KN6CRX","name":"Blake D Andrews","date":"2023-05-30","time":"0412","band":"40M","mode":"FT8","rst_sent":"-10","rst_rcvd":"-18","country":"United States","state":"CA","qth":"West Covina","lotw":"Y","dist":"2250","grid":"DN42BC"},{"call":"AA0DY","name":"PAUL M COLEMAN","date":"2023-05-30","time":"0417","band":"40M","mode":"FT8","rst_sent":"-12","rst_rcvd":"-09","country":"United States","state":"CO","qth":"Colorado Springs","lotw":"N","dist":"1224","grid":"DM78NU"},{"call":"WD4OBP","name":"Cliff W Boltz","date":"2023-05-30","time":"0420","band":"40M","mode":"FT8","rst_sent":"-02","rst_rcvd":"-02","country":"United States","state":"VA","qth":"Courtland","lotw":"Y","dist":"1608","grid":"FM16MQ"},{"call":"N3UPS","name":"Sloan R Davis, Jr","date":"2023-05-30","time":"0423","band":"40M","mode":"FT8","rst_sent":"-08","rst_rcvd":"-06","country":"United States","state":"FL","qth":"Orlando","lotw":"Y","dist":"1272","grid":"EL98IL"},{"call":"KE5DXX","name":"Colton C Ancell","date":"2023-05-30","time":"0442","band":"40M","mode":"FT8","rst_sent":"+00","rst_rcvd":"-05","country":"United States","state":"TX","qth":"Liberty Hill","lotw":"Y","dist":"449","grid":"EM10BP"},{"call":"KA3PMW","name":"DAVID C ALEXANDER","date":"2023-05-30","time":"0458","band":"40M","mode":"FT8","rst_sent":"-13","rst_rcvd":"-09","country":"United States","state":"PA","qth":"Mather","lotw":"N","dist":"1473","grid":"EM99XW"},{"call":"W0DDD","name":"Michael A Benedict","date":"2023-05-30","time":"0500","band":"40M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-05","country":"United States","state":"IA","qth":"Grand Mound","lotw":"Y","dist":"1072","grid":"EN41PV"},{"call":"N8MRS","name":"Michael R Smith","date":"2023-05-30","time":"0508","band":"40M","mode":"FT8","rst_sent":"+01","rst_rcvd":"-24","country":"United States","state":"OH","qth":"Cincinnati","lotw":"Y","dist":"1111","grid":"EM79"},{"call":"KI5TDW","name":"Jimmy D Purifoy","date":"2023-05-30","time":"0509","band":"40M","mode":"FT8","rst_sent":"-04","rst_rcvd":"-12","country":"United States","state":"AR","qth":"Conway","lotw":"N","dist":"303","grid":"EM35"},{"call":"N2NWK","name":"ARCHIBALD A DELFISH","date":"2023-05-30","time":"0524","band":"20M","mode":"FT8","rst_sent":"-07","rst_rcvd":"-14","country":"United States","state":"MD","qth":"Baltimore","lotw":"Y","dist":"1686","grid":"FM18"},{"call":"N6PE","name":"RICHARD E DARWICKI","date":"2023-05-30","time":"0528","band":"20M","mode":"FT8","rst_sent":"-05","rst_rcvd":"-09","country":"United States","state":"CA","qth":"YORBA LINDA","lotw":"Y","dist":"2244","grid":"DM13CV"},{"call":"PD7RF","name":"FRITS KEYMAN","date":"2023-05-30","time":"0531","band":"20M","mode":"FT8","rst_sent":"-09","rst_rcvd":"-11","country":"Netherlands","state":"","qth":"HOORN","lotw":"Y","dist":"7731","grid":"JO22MP"}];
function init() {
ALL_DATA = FULL_LOG.length ? FULL_LOG : RAW_DATA;
filteredData = [...ALL_DATA];
// Update stats
const countries = new Set(ALL_DATA.map(r => r.country).filter(Boolean));
const states = new Set(ALL_DATA.filter(r => r.country === 'United States').map(r => r.state).filter(Boolean));
document.getElementById('stat-dxcc').textContent = countries.size;
document.getElementById('stat-states').textContent = states.size;
buildDashboard();
populateFilters();
renderTable();
}
// ─── DASHBOARD ───────────────────────────────────────────────
function buildDashboard() {
// Modes
const modes = countBy(ALL_DATA, 'mode');
const topModes = Object.entries(modes).sort((a,b)=>b[1]-a[1]).slice(0,7);
const maxMode = topModes[0][1];
const modesEl = document.getElementById('modes-chart');
const modeColors = { FT8:'#ffaa00', FT4:'#ffcc44', DIG:'#ff8800', USB:'#4499ff', LSB:'#66aaff', SSB:'#88bbff', RTTY:'#ff4455' };
modesEl.innerHTML = topModes.map(([m, c]) => `
<div class="bar-row">
<div class="bar-label">${m}</div>
<div class="bar-track"><div class="bar-fill" style="width:0%;background:${modeColors[m]||'#888'}" data-target="${(c/maxMode*100).toFixed(1)}"></div></div>
<div class="bar-count">${c}</div>
</div>`).join('');
// Bands
const bands = countBy(ALL_DATA, 'band');
const topBands = Object.entries(bands).sort((a,b)=>b[1]-a[1]).slice(0,8);
const maxBand = topBands[0][1];
const bandEl = document.getElementById('bands-chart');
const bandColors = { '20M':'#4499ff','40M':'#00ff88','80M':'#ff4455','10M':'#00ddff','30M':'#88aaff','17M':'#aaddff','15M':'#ffaaff','12M':'#ffdd88' };
bandEl.innerHTML = topBands.map(([b, c]) => `
<div class="bar-row">
<div class="bar-label">${b}</div>
<div class="bar-track"><div class="bar-fill" style="width:0%;background:${bandColors[b]||'#888'}" data-target="${(c/maxBand*100).toFixed(1)}"></div></div>
<div class="bar-count">${c}</div>
</div>`).join('');
// Countries
const countries = countBy(ALL_DATA, 'country');
const topCountries = Object.entries(countries).sort((a,b)=>b[1]-a[1]).slice(0,20);
const ctEl = document.getElementById('countries-list');
ctEl.innerHTML = topCountries.map(([c,n]) => `
<div class="country-row">
<span class="country-name">${c||'Unknown'}</span>
<span class="country-count">${n}</span>
</div>`).join('');
// Animate bars after a tick
requestAnimationFrame(() => {
setTimeout(() => {
document.querySelectorAll('.bar-fill').forEach(el => {
el.style.width = el.dataset.target + '%';
});
}, 100);
});
// Activity chart
drawActivityChart();
}
function drawActivityChart() {
const canvas = document.getElementById('activityCanvas');
const dpr = window.devicePixelRatio || 1;
const W = canvas.parentElement.offsetWidth - 48;
const H = 120;
canvas.width = W * dpr;
canvas.height = H * dpr;
canvas.style.width = W + 'px';
canvas.style.height = H + 'px';
const ctx = canvas.getContext('2d');
ctx.scale(dpr, dpr);
// Group by year-month
const monthly = {};
ALL_DATA.forEach(r => {
if (!r.date) return;
const key = r.date.slice(0,7);
monthly[key] = (monthly[key]||0) + 1;
});
const keys = Object.keys(monthly).sort();
const vals = keys.map(k => monthly[k]);
const max = Math.max(...vals);
const pad = { l: 10, r: 10, t: 15, b: 30 };
const chartW = W - pad.l - pad.r;
const chartH = H - pad.t - pad.b;
const barW = Math.max(2, (chartW / keys.length) - 1);
ctx.clearRect(0,0,W,H);
// Grid line
ctx.strokeStyle = 'rgba(30,37,48,0.8)';
ctx.lineWidth = 1;
ctx.beginPath();
ctx.moveTo(pad.l, pad.t + chartH);
ctx.lineTo(W - pad.r, pad.t + chartH);
ctx.stroke();
// Bars
keys.forEach((k, i) => {
const x = pad.l + i * (chartW / keys.length);
const h = (vals[i] / max) * chartH;
const y = pad.t + chartH - h;
const grad = ctx.createLinearGradient(0, y, 0, y + h);
grad.addColorStop(0, 'rgba(0,255,136,0.9)');
grad.addColorStop(1, 'rgba(0,255,136,0.15)');
ctx.fillStyle = grad;
ctx.fillRect(x, y, barW, h);
});
// X labels (every 6 months)
ctx.fillStyle = 'rgba(90,112,128,0.9)';
ctx.font = `${9 * dpr / dpr}px 'Share Tech Mono', monospace`;
ctx.textAlign = 'center';
keys.forEach((k, i) => {
if (i % 6 === 0) {
const x = pad.l + i * (chartW / keys.length) + barW/2;
ctx.fillText(k, x, H - 8);
}
});
}
// ─── TABLE ───────────────────────────────────────────────────
function populateFilters() {
const bands = [...new Set(ALL_DATA.map(r=>r.band).filter(Boolean))].sort();
const modes = [...new Set(ALL_DATA.map(r=>r.mode).filter(Boolean))].sort();
const bandSel = document.getElementById('filter-band');
const modeSel = document.getElementById('filter-mode');
bands.forEach(b => { const o = document.createElement('option'); o.value=b; o.text=b; bandSel.appendChild(o); });
modes.forEach(m => { const o = document.createElement('option'); o.value=m; o.text=m; modeSel.appendChild(o); });
}
function applyFilters() {
const q = document.getElementById('search-input').value.trim().toLowerCase();
const band = document.getElementById('filter-band').value;
const mode = document.getElementById('filter-mode').value;
const lotw = document.getElementById('filter-lotw').value;
filteredData = ALL_DATA.filter(r => {
if (band && r.band !== band) return false;
if (mode && r.mode !== mode) return false;
if (lotw && r.lotw !== lotw) return false;
if (q) {
const hay = [r.call, r.name, r.country, r.qth, r.state, r.grid].join(' ').toLowerCase();
if (!hay.includes(q)) return false;
}
return true;
});
currentPage = 1;
renderTable();
}
function sortTable(key) {
if (sortKey === key) sortDir *= -1;
else { sortKey = key; sortDir = key === 'date' || key === 'time' ? -1 : 1; }
filteredData.sort((a,b) => {
let av = a[key]||'', bv = b[key]||'';
if (key === 'dist') { av = parseInt(av)||0; bv = parseInt(bv)||0; }
if (av < bv) return -sortDir;
if (av > bv) return sortDir;
return 0;
});
// Update header indicators
document.querySelectorAll('thead th').forEach(th => {
th.classList.remove('sort-asc','sort-desc');
});
const headers = ['call','name','date','time','band','mode','rst_sent','country','dist','lotw'];
const idx = headers.indexOf(key);
if (idx >= 0) {
const ths = document.querySelectorAll('thead th');
ths[idx].classList.add(sortDir === 1 ? 'sort-asc' : 'sort-desc');
}
renderTable();
}
function renderTable() {
const tbody = document.getElementById('log-tbody');
const total = filteredData.length;
const pages = Math.ceil(total / PAGE_SIZE);
const start = (currentPage - 1) * PAGE_SIZE;
const slice = filteredData.slice(start, start + PAGE_SIZE);
document.getElementById('log-meta').textContent =
`${total.toLocaleString()} QSOs · Page ${currentPage} of ${Math.max(1,pages)}`;
if (slice.length === 0) {
tbody.innerHTML = '<tr><td colspan="10" style="text-align:center;padding:2rem;color:var(--muted);font-family:var(--font-mono);font-size:0.8rem;">NO CONTACTS FOUND</td></tr>';
} else {
tbody.innerHTML = slice.map(r => {
const timeStr = r.time ? r.time.slice(0,2)+':'+r.time.slice(2,4) : '';
const bandClass = `band-${r.band}`;
const lotwClass = r.lotw === 'Y' ? 'lotw-y' : 'lotw-n';
const lotwSym = r.lotw === 'Y' ? '✓' : '·';
const rst = r.rst_sent && r.rst_rcvd ? `${r.rst_sent} / ${r.rst_rcvd}` : r.rst_sent || '';
return `<tr>
<td class="call-cell">${esc(r.call)}</td>
<td>${esc(r.name ? titleCase(r.name) : '')}</td>
<td>${esc(r.date)}</td>
<td>${timeStr}Z</td>
<td><span class="band-badge ${bandClass}">${esc(r.band)}</span></td>
<td class="mode-cell">${esc(r.mode)}</td>
<td class="rst-cell">${esc(rst)}</td>
<td>${esc(r.country||'')}${r.state ? ' <span style="color:var(--muted)">'+esc(r.state)+'</span>' : ''}</td>
<td class="dist-cell">${r.dist ? Number(r.dist).toLocaleString() : ''}</td>
<td class="${lotwClass}" style="text-align:center">${lotwSym}</td>
</tr>`;
}).join('');
}
renderPagination(pages);
}
function renderPagination(pages) {
const el = document.getElementById('pagination');
if (pages <= 1) { el.innerHTML = ''; return; }
let html = `<button class="page-btn" onclick="goPage(${currentPage-1})" ${currentPage===1?'disabled':''}> Prev</button>`;
const range = [];
if (pages <= 7) {
for (let i=1;i<=pages;i++) range.push(i);
} else {
range.push(1);
if (currentPage > 3) range.push('...');
for (let i=Math.max(2,currentPage-1); i<=Math.min(pages-1,currentPage+1); i++) range.push(i);
if (currentPage < pages-2) range.push('...');
range.push(pages);
}
range.forEach(p => {
if (p === '...') html += `<span class="page-info">…</span>`;
else html += `<button class="page-btn ${p===currentPage?'active':''}" onclick="goPage(${p})">${p}</button>`;
});
html += `<button class="page-btn" onclick="goPage(${currentPage+1})" ${currentPage===pages?'disabled':''}>Next </button>`;
el.innerHTML = html;
}
function goPage(p) {
currentPage = p;
renderTable();
document.querySelector('.table-wrap').scrollIntoView({behavior:'smooth',block:'nearest'});
}
// ─── HELPERS ─────────────────────────────────────────────────
function countBy(arr, key) {
return arr.reduce((acc, r) => {
const v = r[key];
if (v) acc[v] = (acc[v]||0)+1;
return acc;
}, {});
}
function esc(s) {
return String(s||'').replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
}
function titleCase(s) {
return s.toLowerCase().replace(/\b\w/g, c => c.toUpperCase());
}
function showSection(id, btn) {
document.querySelectorAll('.section').forEach(s => s.classList.remove('active'));
document.querySelectorAll('.nav-btn').forEach(b => b.classList.remove('active'));
document.getElementById('section-' + id).classList.add('active');
btn.classList.add('active');
}
window.addEventListener('load', init);
window.addEventListener('resize', () => {
if (document.getElementById('section-dashboard').classList.contains('active')) {
drawActivityChart();
}
});
</script>
</body>
</html>