Did you know... Some AM stations still broadcast in stereo ?
view source - https://www.kmhd.org:443/
<!DOCTYPE html><html lang="en"><head><script>window.dataLayer =
window.dataLayer || [];
window.dataLayer.push({"content_group":"","series":"","author":[],"duration":1,"content_type":"page/psiIT51cJKzw3s","tags":[]});</script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WJZVPH');</script><title>KMHD</title><meta property="og:url" content="https://www.kmhd.org/homepage"/><meta property="og:image" content="https://www.kmhd.org/pf/resources/images/kmhd/kmhd-default.jpg?d=188"/><meta property="og:description" content="KMHD Home Page"/><meta property="og:site_name" content="kmhd"/><meta property="og:type" content="website"/><meta name="twitter:title" content=""/><meta name="twitter:url" content="https://www.kmhd.org/homepage"/><meta name="twitter:image" content="https://www.kmhd.org/pf/resources/images/kmhd/kmhd-default.jpg?d=188"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:description" content="KMHD Home Page"/><meta property="page-type" content="homepage"/><meta property="fb:app_id" content="1635670063409263"/><meta property="fb:pages" content="127822227267704"/><meta property="fb:pages" content="111249508913865"/><meta property="fb:pages" content="579165642143526"/><meta property="fb:pages" content="113050848721496"/><meta property="fb:pages" content="215427730440"/><meta property="fb:pages" content="21486761832"/><meta property="fb:pages" content="17790154938"/><script type="text/javascript">
if (!Math.trunc) {
Math.trunc = function (v) {
return v < 0 ? Math.ceil(v) : Math.floor(v);
};
}
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
'use strict';
if (typeof start !== 'number') {
start = 0;
}
if (start + search.length > this.length) {
return false;
} else {
return this.indexOf(search, start) !== -1;
}
};
}
// https://tc39.github.io/ecma262/#sec-array.prototype.findindex
if (!Array.prototype.findIndex) {
Object.defineProperty(Array.prototype, 'findIndex', {
value: function(predicate) {
// 1. Let O be ? ToObject(this value).
if (this == null) {
throw new TypeError('"this" is null or not defined');
}
var o = Object(this);
// 2. Let len be ? ToLength(? Get(O, "length")).
var len = o.length >>> 0;
// 3. If IsCallable(predicate) is false, throw a TypeError exception.
if (typeof predicate !== 'function') {
throw new TypeError('predicate must be a function');
}
// 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
var thisArg = arguments[1];
// 5. Let k be 0.
var k = 0;
// 6. Repeat, while k < len
while (k < len) {
// a. Let Pk be ! ToString(k).
// b. Let kValue be ? Get(O, Pk).
// c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
// d. If testResult is true, return k.
var kValue = o[k];
if (predicate.call(thisArg, kValue, k, o)) {
return k;
}
// e. Increase k by 1.
k++;
}
// 7. Return -1.
return -1;
},
configurable: true,
writable: true
});
}
// Production steps of ECMA-262, Edition 5, 15.4.4.18
// Reference: http://es5.github.io/#x15.4.4.18
if (!Array.prototype.forEach) {
Array.prototype.forEach = function(callback/*, thisArg*/) {
var T, k;
if (this == null) {
throw new TypeError('this is null or not defined');
}
// 1. Let O be the result of calling toObject() passing the
// |this| value as the argument.
var O = Object(this);
// 2. Let lenValue be the result of calling the Get() internal
// method of O with the argument "length".
// 3. Let len be toUint32(lenValue).
var len = O.length >>> 0;
// 4. If isCallable(callback) is false, throw a TypeError exception.
// See: http://es5.github.com/#x9.11
if (typeof callback !== 'function') {
throw new TypeError(callback + ' is not a function');
}
// 5. If thisArg was supplied, let T be thisArg; else let
// T be undefined.
if (arguments.length > 1) {
T = arguments[1];
}
// 6. Let k be 0.
k = 0;
// 7. Repeat while k < len.
while (k < len) {
var kValue;
// a. Let Pk be ToString(k).
// This is implicit for LHS operands of the in operator.
// b. Let kPresent be the result of calling the HasProperty
// internal method of O with argument Pk.
// This step can be combined with c.
// c. If kPresent is true, then
if (k in O) {
// i. Let kValue be the result of calling the Get internal
// method of O with argument Pk.
kValue = O[k];
// ii. Call the Call internal method of callback with T as
// the this value and argument list containing kValue, k, and O.
callback.call(T, kValue, k, O);
}
// d. Increase k by 1.
k++;
}
// 8. return undefined.
};
}
if (window.NodeList && !NodeList.prototype.forEach) {
NodeList.prototype.forEach = Array.prototype.forEach;
}
if ((!window.Symbol || !Symbol.hasInstance) && !String.prototype.startsWith) {
// Polyfilling Symbol.hasInstance and String.prototype.startsWith from: https://polyfill.io/v3/polyfill.min.js?features=Symbol.hasInstance%2CString.prototype.startsWith
(function(undefined) {function ArrayCreate(r){if(1/r==-Infinity&&(r=0),r>Math.pow(2,32)-1)throw new RangeError("Invalid array length");var n=[];return n.length=r,n}function Call(t,l){var n=arguments.length>2?arguments[2]:[];if(!1===IsCallable(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(l,n)}function CreateDataProperty(e,r,t){var a={value:t,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,r,a),!0}catch(n){return!1}}function CreateDataPropertyOrThrow(t,r,o){var e=CreateDataProperty(t,r,o);if(!e)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(o)+"` to property `"+Object.prototype.toString.call(r)+"` on object `"+Object.prototype.toString.call(t)+"`");return e}function CreateMethodProperty(e,r,t){var a={value:t,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,r,a)}function Get(n,t){return n[t]}function HasProperty(n,r){return r in n}function IsArray(r){return"[object Array]"===Object.prototype.toString.call(r)}function IsCallable(n){return"function"==typeof n}function RequireObjectCoercible(e){if(null===e||e===undefined)throw TypeError();return e}function ToBoolean(o){return Boolean(o)}function ToInteger(n){var i=Number(n);return isNaN(i)?0:1/i===Infinity||1/i==-Infinity||i===Infinity||i===-Infinity?i:(i<0?-1:1)*Math.floor(Math.abs(i))}function ToLength(n){var t=ToInteger(n);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function ToObject(e){if(null===e||e===undefined)throw TypeError();return Object(e)}function GetV(t,e){return ToObject(t)[e]}function GetMethod(e,n){var r=GetV(e,n);if(null===r||r===undefined)return undefined;if(!1===IsCallable(r))throw new TypeError("Method not callable: "+n);return r}function Type(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in this&&e instanceof this.Symbol?"symbol":"object"}}function GetPrototypeFromConstructor(t,o){var r=Get(t,"prototype");return"object"!==Type(r)&&(r=o),r}function OrdinaryCreateFromConstructor(r,e){var t=arguments[2]||{},o=GetPrototypeFromConstructor(r,e),a=Object.create(o);for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&Object.defineProperty(a,n,{configurable:!0,enumerable:!1,writable:!0,value:t[n]});return a}function IsConstructor(t){return"object"===Type(t)&&("function"==typeof t&&!!t.prototype)}function Construct(r){var t=arguments.length>2?arguments[2]:r,o=arguments.length>1?arguments[1]:[];if(!IsConstructor(r))throw new TypeError("F must be a constructor.");if(!IsConstructor(t))throw new TypeError("newTarget must be a constructor.");if(t===r)return new(Function.prototype.bind.apply(r,[null].concat(o)));var n=OrdinaryCreateFromConstructor(t,Object.prototype);return Call(r,n,o)}function ArraySpeciesCreate(r,e){if(1/e==-Infinity&&(e=0),!1===IsArray(r))return ArrayCreate(e);var t=Get(r,"constructor");if("object"===Type(t)&&null===(t="Symbol"in this&&"species"in this.Symbol?Get(t,this.Symbol.species):undefined)&&(t=undefined),t===undefined)return ArrayCreate(e);if(!IsConstructor(t))throw new TypeError("C must be a constructor");return Construct(t,[e])}function IsRegExp(e){if("object"!==Type(e))return!1;var t="Symbol"in this&&"match"in this.Symbol?Get(e,this.Symbol.match):undefined;if(t!==undefined)return ToBoolean(t);try{var n=e.lastIndex;return e.lastIndex=0,RegExp.prototype.exec.call(e),!0}catch(r){}finally{e.lastIndex=n}return!1}function OrdinaryToPrimitive(r,t){if("string"===t)var e=["toString","valueOf"];else e=["valueOf","toString"];for(var i=0;i<e.length;++i){var n=e[i],a=Get(r,n);if(IsCallable(a)){var o=Call(a,r);if("object"!==Type(o))return o}}throw new TypeError("Cannot convert to primitive.")}function ToPrimitive(e){var t=arguments.length>1?arguments[1]:undefined;if("object"===Type(e)){if(arguments.length<2)var i="default";else t===String?i="string":t===Number&&(i="number");var r="function"==typeof this.Symbol&&"symbol"==typeof this.Symbol.toPrimitive?GetMethod(e,this.Symbol.toPrimitive):undefined;if(r!==undefined){var n=Call(r,e,[i]);if("object"!==Type(n))return n;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),OrdinaryToPrimitive(e,i)}return e}function ToString(t){switch(Type(t)){case"symbol":throw new TypeError("Cannot convert a Symbol value to a string");case"object":return ToString(ToPrimitive(t,"string"));default:return String(t)}}CreateMethodProperty(String.prototype,"startsWith",function t(e){"use strict";var r=arguments.length>1?arguments[1]:undefined,n=RequireObjectCoercible(this),i=ToString(n);if(IsRegExp(e))throw new TypeError("First argument to String.prototype.startsWith must not be a regular expression");var o=ToString(e),s=ToInteger(r),a=i.length,g=Math.min(Math.max(s,0),a);return!(o.length+g>a)&&0===i.substr(g).indexOf(e)});!function(t,r,n){"use strict";var e,o=0,u=""+Math.random(),l="__symbol:",c=l.length,a="__symbol@@"+u,i="defineProperty",f="defineProperties",s="getOwnPropertyNames",v="getOwnPropertyDescriptor",b="propertyIsEnumerable",h=t.prototype,y=h.hasOwnProperty,m=h[b],p=h.toString,g=Array.prototype.concat,w=t.getOwnPropertyNames?t.getOwnPropertyNames(window):[],d=t[s],S=function L(t){if("[object Window]"===p.call(t))try{return d(t)}catch(r){return g.call([],w)}return d(t)},P=t[v],j=t.create,O=t.keys,E=t.freeze||t,N=t[i],_=t[f],k=P(t,s),T=function(t,r,n){if(!y.call(t,a))try{N(t,a,{enumerable:!1,configurable:!1,writable:!1,value:{}})}catch(e){t[a]={}}t[a]["@@"+r]=n},z=function(t,r){var n=j(t);return S(r).forEach(function(t){M.call(r,t)&&G(n,t,r[t])}),n},A=function(t){var r=j(t);return r.enumerable=!1,r},D=function Q(){},F=function(t){return t!=a&&!y.call(x,t)},I=function(t){return t!=a&&y.call(x,t)},M=function R(t){var r=""+t;return I(r)?y.call(this,r)&&this[a]["@@"+r]:m.call(this,t)},W=function(r){var n={enumerable:!1,configurable:!0,get:D,set:function(t){e(this,r,{enumerable:!1,configurable:!0,writable:!0,value:t}),T(this,r,!0)}};try{N(h,r,n)}catch(o){h[r]=n.value}return E(x[r]=N(t(r),"constructor",B))},q=function U(){var t=arguments[0];if(this instanceof U)throw new TypeError("Symbol is not a constructor");return W(l.concat(t||"",u,++o))},x=j(null),B={value:q},C=function(t){return x[t]},G=function V(t,r,n){var o=""+r;return I(o)?(e(t,o,n.enumerable?A(n):n),T(t,o,!!n.enumerable)):N(t,r,n),t},H=function(t){return function(r){return y.call(t,a)&&y.call(t[a],"@@"+r)}},J=function X(t){return S(t).filter(t===h?H(t):I).map(C)};k.value=G,N(t,i,k),k.value=J,N(t,"getOwnPropertySymbols",k),k.value=function Y(t){return S(t).filter(F)},N(t,s,k),k.value=function Z(t,r){var n=J(r);return n.length?O(r).concat(n).forEach(function(n){M.call(r,n)&&G(t,n,r[n])}):_(t,r),t},N(t,f,k),k.value=M,N(h,b,k),k.value=q,N(n,"Symbol",k),k.value=function(t){var r=l.concat(l,t,u);return r in h?x[r]:W(r)},N(q,"for",k),k.value=function(t){if(F(t))throw new TypeError(t+" is not a symbol");return y.call(x,t)?t.slice(2*c,-u.length):void 0},N(q,"keyFor",k),k.value=function $(t,r){var n=P(t,r);return n&&I(r)&&(n.enumerable=M.call(t,r)),n},N(t,v,k),k.value=function(t,r){return 1===arguments.length||void 0===r?j(t):z(t,r)},N(t,"create",k);var K=null===function(){return this}.call(null);k.value=K?function(){var t=p.call(this);return"[object String]"===t&&I(this)?"[object Symbol]":t}:function(){if(this===window)return"[object Null]";var t=p.call(this);return"[object String]"===t&&I(this)?"[object Symbol]":t},N(h,"toString",k),e=function(t,r,n){var e=P(h,r);delete h[r],N(t,r,n),t!==h&&N(h,r,e)}}(Object,0,this);Object.defineProperty(Symbol,"hasInstance",{value:Symbol("hasInstance")});}).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
}
(function(undefined) {function Call(t,l){var n=arguments.length>2?arguments[2]:[];if(!1===IsCallable(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(l,n)}function CreateMethodProperty(e,r,t){var a={value:t,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,r,a)}function Get(n,t){return n[t]}function HasProperty(n,r){return r in n}function IsArray(r){return"[object Array]"===Object.prototype.toString.call(r)}function IsCallable(n){return"function"==typeof n}function ToInteger(n){var i=Number(n);return isNaN(i)?0:1/i===Infinity||1/i==-Infinity||i===Infinity||i===-Infinity?i:(i<0?-1:1)*Math.floor(Math.abs(i))}function ToLength(n){var t=ToInteger(n);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function ToObject(e){if(null===e||e===undefined)throw TypeError();return Object(e)}function GetV(t,e){return ToObject(t)[e]}function GetMethod(e,n){var r=GetV(e,n);if(null===r||r===undefined)return undefined;if(!1===IsCallable(r))throw new TypeError("Method not callable: "+n);return r}function Type(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in this&&e instanceof this.Symbol?"symbol":"object"}}function OrdinaryToPrimitive(r,t){if("string"===t)var e=["toString","valueOf"];else e=["valueOf","toString"];for(var i=0;i<e.length;++i){var n=e[i],a=Get(r,n);if(IsCallable(a)){var o=Call(a,r);if("object"!==Type(o))return o}}throw new TypeError("Cannot convert to primitive.")}function ToPrimitive(e){var t=arguments.length>1?arguments[1]:undefined;if("object"===Type(e)){if(arguments.length<2)var i="default";else t===String?i="string":t===Number&&(i="number");var r="function"==typeof this.Symbol&&"symbol"==typeof this.Symbol.toPrimitive?GetMethod(e,this.Symbol.toPrimitive):undefined;if(r!==undefined){var n=Call(r,e,[i]);if("object"!==Type(n))return n;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),OrdinaryToPrimitive(e,i)}return e}function ToString(t){switch(Type(t)){case"symbol":throw new TypeError("Cannot convert a Symbol value to a string");case"object":return ToString(ToPrimitive(t,"string"));default:return String(t)}}!function(e){"use strict";function t(t){return!!t&&("Symbol"in e&&"iterator"in e.Symbol&&"function"==typeof t[Symbol.iterator]||!!Array.isArray(t))}function n(e){return"from"in Array?Array.from(e):Array.prototype.slice.call(e)}!function(){function r(e){var t="",n=!0;return e.forEach(function(e){var r=encodeURIComponent(e.name),a=encodeURIComponent(e.value);n||(t+="&"),t+=r+"="+a,n=!1}),t.replace(/%20/g,"+")}function a(e,t){var n=e.split("&");t&&-1===n[0].indexOf("=")&&(n[0]="="+n[0]);var r=[];n.forEach(function(e){if(0!==e.length){var t=e.indexOf("=");if(-1!==t)var n=e.substring(0,t),a=e.substring(t+1);else n=e,a="";n=n.replace(/\+/g," "),a=a.replace(/\+/g," "),r.push({name:n,value:a})}});var a=[];return r.forEach(function(e){a.push({name:decodeURIComponent(e.name),value:decodeURIComponent(e.value)})}),a}function i(e){if(c)return new s(e);var t=document.createElement("a");return t.href=e,t}function o(e){var i=this;this._list=[],e===undefined||null===e||(e instanceof o?this._list=a(String(e)):"object"==typeof e&&t(e)?n(e).forEach(function(e){if(!t(e))throw TypeError();var r=n(e);if(2!==r.length)throw TypeError();i._list.push({name:String(r[0]),value:String(r[1])})}):"object"==typeof e&&e?Object.keys(e).forEach(function(t){i._list.push({name:String(t),value:String(e[t])})}):(e=String(e),"?"===e.substring(0,1)&&(e=e.substring(1)),this._list=a(e))),this._url_object=null,this._setList=function(e){u||(i._list=e)};var u=!1;this._update_steps=function(){u||(u=!0,i._url_object&&("about:"===i._url_object.protocol&&-1!==i._url_object.pathname.indexOf("?")&&(i._url_object.pathname=i._url_object.pathname.split("?")[0]),i._url_object.search=r(i._list),u=!1))}}function u(e,t){var n=0;this.next=function(){if(n>=e.length)return{done:!0,value:undefined};var r=e[n++];return{done:!1,value:"key"===t?r.name:"value"===t?r.value:[r.name,r.value]}}}function l(t,n){function r(){var e=l.href.replace(/#$|\?$|\?(?=#)/g,"");l.href!==e&&(l.href=e)}function u(){m._setList(l.search?a(l.search.substring(1)):[]),m._update_steps()}if(!(this instanceof e.URL))throw new TypeError("Failed to construct 'URL': Please use the 'new' operator.");n&&(t=function(){if(c)return new s(t,n).href;var e;try{var r;if("[object OperaMini]"===Object.prototype.toString.call(window.operamini)?(e=document.createElement("iframe"),e.style.display="none",document.documentElement.appendChild(e),r=e.contentWindow.document):document.implementation&&document.implementation.createHTMLDocument?r=document.implementation.createHTMLDocument(""):document.implementation&&document.implementation.createDocument?(r=document.implementation.createDocument("http://www.w3.org/1999/xhtml","html",null),r.documentElement.appendChild(r.createElement("head")),r.documentElement.appendChild(r.createElement("body"))):window.ActiveXObject&&(r=new window.ActiveXObject("htmlfile"),r.write("<head></head><body></body>"),r.close()),!r)throw Error("base not supported");var a=r.createElement("base");a.href=n,r.getElementsByTagName("head")[0].appendChild(a);var i=r.createElement("a");return i.href=t,i.href}finally{e&&e.parentNode.removeChild(e)}}());var l=i(t||""),f=function(){if(!("defineProperties"in Object))return!1;try{var e={};return Object.defineProperties(e,{prop:{get:function(){return!0}}}),e.prop}catch(t){return!1}}(),h=f?this:document.createElement("a"),m=new o(l.search?l.search.substring(1):null);return m._url_object=h,Object.defineProperties(h,{href:{get:function(){return l.href},set:function(e){l.href=e,r(),u()},enumerable:!0,configurable:!0},origin:{get:function(){return"origin"in l?l.origin:this.protocol+"//"+this.host},enumerable:!0,configurable:!0},protocol:{get:function(){return l.protocol},set:function(e){l.protocol=e},enumerable:!0,configurable:!0},username:{get:function(){return l.username},set:function(e){l.username=e},enumerable:!0,configurable:!0},password:{get:function(){return l.password},set:function(e){l.password=e},enumerable:!0,configurable:!0},host:{get:function(){var e={"http:":/:80$/,"https:":/:443$/,"ftp:":/:21$/}[l.protocol];return e?l.host.replace(e,""):l.host},set:function(e){l.host=e},enumerable:!0,configurable:!0},hostname:{get:function(){return l.hostname},set:function(e){l.hostname=e},enumerable:!0,configurable:!0},port:{get:function(){return l.port},set:function(e){l.port=e},enumerable:!0,configurable:!0},pathname:{get:function(){return"/"!==l.pathname.charAt(0)?"/"+l.pathname:l.pathname},set:function(e){l.pathname=e},enumerable:!0,configurable:!0},search:{get:function(){return l.search},set:function(e){l.search!==e&&(l.search=e,r(),u())},enumerable:!0,configurable:!0},searchParams:{get:function(){return m},enumerable:!0,configurable:!0},hash:{get:function(){return l.hash},set:function(e){l.hash=e,r()},enumerable:!0,configurable:!0},toString:{value:function(){return l.toString()},enumerable:!1,configurable:!0},valueOf:{value:function(){return l.valueOf()},enumerable:!1,configurable:!0}}),h}var c,s=e.URL;try{if(s){if("searchParams"in(c=new e.URL("http://example.com"))){var f=new l("http://example.com");if(f.search="a=1&b=2","http://example.com/?a=1&b=2"===f.href&&(f.search="","http://example.com/"===f.href))return}"href"in c||(c=undefined),c=undefined}}catch(m){}if(Object.defineProperties(o.prototype,{append:{value:function(e,t){this._list.push({name:e,value:t}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},"delete":{value:function(e){for(var t=0;t<this._list.length;)this._list[t].name===e?this._list.splice(t,1):++t;this._update_steps()},writable:!0,enumerable:!0,configurable:!0},get:{value:function(e){for(var t=0;t<this._list.length;++t)if(this._list[t].name===e)return this._list[t].value;return null},writable:!0,enumerable:!0,configurable:!0},getAll:{value:function(e){for(var t=[],n=0;n<this._list.length;++n)this._list[n].name===e&&t.push(this._list[n].value);return t},writable:!0,enumerable:!0,configurable:!0},has:{value:function(e){for(var t=0;t<this._list.length;++t)if(this._list[t].name===e)return!0;return!1},writable:!0,enumerable:!0,configurable:!0},set:{value:function(e,t){for(var n=!1,r=0;r<this._list.length;)this._list[r].name===e?n?this._list.splice(r,1):(this._list[r].value=t,n=!0,++r):++r;n||this._list.push({name:e,value:t}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},entries:{value:function(){return new u(this._list,"key+value")},writable:!0,enumerable:!0,configurable:!0},keys:{value:function(){return new u(this._list,"key")},writable:!0,enumerable:!0,configurable:!0},values:{value:function(){return new u(this._list,"value")},writable:!0,enumerable:!0,configurable:!0},forEach:{value:function(e){var t=arguments.length>1?arguments[1]:undefined;this._list.forEach(function(n){e.call(t,n.value,n.name)})},writable:!0,enumerable:!0,configurable:!0},toString:{value:function(){return r(this._list)},writable:!0,enumerable:!1,configurable:!0}}),"Symbol"in e&&"iterator"in e.Symbol&&(Object.defineProperty(o.prototype,e.Symbol.iterator,{value:o.prototype.entries,writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(u.prototype,e.Symbol.iterator,{value:function(){return this},writable:!0,enumerable:!0,configurable:!0})),s)for(var h in s)s.hasOwnProperty(h)&&"function"==typeof s[h]&&(l[h]=s[h]);e.URL=l,e.URLSearchParams=o}(),function(){if("1"!==new e.URLSearchParams([["a",1]]).get("a")||"1"!==new e.URLSearchParams({a:1}).get("a")){var r=e.URLSearchParams;e.URLSearchParams=function(e){if(e&&"object"==typeof e&&t(e)){var a=new r;return n(e).forEach(function(e){if(!t(e))throw TypeError();var r=n(e);if(2!==r.length)throw TypeError();a.append(r[0],r[1])}),a}return e&&"object"==typeof e?(a=new r,Object.keys(e).forEach(function(t){a.set(t,e[t])}),a):new r(e)}}}()}(self);}).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
document.createElement("picture");
</script><meta name="Title" property="Title" content="KMHD Home Page"/><script type="application/javascript" id="polyfill-script">if(!Array.prototype.includes||!(window.Object && window.Object.assign)||!window.Promise||!window.Symbol||!window.fetch){document.write('<script type="application/javascript" src="/pf/dist/engine/polyfill.js?d=188&mxId=00000000" defer=""><\/script>')}</script><script id="fusion-engine-react-script" type="application/javascript" src="/pf/dist/engine/react.js?d=188&mxId=00000000" defer=""></script><script id="fusion-engine-combinations-script" type="application/javascript" src="/pf/dist/components/combinations/default.js?d=188&mxId=00000000" defer=""></script><link id="fusion-template-styles" rel="stylesheet" type="text/css" href="/pf/dist/components/combinations/default.css?d=188&mxId=00000000"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/pf/resources/dist/kmhd/css/style.css?d=188"/><link rel="icon" type="image/x-icon" href="https://www.kmhd.org/favicon.ico"/><link rel="canonical" href="https://www.kmhd.org/homepage"/><script type="application/ld+json">{"@context":"http://schema.org","@type":"WebPage","publisher":{"@type":"Organization","name":"KMHD","logo":{"@type":"ImageObject","url":"https://www.kmhd.org/pf/resources/images/kmhd/kmhd-jsonld.png","width":260,"height":60}}}</script><script type="text/javascript" async="" src="https://consent.trustarc.com/v2/notice/qaomny"></script><link rel="preconnect" href="https://dev.visualwebsiteoptimizer.com"/><script type="text/javascript" id="vwoCode">window._vwo_code || (function() {
var account_id=1084215,
version=2.1,
settings_tolerance=2000,
hide_element='body',
hide_element_style = 'opacity:0 !important;filter:alpha(opacity=0) !important;background:none !important;transition:none !important;',
/* DO NOT EDIT BELOW THIS LINE */
f=false,w=window,d=document,v=d.querySelector('#vwoCode'),cK='_vwo_'+account_id+'_settings',cc={};try{var c=JSON.parse(localStorage.getItem('_vwo_'+account_id+'_config'));cc=c&&typeof c==='object'?c:{}}catch(e){}var stT=cc.stT==='session'?w.sessionStorage:w.localStorage;code={nonce:v&&v.nonce,library_tolerance:function(){return typeof library_tolerance!=='undefined'?library_tolerance:undefined},settings_tolerance:function(){return cc.sT||settings_tolerance},hide_element_style:function(){return'{'+(cc.hES||hide_element_style)+'}'},hide_element:function(){if(performance.getEntriesByName('first-contentful-paint')[0]){return''}return typeof cc.hE==='string'?cc.hE:hide_element},getVersion:function(){return version},finish:function(e){if(!f){f=true;var t=d.getElementById('_vis_opt_path_hides');if(t)t.parentNode.removeChild(t);if(e)(new Image).src='https://dev.visualwebsiteoptimizer.com/ee.gif?a='+account_id+e}},finished:function(){return f},addScript:function(e){var t=d.createElement('script');t.type='text/javascript';if(e.src){t.src=e.src}else{t.text=e.text}v&&t.setAttribute('nonce',v.nonce);d.getElementsByTagName('head')[0].appendChild(t)},load:function(e,t){var n=this.getSettings(),i=d.createElement('script'),r=this;t=t||{};if(n){i.textContent=n;d.getElementsByTagName('head')[0].appendChild(i);if(!w.VWO||VWO.caE){stT.removeItem(cK);r.load(e)}}else{var o=new XMLHttpRequest;o.open('GET',e,true);o.withCredentials=!t.dSC;o.responseType=t.responseType||'text';o.onload=function(){if(t.onloadCb){return t.onloadCb(o,e)}if(o.status===200||o.status===304){_vwo_code.addScript({text:o.responseText})}else{_vwo_code.finish('&e=loading_failure:'+e)}};o.onerror=function(){if(t.onerrorCb){return t.onerrorCb(e)}_vwo_code.finish('&e=loading_failure:'+e)};o.send()}},getSettings:function(){try{var e=stT.getItem(cK);if(!e){return}e=JSON.parse(e);if(Date.now()>e.e){stT.removeItem(cK);return}return e.s}catch(e){return}},init:function(){if(d.URL.indexOf('__vwo_disable__')>-1)return;var e=this.settings_tolerance();w._vwo_settings_timer=setTimeout(function(){_vwo_code.finish();stT.removeItem(cK)},e);var t;if(this.hide_element()!=='body'){t=d.createElement('style');var n=this.hide_element(),i=n?n+this.hide_element_style():'',r=d.getElementsByTagName('head')[0];t.setAttribute('id','_vis_opt_path_hides');v&&t.setAttribute('nonce',v.nonce);t.setAttribute('type','text/css');if(t.styleSheet)t.styleSheet.cssText=i;else t.appendChild(d.createTextNode(i));r.appendChild(t)}else{t=d.getElementsByTagName('head')[0];var i=d.createElement('div');i.style.cssText='z-index: 2147483647 !important;position: fixed !important;left: 0 !important;top: 0 !important;width: 100% !important;height: 100% !important;background: white !important;display: block !important;';i.setAttribute('id','_vis_opt_path_hides');i.classList.add('_vis_hide_layer');t.parentNode.insertBefore(i,t.nextSibling)}var o=window._vis_opt_url||d.URL,s='https://dev.visualwebsiteoptimizer.com/j.php?a='+account_id+'&u='+encodeURIComponent(o)+'&vn='+version;if(w.location.search.indexOf('_vwo_xhr')!==-1){this.addScript({src:s})}else{this.load(s+'&x=true')}}};w._vwo_code=code;code.init();})();</script>
<script>(window.BOOMR_mq=window.BOOMR_mq||[]).push(["addVar",{"rua.upush":"false","rua.cpush":"true","rua.upre":"true","rua.cpre":"true","rua.uprl":"false","rua.cprl":"false","rua.cprf":"false","rua.trans":"SJ-131d42f0-ebee-4c3f-bea4-d247dd171f2d","rua.cook":"false","rua.ims":"false","rua.ufprl":"false","rua.cfprl":"true","rua.isuxp":"false","rua.texp":"norulematch","rua.ceh":"false","rua.ueh":"false","rua.ieh.st":"0"}]);</script>
<script>!function(e){var n="https://s.go-mpulse.net/boomerang/";if("False"=="True")e.BOOMR_config=e.BOOMR_config||{},e.BOOMR_config.PageParams=e.BOOMR_config.PageParams||{},e.BOOMR_config.PageParams.pci=!0,n="https://s2.go-mpulse.net/boomerang/";if(window.BOOMR_API_key="FUY9M-SCSG2-PU27J-BPRRW-7LDCA",function(){function e(){if(!o){var e=document.createElement("script");e.id="boomr-scr-as",e.src=window.BOOMR.url,e.async=!0,i.parentNode.appendChild(e),o=!0}}function t(e){o=!0;var n,t,a,r,d=document,O=window;if(window.BOOMR.snippetMethod=e?"if":"i",t=function(e,n){var t=d.createElement("script");t.id=n||"boomr-if-as",t.src=window.BOOMR.url,BOOMR_lstart=(new Date).getTime(),e=e||d.body,e.appendChild(t)},!window.addEventListener&&window.attachEvent&&navigator.userAgent.match(/MSIE [67]\./))return window.BOOMR.snippetMethod="s",void t(i.parentNode,"boomr-async");a=document.createElement("IFRAME"),a.src="about:blank",a.title="",a.role="presentation",a.loading="eager",r=(a.frameElement||a).style,r.width=0,r.height=0,r.border=0,r.display="none",i.parentNode.appendChild(a);try{O=a.contentWindow,d=O.document.open()}catch(_){n=document.domain,a.src="javascript:var d=document.open();d.domain='"+n+"';void(0);",O=a.contentWindow,d=O.document.open()}if(n)d._boomrl=function(){this.domain=n,t()},d.write("<bo"+"dy onload='document._boomrl();'>");else if(O._boomrl=function(){t()},O.addEventListener)O.addEventListener("load",O._boomrl,!1);else if(O.attachEvent)O.attachEvent("onload",O._boomrl);d.close()}function a(e){window.BOOMR_onload=e&&e.timeStamp||(new Date).getTime()}if(!window.BOOMR||!window.BOOMR.version&&!window.BOOMR.snippetExecuted){window.BOOMR=window.BOOMR||{},window.BOOMR.snippetStart=(new Date).getTime(),window.BOOMR.snippetExecuted=!0,window.BOOMR.snippetVersion=12,window.BOOMR.url=n+"FUY9M-SCSG2-PU27J-BPRRW-7LDCA";var i=document.currentScript||document.getElementsByTagName("script")[0],o=!1,r=document.createElement("link");if(r.relList&&"function"==typeof r.relList.supports&&r.relList.supports("preload")&&"as"in r)window.BOOMR.snippetMethod="p",r.href=window.BOOMR.url,r.rel="preload",r.as="script",r.addEventListener("load",e),r.addEventListener("error",function(){t(!0)}),setTimeout(function(){if(!o)t(!0)},3e3),BOOMR_lstart=(new Date).getTime(),i.parentNode.appendChild(r);else t(!1);if(window.addEventListener)window.addEventListener("load",a,!1);else if(window.attachEvent)window.attachEvent("onload",a)}}(),"".length>0)if(e&&"performance"in e&&e.performance&&"function"==typeof e.performance.setResourceTimingBufferSize)e.performance.setResourceTimingBufferSize();!function(){if(BOOMR=e.BOOMR||{},BOOMR.plugins=BOOMR.plugins||{},!BOOMR.plugins.AK){var n="true"=="true"?1:0,t="",a="eyadyaaaaaaaajqacqcmyaaacnui6xbo-f-a43bc82ea-clienttons-s.akamaihd.net",i="false"=="true"?2:1,o={"ak.v":"39","ak.cp":"921301","ak.ai":parseInt("590346",10),"ak.ol":"0","ak.cr":0,"ak.ipv":6,"ak.proto":"http/1.0","ak.rid":"a733012d","ak.r":42676,"ak.a2":n,"ak.m":"","ak.n":"ff","ak.bpcip":"2600:3c00::","ak.cport":46090,"ak.gh":"184.28.40.13","ak.quicv":"","ak.tlsv":"tls1.3","ak.0rtt":"","ak.0rtt.ed":"","ak.csrc":"-","ak.acc":"bbr","ak.t":"1754225710","ak.ak":"hOBiQwZUYzCg5VSAfCLimQ==Xh0rwFkfkLBoJJMP7BhRnrrw8ecPMV+w99h/AxSp8rTCygig6Q8tbADNBBjigqJP4plyGcZE9llfMRtyLZKEOGkTBUdKur8dZlGExhsvAZXfRQyf0mWIspQ+sz9PpuoVUrAxDNZgakVkpEfYqwK6ziavNIvd2avRlexYettqvu9N84ioGLvmYz66MW4ssHfiVMjCwPpGWokukTZ4Ph5SIWex/whkoqloroC49FJ8/nw+B5ZGujWqnKZkai4CJabTgVO07tHrFZLGfJnYaKxtjEEKUm8BfWcXW6INq6OgUsZwMfFXwYqjrZqCsbeBOzSHWQdQwO0giZy++vcmFi8ftlWboM5YkFp+2xYELX/MyXkxVmxGLwducFUfVFXiDDJA74sdlN4w3Q9Ta1/jhfBiCjyLPkceWyCGCCNOdlMiVXs=","ak.pv":"56","ak.dpoabenc":"","ak.tf":i};if(""!==t)o["ak.ruds"]=t;var r={i:!1,av:function(n){var t="http.initiator";if(n&&(!n[t]||"spa_hard"===n[t]))o["ak.feo"]=void 0!==e.aFeoApplied?1:0,BOOMR.addVar(o)},rv:function(){var e=["ak.bpcip","ak.cport","ak.cr","ak.csrc","ak.gh","ak.ipv","ak.m","ak.n","ak.ol","ak.proto","ak.quicv","ak.tlsv","ak.0rtt","ak.0rtt.ed","ak.r","ak.acc","ak.t","ak.tf"];BOOMR.removeVar(e)}};BOOMR.plugins.AK={akVars:o,akDNSPreFetchDomain:a,init:function(){if(!r.i){var e=BOOMR.subscribe;e("before_beacon",r.av,null,null),e("onbeacon",r.rv,null,null),r.i=!0}return this},is_complete:function(){return!0}}}}()}(window);</script></head><body class="background_site"><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WJZVPH" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><div id="fusion-app"><div class="homepage"><nav class="width_full"><section aria-labelledby="inline-cta-header" class="inline-cta_container p-sm width_full is_full_bleed background_mblue color_white ctaType-buttons flex flex_column align_center f_primary" data-testid="inlineCtaContainer"><div class="flex row width_full"><div class="inline-cta_content flex flex-column col f_s_16 align_center desktop-12 text_align_center"><h1 id="inline-cta-header" class="m-none f_bold">Federal funding for public media has been eliminated. </h1><p class="m-none line_h_20 m_top-xxs width_percent-80--tablet">Take action to sustain a strong future for Jazz Without Boundaries on KMHD. Make your monthly Rhythm Section contribution now.</p><div class="button-links m_top-xs f_bold flex flex-row gap_column-xxs flex-0" data-testid="buttonLinksContainer"><ul class="button-links p-none width_full p_horizontal-xs flex flex-column-mobile gap_row-12 gap_column-xxs justify_center-tablet align_center-tablet flex-row"><li class="width_full_mobile "><a href="https://www.kmhd.org/give/federal-funding/" class="button-link theme-default themed block border border_2 p_vertical-xxs p_horizontal-xs text_align_center align_center f_bold f_s_1 background_myellow border_color_dyellow color_dgray border_radius rounded rectangle" rel="noopener noreferrer" aria-label="Contribute now (opens in a new window)"><span>Contribute now</span></a></li></ul></div></div></div></section><div class="global-header | color_white background_black flex width_full"><div class="header-logo height_full"><a href="/" class="header-logo align_center flex height_full background_primary"><img class="p_horizontal-xxs" width="100%" src="/pf/resources/images/kmhd/kmhd-logo.svg?d=188" alt="KMHD"/></a></div><p class="hidden--mobile text align_center color_mgray flex f_primary">Since 1984<br/>Celebrating 40 Years of Jazz Without Boundaries</p><p class="hidden--tablet text align_center color_mgray flex f_primary">Since 1984<br/>Celebrating 40 Years</p><div class="flex justify_end width_full"><div class="contribute align_center flex pointer"><a href="https://www.kmhd.org/give/" class="align_center color_white background_red flex height_full f_primary f_bold f_s_xs">contribute<span class="hidden--mobile"> now</span></a></div><button class="burger background_black pointer width_50 closed"><img alt="Menu" class="height_full" width="49px" src="/pf/resources/images/search-burger.svg?d=188"/></button></div><div class="h_nav_container"></div></div></nav><main class="opb-grid row"><div class="top | background_white col desktop-12 tablet-12 mobile-12"><div class="itn_box | row f_s_xs f_primary height_35 background_lgray m_top-xxs m_bottom-xxs--mobile"><div class="itn_title_box | row text_no-linebreak height_35"><div class="itn_title | height_35 line_h_35 color_white f_black p_left">Jazz Without Boundaries</div><div class="itn_arrow_outer height_35"><div class="itn_arrow | arrow_right"></div></div></div><div class="itn_links | row overflow_scroll"><div class="itn_link | inline_block line_h_35 text_no-linebreak p_left-xs"><a class="color_dgray f_bold" href="https://www.kmhd.org/give/">Join Rhythm Section</a></div><div class="itn_link | inline_block line_h_35 text_no-linebreak p_left-xs"><a class="color_dgray f_bold" href="https://www.kmhd.org/article/2025/07/01/federal-funding/">Public Media Funding</a></div><div class="itn_link | inline_block line_h_35 text_no-linebreak p_left-xs"><a class="color_dgray f_bold" href="https://www.kmhd.org/live-events/">Live Events</a></div><div class="itn_link | inline_block line_h_35 text_no-linebreak p_left-xs"><a class="color_dgray f_bold" href="https://www.kmhd.org/playlist/">Playlist</a></div><div class="itn_link | inline_block line_h_35 text_no-linebreak p_left-xs"><a class="color_dgray f_bold" href="https://ondemand.kmhd.org/">Listen On Demand</a></div><div class="itn_link | inline_block line_h_35 text_no-linebreak p_left-xs"><a class="color_dgray f_bold" href="https://www.kmhd.org/newsletter/">Jazz Notes Newsletter</a></div><div class="itn_link | inline_block line_h_35 text_no-linebreak p_left-xs"><a class="color_dgray f_bold" href="https://www.kmhd.org/article/2025/03/05/roy-ayers-of-everybody-loves-the-sunshine-fame-dies-at-84/">Roy Ayers</a></div><div class="itn_link | inline_block line_h_35 text_no-linebreak p_left-xs"><a class="color_dgray f_bold" href="https://www.kmhd.org/tag/records-we-love/">Records We Love</a></div></div><div class="gradient | inline_block height_35 width_75px absolute_right hidden--desktop"></div></div><div class="feature-with-rail row"><div class="col desktop-8 tablet-6 mobile-12"><div style="display:none" id="f0fs2cEwu6xB4To" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-6 mobile-12"><div class="ad-container f_primary border rail
hidden--mobile"><section><div class="float_left color_dgray">THANKS TO OUR SPONSOR:</div><div class="float_right"><a href="https://www.opb.org/sponsorship/">Become a Sponsor</a></div></section><div style="min-width:300px;min-height:250px" class="ad float_clear" id="ad-id-rail-tablet-desktop"></div></div><div class="events-widget f_primary row--half-padding row--half-padding-mobile m-none"><div aria-live="polite"><div><div class="events-widget__header | f_bold color_dgray m-bottom_xs block-heading">Jazz Calendar</div><ul class="events-widget | list--no-style m-none p-none"><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Thursday, July 31 All Day">Thursday, July 31 All Day</time><p class="events-widget__title | color_dgray m-none"><span>Pickathon Music Festival</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">Pendarvis Farm, 16581 SE Hagen Rd, Happy Valley, OR 97086, USA</p></li><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Sunday, Aug. 3 6 p.m.">Sunday, Aug. 3 6 p.m.</time><p class="events-widget__title | color_dgray m-none"><span>Vanport 1948 Brunch Ft. Tahirah Memory and DJ Jumbo</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">Alberta Street Pub, 1036 NE Alberta St, Portland, OR 97211, USA</p></li><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Sunday, Aug. 3 7 p.m.">Sunday, Aug. 3 7 p.m.</time><p class="events-widget__title | color_dgray m-none"><span>A Jazzy Brunch</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">Studio One Theaters, 3945 SE Powell Blvd, Portland, OR 97202, USA</p></li><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Sunday, Aug. 3 11 p.m.">Sunday, Aug. 3 11 p.m.</time><p class="events-widget__title | color_dgray m-none"><span>Hot Lovin' Jazz Babies</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">Alberta Street Pub, 1036 NE Alberta St, Portland, OR 97211, USA</p></li><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Monday, Aug. 4 12:30 a.m.">Monday, Aug. 4 12:30 a.m.</time><p class="events-widget__title | color_dgray m-none"><span>Ed Bennett Quintet</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">The 1905, 830 N Shaver St, Portland, OR 97227, USA</p></li></ul><a href="https://www.kmhd.org/live-events/"><div class="events-widget__button | button newsletter__button pointer width_full text_align_center border_0 border_radius f_primary f_bold">More events</div></a></div></div></div></div><hr class="chain-divider divider_thick width_full border_1 border_solid border_color_mgray border_bottom_0"/></div><div class="newsletter newsletter_background"><h3 class="newsletter__header f_primary f_bold">Jazz Notes newsletter</h3><div class="newsletter__description f_primary">Sign up to receive the latest jazz news and event listings in your inbox once a month.</div><form class="" aria-label="sign up for newsletter" novalidate="" id="singleNewsletterSignup"><div class="form-group"><div class="flex"><label id="emailLabel" class="form-label newsletter__label f_primary f_bold f_s_xxs uppercase">Email</label></div><div class="flex flex-row"><div class="form-field width_full"><input aria-labelledby="emailLabel" autoComplete="off" class="form-input background_white box_shadow_none width_full border_0 border_radius form-input--email
f_primary color_dgray" id="EmailAddress" name="EmailAddress" type="email" placeholder="" required="" value=""/></div><label id="hiddenLabel" class="hidden">Please leave this field blank</label><input aria-labelledby="hiddenLabel" type="checkbox" id="id_contact_me_by_fax_only" name="id_contact_me_by_fax_only" class="hidden" tabindex="-1" autoComplete="off" value="0"/><button class="newsletter__btn newsletter__btn__inline pointer width_full border_0 border_radius f_primary f_bold" type="submit">Sign Up</button></div></div></form></div></div><div class="full_width_1 | section | background_white row row--half-padding col desktop-12 tablet-12 mobile-12"><div class="htmlBox "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none">KMHD's Recommended Record Stores</h2><div id="iframe-854108453310"><iframe src="https://www.google.com/maps/d/embed?mid=1cNkf7iKTHQM18wMAjeixy5X46zufUSE&ehbc=2E312F&noprof=1" width="1215" height="480"></iframe></div></div><hr class="border_1 width_full border_solid border_color_mgray border_bottom_0
divider_thick"/><div class="two-col-feature-chain | row width_full"><div class="chain-subheading subheading f_primary width_full flex align_center justify_center
"><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><a href="https://ondemand.kmhd.org/s/listen/shows" class="subheading_link">Push Play</a></h2></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fc0mM5qCFfgs" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fpXXmq84Mz3e" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fTAKxEwSYL6Df" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div><div class="feature-with-rail row"><hr class="chain-divider divider_thick width_full border_1 border_solid border_color_mgray border_bottom_0"/><div class="col desktop-8 tablet-6 mobile-12"><div style="display:none" id="f0fUPkZsZDPa8jS" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-6 mobile-12"><div style="display:none" id="f0fWmGPX3nUG5Vh" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div><div style="display:none" id="f0f5ufcaHoFA5EC" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div><div class="two-col-feature-chain | row width_full row--half-padding"><hr class="chain-divider divider_thick width_full border_1 border_solid border_color_mgray border_bottom_0"/><div class="chain-subheading subheading f_primary width_full flex align_center justify_center
"><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><a href="https://www.kmhd.org/tag/kmhd-interviews/" class="subheading_link">KMHD Interviews</a></h2></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0f3Q9mWEA1X6lq" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fykJgETzXX5dq" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fjEwCGyJhi73m" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><hr class="chain-divider divider_thick width_full border_1 border_solid border_color_mgray border_bottom_0"/></div><div class="two-col-feature-chain | row width_full row--half-padding"><div class="chain-subheading subheading f_primary width_full flex align_center justify_center
"><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><a href="https://www.kmhd.org/tag/records-we-love/" class="subheading_link">Records We Love</a></h2></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fA50WH5qmj1cM" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fvgXaAPwPr6ka" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fuQ3OWAa2i42u" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><hr class="chain-divider divider_thick width_full border_1 border_solid border_color_mgray border_bottom_0"/></div><div class="two-col-feature-chain | row width_full"><div class="chain-subheading subheading f_primary width_full flex align_center justify_center
"><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none" data-visible="false"><a href="https://www.kmhd.org/tag/sounds-visual-radio/" class="subheading_link">Sounds Visual Radio</a></h2></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fLKnKjwYU82bv" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fQSJeJhKP66Oi" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12 mobile-col-spacing-top"><div style="display:none" id="f0fM1H9EFYvN8EW" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><hr class="chain-divider divider_thick width_full border_1 border_solid border_color_mgray border_bottom_0"/></div><div class="triptych"><div class="triptych"><div class="triptych-big row"><div class="htmlBox "><h2 class="block-heading flex_1 f_bold row--half-padding row--half-padding-mobile f_primary m-none"><a href=https://www.youtube.com/@kmhd8898>Subscribe to the KMHD YouTube channel</a> </h2><div id="iframe-1312155967164"><iframe width="1215" height="650" src="https://www.youtube.com/embed/iN8NywNE6yw?si=gfrLE9d4nRXlLu1q" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="triptych-small row"><div class="triptych-left col desktop-6 tablet-6 mobile-12"><div style="display:none" id="f0fFz5HzFSLT2lL" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="triptych-right col desktop-6 tablet-6 mobile-12"><div style="display:none" id="f0f97jRB0jYU2CF" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div></div></div></div><div class="full_width_2 | section | background_white row row--half-padding col desktop-12 tablet-12 mobile-12"><div class="two-col-feature-chain | row width_full row--half-padding"><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fFmXPC33Nz3MN" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0fBbaOYXbTw4t5" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-4 mobile-12"><div style="display:none" id="f0ffYWcC8C7d7Xl" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div></div><div class="feature-with-rail row"><div class="col desktop-8 tablet-6 mobile-12"><div style="display:none" id="f0f8vjmvQpBU5lh" data-fusion-collection="features" data-fusion-type="global/storyCard" data-fusion-message="Could not render component [features:global/storyCard]"></div></div><div class="col desktop-4 tablet-6 mobile-12"><div class="events-widget f_primary row--half-padding row--half-padding-mobile m-none"><div aria-live="polite"><div><div class="events-widget__header | f_bold color_dgray m-bottom_xs block-heading">LIVE EVENTS</div><ul class="events-widget | list--no-style m-none p-none"><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Thursday, July 31 All Day">Thursday, July 31 All Day</time><p class="events-widget__title | color_dgray m-none"><span>Pickathon Music Festival</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">Pendarvis Farm, 16581 SE Hagen Rd, Happy Valley, OR 97086, USA</p></li><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Sunday, Aug. 3 6 p.m.">Sunday, Aug. 3 6 p.m.</time><p class="events-widget__title | color_dgray m-none"><span>Vanport 1948 Brunch Ft. Tahirah Memory and DJ Jumbo</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">Alberta Street Pub, 1036 NE Alberta St, Portland, OR 97211, USA</p></li><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Sunday, Aug. 3 7 p.m.">Sunday, Aug. 3 7 p.m.</time><p class="events-widget__title | color_dgray m-none"><span>A Jazzy Brunch</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">Studio One Theaters, 3945 SE Powell Blvd, Portland, OR 97202, USA</p></li><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Sunday, Aug. 3 11 p.m.">Sunday, Aug. 3 11 p.m.</time><p class="events-widget__title | color_dgray m-none"><span>Hot Lovin' Jazz Babies</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">Alberta Street Pub, 1036 NE Alberta St, Portland, OR 97211, USA</p></li><li class="events-widget__item | "><time class="events-widget__time | f_bold text_align_center width_full" dateTime="Monday, Aug. 4 12:30 a.m.">Monday, Aug. 4 12:30 a.m.</time><p class="events-widget__title | color_dgray m-none"><span>Ed Bennett Quintet</span></p><p class="events-widget__descr | color_gray m-none m_top-xxs">The 1905, 830 N Shaver St, Portland, OR 97227, USA</p></li></ul><a href="/live-events"><div class="events-widget__button | button newsletter__button pointer width_full text_align_center border_0 border_radius f_primary f_bold">more events</div></a></div></div></div></div></div></div></main><footer class="width_full background_white has-sticky-footer"><div class="sustainer f_primary layout-horizontal"><div class="opb-grid p_horizontal-xs row align_center"><div class="row row_stretch"><div class="col mobile-12 tablet-9"><p class="sustainer_text f_medium f_s_large m-none p_vertical-sm p_right-xs--tablet">Jazz Without Boundaries is made possible by the power of member support. Be a part of it!</p></div><div class="col mobile-12 tablet-3 flex align_center"><div class="sustainer_button width_full p border_radius text_align_center m_bottom-sm--mobile"><a class="sustainer_button-link f_bold f_s_md" href="https://www.kmhd.org/give/">Join the Rhythm Section Now</a></div></div></div></div></div><div class="global_footer background_footer width_full"><div class="opb-grid p_horizontal-xs"><div class="social_links | flex undefined p_top-xs"></div><div class="footer1 | color_lightgray flex f_primary f_bold p_bottom-xs"><div class="col flex flex_column m_right-xs--mobile"><div class="m_vertical-micro"><a href="https://opb.force.com/KMHDHelp/s/" aria-label="null (opens in a new window)" rel="noopener noreferrer">Help</a></div><div class="m_vertical-micro"><a href="https://www.opb.org/pdf/KMHD%20Media%20Kit%202024_1725002900751.pdf" aria-label="null (opens in a new window)" rel="noopener noreferrer">Sponsorship</a></div></div><div class="col flex flex_column"><div class="m_vertical-micro"><a href="https://opb2.my.site.com/KMHDHelp/s/manage-my-membership" aria-label="null (opens in a new window)" rel="noopener noreferrer"><span class="f_fa_f_solid f_s_sm absolute" aria-label="Manage My Membership"></span>Manage My Membership</a></div><div class="m_vertical-micro"><a href="https://opb2.my.site.com/KMHDHelp/s/contactsupport" aria-label="null (opens in a new window)" rel="noopener noreferrer">Contact Us</a></div></div></div><div class="footer2 row align_end f_primary p_vertical-xs mobile-12"><div style="order:0" class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile accent-color f_s_xs"><a href="/privacy" aria-label="null" rel="">Privacy Policy</a></div><div class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile"><button class="f_s_12 color_mgray">Cookie Preferences</button></div><div style="order:1" class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile "><a href="https://publicfiles.fcc.gov/fm-profile/KMHD" aria-label="null (opens in a new window)" rel="noopener noreferrer">FCC Public Files</a></div><div style="order:2" class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile "><a href="/fcc-applications" aria-label="null" rel="">FCC Applications</a></div><div style="order:3" class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile "><a href="/terms" aria-label="null" rel="">Terms of Use</a></div><div style="order:4" class="col m_horizontal--desktop m_horizontal-xxs--tablet desktop-auto tablet-auto m_vertical-micro--mobile "><a href="/contest-rules" aria-label="null" rel="">Contest Rules</a></div></div></div></div></footer><div class="sticky-footer width_full absolute_bottom fixed z_9"><div class="stream-launcher | flex align_center f_primary "><div><button class="stream-launcher__play-button pointer"><svg aria-hidden="true" focusable="false" data-prefix="far" data-icon="circle-play" class="svg-inline--fa fa-circle-play " role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9l0-176c0-8.7 4.7-16.7 12.3-20.9z"></path></svg><span class="sr-only">Listen to the <!-- -->KMHD<!-- --> live stream (opens new window)</span></button></div><div class="stream-launcher__streaming-info | overflow_auto p-none"><p class="stream-launcher__streaming-now block uppercase color_lightgray p-none m-none">Streaming Now</p><p class="stream-launcher__now-playing | overflow_auto overflow_x_hidden--desktop text_no-linebreak color_white f_bold m-none">Tommy Flanagan / I'm Old Fashioned</p><p class="stream-launcher__album | overflow_auto overflow_x_hidden--desktop text_no-linebreak color_lightgray f_s_xs m-none">Jazz Poet</p></div><button class="stream-launcher__show-switch background_black color_white" aria-expanded="false"><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="plus" class="svg-inline--fa fa-plus " role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z"></path></svg><span class="sr-only">Show<!-- --> switch stream buttons</span></button><div class="stream-launcher__switch color_mgray f_s_xxs "><span class="uppercase p_right-xxs f_bold">Switch Stream:</span><button class="stream-launcher__switch-btn border_radius color_white pointer background_black border">OPB News<span class="sr-only">Listen to the <!-- -->OPB News<!-- --> live stream (opens new window)</span></button><button class="stream-launcher__switch-btn border_radius color_white pointer background_black border stream-launcher__switch-btn--active">KMHD<span class="sr-only">Listen to the <!-- -->KMHD<!-- --> live stream (opens new window)</span></button></div></div></div></div></div><script id="fusion-metadata" type="application/javascript">window.Fusion=window.Fusion||{};Fusion.arcSite="kmhd";Fusion.contextPath="/pf";Fusion.mxId="00000000";Fusion.deployment="188";Fusion.globalContent={};Fusion.globalContentConfig={};Fusion.lastModified=1754225613669;Fusion.contentCache={"photo-by-id":{"{\"photoId\":\"\"}":{"data":{"content_elements":[{"0":{"_id":"4ZXU3AKABSM3AFS5LRSW4GZIOU","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg?auth=07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/04/22/ap21112602440637-a46662b7a49809ed50cbc6b6f187e74192dfe688.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg","proxyUrl":"/resizer/v2/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg?auth=07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e","published":true,"resizeUrl":"/resizer/v2/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg?auth=07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e","restricted":false,"thumbnailResizeUrl":"/resizer/v2/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg?auth=07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e&width=300","version":3},"address":{},"auth":{"1":"07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e"},"caption":"Family images play on a screen before funeral services for Daunte Wright at Shiloh Temple International Ministries in Minneapolis on Thursday.","copyright":"Copyright 2021 The Associated Press. All rights reserved.","created_date":"2021-04-22T17:31:27Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"name":"John Minchillo","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3954,"last_updated_date":"2021-09-08T08:10:34Z","licensable":false,"owner":{"id":"opb"},"slug":"Daunte Wright","source":{"name":"NPR","source_id":"989886006","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"Family images play on a screen before funeral services for Daunte Wright at Shiloh Temple International Ministries in Minneapolis on Thursday.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg","version":"0.10.9","width":5272},"1":{"_id":"O2XHNP4RKFGXXC5YSSZFX24YHE","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg?auth=e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499","galleries":[],"ingestionMethod":"manual","iptc_source":"20210422_KFV_Cameron's Books","keywords":[""],"mime_type":"image/jpeg","originalName":"IMG_2721.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg","owner":"kfv@opb.org","proxyUrl":"/resizer/v2/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg?auth=e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499","published":true,"resizeUrl":"/resizer/v2/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg?auth=e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499","restricted":false,"takenOn":"2021-04-19T14:01:20Z","thumbnailResizeUrl":"/resizer/v2/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg?auth=e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499&width=300","version":2,"template_id":620},"address":{},"auth":{"1":"e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499"},"caption":"Cameron's Books has been operating for more than 80 years. The pandemic and protests have reduced downtown foot traffic by 82% and the owner can no longer pay the rent.","copyright":"Copyright OPB","created_date":"2021-04-22T17:48:53Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"_id":"kristian-foden-vencil","additional_properties":{"original":{"_id":"kristian-foden-vencil","slug":"kristian-foden-vencil","byline":"Kristian Foden-Vencil","firstName":"Kristian","lastName":"Foden-Vencil","role":"Reporter and Producer","longBio":"<p>Kristian Foden-Vencil is a reporter and producer for Oregon Public Broadcasting. He specializes in health care, business, politics, law and public safety. In 2004 he was embedded with the Oregon National Guard in Iraq.</p>\r\n<p>Kristian started as a cub reporter in 1988, working for newspapers in London, England. In 1991 he moved to Oregon and started freelancing. His work has appeared in The Oregonian, the BBC, NPR, the Statesman Journal, Willamette Week, the Canadian Broadcasting Corporation and Voice of America.</p>\r\n<p>Kristian has won a <a href=\"http://peabodyawards.com/\">Peabody Award</a> along with awards from the <a href=\"http://www.ap.org/\">Associat</a><span style=\"line-height: 1.7em;\"><a href=\"http://www.ap.org/\">ed Press</a>, <a href=\"http://www.spj.org/\">Society of Professional Journalists</a> and the <a href=\"http://capitolbeat.wordpress.com/\">Association of Capitol Reporters and Editors</a>.</span></p>\r\n<p><span style=\"line-height: 1.7em;\">He graduated from the University of Westminster in London.</span></p>","bio_page":"/author/kristian-foden-vencil","affiliations":"OPB","status":true,"email":"kfv@opb.org","twitter":"KristianOPB","facebook":"http://www.facebook.com/kristian.fodenvencil","last_updated_date":"2020-07-24T20:51:10.853Z","books":[],"podcasts":[],"education":[],"awards":[],"image":"https://s3.amazonaws.com/arc-authors/opb/37011659-34a5-42dc-b5fd-1ef38b1fc2d5.png"}},"byline":"Kristian Foden-Vencil","name":"Kristian Foden-Vencil","type":"author","url":"/author/kristian-foden-vencil","image":{"url":"https://s3.amazonaws.com/arc-authors/opb/37011659-34a5-42dc-b5fd-1ef38b1fc2d5.png","version":"0.5.8"},"slug":"kristian-foden-vencil","socialLinks":[{"site":"email","url":"kfv@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"facebook","url":"http://www.facebook.com/kristian.fodenvencil","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"twitter","url":"KristianOPB","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"kfv@opb.org"},{"site":"facebook","url":"http://www.facebook.com/kristian.fodenvencil"},{"site":"twitter","url":"KristianOPB"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"focal_point":{"x":932,"y":1186},"geo":{},"height":1512,"image_type":"photograph","last_updated_date":"2021-04-23T15:46:56Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"20210422_KFV_Cameron's Books","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg","version":"0.10.9","width":2016,"syndication":{}},"2":{"_id":"E2L2DHEO5BF37PMUBA3Y23LPWM","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG?auth=47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Photo Editor","keywords":["mental illness","police shooting"],"mime_type":"image/jpeg","originalName":"2021_0423_delgado family_09.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG","owner":"kwg@opb.org","proxyUrl":"/resizer/v2/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG?auth=47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2","published":true,"resizeUrl":"/resizer/v2/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG?auth=47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2","restricted":false,"takenOn":"2020-04-23T09:10:53Z","thumbnailResizeUrl":"/resizer/v2/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG?auth=47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2&width=300","version":0,"template_id":620},"address":{"locality":"Portland"},"auth":{"1":"47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2"},"caption":"(Left to right) Tina Delgado, River Delgado and Skyler Delgado listen during a press conference held with their family on Friday, April 23, 2021. Tina Delgado’s brother, Robert Delgado, who is also the father of River and Skyler, was killed by Portland Police in Lents Park earlier in the month. ","copyright":"Copyright OPB","created_date":"2021-04-24T00:03:06Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Kristyna Wentz-Graff","name":"Kristyna Wentz-Graff","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3104,"image_type":"photograph","last_updated_date":"2021-04-24T00:03:06Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Delgado shooting","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG","version":"0.10.9","width":4200},"3":{"_id":"XKSEKQQ3HFADBGO3LKHAJA3BDI","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG?auth=9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Photo Editor","keywords":["mental illness","police shooting"],"mime_type":"image/jpeg","originalName":"2021_0423_delgado family_06.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG","owner":"kwg@opb.org","proxyUrl":"/resizer/v2/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG?auth=9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728","published":true,"resizeUrl":"/resizer/v2/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG?auth=9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728","restricted":false,"takenOn":"2020-04-23T09:19:14Z","thumbnailResizeUrl":"/resizer/v2/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG?auth=9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728&width=300","version":0,"template_id":620},"address":{"locality":"Portland"},"auth":{"1":"9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728"},"caption":"(Left to right) Skyler Delgado holds framed photos of his father, Robert Delgado, during a press conference held by his family on Friday, April 23, 2021. Delgado was killed by Portland Police in Lents Park earlier in the month. ","copyright":"Copyright OPB","created_date":"2021-04-24T00:03:06Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Kristyna Wentz-Graff","name":"Kristyna Wentz-Graff","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4589,"image_type":"photograph","last_updated_date":"2021-04-24T00:03:06Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Delgado shooting","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG","version":"0.10.9","width":4200},"4":{"_id":"DQVBWP5IXVGSXO3AMC2JUYZNWA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg?auth=648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","keywords":["","class of 2025, school"],"mime_type":"image/jpeg","originalName":"20210423_LXM_anaishybrid_03.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg","owner":"emiller@opb.org","proxyUrl":"/resizer/v2/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg?auth=648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134","published":true,"resizeUrl":"/resizer/v2/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg?auth=648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134","restricted":false,"takenOn":"2021-04-21T09:50:33Z","thumbnailResizeUrl":"/resizer/v2/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg?auth=648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134"},"caption":"Class of 2025 student Anais, an 8th grader at Ron Russell Middle School, during her first in-person math class this year.","copyright":"Copyright OPB","created_date":"2021-04-24T01:04:25Z","credits":{"affiliation":[],"by":[{"_id":"elizabeth-miller","additional_properties":{"original":{"_id":"elizabeth-miller","slug":"elizabeth-miller","byline":"Elizabeth Miller","firstName":"Elizabeth","lastName":"Miller","role":"\"Class of 2025\" education reporter","longBio":"<p>Elizabeth Miller covers education for OPB with a special focus on the Class of 2025, a project following a group of students from kindergarten to high school graduation. She came to OPB in 2019 to cover K-12 education. Elizabeth hosted Season 2 of OPB's \"Class of 2025\" podcast and was part of the award-winning production team for \"Class of 2025: Freshman Year.\"</p>\n \n<p>She previously covered the environment and the Great Lakes for Ideastream Public Media in Cleveland, Ohio. Her pieces have aired nationally on NPR. Elizabeth has also served as mentor for NPR's Next Generation Radio project, which she also participated in as an early-career journalist in 2016.</p>\n\n<p>Born and raised in Ohio, Elizabeth is a graduate of Baldwin Wallace University.</p>","bio_page":"/author/elizabeth-miller","affiliations":"OPB","status":true,"email":"emiller@opb.org","twitter":"@llmiller12","instagram":"byelizabethmiller","last_updated_date":"2024-08-07T21:39:57.882Z","books":[],"podcasts":[],"education":[],"awards":[],"image":"https://s3.amazonaws.com/arc-authors/opb/8b35f2bd-1f8f-4681-a1f0-c69f517d1c84.jpg"}},"name":"Elizabeth Miller","type":"author","url":"/author/elizabeth-miller","image":{"url":"https://s3.amazonaws.com/arc-authors/opb/8b35f2bd-1f8f-4681-a1f0-c69f517d1c84.jpg","version":"0.5.8"},"slug":"elizabeth-miller","socialLinks":[{"site":"email","url":"emiller@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"twitter","url":"@llmiller12","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"instagram","url":"byelizabethmiller","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"emiller@opb.org"},{"site":"twitter","url":"@llmiller12"},{"site":"instagram","url":"byelizabethmiller"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4000,"image_type":"photograph","last_updated_date":"2021-04-24T01:04:25Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Class of 2025 student Anais in math class","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg","version":"0.10.9","width":6000,"syndication":{}},"5":{"_id":"SN5ZQC2PXNXZ5JMZJZMET45J6I","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg?auth=d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399","galleries":[],"mime_type":"application/octet-stream","originalName":"https://www.nwnewsnetwork.org/sites/northwestnews/files/202104/bishop_tyson2.jpg?origin=body","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg","proxyUrl":"/resizer/v2/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg?auth=d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399","published":true,"resizeUrl":"/resizer/v2/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg?auth=d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399","restricted":false,"thumbnailResizeUrl":"/resizer/v2/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg?auth=d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399&width=300","version":3},"address":{},"auth":{"1":"d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399"},"caption":"Bishop Joseph Tyson of the Diocese of Yakima rolled up his robes for the COVID-19 vaccine to encourage his parishioners to do the same.","created_date":"2021-04-24T20:56:36Z","credits":{"by":[{"name":"Courtesy of the Diocese of Yakima","type":"author"}]},"distributor":{"category":"wires","id":"acd1deb2-d921-460a-847d-626f425423ac","name":"N3","subcategory":"N3","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:06:45.990Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2024-09-21T04:00:42.881Z","modifiedBy":"lkissling@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3648,"last_updated_date":"2021-09-08T08:10:31Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"N3","source_id":"990545901","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg","version":"0.10.9","width":5472},"6":{"_id":"XPWPSLKBV7KVLPJBWVVDWCCPCE","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg?auth=8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/04/26/gettyimages-1232027213-59362ac66a046a1e4c36672996dd1b17ea1d6d85.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg","proxyUrl":"/resizer/v2/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg?auth=8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086","published":true,"resizeUrl":"/resizer/v2/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg?auth=8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086","restricted":false,"thumbnailResizeUrl":"/resizer/v2/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg?auth=8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086&width=300","version":3},"address":{},"auth":{"1":"8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086"},"caption":"A man takes a picture at sunset with the Eiffel Tower in the background on March 30, 2021. The president of the European Commission says fully vaccinated Americans will be able to visit the EU this summer.","created_date":"2021-04-26T13:18:29Z","credits":{"affiliation":[{"name":"AFP via Getty Images","type":"author"}],"by":[{"name":"Ludovic Marin","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4692,"last_updated_date":"2021-09-08T08:10:29Z","licensable":false,"owner":{"id":"opb"},"slug":"1232027213","source":{"name":"NPR","source_id":"990828635","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"A man takes a picture at sunset with the Eiffel Tower in the background on March 30, 2021. The president of the European Commission says fully vaccinated Americans will be able to visit the EU this summer.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg","version":"0.10.9","width":6264},"7":{"_id":"OERNXCLAZZGSYTZARWC42QD5AQ","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/OERNXCLAZZGSYTZARWC42QD5AQ.jpg?auth=a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397","galleries":[],"mime_type":"image/jpeg","originalName":"https://www.nwnewsnetwork.org/sites/northwestnews/files/202104/042621rw_north_central_high_school_indians.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OERNXCLAZZGSYTZARWC42QD5AQ.jpg","proxyUrl":"/resizer/v2/OERNXCLAZZGSYTZARWC42QD5AQ.jpg?auth=a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397","published":true,"resizeUrl":"/resizer/v2/OERNXCLAZZGSYTZARWC42QD5AQ.jpg?auth=a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397","restricted":false,"thumbnailResizeUrl":"/resizer/v2/OERNXCLAZZGSYTZARWC42QD5AQ.jpg?auth=a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397&width=300","version":3},"address":{},"auth":{"1":"a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397"},"caption":"A new state law will further prod the Spokane school district to find a new mascot for North Central High School, now the home of the Indians.","created_date":"2021-04-26T23:51:40Z","credits":{"affiliation":[{"name":"Spokane Public Radio","type":"author"}],"by":[{"name":"Rebecca White","type":"author"}]},"distributor":{"category":"wires","id":"acd1deb2-d921-460a-847d-626f425423ac","name":"N3","subcategory":"N3","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:06:45.990Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2024-09-21T04:00:42.881Z","modifiedBy":"lkissling@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":1220,"last_updated_date":"2021-09-08T08:10:28Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"N3","source_id":"991062796","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OERNXCLAZZGSYTZARWC42QD5AQ.jpg","version":"0.10.9","width":1800},"8":{"_id":"O6SNST6ISZDOLMYGSLYSMTUPHY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG?auth=c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Photo Editor","keywords":[""],"mime_type":"image/jpeg","originalName":"2021_0415_detroit dam_06.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG","owner":"kwg@opb.org","proxyUrl":"/resizer/v2/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG?auth=c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875","published":true,"resizeUrl":"/resizer/v2/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG?auth=c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875","restricted":false,"takenOn":"2020-04-15T09:32:18Z","thumbnailResizeUrl":"/resizer/v2/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG?auth=c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875&width=300","version":0,"template_id":620},"address":{"locality":"Portland","region":"OR"},"auth":{"1":"c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875"},"caption":"Looking southeast on Detroit Lake, April 14, 2021. ","copyright":"Copyright OPB","created_date":"2021-04-27T00:22:27Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Kristyna Wentz-Graff","name":"Kristyna Wentz-Graff","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2738,"image_type":"photograph","last_updated_date":"2021-04-27T00:22:27Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Detroit Dam","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG","version":"0.10.9","width":4200,"syndication":{},"creditIPTC":"OPB"},"9":{"_id":"XMCJWAQLCBEJBBMSCE4SHMGENM","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg?auth=a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf","galleries":[{"headlines":{"basic":"Remembering Jan. 6"},"_id":"DBBL5DQLZ5HOFOASOMLJBS3GOY"}],"ingestionMethod":"manual","iptc_source":"FBI","keywords":[],"mime_type":"image/jpeg","originalName":"ReedChristensen.jpeg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg","owner":"cwilson@opb.org","proxyUrl":"/resizer/v2/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg?auth=a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf","published":true,"resizeUrl":"/resizer/v2/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg?auth=a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf","restricted":false,"thumbnailResizeUrl":"/resizer/v2/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg?auth=a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf&width=300","version":1,"template_id":620},"address":{},"auth":{"1":"a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf"},"caption":"On April 25, the FBI arrested Reed Knox Christensen, 62, from Hillsboro, Oregon, in connection with the Jan. 6 attack on the U.S. Capitol.","copyright":"Copyright OPB","created_date":"2021-04-28T02:04:52Z","credits":{"by":[{"byline":"FBI","name":"FBI","type":"author"}]},"distributor":{"category":"handout","id":"7835069c-3dc4-47da-8160-8065a6637144","name":"Acquired (Handout)","subcategory":"Acquired (Handout)","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:28:32.550Z","createdBy":"hyoung@opb.org","description":"Acquired media from other sources.","modifiedAt":"2020-06-19T15:03:27.639Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":261,"image_type":"photograph","last_updated_date":"2021-04-28T02:13:36Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"Acquired (Handout)","source_type":"handout","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Reed Christensen U.S. Capitol Attack 3","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg","version":"0.10.9","width":184,"syndication":{}},"10":{"_id":"IQ5MQRTKT5FJTFI6WGVVLGK4CY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png?auth=b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf","galleries":[],"ingestionMethod":"manual","iptc_source":"City of Portland","mime_type":"image/png","originalName":"Screen Shot 2021-04-29 at 11.54.43 AM.png","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png","owner":"rellis@opb.org","proxyUrl":"/resizer/v2/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png?auth=b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf","published":true,"resizeUrl":"/resizer/v2/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png?auth=b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf","restricted":false,"thumbnailResizeUrl":"/resizer/v2/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png?auth=b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf"},"copyright":"Copyright OPB","created_date":"2021-04-29T18:56:01Z","credits":{"affiliation":[],"by":[{"byline":"City of Portland","name":"City of Portland","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":1112,"image_type":"photograph","last_updated_date":"2021-04-29T18:56:01Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"City of Portland","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png","version":"0.10.9","width":1680,"syndication":{}},"11":{"_id":"JTPCKDG6TNF3FH2ST47BUULNUQ","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg?auth=5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746","galleries":[],"ingestionMethod":"manual","iptc_source":"Ralph Bloemers","mime_type":"image/jpeg","originalName":"wetland hazard trees (2).jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg","owner":"dsteves@opb.org","proxyUrl":"/resizer/v2/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg?auth=5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746","published":true,"resizeUrl":"/resizer/v2/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg?auth=5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746","restricted":false,"thumbnailResizeUrl":"/resizer/v2/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg?auth=5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746&width=300","version":1,"template_id":620},"address":{},"auth":{"1":"5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746"},"caption":"Large trees were felled into a wetland in the area off Highway 22 that burned in the Beachie Creek fire.","copyright":"Copyright OPB","created_date":"2021-04-29T20:07:55Z","credits":{"affiliation":[{"name":"","type":"author"}],"by":[{"byline":"courtesy of Ralph Bloemers","name":"courtesy of Ralph Bloemers","type":"author"}]},"distributor":{"category":"handout","id":"7835069c-3dc4-47da-8160-8065a6637144","name":"Acquired (Handout)","subcategory":"Acquired (Handout)","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:28:32.550Z","createdBy":"hyoung@opb.org","description":"Acquired media from other sources.","modifiedAt":"2020-06-19T15:03:27.639Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2250,"image_type":"photograph","last_updated_date":"2021-05-07T21:05:00Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"Acquired (Handout)","source_type":"handout","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Hazard trees felled in wetland","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg","version":"0.10.9","width":3000,"syndication":{},"creditIPTC":""},"12":{"_id":"J4TC4ZDR6JGYRB75OKUUYTBJ5M","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg?auth=bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d","galleries":[],"ingestionMethod":"manual","iptc_job_identifier":"NVJL201","iptc_source":"AP","iptc_title":"STF","keywords":[""],"mime_type":"image/jpeg","originalName":"AP21121063459919.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg","owner":"jling@opb.org","proxyUrl":"/resizer/v2/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg?auth=bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d","published":true,"resizeUrl":"/resizer/v2/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg?auth=bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d","restricted":false,"takenOn":"2021-04-25T02:18:35Z","thumbnailResizeUrl":"/resizer/v2/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg?auth=bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d&width=300","version":1,"template_id":620},"address":{"locality":"Las Vegas","region":"NV","country_name":"USA"},"alt_text":"People ride an escalator along the Las Vegas Strip, Saturday, April 24, 2021, in Las Vegas. Las Vegas is bouncing back to pre-coronavirus pandemic levels, with increases in airport passengers and tourism.","auth":{"1":"bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d"},"caption":"People ride an escalator along the Las Vegas Strip, Saturday, April 24, 2021, in Las Vegas. Las Vegas is bouncing back to pre-coronavirus pandemic levels, with increases in airport passengers and tourism. (AP Photo/John Locher)","copyright":"Copyright OPB","created_date":"2021-05-01T16:50:25Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"byline":"John Locher","name":"John Locher","type":"author"}]},"distributor":{"category":"wires","id":"28dbd3a6-70fb-48bd-ad0b-0847777579c7","name":"AP","subcategory":"AP","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:05:31.885Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2020-07-15T18:05:31.885Z","modifiedBy":"alee@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4000,"image_type":"photograph","last_updated_date":"2021-05-07T21:05:00Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"Virus Outbreak Vegas Revival","source":{"name":"AP","source_type":"wires","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Las Vegas COVID-19 revival","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg","version":"0.10.9","width":6000,"syndication":{},"creditIPTC":"AP","country_name":"United States"},"13":{"_id":"SURA3JF5B2KN26SGXPWP7LT3KY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/SURA3JF5B2KN26SGXPWP7LT3KY.jpg?auth=27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5","galleries":[],"keywords":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/05/03/gettyimages-1232584055-c91b34ce3ae253b5c7fd4a118c359fe1b9bc7d10.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/SURA3JF5B2KN26SGXPWP7LT3KY.jpg","proxyUrl":"/resizer/v2/SURA3JF5B2KN26SGXPWP7LT3KY.jpg?auth=27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5","published":true,"resizeUrl":"/resizer/v2/SURA3JF5B2KN26SGXPWP7LT3KY.jpg?auth=27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5","restricted":false,"thumbnailResizeUrl":"/resizer/v2/SURA3JF5B2KN26SGXPWP7LT3KY.jpg?auth=27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5&width=300","version":4},"address":{},"alt_text":"A blond woman wears a blue suit and a mask.","auth":{"1":"27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5"},"caption":"The political future of GOP Rep. Liz Cheney, seen here on April 28 ahead of President Biden's joint address to Congress, is increasingly in doubt as she refuses to back down from criticisms of former President Trump.","created_date":"2021-05-04T18:56:33Z","credits":{"affiliation":[{"name":"POOL/AFP via Getty Images","type":"author"}],"by":[{"name":"MELINA MARA","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":2485,"image_type":"photograph","last_updated_date":"2021-09-08T08:09:57Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"1232584055","source":{"name":"NPR","source_id":"993082480","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"The political future of GOP Rep. Liz Cheney, seen here on April 28 ahead of President Biden's joint address to Congress, is increasingly in doubt as she refuses to back down from criticisms of former President Trump.","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/SURA3JF5B2KN26SGXPWP7LT3KY.jpg","version":"0.10.9","width":3313},"14":{"_id":"GVEM7SID2VHAZBNZUTFOY6GUXM","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg?auth=ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","keywords":[""],"mime_type":"image/jpeg","originalName":"20201003_policecarsticker.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg","owner":"ecureton@opb.org","proxyUrl":"/resizer/v2/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg?auth=ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e","published":true,"resizeUrl":"/resizer/v2/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg?auth=ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e","restricted":false,"thumbnailResizeUrl":"/resizer/v2/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg?auth=ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e"},"caption":"A view of a Bend Police cruiser's front seat at Pilot Butte Neighborhood Park on October 3, 2020, when between clashing political demonstrations led to violence.","copyright":"Copyright OPB","created_date":"2021-05-05T01:40:18Z","credits":{"affiliation":[],"by":[{"_id":"emily-cureton","additional_properties":{"original":{"_id":"emily-cureton","slug":"emily-cureton-cook","byline":"Emily Cureton Cook","firstName":"Emily","lastName":"Cureton Cook","role":"Central Oregon Bureau Chief","longBio":"<p>Emily Cureton Cook is OPB’s Central Oregon bureau chief. Her reporting seeks to hold powerful people to account, promote honesty and transparency in public affairs, and amplify voices of rural Oregon. She formerly contributed award-winning programming to Georgia Public Broadcasting and Jefferson Public Radio, and reporting to community newspapers like the Del Norte Triplicate in Crescent City, California, and the Big Bend Sentinel in Marfa, Texas.</p>\n<p>Emily graduated from the University of Texas in Austin. Send her feedback and story ideas at <a href=\"mailto:ecureton@opb.org\" target=\"_blank\">ecureton@opb.org</a>.</p>","bio_page":"/author/emily-cureton-cook","affiliations":"OPB","status":true,"email":"ecureton@opb.org","twitter":"@emilycureton","last_updated_date":"2023-09-11T20:13:21.129Z","books":[],"podcasts":[],"education":[],"awards":[],"image":"https://s3.amazonaws.com/arc-authors/opb/b60d917e-1b13-42f9-8f9b-49505c2a9194.jpg"}},"name":"Emily Cureton Cook","type":"author","url":"/author/emily-cureton-cook","image":{"url":"https://s3.amazonaws.com/arc-authors/opb/b60d917e-1b13-42f9-8f9b-49505c2a9194.jpg","version":"0.5.8"},"slug":"emily-cureton-cook","socialLinks":[{"site":"email","url":"ecureton@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"twitter","url":"@emilycureton","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"ecureton@opb.org"},{"site":"twitter","url":"@emilycureton"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2631,"image_type":"photograph","last_updated_date":"2021-05-05T01:40:18Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Bend police officer under investigation after accusations of extremist speech","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg","version":"0.10.9","width":3684,"syndication":{}},"15":{"_id":"FNRJO5SGGSRJJINDKLRYK4CJGM","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg?auth=bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1","galleries":[],"mime_type":"application/octet-stream","originalName":"https://www.nwnewsnetwork.org/sites/northwestnews/files/202105/easterday_central_wa_farmland_-_credit_anna_king.jpg?origin=body","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg","proxyUrl":"/resizer/v2/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg?auth=bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1","published":true,"resizeUrl":"/resizer/v2/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg?auth=bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1","restricted":false,"thumbnailResizeUrl":"/resizer/v2/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg?auth=bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1&width=300","version":3},"address":{},"auth":{"1":"bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1"},"caption":"Old, gnarled trees watch over crops near Goose Gap Farm, an Easterday property that is up for sale as part of a bankruptcy auction. ","created_date":"2021-05-05T02:51:51Z","credits":{"by":[{"name":"Anna King/NW News Network","type":"author"}]},"distributor":{"category":"wires","id":"acd1deb2-d921-460a-847d-626f425423ac","name":"N3","subcategory":"N3","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:06:45.990Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2024-09-21T04:00:42.881Z","modifiedBy":"lkissling@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3024,"last_updated_date":"2021-09-08T08:09:54Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"N3","source_id":"993727022","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg","version":"0.10.9","width":4032},"16":{"_id":"ERS5QZU6WHTJHIKK2FM6BCLLFA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg?auth=a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b","galleries":[],"mime_type":"application/octet-stream","originalName":"https://www.nwnewsnetwork.org/sites/northwestnews/files/202105/easterday_farmland_-_credit_anna_king.jpg?origin=body","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg","proxyUrl":"/resizer/v2/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg?auth=a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b","published":true,"resizeUrl":"/resizer/v2/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg?auth=a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b","restricted":false,"thumbnailResizeUrl":"/resizer/v2/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg?auth=a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b&width=300","version":3},"address":{},"auth":{"1":"a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b"},"caption":"Verdant fields dot the basalt benches above the Columbia River near Goose Gap Farm, an Easterday property that's about to be auctioned off in a bankruptcy stemming from a swindle of 225,000 cattle.","created_date":"2021-05-05T03:07:47Z","credits":{"by":[{"name":"Anna King/NW News Network","type":"author"}]},"distributor":{"category":"wires","id":"acd1deb2-d921-460a-847d-626f425423ac","name":"N3","subcategory":"N3","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:06:45.990Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2024-09-21T04:00:42.881Z","modifiedBy":"lkissling@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3024,"last_updated_date":"2021-09-08T08:09:54Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"N3","source_id":"993727020","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg","version":"0.10.9","width":4032},"17":{"_id":"YBFKU2ADTWI2VFU2WYSUR2XJ6A","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg?auth=3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223","galleries":[],"keywords":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/05/04/img_6481-64a07552bb1641c80c471398ee78e189f8a52b39.jpeg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg","proxyUrl":"/resizer/v2/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg?auth=3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223","published":true,"resizeUrl":"/resizer/v2/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg?auth=3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223","restricted":false,"thumbnailResizeUrl":"/resizer/v2/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg?auth=3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223&width=300","version":4},"address":{},"alt_text":"A person in a restaurant kitchen wears gloves as he chops vegetables with a large knife.","auth":{"1":"3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223"},"caption":"Jason Brissett, a kitchen worker who came to the U.S. last month from Jamaica through an H-2B visa, is bracing for 80-hour work weeks this summer, to help make up for staffing shortages.","created_date":"2021-05-05T12:59:21Z","credits":{"affiliation":[{"name":"NPR","type":"author"}],"by":[{"name":"Tovia Smith","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":1535,"image_type":"photograph","last_updated_date":"2021-09-08T08:09:53Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"NPR","source_id":"993466732","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"Jason Brissett, a kitchen worker who came to the U.S. last month from Jamaica through an H-2B visa, is bracing for 80-hour work weeks this summer, to help make up for staffing shortages.","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg","version":"0.10.9","width":2046},"18":{"_id":"LUB7CW4OM5AD5D4TJZYSC5L7MA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg?auth=181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter","keywords":[""],"mime_type":"image/jpeg","originalName":"20210505_Benton-trial-2.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg","owner":"tbrynelson@opb.org","proxyUrl":"/resizer/v2/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg?auth=181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751","published":true,"resizeUrl":"/resizer/v2/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg?auth=181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751","restricted":false,"takenOn":"2021-05-05T09:07:03Z","thumbnailResizeUrl":"/resizer/v2/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg?auth=181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751"},"caption":"Evan Bariault delivers opening remarks to jurors for the trial between Clark County and three former county employees on May 5, 2021. The case is headlined by the involvement of former Washington Sen. Don Benton.","copyright":"Copyright OPB","created_date":"2021-05-06T00:37:59Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Troy Brynelson","name":"Troy Brynelson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2021-05-06T00:37:59Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Don Benton, Clark County trial","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg","version":"0.10.9","width":3000},"19":{"_id":"QYEMN443C5BBX7SK3FXKOGRKHE","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/QYEMN443C5BBX7SK3FXKOGRKHE.jpg?auth=656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301","galleries":[],"keywords":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/05/07/gettyimages-1312298262_custom-69bd25916cfe1397d59629c057a58bd48decc534.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QYEMN443C5BBX7SK3FXKOGRKHE.jpg","proxyUrl":"/resizer/v2/QYEMN443C5BBX7SK3FXKOGRKHE.jpg?auth=656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301","published":true,"resizeUrl":"/resizer/v2/QYEMN443C5BBX7SK3FXKOGRKHE.jpg?auth=656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301","restricted":false,"thumbnailResizeUrl":"/resizer/v2/QYEMN443C5BBX7SK3FXKOGRKHE.jpg?auth=656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301&width=300","version":4},"address":{},"alt_text":"Vials read Pfizer-BioNTech COVID on the portion of the label that is visible.","auth":{"1":"656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301"},"caption":"Pfizer-BioNTech is seeking FDA approval for its COVID-19 vaccine, with the goal of getting the agency's green light \"in the coming months.\"","copyright":"Copyright - 2021 Image MediaNews Group","created_date":"2021-05-07T22:08:03Z","credits":{"affiliation":[{"name":"ReadingEagle via Getty Images","type":"author"}],"by":[{"name":"Ben Hasty/MediaNews Group","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":4423,"image_type":"photograph","last_updated_date":"2021-09-08T08:09:49Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"1312298262","source":{"name":"NPR","source_id":"994856535","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"Pfizer-BioNTech is seeking FDA approval for its COVID-19 vaccine, with the goal of getting the agency's green light \"in the coming months.\"","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QYEMN443C5BBX7SK3FXKOGRKHE.jpg","version":"0.10.9","width":6895}}],"promo_items":{"basic":{"0":{"_id":"4ZXU3AKABSM3AFS5LRSW4GZIOU","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg?auth=07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/04/22/ap21112602440637-a46662b7a49809ed50cbc6b6f187e74192dfe688.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg","proxyUrl":"/resizer/v2/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg?auth=07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e","published":true,"resizeUrl":"/resizer/v2/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg?auth=07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e","restricted":false,"thumbnailResizeUrl":"/resizer/v2/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg?auth=07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e&width=300","version":3},"address":{},"auth":{"1":"07002fb11b30a7800215fa850f40179ea1ae973c5ef739d953dfa7bf6d427e6e"},"caption":"Family images play on a screen before funeral services for Daunte Wright at Shiloh Temple International Ministries in Minneapolis on Thursday.","copyright":"Copyright 2021 The Associated Press. All rights reserved.","created_date":"2021-04-22T17:31:27Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"name":"John Minchillo","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3954,"last_updated_date":"2021-09-08T08:10:34Z","licensable":false,"owner":{"id":"opb"},"slug":"Daunte Wright","source":{"name":"NPR","source_id":"989886006","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"Family images play on a screen before funeral services for Daunte Wright at Shiloh Temple International Ministries in Minneapolis on Thursday.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/4ZXU3AKABSM3AFS5LRSW4GZIOU.jpg","version":"0.10.9","width":5272},"1":{"_id":"O2XHNP4RKFGXXC5YSSZFX24YHE","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg?auth=e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499","galleries":[],"ingestionMethod":"manual","iptc_source":"20210422_KFV_Cameron's Books","keywords":[""],"mime_type":"image/jpeg","originalName":"IMG_2721.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg","owner":"kfv@opb.org","proxyUrl":"/resizer/v2/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg?auth=e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499","published":true,"resizeUrl":"/resizer/v2/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg?auth=e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499","restricted":false,"takenOn":"2021-04-19T14:01:20Z","thumbnailResizeUrl":"/resizer/v2/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg?auth=e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499&width=300","version":2,"template_id":620},"address":{},"auth":{"1":"e5eafcf3f63984611d24cc13989f096a7a7f8424fa79e5841da02376e7c17499"},"caption":"Cameron's Books has been operating for more than 80 years. The pandemic and protests have reduced downtown foot traffic by 82% and the owner can no longer pay the rent.","copyright":"Copyright OPB","created_date":"2021-04-22T17:48:53Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"_id":"kristian-foden-vencil","additional_properties":{"original":{"_id":"kristian-foden-vencil","slug":"kristian-foden-vencil","byline":"Kristian Foden-Vencil","firstName":"Kristian","lastName":"Foden-Vencil","role":"Reporter and Producer","longBio":"<p>Kristian Foden-Vencil is a reporter and producer for Oregon Public Broadcasting. He specializes in health care, business, politics, law and public safety. In 2004 he was embedded with the Oregon National Guard in Iraq.</p>\r\n<p>Kristian started as a cub reporter in 1988, working for newspapers in London, England. In 1991 he moved to Oregon and started freelancing. His work has appeared in The Oregonian, the BBC, NPR, the Statesman Journal, Willamette Week, the Canadian Broadcasting Corporation and Voice of America.</p>\r\n<p>Kristian has won a <a href=\"http://peabodyawards.com/\">Peabody Award</a> along with awards from the <a href=\"http://www.ap.org/\">Associat</a><span style=\"line-height: 1.7em;\"><a href=\"http://www.ap.org/\">ed Press</a>, <a href=\"http://www.spj.org/\">Society of Professional Journalists</a> and the <a href=\"http://capitolbeat.wordpress.com/\">Association of Capitol Reporters and Editors</a>.</span></p>\r\n<p><span style=\"line-height: 1.7em;\">He graduated from the University of Westminster in London.</span></p>","bio_page":"/author/kristian-foden-vencil","affiliations":"OPB","status":true,"email":"kfv@opb.org","twitter":"KristianOPB","facebook":"http://www.facebook.com/kristian.fodenvencil","last_updated_date":"2020-07-24T20:51:10.853Z","books":[],"podcasts":[],"education":[],"awards":[],"image":"https://s3.amazonaws.com/arc-authors/opb/37011659-34a5-42dc-b5fd-1ef38b1fc2d5.png"}},"byline":"Kristian Foden-Vencil","name":"Kristian Foden-Vencil","type":"author","url":"/author/kristian-foden-vencil","image":{"url":"https://s3.amazonaws.com/arc-authors/opb/37011659-34a5-42dc-b5fd-1ef38b1fc2d5.png","version":"0.5.8"},"slug":"kristian-foden-vencil","socialLinks":[{"site":"email","url":"kfv@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"facebook","url":"http://www.facebook.com/kristian.fodenvencil","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"twitter","url":"KristianOPB","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"kfv@opb.org"},{"site":"facebook","url":"http://www.facebook.com/kristian.fodenvencil"},{"site":"twitter","url":"KristianOPB"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"focal_point":{"x":932,"y":1186},"geo":{},"height":1512,"image_type":"photograph","last_updated_date":"2021-04-23T15:46:56Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"20210422_KFV_Cameron's Books","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/O2XHNP4RKFGXXC5YSSZFX24YHE.jpg","version":"0.10.9","width":2016,"syndication":{}},"2":{"_id":"E2L2DHEO5BF37PMUBA3Y23LPWM","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG?auth=47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Photo Editor","keywords":["mental illness","police shooting"],"mime_type":"image/jpeg","originalName":"2021_0423_delgado family_09.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG","owner":"kwg@opb.org","proxyUrl":"/resizer/v2/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG?auth=47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2","published":true,"resizeUrl":"/resizer/v2/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG?auth=47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2","restricted":false,"takenOn":"2020-04-23T09:10:53Z","thumbnailResizeUrl":"/resizer/v2/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG?auth=47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2&width=300","version":0,"template_id":620},"address":{"locality":"Portland"},"auth":{"1":"47eb2018b736cdfbb6b19b43789ac53374c3703a96f7c967aa5061849abbe3d2"},"caption":"(Left to right) Tina Delgado, River Delgado and Skyler Delgado listen during a press conference held with their family on Friday, April 23, 2021. Tina Delgado’s brother, Robert Delgado, who is also the father of River and Skyler, was killed by Portland Police in Lents Park earlier in the month. ","copyright":"Copyright OPB","created_date":"2021-04-24T00:03:06Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Kristyna Wentz-Graff","name":"Kristyna Wentz-Graff","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3104,"image_type":"photograph","last_updated_date":"2021-04-24T00:03:06Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Delgado shooting","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/E2L2DHEO5BF37PMUBA3Y23LPWM.JPG","version":"0.10.9","width":4200},"3":{"_id":"XKSEKQQ3HFADBGO3LKHAJA3BDI","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG?auth=9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Photo Editor","keywords":["mental illness","police shooting"],"mime_type":"image/jpeg","originalName":"2021_0423_delgado family_06.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG","owner":"kwg@opb.org","proxyUrl":"/resizer/v2/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG?auth=9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728","published":true,"resizeUrl":"/resizer/v2/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG?auth=9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728","restricted":false,"takenOn":"2020-04-23T09:19:14Z","thumbnailResizeUrl":"/resizer/v2/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG?auth=9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728&width=300","version":0,"template_id":620},"address":{"locality":"Portland"},"auth":{"1":"9656d27b6ba8108f73ee63fa770f1fd9f425e4f5109960fa7b06f9d905649728"},"caption":"(Left to right) Skyler Delgado holds framed photos of his father, Robert Delgado, during a press conference held by his family on Friday, April 23, 2021. Delgado was killed by Portland Police in Lents Park earlier in the month. ","copyright":"Copyright OPB","created_date":"2021-04-24T00:03:06Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Kristyna Wentz-Graff","name":"Kristyna Wentz-Graff","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4589,"image_type":"photograph","last_updated_date":"2021-04-24T00:03:06Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Delgado shooting","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XKSEKQQ3HFADBGO3LKHAJA3BDI.JPG","version":"0.10.9","width":4200},"4":{"_id":"DQVBWP5IXVGSXO3AMC2JUYZNWA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg?auth=648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","keywords":["","class of 2025, school"],"mime_type":"image/jpeg","originalName":"20210423_LXM_anaishybrid_03.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg","owner":"emiller@opb.org","proxyUrl":"/resizer/v2/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg?auth=648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134","published":true,"resizeUrl":"/resizer/v2/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg?auth=648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134","restricted":false,"takenOn":"2021-04-21T09:50:33Z","thumbnailResizeUrl":"/resizer/v2/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg?auth=648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"648a34597bd24980f4b2d3b9d68c5cccdfe976d09e581d8e902399d043523134"},"caption":"Class of 2025 student Anais, an 8th grader at Ron Russell Middle School, during her first in-person math class this year.","copyright":"Copyright OPB","created_date":"2021-04-24T01:04:25Z","credits":{"affiliation":[],"by":[{"_id":"elizabeth-miller","additional_properties":{"original":{"_id":"elizabeth-miller","slug":"elizabeth-miller","byline":"Elizabeth Miller","firstName":"Elizabeth","lastName":"Miller","role":"\"Class of 2025\" education reporter","longBio":"<p>Elizabeth Miller covers education for OPB with a special focus on the Class of 2025, a project following a group of students from kindergarten to high school graduation. She came to OPB in 2019 to cover K-12 education. Elizabeth hosted Season 2 of OPB's \"Class of 2025\" podcast and was part of the award-winning production team for \"Class of 2025: Freshman Year.\"</p>\n \n<p>She previously covered the environment and the Great Lakes for Ideastream Public Media in Cleveland, Ohio. Her pieces have aired nationally on NPR. Elizabeth has also served as mentor for NPR's Next Generation Radio project, which she also participated in as an early-career journalist in 2016.</p>\n\n<p>Born and raised in Ohio, Elizabeth is a graduate of Baldwin Wallace University.</p>","bio_page":"/author/elizabeth-miller","affiliations":"OPB","status":true,"email":"emiller@opb.org","twitter":"@llmiller12","instagram":"byelizabethmiller","last_updated_date":"2024-08-07T21:39:57.882Z","books":[],"podcasts":[],"education":[],"awards":[],"image":"https://s3.amazonaws.com/arc-authors/opb/8b35f2bd-1f8f-4681-a1f0-c69f517d1c84.jpg"}},"name":"Elizabeth Miller","type":"author","url":"/author/elizabeth-miller","image":{"url":"https://s3.amazonaws.com/arc-authors/opb/8b35f2bd-1f8f-4681-a1f0-c69f517d1c84.jpg","version":"0.5.8"},"slug":"elizabeth-miller","socialLinks":[{"site":"email","url":"emiller@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"twitter","url":"@llmiller12","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"instagram","url":"byelizabethmiller","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"emiller@opb.org"},{"site":"twitter","url":"@llmiller12"},{"site":"instagram","url":"byelizabethmiller"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4000,"image_type":"photograph","last_updated_date":"2021-04-24T01:04:25Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Class of 2025 student Anais in math class","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/DQVBWP5IXVGSXO3AMC2JUYZNWA.jpg","version":"0.10.9","width":6000,"syndication":{}},"5":{"_id":"SN5ZQC2PXNXZ5JMZJZMET45J6I","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg?auth=d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399","galleries":[],"mime_type":"application/octet-stream","originalName":"https://www.nwnewsnetwork.org/sites/northwestnews/files/202104/bishop_tyson2.jpg?origin=body","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg","proxyUrl":"/resizer/v2/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg?auth=d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399","published":true,"resizeUrl":"/resizer/v2/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg?auth=d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399","restricted":false,"thumbnailResizeUrl":"/resizer/v2/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg?auth=d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399&width=300","version":3},"address":{},"auth":{"1":"d60f8e6b89f92b9e378810244876e4544a9c5a0f4dbeece60f5b3df7a9dfe399"},"caption":"Bishop Joseph Tyson of the Diocese of Yakima rolled up his robes for the COVID-19 vaccine to encourage his parishioners to do the same.","created_date":"2021-04-24T20:56:36Z","credits":{"by":[{"name":"Courtesy of the Diocese of Yakima","type":"author"}]},"distributor":{"category":"wires","id":"acd1deb2-d921-460a-847d-626f425423ac","name":"N3","subcategory":"N3","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:06:45.990Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2024-09-21T04:00:42.881Z","modifiedBy":"lkissling@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3648,"last_updated_date":"2021-09-08T08:10:31Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"N3","source_id":"990545901","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/SN5ZQC2PXNXZ5JMZJZMET45J6I.jpg","version":"0.10.9","width":5472},"6":{"_id":"XPWPSLKBV7KVLPJBWVVDWCCPCE","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg?auth=8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086","galleries":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/04/26/gettyimages-1232027213-59362ac66a046a1e4c36672996dd1b17ea1d6d85.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg","proxyUrl":"/resizer/v2/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg?auth=8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086","published":true,"resizeUrl":"/resizer/v2/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg?auth=8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086","restricted":false,"thumbnailResizeUrl":"/resizer/v2/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg?auth=8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086&width=300","version":3},"address":{},"auth":{"1":"8eab0de4fe6cf38da8ce452d53bce7ca47fe38f3334f33616b7dc02ee30ff086"},"caption":"A man takes a picture at sunset with the Eiffel Tower in the background on March 30, 2021. The president of the European Commission says fully vaccinated Americans will be able to visit the EU this summer.","created_date":"2021-04-26T13:18:29Z","credits":{"affiliation":[{"name":"AFP via Getty Images","type":"author"}],"by":[{"name":"Ludovic Marin","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4692,"last_updated_date":"2021-09-08T08:10:29Z","licensable":false,"owner":{"id":"opb"},"slug":"1232027213","source":{"name":"NPR","source_id":"990828635","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"A man takes a picture at sunset with the Eiffel Tower in the background on March 30, 2021. The president of the European Commission says fully vaccinated Americans will be able to visit the EU this summer.","type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XPWPSLKBV7KVLPJBWVVDWCCPCE.jpg","version":"0.10.9","width":6264},"7":{"_id":"OERNXCLAZZGSYTZARWC42QD5AQ","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/OERNXCLAZZGSYTZARWC42QD5AQ.jpg?auth=a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397","galleries":[],"mime_type":"image/jpeg","originalName":"https://www.nwnewsnetwork.org/sites/northwestnews/files/202104/042621rw_north_central_high_school_indians.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OERNXCLAZZGSYTZARWC42QD5AQ.jpg","proxyUrl":"/resizer/v2/OERNXCLAZZGSYTZARWC42QD5AQ.jpg?auth=a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397","published":true,"resizeUrl":"/resizer/v2/OERNXCLAZZGSYTZARWC42QD5AQ.jpg?auth=a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397","restricted":false,"thumbnailResizeUrl":"/resizer/v2/OERNXCLAZZGSYTZARWC42QD5AQ.jpg?auth=a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397&width=300","version":3},"address":{},"auth":{"1":"a8ae726bedad6bc96c783b73c3e528b4db80dc829be8246c91f389dfa3ba3397"},"caption":"A new state law will further prod the Spokane school district to find a new mascot for North Central High School, now the home of the Indians.","created_date":"2021-04-26T23:51:40Z","credits":{"affiliation":[{"name":"Spokane Public Radio","type":"author"}],"by":[{"name":"Rebecca White","type":"author"}]},"distributor":{"category":"wires","id":"acd1deb2-d921-460a-847d-626f425423ac","name":"N3","subcategory":"N3","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:06:45.990Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2024-09-21T04:00:42.881Z","modifiedBy":"lkissling@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":1220,"last_updated_date":"2021-09-08T08:10:28Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"N3","source_id":"991062796","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/OERNXCLAZZGSYTZARWC42QD5AQ.jpg","version":"0.10.9","width":1800},"8":{"_id":"O6SNST6ISZDOLMYGSLYSMTUPHY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG?auth=c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Photo Editor","keywords":[""],"mime_type":"image/jpeg","originalName":"2021_0415_detroit dam_06.JPG","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG","owner":"kwg@opb.org","proxyUrl":"/resizer/v2/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG?auth=c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875","published":true,"resizeUrl":"/resizer/v2/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG?auth=c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875","restricted":false,"takenOn":"2020-04-15T09:32:18Z","thumbnailResizeUrl":"/resizer/v2/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG?auth=c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875&width=300","version":0,"template_id":620},"address":{"locality":"Portland","region":"OR"},"auth":{"1":"c0934fc418da60ac1acdc63828bf6dcc082d0c085604db85f7e65c0be23ac875"},"caption":"Looking southeast on Detroit Lake, April 14, 2021. ","copyright":"Copyright OPB","created_date":"2021-04-27T00:22:27Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Kristyna Wentz-Graff","name":"Kristyna Wentz-Graff","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2738,"image_type":"photograph","last_updated_date":"2021-04-27T00:22:27Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Detroit Dam","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/O6SNST6ISZDOLMYGSLYSMTUPHY.JPG","version":"0.10.9","width":4200,"syndication":{},"creditIPTC":"OPB"},"9":{"_id":"XMCJWAQLCBEJBBMSCE4SHMGENM","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg?auth=a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf","galleries":[{"headlines":{"basic":"Remembering Jan. 6"},"_id":"DBBL5DQLZ5HOFOASOMLJBS3GOY"}],"ingestionMethod":"manual","iptc_source":"FBI","keywords":[],"mime_type":"image/jpeg","originalName":"ReedChristensen.jpeg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg","owner":"cwilson@opb.org","proxyUrl":"/resizer/v2/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg?auth=a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf","published":true,"resizeUrl":"/resizer/v2/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg?auth=a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf","restricted":false,"thumbnailResizeUrl":"/resizer/v2/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg?auth=a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf&width=300","version":1,"template_id":620},"address":{},"auth":{"1":"a6a1ddb7d8e9ee4759d082c9e027d950f5046357c4a3dd1d61c11347b5ecc8bf"},"caption":"On April 25, the FBI arrested Reed Knox Christensen, 62, from Hillsboro, Oregon, in connection with the Jan. 6 attack on the U.S. Capitol.","copyright":"Copyright OPB","created_date":"2021-04-28T02:04:52Z","credits":{"by":[{"byline":"FBI","name":"FBI","type":"author"}]},"distributor":{"category":"handout","id":"7835069c-3dc4-47da-8160-8065a6637144","name":"Acquired (Handout)","subcategory":"Acquired (Handout)","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:28:32.550Z","createdBy":"hyoung@opb.org","description":"Acquired media from other sources.","modifiedAt":"2020-06-19T15:03:27.639Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":261,"image_type":"photograph","last_updated_date":"2021-04-28T02:13:36Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"Acquired (Handout)","source_type":"handout","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Reed Christensen U.S. Capitol Attack 3","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XMCJWAQLCBEJBBMSCE4SHMGENM.jpeg","version":"0.10.9","width":184,"syndication":{}},"10":{"_id":"IQ5MQRTKT5FJTFI6WGVVLGK4CY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png?auth=b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf","galleries":[],"ingestionMethod":"manual","iptc_source":"City of Portland","mime_type":"image/png","originalName":"Screen Shot 2021-04-29 at 11.54.43 AM.png","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png","owner":"rellis@opb.org","proxyUrl":"/resizer/v2/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png?auth=b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf","published":true,"resizeUrl":"/resizer/v2/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png?auth=b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf","restricted":false,"thumbnailResizeUrl":"/resizer/v2/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png?auth=b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"b2135ff941b573b4dab9fdaad93da5d62922a14c248ab5621e72f64bb0253acf"},"copyright":"Copyright OPB","created_date":"2021-04-29T18:56:01Z","credits":{"affiliation":[],"by":[{"byline":"City of Portland","name":"City of Portland","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":1112,"image_type":"photograph","last_updated_date":"2021-04-29T18:56:01Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"City of Portland","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/IQ5MQRTKT5FJTFI6WGVVLGK4CY.png","version":"0.10.9","width":1680,"syndication":{}},"11":{"_id":"JTPCKDG6TNF3FH2ST47BUULNUQ","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg?auth=5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746","galleries":[],"ingestionMethod":"manual","iptc_source":"Ralph Bloemers","mime_type":"image/jpeg","originalName":"wetland hazard trees (2).jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg","owner":"dsteves@opb.org","proxyUrl":"/resizer/v2/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg?auth=5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746","published":true,"resizeUrl":"/resizer/v2/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg?auth=5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746","restricted":false,"thumbnailResizeUrl":"/resizer/v2/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg?auth=5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746&width=300","version":1,"template_id":620},"address":{},"auth":{"1":"5f3c930cc64ed8f2b13adf2a74438916dec13053cc95df9d1b2efcefa8849746"},"caption":"Large trees were felled into a wetland in the area off Highway 22 that burned in the Beachie Creek fire.","copyright":"Copyright OPB","created_date":"2021-04-29T20:07:55Z","credits":{"affiliation":[{"name":"","type":"author"}],"by":[{"byline":"courtesy of Ralph Bloemers","name":"courtesy of Ralph Bloemers","type":"author"}]},"distributor":{"category":"handout","id":"7835069c-3dc4-47da-8160-8065a6637144","name":"Acquired (Handout)","subcategory":"Acquired (Handout)","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:28:32.550Z","createdBy":"hyoung@opb.org","description":"Acquired media from other sources.","modifiedAt":"2020-06-19T15:03:27.639Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2250,"image_type":"photograph","last_updated_date":"2021-05-07T21:05:00Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"Acquired (Handout)","source_type":"handout","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Hazard trees felled in wetland","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JTPCKDG6TNF3FH2ST47BUULNUQ.jpg","version":"0.10.9","width":3000,"syndication":{},"creditIPTC":""},"12":{"_id":"J4TC4ZDR6JGYRB75OKUUYTBJ5M","additional_properties":{"countryId":227,"fullSizeResizeUrl":"/resizer/v2/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg?auth=bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d","galleries":[],"ingestionMethod":"manual","iptc_job_identifier":"NVJL201","iptc_source":"AP","iptc_title":"STF","keywords":[""],"mime_type":"image/jpeg","originalName":"AP21121063459919.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg","owner":"jling@opb.org","proxyUrl":"/resizer/v2/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg?auth=bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d","published":true,"resizeUrl":"/resizer/v2/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg?auth=bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d","restricted":false,"takenOn":"2021-04-25T02:18:35Z","thumbnailResizeUrl":"/resizer/v2/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg?auth=bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d&width=300","version":1,"template_id":620},"address":{"locality":"Las Vegas","region":"NV","country_name":"USA"},"alt_text":"People ride an escalator along the Las Vegas Strip, Saturday, April 24, 2021, in Las Vegas. Las Vegas is bouncing back to pre-coronavirus pandemic levels, with increases in airport passengers and tourism.","auth":{"1":"bfee64d651b483cb2c235efe81b7e87de74d937b6aa0d73202e31b2946c20e6d"},"caption":"People ride an escalator along the Las Vegas Strip, Saturday, April 24, 2021, in Las Vegas. Las Vegas is bouncing back to pre-coronavirus pandemic levels, with increases in airport passengers and tourism. (AP Photo/John Locher)","copyright":"Copyright OPB","created_date":"2021-05-01T16:50:25Z","credits":{"affiliation":[{"name":"AP","type":"author"}],"by":[{"byline":"John Locher","name":"John Locher","type":"author"}]},"distributor":{"category":"wires","id":"28dbd3a6-70fb-48bd-ad0b-0847777579c7","name":"AP","subcategory":"AP","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:05:31.885Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2020-07-15T18:05:31.885Z","modifiedBy":"alee@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":4000,"image_type":"photograph","last_updated_date":"2021-05-07T21:05:00Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"Virus Outbreak Vegas Revival","source":{"name":"AP","source_type":"wires","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Las Vegas COVID-19 revival","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/J4TC4ZDR6JGYRB75OKUUYTBJ5M.jpg","version":"0.10.9","width":6000,"syndication":{},"creditIPTC":"AP","country_name":"United States"},"13":{"_id":"SURA3JF5B2KN26SGXPWP7LT3KY","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/SURA3JF5B2KN26SGXPWP7LT3KY.jpg?auth=27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5","galleries":[],"keywords":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/05/03/gettyimages-1232584055-c91b34ce3ae253b5c7fd4a118c359fe1b9bc7d10.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/SURA3JF5B2KN26SGXPWP7LT3KY.jpg","proxyUrl":"/resizer/v2/SURA3JF5B2KN26SGXPWP7LT3KY.jpg?auth=27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5","published":true,"resizeUrl":"/resizer/v2/SURA3JF5B2KN26SGXPWP7LT3KY.jpg?auth=27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5","restricted":false,"thumbnailResizeUrl":"/resizer/v2/SURA3JF5B2KN26SGXPWP7LT3KY.jpg?auth=27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5&width=300","version":4},"address":{},"alt_text":"A blond woman wears a blue suit and a mask.","auth":{"1":"27b0938bdfd5143378a5c27da090a40ea7299b04d0d6de2c098ceb71441a04a5"},"caption":"The political future of GOP Rep. Liz Cheney, seen here on April 28 ahead of President Biden's joint address to Congress, is increasingly in doubt as she refuses to back down from criticisms of former President Trump.","created_date":"2021-05-04T18:56:33Z","credits":{"affiliation":[{"name":"POOL/AFP via Getty Images","type":"author"}],"by":[{"name":"MELINA MARA","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":2485,"image_type":"photograph","last_updated_date":"2021-09-08T08:09:57Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"1232584055","source":{"name":"NPR","source_id":"993082480","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"The political future of GOP Rep. Liz Cheney, seen here on April 28 ahead of President Biden's joint address to Congress, is increasingly in doubt as she refuses to back down from criticisms of former President Trump.","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/SURA3JF5B2KN26SGXPWP7LT3KY.jpg","version":"0.10.9","width":3313},"14":{"_id":"GVEM7SID2VHAZBNZUTFOY6GUXM","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg?auth=ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","keywords":[""],"mime_type":"image/jpeg","originalName":"20201003_policecarsticker.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg","owner":"ecureton@opb.org","proxyUrl":"/resizer/v2/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg?auth=ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e","published":true,"resizeUrl":"/resizer/v2/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg?auth=ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e","restricted":false,"thumbnailResizeUrl":"/resizer/v2/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg?auth=ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"ac93c00468830e1f91b58baeb138be2cca50877c32e86275a3549c23b56f747e"},"caption":"A view of a Bend Police cruiser's front seat at Pilot Butte Neighborhood Park on October 3, 2020, when between clashing political demonstrations led to violence.","copyright":"Copyright OPB","created_date":"2021-05-05T01:40:18Z","credits":{"affiliation":[],"by":[{"_id":"emily-cureton","additional_properties":{"original":{"_id":"emily-cureton","slug":"emily-cureton-cook","byline":"Emily Cureton Cook","firstName":"Emily","lastName":"Cureton Cook","role":"Central Oregon Bureau Chief","longBio":"<p>Emily Cureton Cook is OPB’s Central Oregon bureau chief. Her reporting seeks to hold powerful people to account, promote honesty and transparency in public affairs, and amplify voices of rural Oregon. She formerly contributed award-winning programming to Georgia Public Broadcasting and Jefferson Public Radio, and reporting to community newspapers like the Del Norte Triplicate in Crescent City, California, and the Big Bend Sentinel in Marfa, Texas.</p>\n<p>Emily graduated from the University of Texas in Austin. Send her feedback and story ideas at <a href=\"mailto:ecureton@opb.org\" target=\"_blank\">ecureton@opb.org</a>.</p>","bio_page":"/author/emily-cureton-cook","affiliations":"OPB","status":true,"email":"ecureton@opb.org","twitter":"@emilycureton","last_updated_date":"2023-09-11T20:13:21.129Z","books":[],"podcasts":[],"education":[],"awards":[],"image":"https://s3.amazonaws.com/arc-authors/opb/b60d917e-1b13-42f9-8f9b-49505c2a9194.jpg"}},"name":"Emily Cureton Cook","type":"author","url":"/author/emily-cureton-cook","image":{"url":"https://s3.amazonaws.com/arc-authors/opb/b60d917e-1b13-42f9-8f9b-49505c2a9194.jpg","version":"0.5.8"},"slug":"emily-cureton-cook","socialLinks":[{"site":"email","url":"ecureton@opb.org","deprecated":true,"deprecation_msg":"Please use social_links."},{"site":"twitter","url":"@emilycureton","deprecated":true,"deprecation_msg":"Please use social_links."}],"social_links":[{"site":"email","url":"ecureton@opb.org"},{"site":"twitter","url":"@emilycureton"}],"version":"0.5.8"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2631,"image_type":"photograph","last_updated_date":"2021-05-05T01:40:18Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Bend police officer under investigation after accusations of extremist speech","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GVEM7SID2VHAZBNZUTFOY6GUXM.jpg","version":"0.10.9","width":3684,"syndication":{}},"15":{"_id":"FNRJO5SGGSRJJINDKLRYK4CJGM","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg?auth=bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1","galleries":[],"mime_type":"application/octet-stream","originalName":"https://www.nwnewsnetwork.org/sites/northwestnews/files/202105/easterday_central_wa_farmland_-_credit_anna_king.jpg?origin=body","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg","proxyUrl":"/resizer/v2/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg?auth=bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1","published":true,"resizeUrl":"/resizer/v2/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg?auth=bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1","restricted":false,"thumbnailResizeUrl":"/resizer/v2/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg?auth=bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1&width=300","version":3},"address":{},"auth":{"1":"bd2ecf0b199f1adee97c58bbc7a97aa0ee06a10462d912bca81622d536f76fd1"},"caption":"Old, gnarled trees watch over crops near Goose Gap Farm, an Easterday property that is up for sale as part of a bankruptcy auction. ","created_date":"2021-05-05T02:51:51Z","credits":{"by":[{"name":"Anna King/NW News Network","type":"author"}]},"distributor":{"category":"wires","id":"acd1deb2-d921-460a-847d-626f425423ac","name":"N3","subcategory":"N3","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:06:45.990Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2024-09-21T04:00:42.881Z","modifiedBy":"lkissling@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3024,"last_updated_date":"2021-09-08T08:09:54Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"N3","source_id":"993727022","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/FNRJO5SGGSRJJINDKLRYK4CJGM.jpg","version":"0.10.9","width":4032},"16":{"_id":"ERS5QZU6WHTJHIKK2FM6BCLLFA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg?auth=a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b","galleries":[],"mime_type":"application/octet-stream","originalName":"https://www.nwnewsnetwork.org/sites/northwestnews/files/202105/easterday_farmland_-_credit_anna_king.jpg?origin=body","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg","proxyUrl":"/resizer/v2/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg?auth=a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b","published":true,"resizeUrl":"/resizer/v2/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg?auth=a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b","restricted":false,"thumbnailResizeUrl":"/resizer/v2/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg?auth=a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b&width=300","version":3},"address":{},"auth":{"1":"a1d3df1eca57a04dcb7ae651d781b15a96165927261df198d8a55bc74bbd333b"},"caption":"Verdant fields dot the basalt benches above the Columbia River near Goose Gap Farm, an Easterday property that's about to be auctioned off in a bankruptcy stemming from a swindle of 225,000 cattle.","created_date":"2021-05-05T03:07:47Z","credits":{"by":[{"name":"Anna King/NW News Network","type":"author"}]},"distributor":{"category":"wires","id":"acd1deb2-d921-460a-847d-626f425423ac","name":"N3","subcategory":"N3","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:06:45.990Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2024-09-21T04:00:42.881Z","modifiedBy":"lkissling@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":3024,"last_updated_date":"2021-09-08T08:09:54Z","licensable":false,"owner":{"id":"opb"},"source":{"name":"N3","source_id":"993727020","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/ERS5QZU6WHTJHIKK2FM6BCLLFA.jpg","version":"0.10.9","width":4032},"17":{"_id":"YBFKU2ADTWI2VFU2WYSUR2XJ6A","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg?auth=3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223","galleries":[],"keywords":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/05/04/img_6481-64a07552bb1641c80c471398ee78e189f8a52b39.jpeg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg","proxyUrl":"/resizer/v2/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg?auth=3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223","published":true,"resizeUrl":"/resizer/v2/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg?auth=3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223","restricted":false,"thumbnailResizeUrl":"/resizer/v2/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg?auth=3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223&width=300","version":4},"address":{},"alt_text":"A person in a restaurant kitchen wears gloves as he chops vegetables with a large knife.","auth":{"1":"3acd3d6560fa229559d80b0246f0a6061e73362499880b95f17455a7de05e223"},"caption":"Jason Brissett, a kitchen worker who came to the U.S. last month from Jamaica through an H-2B visa, is bracing for 80-hour work weeks this summer, to help make up for staffing shortages.","created_date":"2021-05-05T12:59:21Z","credits":{"affiliation":[{"name":"NPR","type":"author"}],"by":[{"name":"Tovia Smith","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":1535,"image_type":"photograph","last_updated_date":"2021-09-08T08:09:53Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"NPR","source_id":"993466732","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"Jason Brissett, a kitchen worker who came to the U.S. last month from Jamaica through an H-2B visa, is bracing for 80-hour work weeks this summer, to help make up for staffing shortages.","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/YBFKU2ADTWI2VFU2WYSUR2XJ6A.jpg","version":"0.10.9","width":2046},"18":{"_id":"LUB7CW4OM5AD5D4TJZYSC5L7MA","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg?auth=181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751","galleries":[],"ingestionMethod":"manual","iptc_source":"OPB","iptc_title":"Reporter","keywords":[""],"mime_type":"image/jpeg","originalName":"20210505_Benton-trial-2.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg","owner":"tbrynelson@opb.org","proxyUrl":"/resizer/v2/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg?auth=181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751","published":true,"resizeUrl":"/resizer/v2/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg?auth=181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751","restricted":false,"takenOn":"2021-05-05T09:07:03Z","thumbnailResizeUrl":"/resizer/v2/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg?auth=181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751&width=300","version":0,"template_id":620},"address":{},"auth":{"1":"181ee2d0fe70f18e619c6d58b70973f8654a5e883d0325f4c36127bb6f99e751"},"caption":"Evan Bariault delivers opening remarks to jurors for the trial between Clark County and three former county employees on May 5, 2021. The case is headlined by the involvement of former Washington Sen. Don Benton.","copyright":"Copyright OPB","created_date":"2021-05-06T00:37:59Z","credits":{"affiliation":[{"name":"OPB","type":"author"}],"by":[{"byline":"Troy Brynelson","name":"Troy Brynelson","type":"author"}]},"distributor":{"category":"staff","id":"370e7a8f-013d-4dbb-8352-3a0466a601dd","name":"OPB","subcategory":"OPB","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-06-18T12:29:38.156Z","createdBy":"hyoung@opb.org","description":"OPB content","modifiedAt":"2020-06-19T15:03:37.930Z","modifiedBy":"hyoung@opb.org","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"height":2000,"image_type":"photograph","last_updated_date":"2021-05-06T00:37:59Z","licensable":false,"owner":{"id":"opb","sponsored":false},"source":{"name":"OPB","source_type":"staff","additional_properties":{"editor":"photo center"},"edit_url":"","system":"photo center"},"subtitle":"Don Benton, Clark County trial","taxonomy":{},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/LUB7CW4OM5AD5D4TJZYSC5L7MA.jpg","version":"0.10.9","width":3000},"19":{"_id":"QYEMN443C5BBX7SK3FXKOGRKHE","additional_properties":{"fullSizeResizeUrl":"/resizer/v2/QYEMN443C5BBX7SK3FXKOGRKHE.jpg?auth=656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301","galleries":[],"keywords":[],"mime_type":"image/jpeg","originalName":"https://media.npr.org/assets/img/2021/05/07/gettyimages-1312298262_custom-69bd25916cfe1397d59629c057a58bd48decc534.jpg","originalUrl":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QYEMN443C5BBX7SK3FXKOGRKHE.jpg","proxyUrl":"/resizer/v2/QYEMN443C5BBX7SK3FXKOGRKHE.jpg?auth=656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301","published":true,"resizeUrl":"/resizer/v2/QYEMN443C5BBX7SK3FXKOGRKHE.jpg?auth=656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301","restricted":false,"thumbnailResizeUrl":"/resizer/v2/QYEMN443C5BBX7SK3FXKOGRKHE.jpg?auth=656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301&width=300","version":4},"address":{},"alt_text":"Vials read Pfizer-BioNTech COVID on the portion of the label that is visible.","auth":{"1":"656727640c6524fef3afd2da6600630a4d4f0e691592c7d5dc066be038168301"},"caption":"Pfizer-BioNTech is seeking FDA approval for its COVID-19 vaccine, with the goal of getting the agency's green light \"in the coming months.\"","copyright":"Copyright - 2021 Image MediaNews Group","created_date":"2021-05-07T22:08:03Z","credits":{"affiliation":[{"name":"ReadingEagle via Getty Images","type":"author"}],"by":[{"name":"Ben Hasty/MediaNews Group","type":"author"}]},"distributor":{"category":"wires","id":"0f128356-b848-4514-9a31-d22da4702ab4","name":"NPR","subcategory":"NPR","allowAll":true,"archived":false,"contentTypes":[{"name":"image"}],"createdAt":"2020-07-15T18:07:09.834Z","createdBy":"alee@opb.org","description":"","modifiedAt":"2021-09-28T18:39:21.656Z","modifiedBy":"schleicherj@washpost.com","organization":{"id":"7229d080-b5c3-447d-9d70-375804925172","name":"opb"},"organizationId":"7229d080-b5c3-447d-9d70-375804925172","organization_id":"7229d080-b5c3-447d-9d70-375804925172","restrictions":[]},"geo":{},"height":4423,"image_type":"photograph","last_updated_date":"2021-09-08T08:09:49Z","licensable":false,"owner":{"id":"opb","sponsored":false},"slug":"1312298262","source":{"name":"NPR","source_id":"994856535","source_type":"wires","additional_properties":{"editor":"photo center"},"system":"arc i/o"},"subtitle":"Pfizer-BioNTech is seeking FDA approval for its COVID-19 vaccine, with the goal of getting the agency's green light \"in the coming months.\"","taxonomy":{"associated_tasks":[]},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/QYEMN443C5BBX7SK3FXKOGRKHE.jpg","version":"0.10.9","width":6895}}},"_id":"e5bacc773a9ed593169513581f1aaa9941c994cf586b505916fab7891b0b2994"},"expires":1754225660694,"lastModified":1754225360259}},"contribution-forms":{"{\"path\":\"/federal-funding/\",\"site\":\"kmhd\"}":{"data":{"path":"federal-funding","service":"kmhd","header_title":"You keep the jazz playing!","header_message":"<p><span data-contrast=\"none\">Federal funding for public media has been eliminated by Congress. Your support as a KMHD member is more important than ever to help ensure this amazing music that delights, uplifts and inspires you continues to play loud and clear.</span><span data-ccp-props=\"{"335559685":288,"335559738":240,"335559739":240}\"> </span></p>\r\n<p><span data-contrast=\"none\">Take action to sustain a strong future for Jazz Without Boundaries on KMHD.</span><span data-ccp-props=\"{"335559685":288,"335559738":240,"335559739":240}\"> </span></p>\r\n<p><span data-contrast=\"none\">Join in as a Rhythm Section member with your ongoing monthly contribution now and help keep this music playing for everyone!</span></p>","header_image":null,"forms":[{"id":156,"form_type":"sustain","form_label":"Rhythm Section","source_code":"KAMEGNW250700002","message_top":"","submit_button":"Contribute Now","agreement":"<p>My authorization to contribute monthly from the account I’ve indicated shall remain in effect until I notify KMHD that I wish to change or end it, and KMHD has had reasonable time to act on my wishes. I understand that my contributions will begin in one to five days and continue monthly, on or near the same day of the month, thereafter. A record of each contribution will appear on my monthly checking account or credit/debit card statement and will serve as my receipt. <strong>You must agree to these terms to continue.</strong></p>","suggested_contribution":"10.00","min_contribution":"5.00","ladder_header":null,"ladder_description":"<p><span class=\"TextRun SCXW134492850 BCX0\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW134492850 BCX0\">Make your ongoing monthly Rhythm Section contribution now to provide reliable support for the jazz you love</span> <span class=\"NormalTextRun SCXW134492850 BCX0\">on KMHD </span><span class=\"NormalTextRun SCXW134492850 BCX0\">and </span><span class=\"NormalTextRun SCXW134492850 BCX0\">help </span><span class=\"NormalTextRun SCXW134492850 BCX0\">keep it playing for everyone</span> </span><span class=\"TextRun SCXW134492850 BCX0\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW134492850 BCX0\">—</span></span><span class=\"TextRun SCXW134492850 BCX0\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW134492850 BCX0\"> now and in the future</span><span class=\"NormalTextRun SCXW134492850 BCX0\">. </span><span class=\"NormalTextRun SCXW134492850 BCX0\">Thank you!</span></span></p>","include_current_amount":false,"include_comment":true,"include_instructions":true,"include_secondary_name":true,"include_premiums":true,"featured_premium":null,"featured_premium_label":null,"mvault_eligible":false,"giving_ladder":["10.00","30.00","50.00","100.00"],"form_header":"form","premium_categories":["KMHD Thank You Gifts"],"contribution_amount_label":{"concise":" / mo.","verbose":"monthly"},"include_custom_amount":true,"premiums":[{"code":"P50475","level":"120.00","title":"KMHD Fern Pint Glass","description":"This light and airy new pint glass design features a bright fern leaf pattern.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/ca/c9/cac93216-9ddc-421f-a3dd-73d52cc13ad7/premiumsp50475.jpg","height":1869,"width":1073,"alt_text":"Pint Glass","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fca%2Fc9%2Fcac93216-9ddc-421f-a3dd-73d52cc13ad7%2Fpremiumsp50475.jpg?auth=c35ad146ae4edff10fa6e138168b49f8c7c5b95a14b585ab1d3df50b1ffd4d8b&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fca%2Fc9%2Fcac93216-9ddc-421f-a3dd-73d52cc13ad7%2Fpremiumsp50475.jpg?auth=c35ad146ae4edff10fa6e138168b49f8c7c5b95a14b585ab1d3df50b1ffd4d8b&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fca%2Fc9%2Fcac93216-9ddc-421f-a3dd-73d52cc13ad7%2Fpremiumsp50475.jpg?auth=c35ad146ae4edff10fa6e138168b49f8c7c5b95a14b585ab1d3df50b1ffd4d8b&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"10.00"},{"code":"P50019","level":"120.00","title":"KMHD Jazz Without Boundaries Mug","description":"Classic 11oz mug with a colorful design inspired by New York subway signs.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/af/34afa3fc-72d8-4601-a418-349d1956f1a7/premiumsp50019.jpg","height":360,"width":360,"alt_text":"Black mug","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2Faf%2F34afa3fc-72d8-4601-a418-349d1956f1a7%2Fpremiumsp50019.jpg?auth=af0182530a3e4f532e407cc1ba395e0ec14ea71c62a1b1194f5f0d203eff10b0&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2Faf%2F34afa3fc-72d8-4601-a418-349d1956f1a7%2Fpremiumsp50019.jpg?auth=af0182530a3e4f532e407cc1ba395e0ec14ea71c62a1b1194f5f0d203eff10b0&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2Faf%2F34afa3fc-72d8-4601-a418-349d1956f1a7%2Fpremiumsp50019.jpg?auth=af0182530a3e4f532e407cc1ba395e0ec14ea71c62a1b1194f5f0d203eff10b0&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"10.00"},{"code":"P41965","level":"120.00","title":"KMHD Record Bag","description":"<p>100% cotton tote features KMHD \"Jazz Without Boundaries\" on one side, with each letter set in a colorful and cool graphic design and KMHD logo on the other side. The perfect size for carrying your albums or groceries.</p>","is_parent":false,"property_value":null,"property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/22/63/22632075-58c5-46d0-9d36-539bee497409/premiumsp41965.jpg","height":442,"width":441,"alt_text":"Black bag","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F22%2F63%2F22632075-58c5-46d0-9d36-539bee497409%2Fpremiumsp41965.jpg?auth=b43beea15bd357218e8621307e4d11a1d3c9110dbf422a9f86e4e4124eb8e5f0&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F22%2F63%2F22632075-58c5-46d0-9d36-539bee497409%2Fpremiumsp41965.jpg?auth=b43beea15bd357218e8621307e4d11a1d3c9110dbf422a9f86e4e4124eb8e5f0&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F22%2F63%2F22632075-58c5-46d0-9d36-539bee497409%2Fpremiumsp41965.jpg?auth=b43beea15bd357218e8621307e4d11a1d3c9110dbf422a9f86e4e4124eb8e5f0&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"10.00"},{"code":"P50334","level":"120.00","title":"KMHD Slipmat","description":"<p>Keep your vinyl playing smoothly with this 12\" felt slipmat.</p>","is_parent":false,"property_value":null,"property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/82/31/8231ec3b-49fe-4d89-84ea-522c27ea99a7/premiumsp50334.jpg","height":633,"width":813,"alt_text":"Misc","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F82%2F31%2F8231ec3b-49fe-4d89-84ea-522c27ea99a7%2Fpremiumsp50334.jpg?auth=3b198cf4694db3c45bde5ecf6bfeb471c801fe606194d31485b691852fde937f&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F82%2F31%2F8231ec3b-49fe-4d89-84ea-522c27ea99a7%2Fpremiumsp50334.jpg?auth=3b198cf4694db3c45bde5ecf6bfeb471c801fe606194d31485b691852fde937f&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F82%2F31%2F8231ec3b-49fe-4d89-84ea-522c27ea99a7%2Fpremiumsp50334.jpg?auth=3b198cf4694db3c45bde5ecf6bfeb471c801fe606194d31485b691852fde937f&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"10.00"},{"code":"P50473","level":"180.00","title":"KMHD 5-Panel Camper Hat","description":"This cap features a lightweight and breathable 64% cotton/36% nylon material that is perfect for the outdoors. The low-profile, 5-panel arch design and flexible flat visor provide a comfortable and relaxed fit. Our new KMHD cap looks great with a stylish and on-trend design. Pack it up and take it with you for your next adventure or show!","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/8f/70/8f707b5c-99a8-46ed-b685-5bd09c718583/premiumsp50473.jpg","height":520,"width":523,"alt_text":"Hat","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F8f%2F70%2F8f707b5c-99a8-46ed-b685-5bd09c718583%2Fpremiumsp50473.jpg?auth=c0965453b26db2b45d33aaff4bb73fe00ed63bd7ea33526bbbb8072b55748270&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F8f%2F70%2F8f707b5c-99a8-46ed-b685-5bd09c718583%2Fpremiumsp50473.jpg?auth=c0965453b26db2b45d33aaff4bb73fe00ed63bd7ea33526bbbb8072b55748270&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F8f%2F70%2F8f707b5c-99a8-46ed-b685-5bd09c718583%2Fpremiumsp50473.jpg?auth=c0965453b26db2b45d33aaff4bb73fe00ed63bd7ea33526bbbb8072b55748270&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"15.00"},{"code":"P50335","level":"180.00","title":"KMHD Short Sleeve T-shirt","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":true,"property_value":"Size","property_order":1,"children":[{"code":"P50336","level":"180.00","title":"KMHD Short Sleeve T-shirt - XS","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"XS","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50337","level":"180.00","title":"KMHD Short Sleeve T-shirt - S","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"S","property_order":2,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50338","level":"180.00","title":"KMHD Short Sleeve T-shirt - M","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"M","property_order":3,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50339","level":"180.00","title":"KMHD Short Sleeve T-shirt - L","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"L","property_order":4,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50340","level":"180.00","title":"KMHD Short Sleeve T-shirt - XL","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"XL","property_order":5,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50341","level":"180.00","title":"KMHD Short Sleeve T-shirt - 2XL","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"2XL","property_order":6,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50342","level":"180.00","title":"KMHD Short Sleeve T-shirt - 3XL","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD!</p>","is_parent":false,"property_value":"3XL","property_order":7,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}}],"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2F74%2F3474f861-c5cb-4b61-ae49-1587c4d8908a%2Fkmhd_short_sleeve_tshirt.jpg?auth=efcf2a8f2ca1663b85de326a8e93be7e626f7e11bcd9a6159a22437d635da3d5&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2F74%2F3474f861-c5cb-4b61-ae49-1587c4d8908a%2Fkmhd_short_sleeve_tshirt.jpg?auth=efcf2a8f2ca1663b85de326a8e93be7e626f7e11bcd9a6159a22437d635da3d5&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2F74%2F3474f861-c5cb-4b61-ae49-1587c4d8908a%2Fkmhd_short_sleeve_tshirt.jpg?auth=efcf2a8f2ca1663b85de326a8e93be7e626f7e11bcd9a6159a22437d635da3d5&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"15.00"},{"code":"P50196","level":"240.00","title":"KMHD Long Sleeve T-shirt","description":"<p>Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"Jazz without boundaries\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!</p>","is_parent":true,"property_value":"Size","property_order":1,"children":[{"code":"P50198","level":"240.00","title":"KMHD Long Sleeve T-shirt - S","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"S","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50199","level":"240.00","title":"KMHD Long Sleeve T-shirt - M","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"M","property_order":2,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50200","level":"240.00","title":"KMHD Long Sleeve T-shirt - L","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"L","property_order":3,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50201","level":"240.00","title":"KMHD Long Sleeve T-shirt - XL","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"XL","property_order":4,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50202","level":"240.00","title":"KMHD Long Sleeve T-shirt - 2XL","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"2XL","property_order":5,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50203","level":"240.00","title":"KMHD Long Sleeve T-shirt - 3XL","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"3XL","property_order":6,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}}],"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":null,"resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F7d%2F14%2F7d140ba5-7f9c-4c9c-b22d-208efd5700ec%2Fpremiumsp50196.jpg?auth=48f87b4540b03eacac53f3f7d382fdc60268ff4f7ab15f7075ff5cf0eb735984&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F7d%2F14%2F7d140ba5-7f9c-4c9c-b22d-208efd5700ec%2Fpremiumsp50196.jpg?auth=48f87b4540b03eacac53f3f7d382fdc60268ff4f7ab15f7075ff5cf0eb735984&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F7d%2F14%2F7d140ba5-7f9c-4c9c-b22d-208efd5700ec%2Fpremiumsp50196.jpg?auth=48f87b4540b03eacac53f3f7d382fdc60268ff4f7ab15f7075ff5cf0eb735984&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"20.00"},{"code":"P50477","level":"240.00","title":"Pair of KMHD Fern Pint Glasses","description":"A pair of our latest pint glass features a light and airy design with a bright fern leaf pattern.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/2d/b3/2db3f529-17a9-4d17-bb45-0b67aec5616e/premiumsp50477.png","height":360,"width":360,"alt_text":"Pint Glass","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F2d%2Fb3%2F2db3f529-17a9-4d17-bb45-0b67aec5616e%2Fpremiumsp50477.png?auth=5a15ec2c4bd37816013b3415656d72463a90716f342c8085207afddba2b25df2&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F2d%2Fb3%2F2db3f529-17a9-4d17-bb45-0b67aec5616e%2Fpremiumsp50477.png?auth=5a15ec2c4bd37816013b3415656d72463a90716f342c8085207afddba2b25df2&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F2d%2Fb3%2F2db3f529-17a9-4d17-bb45-0b67aec5616e%2Fpremiumsp50477.png?auth=5a15ec2c4bd37816013b3415656d72463a90716f342c8085207afddba2b25df2&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"20.00"},{"code":"P50020","level":"240.00","title":"Pair of KMHD Jazz Without Boundaries Mugs","description":"A pair of classic 11oz mugs with a colorful design inspired by New York subway signs.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/98/73/9873a66d-4c4e-4ea6-80a6-f47b546a0eb0/premiumsp50020.jpg","height":360,"width":360,"alt_text":"Two black mugs","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F98%2F73%2F9873a66d-4c4e-4ea6-80a6-f47b546a0eb0%2Fpremiumsp50020.jpg?auth=d03725dc0cf9b5e0a5c261776c4c37ac3bf24fecfd40becb46aedf02339a4098&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F98%2F73%2F9873a66d-4c4e-4ea6-80a6-f47b546a0eb0%2Fpremiumsp50020.jpg?auth=d03725dc0cf9b5e0a5c261776c4c37ac3bf24fecfd40becb46aedf02339a4098&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F98%2F73%2F9873a66d-4c4e-4ea6-80a6-f47b546a0eb0%2Fpremiumsp50020.jpg?auth=d03725dc0cf9b5e0a5c261776c4c37ac3bf24fecfd40becb46aedf02339a4098&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"20.00"},{"code":"P50476","level":"300.00","title":"KMHD Starter Kit - New Fern Pint Glass and 5-panel Camper Hat","description":"The perfect swag starter kit for the KMHD fan. Enjoy the new Fern Leaf Pint Glass and 5-Panel Camper Hat.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/dc/10/dc102e97-958d-45c4-a3c1-37005b30fd4e/premiumsp50476.jpg","height":519,"width":516,"alt_text":"Combo","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fdc%2F10%2Fdc102e97-958d-45c4-a3c1-37005b30fd4e%2Fpremiumsp50476.jpg?auth=1cc9c716ab6b177cc802401ff64be9766f9b3eb6a49495e4cc828bd8d7cb6700&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fdc%2F10%2Fdc102e97-958d-45c4-a3c1-37005b30fd4e%2Fpremiumsp50476.jpg?auth=1cc9c716ab6b177cc802401ff64be9766f9b3eb6a49495e4cc828bd8d7cb6700&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fdc%2F10%2Fdc102e97-958d-45c4-a3c1-37005b30fd4e%2Fpremiumsp50476.jpg?auth=1cc9c716ab6b177cc802401ff64be9766f9b3eb6a49495e4cc828bd8d7cb6700&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"25.00"},{"code":"P50188","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy!</p>","is_parent":true,"property_value":"Size","property_order":1,"children":[{"code":"P50189","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - XS","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"XS","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50190","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - S","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"S","property_order":2,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50191","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - M","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"M","property_order":3,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50192","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - L","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"L","property_order":4,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50193","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - XL","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"XL","property_order":5,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50194","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - 2XL","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"2XL","property_order":6,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50195","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - 3XL","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"3XL","property_order":7,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}}],"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":null,"resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F59%2Fcc%2F59cc3189-3d6f-4482-bcac-bf3fe789a5ae%2Fpremiumsp50188.jpg?auth=e73618ccc02a7d923431b6f24c2f1b71cb2050e040ec55999ca25a2b4545523f&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F59%2Fcc%2F59cc3189-3d6f-4482-bcac-bf3fe789a5ae%2Fpremiumsp50188.jpg?auth=e73618ccc02a7d923431b6f24c2f1b71cb2050e040ec55999ca25a2b4545523f&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F59%2Fcc%2F59cc3189-3d6f-4482-bcac-bf3fe789a5ae%2Fpremiumsp50188.jpg?auth=e73618ccc02a7d923431b6f24c2f1b71cb2050e040ec55999ca25a2b4545523f&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"30.00"}],"payment_methods":[{"key":"eft","label":"Checking account","preferred":true},{"key":"cc","label":"Credit card","preferred":false}]},{"id":155,"form_type":"onetime","form_label":"One-time","source_code":"KAMEGNW250700002","message_top":"","submit_button":"Contribute Now","agreement":"","suggested_contribution":"120.00","min_contribution":"10.00","ladder_header":null,"ladder_description":"<p><span class=\"TextRun SCXW184496662 BCX0\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW184496662 BCX0\">Make your contribution now to support the jazz you love on KMHD</span><span class=\"NormalTextRun SCXW184496662 BCX0\"> and </span><span class=\"NormalTextRun SCXW184496662 BCX0\">help </span><span class=\"NormalTextRun SCXW184496662 BCX0\">keep it playing for everyone</span><span class=\"NormalTextRun SCXW184496662 BCX0\">.</span><span class=\"NormalTextRun SCXW184496662 BCX0\"> Or choose to make a monthly Rhythm Section contribution</span> <span class=\"NormalTextRun SCXW184496662 BCX0\">—</span></span><span class=\"TextRun SCXW184496662 BCX0\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW184496662 BCX0\"> your support will be even more powerful. </span></span><span class=\"TextRun SCXW184496662 BCX0\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW184496662 BCX0\">Thank you!</span></span><span class=\"EOP SCXW184496662 BCX0\" data-ccp-props=\"{"335559685":288,"335559738":240,"335559739":240}\"> </span></p>","include_current_amount":false,"include_comment":true,"include_instructions":true,"include_secondary_name":true,"include_premiums":true,"featured_premium":null,"featured_premium_label":null,"mvault_eligible":false,"giving_ladder":["120.00","240.00","360.00","600.00","1200.00"],"form_header":"form","premium_categories":["KMHD Thank You Gifts"],"contribution_amount_label":{"concise":"","verbose":"one-time"},"include_custom_amount":true,"premiums":[{"code":"P50475","level":"120.00","title":"KMHD Fern Pint Glass","description":"This light and airy new pint glass design features a bright fern leaf pattern.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/ca/c9/cac93216-9ddc-421f-a3dd-73d52cc13ad7/premiumsp50475.jpg","height":1869,"width":1073,"alt_text":"Pint Glass","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fca%2Fc9%2Fcac93216-9ddc-421f-a3dd-73d52cc13ad7%2Fpremiumsp50475.jpg?auth=c35ad146ae4edff10fa6e138168b49f8c7c5b95a14b585ab1d3df50b1ffd4d8b&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fca%2Fc9%2Fcac93216-9ddc-421f-a3dd-73d52cc13ad7%2Fpremiumsp50475.jpg?auth=c35ad146ae4edff10fa6e138168b49f8c7c5b95a14b585ab1d3df50b1ffd4d8b&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fca%2Fc9%2Fcac93216-9ddc-421f-a3dd-73d52cc13ad7%2Fpremiumsp50475.jpg?auth=c35ad146ae4edff10fa6e138168b49f8c7c5b95a14b585ab1d3df50b1ffd4d8b&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"10.00"},{"code":"P50019","level":"120.00","title":"KMHD Jazz Without Boundaries Mug","description":"Classic 11oz mug with a colorful design inspired by New York subway signs.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/af/34afa3fc-72d8-4601-a418-349d1956f1a7/premiumsp50019.jpg","height":360,"width":360,"alt_text":"Black mug","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2Faf%2F34afa3fc-72d8-4601-a418-349d1956f1a7%2Fpremiumsp50019.jpg?auth=af0182530a3e4f532e407cc1ba395e0ec14ea71c62a1b1194f5f0d203eff10b0&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2Faf%2F34afa3fc-72d8-4601-a418-349d1956f1a7%2Fpremiumsp50019.jpg?auth=af0182530a3e4f532e407cc1ba395e0ec14ea71c62a1b1194f5f0d203eff10b0&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2Faf%2F34afa3fc-72d8-4601-a418-349d1956f1a7%2Fpremiumsp50019.jpg?auth=af0182530a3e4f532e407cc1ba395e0ec14ea71c62a1b1194f5f0d203eff10b0&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"10.00"},{"code":"P41965","level":"120.00","title":"KMHD Record Bag","description":"<p>100% cotton tote features KMHD \"Jazz Without Boundaries\" on one side, with each letter set in a colorful and cool graphic design and KMHD logo on the other side. The perfect size for carrying your albums or groceries.</p>","is_parent":false,"property_value":null,"property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/22/63/22632075-58c5-46d0-9d36-539bee497409/premiumsp41965.jpg","height":442,"width":441,"alt_text":"Black bag","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F22%2F63%2F22632075-58c5-46d0-9d36-539bee497409%2Fpremiumsp41965.jpg?auth=b43beea15bd357218e8621307e4d11a1d3c9110dbf422a9f86e4e4124eb8e5f0&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F22%2F63%2F22632075-58c5-46d0-9d36-539bee497409%2Fpremiumsp41965.jpg?auth=b43beea15bd357218e8621307e4d11a1d3c9110dbf422a9f86e4e4124eb8e5f0&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F22%2F63%2F22632075-58c5-46d0-9d36-539bee497409%2Fpremiumsp41965.jpg?auth=b43beea15bd357218e8621307e4d11a1d3c9110dbf422a9f86e4e4124eb8e5f0&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"10.00"},{"code":"P50334","level":"120.00","title":"KMHD Slipmat","description":"<p>Keep your vinyl playing smoothly with this 12\" felt slipmat.</p>","is_parent":false,"property_value":null,"property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/82/31/8231ec3b-49fe-4d89-84ea-522c27ea99a7/premiumsp50334.jpg","height":633,"width":813,"alt_text":"Misc","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F82%2F31%2F8231ec3b-49fe-4d89-84ea-522c27ea99a7%2Fpremiumsp50334.jpg?auth=3b198cf4694db3c45bde5ecf6bfeb471c801fe606194d31485b691852fde937f&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F82%2F31%2F8231ec3b-49fe-4d89-84ea-522c27ea99a7%2Fpremiumsp50334.jpg?auth=3b198cf4694db3c45bde5ecf6bfeb471c801fe606194d31485b691852fde937f&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F82%2F31%2F8231ec3b-49fe-4d89-84ea-522c27ea99a7%2Fpremiumsp50334.jpg?auth=3b198cf4694db3c45bde5ecf6bfeb471c801fe606194d31485b691852fde937f&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"10.00"},{"code":"P50473","level":"180.00","title":"KMHD 5-Panel Camper Hat","description":"This cap features a lightweight and breathable 64% cotton/36% nylon material that is perfect for the outdoors. The low-profile, 5-panel arch design and flexible flat visor provide a comfortable and relaxed fit. Our new KMHD cap looks great with a stylish and on-trend design. Pack it up and take it with you for your next adventure or show!","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/8f/70/8f707b5c-99a8-46ed-b685-5bd09c718583/premiumsp50473.jpg","height":520,"width":523,"alt_text":"Hat","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F8f%2F70%2F8f707b5c-99a8-46ed-b685-5bd09c718583%2Fpremiumsp50473.jpg?auth=c0965453b26db2b45d33aaff4bb73fe00ed63bd7ea33526bbbb8072b55748270&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F8f%2F70%2F8f707b5c-99a8-46ed-b685-5bd09c718583%2Fpremiumsp50473.jpg?auth=c0965453b26db2b45d33aaff4bb73fe00ed63bd7ea33526bbbb8072b55748270&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F8f%2F70%2F8f707b5c-99a8-46ed-b685-5bd09c718583%2Fpremiumsp50473.jpg?auth=c0965453b26db2b45d33aaff4bb73fe00ed63bd7ea33526bbbb8072b55748270&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"15.00"},{"code":"P50335","level":"180.00","title":"KMHD Short Sleeve T-shirt","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":true,"property_value":"Size","property_order":1,"children":[{"code":"P50336","level":"180.00","title":"KMHD Short Sleeve T-shirt - XS","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"XS","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50337","level":"180.00","title":"KMHD Short Sleeve T-shirt - S","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"S","property_order":2,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50338","level":"180.00","title":"KMHD Short Sleeve T-shirt - M","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"M","property_order":3,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50339","level":"180.00","title":"KMHD Short Sleeve T-shirt - L","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"L","property_order":4,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50340","level":"180.00","title":"KMHD Short Sleeve T-shirt - XL","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"XL","property_order":5,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50341","level":"180.00","title":"KMHD Short Sleeve T-shirt - 2XL","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD! </p>","is_parent":false,"property_value":"2XL","property_order":6,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}},{"code":"P50342","level":"180.00","title":"KMHD Short Sleeve T-shirt - 3XL","description":"<p>Made of 100% USA cotton, with the KMHD logo on the front. This T-shirt has a broken-in feel, just like one of your favorites – and let's everyone know that you love and support Jazz Without Boundaries on KMHD!</p>","is_parent":false,"property_value":"3XL","property_order":7,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve"},"monthly_level":"15.00","parent":{"code":"P50335","property_value":"Size"}}],"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/34/74/3474f861-c5cb-4b61-ae49-1587c4d8908a/kmhd_short_sleeve_tshirt.jpg","height":360,"width":360,"alt_text":"T-shirt Short Sleeve","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2F74%2F3474f861-c5cb-4b61-ae49-1587c4d8908a%2Fkmhd_short_sleeve_tshirt.jpg?auth=efcf2a8f2ca1663b85de326a8e93be7e626f7e11bcd9a6159a22437d635da3d5&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2F74%2F3474f861-c5cb-4b61-ae49-1587c4d8908a%2Fkmhd_short_sleeve_tshirt.jpg?auth=efcf2a8f2ca1663b85de326a8e93be7e626f7e11bcd9a6159a22437d635da3d5&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F34%2F74%2F3474f861-c5cb-4b61-ae49-1587c4d8908a%2Fkmhd_short_sleeve_tshirt.jpg?auth=efcf2a8f2ca1663b85de326a8e93be7e626f7e11bcd9a6159a22437d635da3d5&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"15.00"},{"code":"P50196","level":"240.00","title":"KMHD Long Sleeve T-shirt","description":"<p>Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"Jazz without boundaries\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!</p>","is_parent":true,"property_value":"Size","property_order":1,"children":[{"code":"P50198","level":"240.00","title":"KMHD Long Sleeve T-shirt - S","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"S","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50199","level":"240.00","title":"KMHD Long Sleeve T-shirt - M","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"M","property_order":2,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50200","level":"240.00","title":"KMHD Long Sleeve T-shirt - L","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"L","property_order":3,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50201","level":"240.00","title":"KMHD Long Sleeve T-shirt - XL","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"XL","property_order":4,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50202","level":"240.00","title":"KMHD Long Sleeve T-shirt - 2XL","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"2XL","property_order":5,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}},{"code":"P50203","level":"240.00","title":"KMHD Long Sleeve T-shirt - 3XL","description":"New! Our white, 100% cotton, long sleeve T-shirt has a KMHD graphic in primary colors on the front and \"\"Jazz without boundaries\"\" down the sleeve. Perfect for any season, jazz lovers and KMHD supporters!","is_parent":false,"property_value":"3XL","property_order":6,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":"White long sleeve T-shirt"},"monthly_level":"20.00","parent":{"code":"P50196","property_value":"Size"}}],"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/7d/14/7d140ba5-7f9c-4c9c-b22d-208efd5700ec/premiumsp50196.jpg","height":360,"width":360,"alt_text":null,"resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F7d%2F14%2F7d140ba5-7f9c-4c9c-b22d-208efd5700ec%2Fpremiumsp50196.jpg?auth=48f87b4540b03eacac53f3f7d382fdc60268ff4f7ab15f7075ff5cf0eb735984&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F7d%2F14%2F7d140ba5-7f9c-4c9c-b22d-208efd5700ec%2Fpremiumsp50196.jpg?auth=48f87b4540b03eacac53f3f7d382fdc60268ff4f7ab15f7075ff5cf0eb735984&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F7d%2F14%2F7d140ba5-7f9c-4c9c-b22d-208efd5700ec%2Fpremiumsp50196.jpg?auth=48f87b4540b03eacac53f3f7d382fdc60268ff4f7ab15f7075ff5cf0eb735984&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"20.00"},{"code":"P50477","level":"240.00","title":"Pair of KMHD Fern Pint Glasses","description":"A pair of our latest pint glass features a light and airy design with a bright fern leaf pattern.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/2d/b3/2db3f529-17a9-4d17-bb45-0b67aec5616e/premiumsp50477.png","height":360,"width":360,"alt_text":"Pint Glass","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F2d%2Fb3%2F2db3f529-17a9-4d17-bb45-0b67aec5616e%2Fpremiumsp50477.png?auth=5a15ec2c4bd37816013b3415656d72463a90716f342c8085207afddba2b25df2&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F2d%2Fb3%2F2db3f529-17a9-4d17-bb45-0b67aec5616e%2Fpremiumsp50477.png?auth=5a15ec2c4bd37816013b3415656d72463a90716f342c8085207afddba2b25df2&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F2d%2Fb3%2F2db3f529-17a9-4d17-bb45-0b67aec5616e%2Fpremiumsp50477.png?auth=5a15ec2c4bd37816013b3415656d72463a90716f342c8085207afddba2b25df2&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"20.00"},{"code":"P50020","level":"240.00","title":"Pair of KMHD Jazz Without Boundaries Mugs","description":"A pair of classic 11oz mugs with a colorful design inspired by New York subway signs.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/98/73/9873a66d-4c4e-4ea6-80a6-f47b546a0eb0/premiumsp50020.jpg","height":360,"width":360,"alt_text":"Two black mugs","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F98%2F73%2F9873a66d-4c4e-4ea6-80a6-f47b546a0eb0%2Fpremiumsp50020.jpg?auth=d03725dc0cf9b5e0a5c261776c4c37ac3bf24fecfd40becb46aedf02339a4098&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F98%2F73%2F9873a66d-4c4e-4ea6-80a6-f47b546a0eb0%2Fpremiumsp50020.jpg?auth=d03725dc0cf9b5e0a5c261776c4c37ac3bf24fecfd40becb46aedf02339a4098&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F98%2F73%2F9873a66d-4c4e-4ea6-80a6-f47b546a0eb0%2Fpremiumsp50020.jpg?auth=d03725dc0cf9b5e0a5c261776c4c37ac3bf24fecfd40becb46aedf02339a4098&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"20.00"},{"code":"P50476","level":"300.00","title":"KMHD Starter Kit - New Fern Pint Glass and 5-panel Camper Hat","description":"The perfect swag starter kit for the KMHD fan. Enjoy the new Fern Leaf Pint Glass and 5-Panel Camper Hat.","is_parent":false,"property_value":"","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/dc/10/dc102e97-958d-45c4-a3c1-37005b30fd4e/premiumsp50476.jpg","height":519,"width":516,"alt_text":"Combo","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fdc%2F10%2Fdc102e97-958d-45c4-a3c1-37005b30fd4e%2Fpremiumsp50476.jpg?auth=1cc9c716ab6b177cc802401ff64be9766f9b3eb6a49495e4cc828bd8d7cb6700&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fdc%2F10%2Fdc102e97-958d-45c4-a3c1-37005b30fd4e%2Fpremiumsp50476.jpg?auth=1cc9c716ab6b177cc802401ff64be9766f9b3eb6a49495e4cc828bd8d7cb6700&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2Fdc%2F10%2Fdc102e97-958d-45c4-a3c1-37005b30fd4e%2Fpremiumsp50476.jpg?auth=1cc9c716ab6b177cc802401ff64be9766f9b3eb6a49495e4cc828bd8d7cb6700&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"25.00"},{"code":"P50188","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy!</p>","is_parent":true,"property_value":"Size","property_order":1,"children":[{"code":"P50189","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - XS","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"XS","property_order":1,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50190","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - S","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"S","property_order":2,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50191","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - M","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"M","property_order":3,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50192","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - L","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"L","property_order":4,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50193","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - XL","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"XL","property_order":5,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50194","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - 2XL","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"2XL","property_order":6,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}},{"code":"P50195","level":"360.00","title":"KMHD Pullover Hoodie Sweatshirt - 3XL","description":"<p>New! Our pullover hoodie has a bold KMHD graphic and \"JAZZ WITHOUT BOUNDARIES\" above a front pocket. Black, mid-weight, cotton-blend — so cool and comfy! </p>","is_parent":false,"property_value":"3XL","property_order":7,"children":null,"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":"Black pullover hooded sweatshirt"},"monthly_level":"30.00","parent":{"code":"P50188","property_value":"Size"}}],"fulfillment_type":"physical","image":{"url":"https://d1e7ud4to4e8lv.cloudfront.net/filer_public/59/cc/59cc3189-3d6f-4482-bcac-bf3fe789a5ae/premiumsp50188.jpg","height":360,"width":360,"alt_text":null,"resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F59%2Fcc%2F59cc3189-3d6f-4482-bcac-bf3fe789a5ae%2Fpremiumsp50188.jpg?auth=e73618ccc02a7d923431b6f24c2f1b71cb2050e040ec55999ca25a2b4545523f&width=50&height=50&smart=true","thumbnail":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F59%2Fcc%2F59cc3189-3d6f-4482-bcac-bf3fe789a5ae%2Fpremiumsp50188.jpg?auth=e73618ccc02a7d923431b6f24c2f1b71cb2050e040ec55999ca25a2b4545523f&width=100&height=100&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd1e7ud4to4e8lv.cloudfront.net%2Ffiler_public%2F59%2Fcc%2F59cc3189-3d6f-4482-bcac-bf3fe789a5ae%2Fpremiumsp50188.jpg?auth=e73618ccc02a7d923431b6f24c2f1b71cb2050e040ec55999ca25a2b4545523f&width=600"}},"categories":["KMHD Thank You Gifts"],"is_featured":false,"monthly_level":"30.00"}],"payment_methods":[{"key":"cc","label":"Credit card","preferred":true}]}],"isPreview":false,"geo_lists":{"countries":[{"label":"United States of America","value":"US"},{"label":"Canada","value":"CA"},{"label":"Afghanistan","value":"AF"},{"label":"Åland Islands","value":"AX"},{"label":"Albania","value":"AL"},{"label":"Algeria","value":"DZ"},{"label":"American Samoa","value":"AS"},{"label":"Andorra","value":"AD"},{"label":"Angola","value":"AO"},{"label":"Anguilla","value":"AI"},{"label":"Antarctica","value":"AQ"},{"label":"Antigua and Barbuda","value":"AG"},{"label":"Argentina","value":"AR"},{"label":"Armenia","value":"AM"},{"label":"Aruba","value":"AW"},{"label":"Australia","value":"AU"},{"label":"Austria","value":"AT"},{"label":"Azerbaijan","value":"AZ"},{"label":"Bahamas","value":"BS"},{"label":"Bahrain","value":"BH"},{"label":"Bangladesh","value":"BD"},{"label":"Barbados","value":"BB"},{"label":"Belarus","value":"BY"},{"label":"Belgium","value":"BE"},{"label":"Belize","value":"BZ"},{"label":"Benin","value":"BJ"},{"label":"Bermuda","value":"BM"},{"label":"Bhutan","value":"BT"},{"label":"Bolivia, Plurinational State of","value":"BO"},{"label":"Bonaire, Sint Eustatius and Saba","value":"BQ"},{"label":"Bosnia and Herzegovina","value":"BA"},{"label":"Botswana","value":"BW"},{"label":"Bouvet Island","value":"BV"},{"label":"Brazil","value":"BR"},{"label":"British Indian Ocean Territory","value":"IO"},{"label":"Brunei Darussalam","value":"BN"},{"label":"Bulgaria","value":"BG"},{"label":"Burkina Faso","value":"BF"},{"label":"Burundi","value":"BI"},{"label":"Cabo Verde","value":"CV"},{"label":"Cambodia","value":"KH"},{"label":"Cameroon","value":"CM"},{"label":"Cayman Islands","value":"KY"},{"label":"Central African Republic","value":"CF"},{"label":"Chad","value":"TD"},{"label":"Chile","value":"CL"},{"label":"China","value":"CN"},{"label":"Christmas Island","value":"CX"},{"label":"Cocos (Keeling) Islands","value":"CC"},{"label":"Colombia","value":"CO"},{"label":"Comoros","value":"KM"},{"label":"Congo","value":"CG"},{"label":"Congo, Democratic Republic of the","value":"CD"},{"label":"Cook Islands","value":"CK"},{"label":"Costa Rica","value":"CR"},{"label":"Côte d'Ivoire","value":"CI"},{"label":"Croatia","value":"HR"},{"label":"Cuba","value":"CU"},{"label":"Curaçao","value":"CW"},{"label":"Cyprus","value":"CY"},{"label":"Czechia","value":"CZ"},{"label":"Denmark","value":"DK"},{"label":"Djibouti","value":"DJ"},{"label":"Dominica","value":"DM"},{"label":"Dominican Republic","value":"DO"},{"label":"Ecuador","value":"EC"},{"label":"Egypt","value":"EG"},{"label":"El Salvador","value":"SV"},{"label":"Equatorial Guinea","value":"GQ"},{"label":"Eritrea","value":"ER"},{"label":"Estonia","value":"EE"},{"label":"Eswatini","value":"SZ"},{"label":"Ethiopia","value":"ET"},{"label":"Falkland Islands (Malvinas)","value":"FK"},{"label":"Faroe Islands","value":"FO"},{"label":"Fiji","value":"FJ"},{"label":"Finland","value":"FI"},{"label":"France","value":"FR"},{"label":"French Guiana","value":"GF"},{"label":"French Polynesia","value":"PF"},{"label":"French Southern Territories","value":"TF"},{"label":"Gabon","value":"GA"},{"label":"Gambia","value":"GM"},{"label":"Georgia","value":"GE"},{"label":"Germany","value":"DE"},{"label":"Ghana","value":"GH"},{"label":"Gibraltar","value":"GI"},{"label":"Greece","value":"GR"},{"label":"Greenland","value":"GL"},{"label":"Grenada","value":"GD"},{"label":"Guadeloupe","value":"GP"},{"label":"Guam","value":"GU"},{"label":"Guatemala","value":"GT"},{"label":"Guernsey","value":"GG"},{"label":"Guinea","value":"GN"},{"label":"Guinea-Bissau","value":"GW"},{"label":"Guyana","value":"GY"},{"label":"Haiti","value":"HT"},{"label":"Heard Island and McDonald Islands","value":"HM"},{"label":"Holy See","value":"VA"},{"label":"Honduras","value":"HN"},{"label":"Hong Kong","value":"HK"},{"label":"Hungary","value":"HU"},{"label":"Iceland","value":"IS"},{"label":"India","value":"IN"},{"label":"Indonesia","value":"ID"},{"label":"Iran, Islamic Republic of","value":"IR"},{"label":"Iraq","value":"IQ"},{"label":"Ireland","value":"IE"},{"label":"Isle of Man","value":"IM"},{"label":"Israel","value":"IL"},{"label":"Italy","value":"IT"},{"label":"Jamaica","value":"JM"},{"label":"Japan","value":"JP"},{"label":"Jersey","value":"JE"},{"label":"Jordan","value":"JO"},{"label":"Kazakhstan","value":"KZ"},{"label":"Kenya","value":"KE"},{"label":"Kiribati","value":"KI"},{"label":"Korea, Democratic People's Republic of","value":"KP"},{"label":"Korea, Republic of","value":"KR"},{"label":"Kuwait","value":"KW"},{"label":"Kyrgyzstan","value":"KG"},{"label":"Lao People's Democratic Republic","value":"LA"},{"label":"Latvia","value":"LV"},{"label":"Lebanon","value":"LB"},{"label":"Lesotho","value":"LS"},{"label":"Liberia","value":"LR"},{"label":"Libya","value":"LY"},{"label":"Liechtenstein","value":"LI"},{"label":"Lithuania","value":"LT"},{"label":"Luxembourg","value":"LU"},{"label":"Macao","value":"MO"},{"label":"Madagascar","value":"MG"},{"label":"Malawi","value":"MW"},{"label":"Malaysia","value":"MY"},{"label":"Maldives","value":"MV"},{"label":"Mali","value":"ML"},{"label":"Malta","value":"MT"},{"label":"Marshall Islands","value":"MH"},{"label":"Martinique","value":"MQ"},{"label":"Mauritania","value":"MR"},{"label":"Mauritius","value":"MU"},{"label":"Mayotte","value":"YT"},{"label":"Mexico","value":"MX"},{"label":"Micronesia, Federated States of","value":"FM"},{"label":"Moldova, Republic of","value":"MD"},{"label":"Monaco","value":"MC"},{"label":"Mongolia","value":"MN"},{"label":"Montenegro","value":"ME"},{"label":"Montserrat","value":"MS"},{"label":"Morocco","value":"MA"},{"label":"Mozambique","value":"MZ"},{"label":"Myanmar","value":"MM"},{"label":"Namibia","value":"NA"},{"label":"Nauru","value":"NR"},{"label":"Nepal","value":"NP"},{"label":"Netherlands","value":"NL"},{"label":"New Caledonia","value":"NC"},{"label":"New Zealand","value":"NZ"},{"label":"Nicaragua","value":"NI"},{"label":"Niger","value":"NE"},{"label":"Nigeria","value":"NG"},{"label":"Niue","value":"NU"},{"label":"Norfolk Island","value":"NF"},{"label":"North Macedonia","value":"MK"},{"label":"Northern Mariana Islands","value":"MP"},{"label":"Norway","value":"NO"},{"label":"Oman","value":"OM"},{"label":"Pakistan","value":"PK"},{"label":"Palau","value":"PW"},{"label":"Palestine, State of","value":"PS"},{"label":"Panama","value":"PA"},{"label":"Papua New Guinea","value":"PG"},{"label":"Paraguay","value":"PY"},{"label":"Peru","value":"PE"},{"label":"Philippines","value":"PH"},{"label":"Pitcairn","value":"PN"},{"label":"Poland","value":"PL"},{"label":"Portugal","value":"PT"},{"label":"Puerto Rico","value":"PR"},{"label":"Qatar","value":"QA"},{"label":"Réunion","value":"RE"},{"label":"Romania","value":"RO"},{"label":"Russian Federation","value":"RU"},{"label":"Rwanda","value":"RW"},{"label":"Saint Barthélemy","value":"BL"},{"label":"Saint Helena, Ascension and Tristan da Cunha","value":"SH"},{"label":"Saint Kitts and Nevis","value":"KN"},{"label":"Saint Lucia","value":"LC"},{"label":"Saint Martin, (French part)","value":"MF"},{"label":"Saint Pierre and Miquelon","value":"PM"},{"label":"Saint Vincent and the Grenadines","value":"VC"},{"label":"Samoa","value":"WS"},{"label":"San Marino","value":"SM"},{"label":"Sao Tome and Principe","value":"ST"},{"label":"Saudi Arabia","value":"SA"},{"label":"Senegal","value":"SN"},{"label":"Serbia","value":"RS"},{"label":"Seychelles","value":"SC"},{"label":"Sierra Leone","value":"SL"},{"label":"Singapore","value":"SG"},{"label":"Sint Maarten, (Dutch part)","value":"SX"},{"label":"Slovakia","value":"SK"},{"label":"Slovenia","value":"SI"},{"label":"Solomon Islands","value":"SB"},{"label":"Somalia","value":"SO"},{"label":"South Africa","value":"ZA"},{"label":"South Georgia and the South Sandwich Islands","value":"GS"},{"label":"South Sudan","value":"SS"},{"label":"Spain","value":"ES"},{"label":"Sri Lanka","value":"LK"},{"label":"Sudan","value":"SD"},{"label":"Suriname","value":"SR"},{"label":"Svalbard and Jan Mayen","value":"SJ"},{"label":"Sweden","value":"SE"},{"label":"Switzerland","value":"CH"},{"label":"Syrian Arab Republic","value":"SY"},{"label":"Taiwan, Province of China","value":"TW"},{"label":"Tajikistan","value":"TJ"},{"label":"Tanzania, United Republic of","value":"TZ"},{"label":"Thailand","value":"TH"},{"label":"Timor-Leste","value":"TL"},{"label":"Togo","value":"TG"},{"label":"Tokelau","value":"TK"},{"label":"Tonga","value":"TO"},{"label":"Trinidad and Tobago","value":"TT"},{"label":"Tunisia","value":"TN"},{"label":"Türkiye","value":"TR"},{"label":"Turkmenistan","value":"TM"},{"label":"Turks and Caicos Islands","value":"TC"},{"label":"Tuvalu","value":"TV"},{"label":"Uganda","value":"UG"},{"label":"Ukraine","value":"UA"},{"label":"United Arab Emirates","value":"AE"},{"label":"United Kingdom of Great Britain and Northern Ireland","value":"GB"},{"label":"United States Minor Outlying Islands","value":"UM"},{"label":"Uruguay","value":"UY"},{"label":"Uzbekistan","value":"UZ"},{"label":"Vanuatu","value":"VU"},{"label":"Venezuela, Bolivarian Republic of","value":"VE"},{"label":"Viet Nam","value":"VN"},{"label":"Virgin Islands, British","value":"VG"},{"label":"Virgin Islands, U.S.","value":"VI"},{"label":"Wallis and Futuna","value":"WF"},{"label":"Western Sahara","value":"EH"},{"label":"Yemen","value":"YE"},{"label":"Zambia","value":"ZM"},{"label":"Zimbabwe","value":"ZW"}],"states":[{"label":"Alabama","value":"AL"},{"label":"Alaska","value":"AK"},{"label":"American Samoa","value":"AS"},{"label":"Arizona","value":"AZ"},{"label":"Arkansas","value":"AR"},{"label":"California","value":"CA"},{"label":"Colorado","value":"CO"},{"label":"Connecticut","value":"CT"},{"label":"Delaware","value":"DE"},{"label":"District Of Columbia","value":"DC"},{"label":"Federated States Of Micronesia","value":"FM"},{"label":"Florida","value":"FL"},{"label":"Georgia","value":"GA"},{"label":"Guam","value":"GU"},{"label":"Hawaii","value":"HI"},{"label":"Idaho","value":"ID"},{"label":"Illinois","value":"IL"},{"label":"Indiana","value":"IN"},{"label":"Iowa","value":"IA"},{"label":"Kansas","value":"KS"},{"label":"Kentucky","value":"KY"},{"label":"Louisiana","value":"LA"},{"label":"Maine","value":"ME"},{"label":"Marshall Islands","value":"MH"},{"label":"Maryland","value":"MD"},{"label":"Massachusetts","value":"MA"},{"label":"Michigan","value":"MI"},{"label":"Minnesota","value":"MN"},{"label":"Mississippi","value":"MS"},{"label":"Missouri","value":"MO"},{"label":"Montana","value":"MT"},{"label":"Nebraska","value":"NE"},{"label":"Nevada","value":"NV"},{"label":"New Hampshire","value":"NH"},{"label":"New Jersey","value":"NJ"},{"label":"New Mexico","value":"NM"},{"label":"New York","value":"NY"},{"label":"North Carolina","value":"NC"},{"label":"North Dakota","value":"ND"},{"label":"Northern Mariana Islands","value":"MP"},{"label":"Ohio","value":"OH"},{"label":"Oklahoma","value":"OK"},{"label":"Oregon","value":"OR"},{"label":"Palau","value":"PW"},{"label":"Pennsylvania","value":"PA"},{"label":"Puerto Rico","value":"PR"},{"label":"Rhode Island","value":"RI"},{"label":"South Carolina","value":"SC"},{"label":"South Dakota","value":"SD"},{"label":"Tennessee","value":"TN"},{"label":"Texas","value":"TX"},{"label":"Utah","value":"UT"},{"label":"Vermont","value":"VT"},{"label":"Virgin Islands","value":"VI"},{"label":"Virginia","value":"VA"},{"label":"Washington","value":"WA"},{"label":"West Virginia","value":"WV"},{"label":"Wisconsin","value":"WI"},{"label":"Wyoming","value":"WY"}]},"_id":"bcc63c25a38e0690817d5b55ecbcd059b3117bda55bd473b3a9e29fda710c918"},"expires":1754225913563,"lastModified":1754225612607}},"sites-api":{"{\"hierarchy\":\"HamburgerNav1\"}":{"data":{"children":[{"_id":"link-E32GG3Z4ZFG65FR7ULUJNHWU5E","children":[],"display_name":"Listen On Demand","node_type":"link","url":"https://ondemand.kmhd.org/"},{"_id":"/playlist","children":[],"name":"Playlist","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/live-events","children":[],"name":"Live Events","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/schedule","children":[],"name":"Broadcast Schedule","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"link-K2VOWVAJ2VFQRG7HZTFO2CPFXA","children":[],"display_name":"Jazz Notes Newsletter","node_type":"link","url":"/newsletter"}],"_id":"/"},"expires":1754225912610,"lastModified":1754225612545},"{\"hierarchy\":\"HamburgerNav3\"}":{"data":{"children":[{"_id":"/support","children":[],"name":"Support KMHD","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/about-us","children":[],"name":"About Us","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"link-D6EVG5RGB10N34R24X3BZY4YUC","children":[],"display_name":"Contact Us","node_type":"link","url":"https://opb2.my.site.com/KMHDHelp/s/contactsupport"},{"_id":"link-HC6HEXC3WN1EF5UQQ23RKYBE8C","children":[],"display_name":"Help","node_type":"link","url":"https://opb2.my.site.com/KMHDHelp/s/"}],"_id":"/"},"expires":1754225912640,"lastModified":1754225612546},"{\"hierarchy\":\"Footer_Navigation_1\"}":{"data":{"children":[{"_id":"link-JBXM6FBA6D0Y37848KCT63D5DM","children":[],"display_name":"Help","node_type":"link","url":"https://opb.force.com/KMHDHelp/s/"},{"_id":"link-KAWI7LALKNETJAUWCVQNOICUYY","children":[],"display_name":"Sponsorship","node_type":"link","url":"https://www.opb.org/pdf/KMHD%20Media%20Kit%202024_1725002900751.pdf"}],"_id":"/"},"expires":1754225912738,"lastModified":1754225612614},"{\"hierarchy\":\"Footer_Navigation_2\"}":{"data":{"children":[{"_id":"link-V7HMKXF7PH75NC1XM0AAZHEKJ0","children":[],"display_name":"Manage My Membership","node_type":"link","url":"https://opb2.my.site.com/KMHDHelp/s/manage-my-membership"},{"_id":"link-D6EVG5RGB10N34R24X3BZY4YUC","children":[],"display_name":"Contact Us","node_type":"link","url":"https://opb2.my.site.com/KMHDHelp/s/contactsupport"}],"_id":"/"},"expires":1754225912672,"lastModified":1754225612606},"{\"hierarchy\":\"Footer_Navigation_3\"}":{"data":{"children":[{"_id":"/privacy","children":[],"name":"Privacy Policy","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"link-M9GK11RJ9H40N5QNUNXYF21Q1W","children":[],"display_name":"FCC Public Files","node_type":"link","url":"https://publicfiles.fcc.gov/fm-profile/KMHD"},{"_id":"/fcc-applications","children":[],"name":"FCC Applications","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/terms","children":[],"name":"Terms of Use","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}},{"_id":"/contest-rules","children":[],"name":"Contest Rules","navigation":{"alt_text_override":null},"node_type":"section","site":{"site_url":null},"site_topper":{"site_logo_image":null}}],"_id":"/"},"expires":1754225912828,"lastModified":1754225612631}},"content-api-story-card":{"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/08/01/record-store-rundown/\"}":{"data":{"_id":"WYHH24EDAJEARI5XDHDWVTF2VE","content_elements":[],"description":{"basic":"In KMHD's profiling of the record stores of Portland, we start with one of the gems of the Southeast side."},"first_publish_date":"2025-08-01T20:02:24.931Z","headlines":{"basic":"Record Store Rundown: Clinton Street Record & Stereo"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-08-01T20:02:25.086Z","promo_items":{"hero":{"alt_text":"Jared White on left stands in front of a record next to the neon-backlit window of Clinton Street Record & Stereo, Anthony Dean-Harris is positioned in front of the window","caption":"","credits":{"affiliation":[]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GXYC6KZT55GRLIDDWUSYTS623E.jpeg?auth=158282f4e9d9cb072a6a539f73fa7235a12d3ecd8bb4f4b7a70b1155bd51b17b&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GXYC6KZT55GRLIDDWUSYTS623E.jpeg?auth=158282f4e9d9cb072a6a539f73fa7235a12d3ecd8bb4f4b7a70b1155bd51b17b&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GXYC6KZT55GRLIDDWUSYTS623E.jpeg?auth=158282f4e9d9cb072a6a539f73fa7235a12d3ecd8bb4f4b7a70b1155bd51b17b&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GXYC6KZT55GRLIDDWUSYTS623E.jpeg?auth=158282f4e9d9cb072a6a539f73fa7235a12d3ecd8bb4f4b7a70b1155bd51b17b&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/GXYC6KZT55GRLIDDWUSYTS623E.jpeg?auth=158282f4e9d9cb072a6a539f73fa7235a12d3ecd8bb4f4b7a70b1155bd51b17b&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/GXYC6KZT55GRLIDDWUSYTS623E.jpeg","width":1440}},"subheadlines":{"basic":"KMHD explores one of the gems of Southeast Portland"},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"music","text":"Music"},{"slug":"neighborhood","text":"Neighborhood"},{"slug":"portland","text":"Portland"}]},"type":"story","website_url":"/article/2025/08/01/record-store-rundown/"},"expires":1754225732667,"lastModified":1754225612549},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/03/20/kmhd-jazz-without-boundaries-playlist/\"}":{"data":{"_id":"YHWLVQBTJVGGJBPBFXYES74TPE","content_elements":[],"description":{"basic":"Seven years of playlists curated by KMHD"},"first_publish_date":"2025-03-20T18:02:31.063Z","headlines":{"basic":"The Ultimate Jazz Playlist"},"label":{},"last_updated_date":"2025-03-20T18:02:31.181Z","promo_items":{"basic":{"alt_text":"New York style KMHD illustration: 'KMHD is Jazz Without Boundaries.'","caption":"New York style KMHD illustration.","credits":{"affiliation":[],"by":[{"name":"Chris Jones","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IUTDWLPUPFC6LPPANXNY374ZYA.png?auth=9ba133b468e8ecd688bcf6a3c6d8a10c163dd8070afb28c7d901fec6c233bcb3&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IUTDWLPUPFC6LPPANXNY374ZYA.png?auth=9ba133b468e8ecd688bcf6a3c6d8a10c163dd8070afb28c7d901fec6c233bcb3&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IUTDWLPUPFC6LPPANXNY374ZYA.png?auth=9ba133b468e8ecd688bcf6a3c6d8a10c163dd8070afb28c7d901fec6c233bcb3&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IUTDWLPUPFC6LPPANXNY374ZYA.png?auth=9ba133b468e8ecd688bcf6a3c6d8a10c163dd8070afb28c7d901fec6c233bcb3&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/IUTDWLPUPFC6LPPANXNY374ZYA.png?auth=9ba133b468e8ecd688bcf6a3c6d8a10c163dd8070afb28c7d901fec6c233bcb3&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/IUTDWLPUPFC6LPPANXNY374ZYA.png","width":1440}},"subheadlines":{"basic":"Seven years of playlists curated by KMHD"},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"music","text":"Music"},{"slug":"jazz","text":"Jazz"},{"slug":"playlist","text":"Playlist"}]},"type":"story","website_url":"/article/2025/03/20/kmhd-jazz-without-boundaries-playlist/"},"expires":1754225732670,"lastModified":1754225612550},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/07/21/in-conversation-with-sml/\"}":{"data":{"_id":"DFL35C66UJC3ZCYNTU7MN36LSE","content_elements":[],"description":{"basic":"Ahead of the performance of Los Angeles-based band SML at Pickathon, bassist Anna Butterss and saxophonist Josh Johnson share their experiences playing with guitarist Jeff Parker’s ETA 4tet, collaborating with drummer/producer Makaya McCraven, and the origins and process of SML."},"first_publish_date":"2025-07-21T17:10:56.844Z","headlines":{"basic":"In Conversation with SML"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-07-21T17:10:56.955Z","promo_items":{"audio":{"embed":{"config":{"duration":1200510,"origin":"spreaker"},"url":"https://api.spreaker.com/v2/episodes/67056831/play.mp3"}},"hero":{"alt_text":"A greyscale photo of SML with Anna Butterss and Josh Johnson in color","caption":"","credits":{"affiliation":[]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XOR2PWSML5GATEG4OWZOID7T4A.jpeg?auth=6cd5f3cda560d441cbbbf2a13b3e671115b2580d4a3638e6675a8f7fd001b8bf&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XOR2PWSML5GATEG4OWZOID7T4A.jpeg?auth=6cd5f3cda560d441cbbbf2a13b3e671115b2580d4a3638e6675a8f7fd001b8bf&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XOR2PWSML5GATEG4OWZOID7T4A.jpeg?auth=6cd5f3cda560d441cbbbf2a13b3e671115b2580d4a3638e6675a8f7fd001b8bf&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XOR2PWSML5GATEG4OWZOID7T4A.jpeg?auth=6cd5f3cda560d441cbbbf2a13b3e671115b2580d4a3638e6675a8f7fd001b8bf&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/XOR2PWSML5GATEG4OWZOID7T4A.jpeg?auth=6cd5f3cda560d441cbbbf2a13b3e671115b2580d4a3638e6675a8f7fd001b8bf&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/XOR2PWSML5GATEG4OWZOID7T4A.jpeg","width":1440}},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"jazz","text":"Jazz"},{"slug":"in-conversation","text":"In Conversation"},{"slug":"podcast","text":"Podcast"},{"slug":"pickathon","text":"Pickathon"}]},"type":"story","website_url":"/article/2025/07/21/in-conversation-with-sml/"},"expires":1754225732670,"lastModified":1754225612551},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/07/14/in-conversation-with-josh-johnson/\"}":{"data":{"_id":"AMAYK5LL6FDOJGF6WSDZFC2BBQ","content_elements":[],"description":{"basic":"Alex Newman sat down with the accomplished saxophone player to talk about his journey from his musical upbringing to his winding path from Chicago to Los Angeles and all the collaborators he found along the way."},"first_publish_date":"2025-07-14T14:10:54.156Z","headlines":{"basic":"In Conversation with Josh Johnson"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-07-14T14:10:54.253Z","promo_items":{"audio":{"embed":{"config":{"duration":2263330,"origin":"spreaker"},"url":"https://api.spreaker.com/v2/episodes/66974065/play.mp3"}},"hero":{"alt_text":"A black and white photo of saxophonist Josh Johnson with arms crossed standing in front of a cinder block wall.","caption":"Saxophonist Josh Johnson","credits":{"affiliation":[],"by":[{"name":"Robbie Jeffers","type":"author"}]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TJPKX7TMNJAG3P2YIEFFFON5HI.jpg?auth=87ce3cf574e720e8ee787663aac17d61b192245ac33ef8aa0db2f40f9ece69ff&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TJPKX7TMNJAG3P2YIEFFFON5HI.jpg?auth=87ce3cf574e720e8ee787663aac17d61b192245ac33ef8aa0db2f40f9ece69ff&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TJPKX7TMNJAG3P2YIEFFFON5HI.jpg?auth=87ce3cf574e720e8ee787663aac17d61b192245ac33ef8aa0db2f40f9ece69ff&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TJPKX7TMNJAG3P2YIEFFFON5HI.jpg?auth=87ce3cf574e720e8ee787663aac17d61b192245ac33ef8aa0db2f40f9ece69ff&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/TJPKX7TMNJAG3P2YIEFFFON5HI.jpg?auth=87ce3cf574e720e8ee787663aac17d61b192245ac33ef8aa0db2f40f9ece69ff&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/TJPKX7TMNJAG3P2YIEFFFON5HI.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"music","text":"Music"},{"slug":"podcast","text":"Podcast"},{"slug":"in-conversation","text":"In Conversation"},{"slug":"pickathon","text":"Pickathon"}]},"type":"story","website_url":"/article/2025/07/14/in-conversation-with-josh-johnson/"},"expires":1754225732696,"lastModified":1754225612559},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/06/10/portland-summer-jazz-festivals-season-preview/\"}":{"data":{"_id":"PKHJNPRZTFCDVELTZFBLW36DF4","content_elements":[],"description":{"basic":"A rundown of all the must-see jazz festivals to soak up the long Portland summer days."},"first_publish_date":"2025-06-10T21:19:29.322Z","headlines":{"basic":"Portland Summer Jazz Festivals Season Preview"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-06-10T21:19:29.587Z","promo_items":{"hero":{"caption":"","credits":{"affiliation":[],"by":[{"image":{"url":""},"name":"Bryson Wallace","slug":"bryson-wallace","type":"author","url":""}]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VN3YTU52NZCB5DWA32NZT5KLOQ.jpeg?auth=d3379059e098f7a98738771644f875df957f2e02a85af4d142fa226c05d71566&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VN3YTU52NZCB5DWA32NZT5KLOQ.jpeg?auth=d3379059e098f7a98738771644f875df957f2e02a85af4d142fa226c05d71566&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VN3YTU52NZCB5DWA32NZT5KLOQ.jpeg?auth=d3379059e098f7a98738771644f875df957f2e02a85af4d142fa226c05d71566&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VN3YTU52NZCB5DWA32NZT5KLOQ.jpeg?auth=d3379059e098f7a98738771644f875df957f2e02a85af4d142fa226c05d71566&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/VN3YTU52NZCB5DWA32NZT5KLOQ.jpeg?auth=d3379059e098f7a98738771644f875df957f2e02a85af4d142fa226c05d71566&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/VN3YTU52NZCB5DWA32NZT5KLOQ.jpeg","width":1440}},"subheadlines":{"basic":"A rundown of all the must-see jazz festivals to soak up the long Portland summer days."},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"music","text":"Music"},{"slug":"festival","text":"Festival"},{"slug":"summer","text":"Summer"},{"slug":"portland","text":"Portland"}]},"type":"story","website_url":"/article/2025/06/10/portland-summer-jazz-festivals-season-preview/"},"expires":1754225732647,"lastModified":1754225612572},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/06/09/in-conversation-with-anna-butterss/\"}":{"data":{"_id":"MRA6VQBUUJHIHNYUVI5STPYSNU","content_elements":[],"description":{"basic":"Alex Newman goes in depth with the bassist about their compositions, musical compatriots, and their latest albums– <em>Activities</em> and <em>Mighty Vertebrate</em>."},"first_publish_date":"2025-06-09T18:17:45.743Z","headlines":{"basic":"In Conversation with Anna Butterss"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-06-09T18:17:46.114Z","promo_items":{"audio":{"embed":{"config":{"duration":1810810,"origin":"spreaker"},"url":"https://api.spreaker.com/v2/episodes/66474106/play.mp3"}},"hero":{"caption":"Los Angeles-based bassist Anna Butterss","credits":{"affiliation":[],"by":[{"name":"courtesy the artist","type":"author"}]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RI2F3STT4JAODL52QCM776P6C4.jpg?auth=1ef56e5bd0d65597e3a8230e4830d5bef54fa93f0f8a08f5b22418b15e4a3451&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RI2F3STT4JAODL52QCM776P6C4.jpg?auth=1ef56e5bd0d65597e3a8230e4830d5bef54fa93f0f8a08f5b22418b15e4a3451&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RI2F3STT4JAODL52QCM776P6C4.jpg?auth=1ef56e5bd0d65597e3a8230e4830d5bef54fa93f0f8a08f5b22418b15e4a3451&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RI2F3STT4JAODL52QCM776P6C4.jpg?auth=1ef56e5bd0d65597e3a8230e4830d5bef54fa93f0f8a08f5b22418b15e4a3451&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RI2F3STT4JAODL52QCM776P6C4.jpg?auth=1ef56e5bd0d65597e3a8230e4830d5bef54fa93f0f8a08f5b22418b15e4a3451&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/RI2F3STT4JAODL52QCM776P6C4.jpg","width":1440}},"subheadlines":{"basic":"Alex Newman goes in depth with the bassist about their compositions, musical compatriots, and their latest albums– <em>Activities</em> and <em>Mighty Vertebrate</em>."},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"music","text":"Music"},{"slug":"podcast","text":"Podcast"}]},"type":"story","website_url":"/article/2025/06/09/in-conversation-with-anna-butterss/"},"expires":1754225732671,"lastModified":1754225612574},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/07/07/in-conversation-with-jimetta-rose/\"}":{"data":{"_id":"LQ2JJ7675BBHTGAGXVDI4OOJLU","content_elements":[],"description":{"basic":"Ahead of her appearance at Pickathon with the choir, the vocalist/arranger welcomes us into her home to share how her upbringing in Los Angeles—singing in church and school choirs—has come full circle in this expansive new musical chapter."},"first_publish_date":"2025-07-07T16:09:30.756Z","headlines":{"basic":"In Conversation with Jimetta Rose"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-07-07T17:44:04.241Z","promo_items":{"audio":{"embed":{"config":{"duration":2605190,"origin":"spreaker"},"url":"https://api.spreaker.com/v2/episodes/66853030/play.mp3"}},"hero":{"caption":"Jimetta Rose and Voices of Creation","credits":{"affiliation":[],"by":[{"name":"courtesy the artist","type":"author"}]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WGMOYWYIYNGIZHV7YXE423TKGU.jpg?auth=0032c7fa812a51f6380358ac0f9a4ffe0e3b523405827fffbfc2f8310fffe181&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WGMOYWYIYNGIZHV7YXE423TKGU.jpg?auth=0032c7fa812a51f6380358ac0f9a4ffe0e3b523405827fffbfc2f8310fffe181&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WGMOYWYIYNGIZHV7YXE423TKGU.jpg?auth=0032c7fa812a51f6380358ac0f9a4ffe0e3b523405827fffbfc2f8310fffe181&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WGMOYWYIYNGIZHV7YXE423TKGU.jpg?auth=0032c7fa812a51f6380358ac0f9a4ffe0e3b523405827fffbfc2f8310fffe181&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WGMOYWYIYNGIZHV7YXE423TKGU.jpg?auth=0032c7fa812a51f6380358ac0f9a4ffe0e3b523405827fffbfc2f8310fffe181&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WGMOYWYIYNGIZHV7YXE423TKGU.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"music","text":"Music"},{"slug":"podcast","text":"Podcast"},{"slug":"pickathon","text":"Pickathon"},{"slug":"jazz","text":"Jazz"},{"slug":"in-conversation","text":"In Conversation"}]},"type":"story","website_url":"/article/2025/07/07/in-conversation-with-jimetta-rose/"},"expires":1754225732667,"lastModified":1754225612584},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/07/02/in-conversation-with-esperanza-spalding/\"}":{"data":{"_id":"3DTFVMWMFFCEBMJTZMJL2XNV7Q","content_elements":[],"description":{"basic":"On the summer solstice, esperanza spalding came by KMHD to talk about Prismid Sanctuary, her new fundraising initiative and her approach to her work co-running a non-profit, “a place in Portland, OR, for Indigenous, Black & all POC artists and cultural workers to convene, rest, and heal.”\n"},"first_publish_date":"2025-07-02T17:58:17.132Z","headlines":{"basic":"In Conversation with esperanza spalding"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-07-07T17:45:53.819Z","promo_items":{"audio":{"embed":{"config":{"duration":1687660,"origin":"spreaker"},"url":"https://api.spreaker.com/v2/episodes/66835808/play.mp3"}},"hero":{"caption":"","credits":{"affiliation":[]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RULETFUIXNFTHISRLMISB2ZW3E.jpeg?auth=65971e1e3409d1ce6b8d5ae7dd340ff7fc8f95fb1582d9c0b689d98a1cbfe8e1&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RULETFUIXNFTHISRLMISB2ZW3E.jpeg?auth=65971e1e3409d1ce6b8d5ae7dd340ff7fc8f95fb1582d9c0b689d98a1cbfe8e1&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RULETFUIXNFTHISRLMISB2ZW3E.jpeg?auth=65971e1e3409d1ce6b8d5ae7dd340ff7fc8f95fb1582d9c0b689d98a1cbfe8e1&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RULETFUIXNFTHISRLMISB2ZW3E.jpeg?auth=65971e1e3409d1ce6b8d5ae7dd340ff7fc8f95fb1582d9c0b689d98a1cbfe8e1&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/RULETFUIXNFTHISRLMISB2ZW3E.jpeg?auth=65971e1e3409d1ce6b8d5ae7dd340ff7fc8f95fb1582d9c0b689d98a1cbfe8e1&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/RULETFUIXNFTHISRLMISB2ZW3E.jpeg","width":1440}},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"in-conversation","text":"In Conversation"},{"slug":"jazz","text":"Jazz"},{"slug":"podcast","text":"Podcast"}]},"type":"story","website_url":"/article/2025/07/02/in-conversation-with-esperanza-spalding/"},"expires":1754225732669,"lastModified":1754225612582},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2024/11/01/records-we-love-dave-pike-set-live-at-philharmonie-nicole-damato/\"}":{"data":{"_id":"KTKFAKBSAJFHRFSAE3AFFX5AQQ","content_elements":[],"description":{"basic":"Dave Pike Set’s 1971 fusion fête, 'Live at the Philharmonie', oozes the sound of joy and positivity, as well as thought-provoking introspection that provides the space and creative freedom for lengthy, take-flight, psychedelic, live jazz improvisation."},"first_publish_date":"2024-11-01T20:49:02.826Z","headlines":{"basic":"Records We Love: The Dave Pike Set‘s 'Live at the Philharmonie'"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2024-12-14T01:22:03.409Z","promo_items":{"basic":{"caption":"The Dave Pike Set's 'Live at the Philharmonie' is a Record Nicole D'amato Loves","credits":{"affiliation":[],"by":[{"image":{"url":""},"name":"Bryson Wallace","slug":"bryson-wallace","type":"author","url":""}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg","width":1440},"hero":{"caption":"The Dave Pike Set's 'Live at the Philharmonie' is a Record Nicole D'amato Loves","credits":{"affiliation":[],"by":[{"image":{"url":""},"name":"Bryson Wallace","slug":"bryson-wallace","type":"author","url":""}]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg?auth=48659e2cd6cba15bd1814684d3934bd4d6e02b556fba2abc94ffa556b77154ca&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/V7RTE5A6NRDM5PHNBH32XA2P7I.jpeg","width":1440}},"subheadlines":{"basic":"This vibraphone-led 1971 fusion fête bursts with brilliance"},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"records-we-love","text":"Records we love"},{"slug":"jazz","text":"Jazz"},{"slug":"music","text":"Music"}]},"type":"story","website_url":"/article/2024/11/01/records-we-love-dave-pike-set-live-at-philharmonie-nicole-damato/"},"expires":1754225732696,"lastModified":1754225612567},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2024/06/10/records-we-love-pharoah-sanders-promises-bryson-wallace/\"}":{"data":{"_id":"2YG6KLPYZNDPBO3X7NZ3F63CTY","content_elements":[],"description":{"basic":"An exceptional album worthy of everyone’s ears and REM cycles. It seems to be designed for one sole purpose: transcendence."},"first_publish_date":"2024-06-10T17:03:35.433Z","headlines":{"basic":"Records We Love: ‘Promises’ by Floating Points, Pharoah Sanders & The London Symphony Orchestra"},"label":{},"last_updated_date":"2024-12-14T00:56:59.618Z","promo_items":{"basic":{"credits":{"affiliation":[{"name":"Bryson Wallace"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WMHM4D6TM5F3XJEW4ZSIZ4OY4M.png?auth=c4888438f30c0543ebf2e0c81951820ec8f7f4455696b1fbbf3246d2cfc95554&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WMHM4D6TM5F3XJEW4ZSIZ4OY4M.png?auth=c4888438f30c0543ebf2e0c81951820ec8f7f4455696b1fbbf3246d2cfc95554&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WMHM4D6TM5F3XJEW4ZSIZ4OY4M.png?auth=c4888438f30c0543ebf2e0c81951820ec8f7f4455696b1fbbf3246d2cfc95554&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WMHM4D6TM5F3XJEW4ZSIZ4OY4M.png?auth=c4888438f30c0543ebf2e0c81951820ec8f7f4455696b1fbbf3246d2cfc95554&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/WMHM4D6TM5F3XJEW4ZSIZ4OY4M.png?auth=c4888438f30c0543ebf2e0c81951820ec8f7f4455696b1fbbf3246d2cfc95554&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/WMHM4D6TM5F3XJEW4ZSIZ4OY4M.png","width":1440}},"subheadlines":{"basic":"Hosts from KMHD dig into their collections, pull out a gem and tell us why the album is essential."},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"},{"_id":"/culture","additional_properties":{"original":{"site":{"site_url":null}}},"name":"Arts & Culture","path":"/culture","type":"section"}],"tags":[{"slug":"jazz","text":"Jazz"},{"slug":"records-we-love","text":"Records we love"},{"slug":"music","text":"Music"}]},"type":"story","website_url":"/article/2024/06/10/records-we-love-pharoah-sanders-promises-bryson-wallace/"},"expires":1754225732695,"lastModified":1754225612585},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2023/09/14/records-we-love-jazz-orlando-cachaito-bri-drennon-kmhd/\"}":{"data":{"_id":"LAE3BKPIHRFSZIOJWJR6ON7YWE","content_elements":[],"description":{"basic":"Hosts from KMHD dig into their collections, pull out a gem, and tell us why the album is essential."},"first_publish_date":"2023-09-14T22:00:03.989Z","headlines":{"basic":"Records we love: ‘Cachaito,’ by Orlando ‘Cachaito’ Lopez (World Circuit, 2001)"},"label":{},"last_updated_date":"2024-12-16T19:44:50.788Z","promo_items":{"basic":{"caption":"Records we love: ‘Cachaito,’ by Orlando ‘Cachaito’ Lopez","credits":{"affiliation":[{"name":"KMHD"}],"by":[{"name":"Bryson Wallace","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BLDHDFUIIFGANH5JTKQO6IIWYY.png?auth=33a009556a7b84854d6e1d0c059edcb3768a0f03e7536599ca50f9b93506f81a&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BLDHDFUIIFGANH5JTKQO6IIWYY.png?auth=33a009556a7b84854d6e1d0c059edcb3768a0f03e7536599ca50f9b93506f81a&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BLDHDFUIIFGANH5JTKQO6IIWYY.png?auth=33a009556a7b84854d6e1d0c059edcb3768a0f03e7536599ca50f9b93506f81a&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BLDHDFUIIFGANH5JTKQO6IIWYY.png?auth=33a009556a7b84854d6e1d0c059edcb3768a0f03e7536599ca50f9b93506f81a&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/BLDHDFUIIFGANH5JTKQO6IIWYY.png?auth=33a009556a7b84854d6e1d0c059edcb3768a0f03e7536599ca50f9b93506f81a&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/BLDHDFUIIFGANH5JTKQO6IIWYY.png","width":1440}},"subheadlines":{"basic":"Hosts from KMHD dig into their collections, pull out a gem, and tell us why the album is essential."},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"},{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"jazz","text":"Jazz"},{"slug":"music","text":"Music"},{"slug":"portland","text":"Portland"},{"slug":"oregon","text":"Oregon"},{"slug":"arts-and-culture","text":"Arts And Culture"},{"slug":"records-we-love","text":"Records we love"}]},"type":"story","website_url":"/article/2023/09/14/records-we-love-jazz-orlando-cachaito-bri-drennon-kmhd/"},"expires":1754225732657,"lastModified":1754225612586},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/03/17/sounds-visual-radio-samm-culley/\"}":{"data":{"_id":"4EES77XYKZDPFK34K2W4YXVYDA","content_elements":[],"description":{"basic":"The bassist for the one-hit wonder band of the 1970s, SKULL SNAPS, talks about the band's lasting legacy."},"first_publish_date":"2025-03-17T17:00:13.104Z","headlines":{"basic":"Sounds Visual Radio: Samm Culley"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-03-17T17:14:38.042Z","promo_items":{"audio":{"embed":{"config":{"duration":394060,"origin":"spreaker"},"url":"https://api.spreaker.com/v2/episodes/64936141/play.mp3"}},"hero":{"caption":"","credits":{"affiliation":[]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NZGGFHBTN5HKHFLG47GRP7PWFM.jpg?auth=34f47b77cd2cc8f6c0dcf2017b3687ed4d7a337205854f12ac6e223ac734a445&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NZGGFHBTN5HKHFLG47GRP7PWFM.jpg?auth=34f47b77cd2cc8f6c0dcf2017b3687ed4d7a337205854f12ac6e223ac734a445&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NZGGFHBTN5HKHFLG47GRP7PWFM.jpg?auth=34f47b77cd2cc8f6c0dcf2017b3687ed4d7a337205854f12ac6e223ac734a445&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NZGGFHBTN5HKHFLG47GRP7PWFM.jpg?auth=34f47b77cd2cc8f6c0dcf2017b3687ed4d7a337205854f12ac6e223ac734a445&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/NZGGFHBTN5HKHFLG47GRP7PWFM.jpg?auth=34f47b77cd2cc8f6c0dcf2017b3687ed4d7a337205854f12ac6e223ac734a445&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/NZGGFHBTN5HKHFLG47GRP7PWFM.jpg","width":1440}},"subheadlines":{"basic":"The bassist for the one-hit wonder band of the 1970s, SKULL SNAPS, talks about the band’s lasting legacy."},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"sounds-visual-radio","text":"Sounds Visual Radio"},{"slug":"podcast","text":"Podcast"},{"slug":"music","text":"Music"}]},"type":"story","website_url":"/article/2025/03/17/sounds-visual-radio-samm-culley/"},"expires":1754225732668,"lastModified":1754225612587},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/03/24/sounds-visual-radio-sonny-rollins/\"}":{"data":{"_id":"MX37F5AN5BGXHAYK4IYTKC3HDU","content_elements":[],"description":{"basic":"The Greatest Living Improviser chats with Justin Meyer about nostalgia for the old days, Coleman Hawkins, and the art of improvisation."},"first_publish_date":"2025-03-24T16:19:02.239Z","headlines":{"basic":"Sounds Visual Radio: Sonny Rollins"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-03-24T16:19:02.329Z","promo_items":{"audio":{"embed":{"config":{"duration":428330,"origin":"spreaker"},"url":"https://api.spreaker.com/v2/episodes/65084225/play.mp3"}},"hero":{"caption":"","credits":{"affiliation":[]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/AFDZISNM7VEVNMM5MZDQ6D3254.jpg?auth=c194ac70e5a125532bd112578e7ef4ce2e8457372ea6f1ca01526732f5257260&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/AFDZISNM7VEVNMM5MZDQ6D3254.jpg?auth=c194ac70e5a125532bd112578e7ef4ce2e8457372ea6f1ca01526732f5257260&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/AFDZISNM7VEVNMM5MZDQ6D3254.jpg?auth=c194ac70e5a125532bd112578e7ef4ce2e8457372ea6f1ca01526732f5257260&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/AFDZISNM7VEVNMM5MZDQ6D3254.jpg?auth=c194ac70e5a125532bd112578e7ef4ce2e8457372ea6f1ca01526732f5257260&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/AFDZISNM7VEVNMM5MZDQ6D3254.jpg?auth=c194ac70e5a125532bd112578e7ef4ce2e8457372ea6f1ca01526732f5257260&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/AFDZISNM7VEVNMM5MZDQ6D3254.jpg","width":1440}},"subheadlines":{"basic":"The Greatest Living Improviser chats with Justin Meyer about nostalgia for the old days, Coleman Hawkins, and the art of improvisation."},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"sounds-visual-radio","text":"Sounds Visual Radio"},{"slug":"music","text":"Music"},{"slug":"podcast","text":"Podcast"}]},"type":"story","website_url":"/article/2025/03/24/sounds-visual-radio-sonny-rollins/"},"expires":1754225732670,"lastModified":1754225612588},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/04/21/sounds-visual-radio-gary-bartz/\"}":{"data":{"_id":"GCMT62HOXNDVVKYJB3DAYC423A","content_elements":[],"description":{"basic":"The pivotal jazz saxophonist talks with Justin Meyer about Charles Mingus’ jazz workshop in NYC, his stint with Miles Davis’ band in the early 70’s, and the formation of Gary’s project NTU Troop."},"first_publish_date":"2025-04-21T19:12:30.443Z","headlines":{"basic":"Sounds Visual Radio: Gary Bartz"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-04-21T19:12:30.604Z","promo_items":{"audio":{"embed":{"config":{"duration":398190,"origin":"spreaker"},"url":"https://api.spreaker.com/v2/episodes/65654821/play.mp3"}},"hero":{"caption":"","credits":{"affiliation":[],"by":[{"image":{"url":""},"name":"Bryson Wallace","slug":"bryson-wallace","type":"author","url":""}]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JPG3VUGHQZABLIGD5HJGPOXT7U.jpg?auth=1186779ec3342055be9211314e841cd0445acd6f5610541db8f6be063494610e&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JPG3VUGHQZABLIGD5HJGPOXT7U.jpg?auth=1186779ec3342055be9211314e841cd0445acd6f5610541db8f6be063494610e&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JPG3VUGHQZABLIGD5HJGPOXT7U.jpg?auth=1186779ec3342055be9211314e841cd0445acd6f5610541db8f6be063494610e&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JPG3VUGHQZABLIGD5HJGPOXT7U.jpg?auth=1186779ec3342055be9211314e841cd0445acd6f5610541db8f6be063494610e&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/JPG3VUGHQZABLIGD5HJGPOXT7U.jpg?auth=1186779ec3342055be9211314e841cd0445acd6f5610541db8f6be063494610e&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/JPG3VUGHQZABLIGD5HJGPOXT7U.jpg","width":1440}},"subheadlines":{"basic":"The pivotal jazz saxophonist talks with Justin Meyer about Charles Mingus’ jazz workshop in NYC, his stint with Miles Davis’ band in the early 70’s, and the formation of Gary’s project NTU Troop."},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"music","text":"Music"},{"slug":"podcast","text":"Podcast"},{"slug":"sounds-visual-radio","text":"Sounds Visual Radio"}]},"type":"story","website_url":"/article/2025/04/21/sounds-visual-radio-gary-bartz/"},"expires":1754225732697,"lastModified":1754225612589},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/kmhd/article/kassa-overall-drummer-album-back-pack-jazz-portland-i-think-im-good/\"}":{"data":{"_id":"CN7KB3SGJJEYPFPPHRSJTYYJC4","content_elements":[],"description":{"basic":"Artist, drummer and backpack jazz producer Kassa Overall's journey has led him from playing at street fairs as a kid to commanding the rhythm section for some of the greatest musicians in the world. In February, that journey led him to Portland, where he performed during the <a href=\"https://pdxjazz.com/\">PDX Jazz Festival</a> on the same weekend that his second — and most personal — album was released. "},"first_publish_date":"2020-03-28T13:00:00Z","headlines":{"basic":"48 Hours With Backpack Jazz Producer Kassa Overall"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2021-08-13T19:55:25.400Z","promo_items":{"video":{"_id":"3deca2de-1eff-434e-ae26-e443a2d64217","canonical_url":"/video/2021/01/29/kassa-overall-backpack-jazz-producing-in-portland/","duration":282752,"headlines":{"basic":"Kassa Overall: Backpack jazz producing in Portland"},"promo_image":{"height":1080,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-29-2021%2Ft_5971b94f83034ddfaee754beeb0deaf9_name_Kassa_Overall_Youtube_Thumbnail.jpg?auth=cf1161d55b51dc0458d9dcd1c1552ccc3620b951588f7bb10818bcc0292c7b17&width=1440","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-29-2021%2Ft_5971b94f83034ddfaee754beeb0deaf9_name_Kassa_Overall_Youtube_Thumbnail.jpg?auth=cf1161d55b51dc0458d9dcd1c1552ccc3620b951588f7bb10818bcc0292c7b17&width=150","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-29-2021%2Ft_5971b94f83034ddfaee754beeb0deaf9_name_Kassa_Overall_Youtube_Thumbnail.jpg?auth=cf1161d55b51dc0458d9dcd1c1552ccc3620b951588f7bb10818bcc0292c7b17&width=1023","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-29-2021%2Ft_5971b94f83034ddfaee754beeb0deaf9_name_Kassa_Overall_Youtube_Thumbnail.jpg?auth=cf1161d55b51dc0458d9dcd1c1552ccc3620b951588f7bb10818bcc0292c7b17&width=1200","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F01-29-2021%2Ft_5971b94f83034ddfaee754beeb0deaf9_name_Kassa_Overall_Youtube_Thumbnail.jpg?auth=cf1161d55b51dc0458d9dcd1c1552ccc3620b951588f7bb10818bcc0292c7b17&width=767"},"type":"image","url":"https://d3ac64bsgpdzxx.cloudfront.net/01-29-2021/t_5971b94f83034ddfaee754beeb0deaf9_name_Kassa_Overall_Youtube_Thumbnail.jpg","width":1920},"short_url":"/video/2021/01/29/kassa-overall-backpack-jazz-producing-in-portland/","streams":[{"bitrate":160,"filesize":13111308,"height":180,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/mobile.m3u8","width":320},{"bitrate":300,"filesize":18297288,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/mobile.m3u8","width":640},{"bitrate":600,"filesize":29056528,"height":360,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/mobile.m3u8","width":640},{"bitrate":1200,"filesize":51072644,"height":480,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/master.m3u8","width":854},{"bitrate":4500,"filesize":170937120,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/hd.m3u8","width":1920},{"bitrate":5400,"filesize":197680308,"height":1080,"stream_type":"ts","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/hlsv4_master.m3u8","width":1920},{"bitrate":160,"filesize":10447438,"height":180,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/file_320x180-160-v3.mp4","width":320},{"bitrate":600,"filesize":26065686,"height":360,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/file_640x360-600-v3.mp4","width":640},{"bitrate":1200,"filesize":47367280,"height":480,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/file_854x480-1200-v3_1.mp4","width":854},{"bitrate":2000,"filesize":75742658,"height":720,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/file_1280x720-2000-v3_1.mp4","width":1280},{"bitrate":5400,"filesize":196331332,"height":1080,"stream_type":"mp4","url":"https://d1uc1gyeolaqe3.cloudfront.net/wp-opb/20210129/60149a8dc9e77c00019a8feb/t_d2d726a40a8842fca5837cb99a54069a_name_OPB_NATASNW_Emmy2020_31_15_KassaOverall/file_1920x1080-5400-v4.mp4","width":1920}],"subheadlines":{"basic":"In February 2020, backpack jazz producer Kassa Overall brought his mobile studio to Portland for the PDX Jazz Festival and the release of his second, and most personal, album. \n\nAlong the way, he dished out real talk on his nomadic creative process and why music is his secret for a balanced life."},"subtitles":{},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","name":"News","path":"/news","type":"section"},{"_id":"/videos","name":"Videos","path":"/videos","type":"section"},{"_id":"/culture","name":"Arts & Culture","path":"/culture","type":"section"}],"tags":[{"text":"sample"}]},"type":"video"}},"subheadlines":{"basic":""},"taxonomy":{"primary_section":{},"sections":[{"type":"reference"}],"tags":[{"slug":"music","text":"Music"},{"slug":"arts","text":"Arts"},{"slug":"entertainment","text":"Entertainment"},{"slug":"world","text":"World"}]},"type":"story","website_url":"/kmhd/article/kassa-overall-drummer-album-back-pack-jazz-portland-i-think-im-good/"},"expires":1754225732795,"lastModified":1754225612604},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/video/2022/10/24/theon-cross-putting-respect-on-the-tuba/\"}":{"data":{"_id":"039c1035-6522-4989-948f-c6d5307dc801","content_elements":[],"description":{"basic":"Tubaist Theon Cross talks with KMHD about his original style and bringing joy through his music no matter the genre."},"first_publish_date":"2022-10-24T19:51:45Z","headlines":{"basic":"Theon Cross: Putting respect on the tuba"},"last_updated_date":"2022-10-24T20:04:45.000Z","promo_items":{"basic":{"credits":{},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-24-2022%2Ft_63db6989245942f8b92f03cb8c6f9249_name_theontubathumb2_scaled.jpg?auth=28b769c06c53cfb432755022f3586156575904c41d6687b4bb2cf38921bf2653&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-24-2022%2Ft_63db6989245942f8b92f03cb8c6f9249_name_theontubathumb2_scaled.jpg?auth=28b769c06c53cfb432755022f3586156575904c41d6687b4bb2cf38921bf2653&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-24-2022%2Ft_63db6989245942f8b92f03cb8c6f9249_name_theontubathumb2_scaled.jpg?auth=28b769c06c53cfb432755022f3586156575904c41d6687b4bb2cf38921bf2653&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-24-2022%2Ft_63db6989245942f8b92f03cb8c6f9249_name_theontubathumb2_scaled.jpg?auth=28b769c06c53cfb432755022f3586156575904c41d6687b4bb2cf38921bf2653&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fd3ac64bsgpdzxx.cloudfront.net%2F10-24-2022%2Ft_63db6989245942f8b92f03cb8c6f9249_name_theontubathumb2_scaled.jpg?auth=28b769c06c53cfb432755022f3586156575904c41d6687b4bb2cf38921bf2653&width=767&height=431&smart=true"},"type":"image","url":"https://d3ac64bsgpdzxx.cloudfront.net/10-24-2022/t_63db6989245942f8b92f03cb8c6f9249_name_theontubathumb2_scaled.jpg","width":1440}},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"text":"Live Events"}]},"type":"video","website_url":"/video/2022/10/24/theon-cross-putting-respect-on-the-tuba/"},"expires":1754225732784,"lastModified":1754225612594},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/about-us/\"}":{"data":{"_id":"D2WGQIKB4FBZ3AD4DUAL7VHXSE","content_elements":[],"description":{"basic":"Member-supported radio station KMHD has been a staple of the Portland music scene since 1984, showcasing Jazz Without Boundaries. KMHD is licensed to Mt. Hood Community College in Gresham and operated by Oregon Public Broadcasting."},"first_publish_date":"2020-07-09T18:07:52.161Z","headlines":{"basic":"About KMHD"},"label":{},"last_updated_date":"2020-08-19T22:20:30.541Z","subheadlines":{"basic":""},"taxonomy":{"primary_section":{"name":"About Us"},"sections":[{"_id":"/about-us","additional_properties":{"original":{"site":{"site_url":null}}},"name":"About Us","path":"/about-us","type":"section"}],"tags":[]},"type":"story","website_url":"/about-us/"},"expires":1754225732717,"lastModified":1754225612593},"{\"forceHero\":\"false\",\"websiteUrl\":\"https://www.kmhd.org/article/2025/06/04/jazz/\"}":{"data":{"_id":"EXXODYPMR5DQHJFLUCTHAASDUA","content_elements":[],"description":{"basic":"The new winners of the prestigious Doris Duke Foundation Awards. "},"first_publish_date":"2025-06-04T15:37:44.206Z","headlines":{"basic":"Kassa Overall, Brandee Younger Receive Prestigious Doris Duke Foundation Award"},"label":{"kicker":{"display":true,"text":"Music","url":"https://www.opb.org/tag/music/"}},"last_updated_date":"2025-06-04T15:39:44.498Z","promo_items":{"basic":{"alt_text":"Kassa Overall poses in a burgundy jacket with his index to the temple.","caption":"Kassa Overall, one of six recipients of the 2025 Duke Doris Artist Awards.","credits":{"affiliation":[],"by":[{"name":"Doris Duke Foundation","type":"author"}]},"height":810,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/525DZEZTVJBD5OJSYU6R5336U4.webp?auth=f6c6bc23574c723578fea9e6518b41be8d951a67bedc084b503ac6f52b511c97&width=1440&height=810&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/525DZEZTVJBD5OJSYU6R5336U4.webp?auth=f6c6bc23574c723578fea9e6518b41be8d951a67bedc084b503ac6f52b511c97&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/525DZEZTVJBD5OJSYU6R5336U4.webp?auth=f6c6bc23574c723578fea9e6518b41be8d951a67bedc084b503ac6f52b511c97&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/525DZEZTVJBD5OJSYU6R5336U4.webp?auth=f6c6bc23574c723578fea9e6518b41be8d951a67bedc084b503ac6f52b511c97&width=1200&height=675&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/525DZEZTVJBD5OJSYU6R5336U4.webp?auth=f6c6bc23574c723578fea9e6518b41be8d951a67bedc084b503ac6f52b511c97&width=767&height=431&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/525DZEZTVJBD5OJSYU6R5336U4.webp","width":1440},"hero":{"caption":"Doris Duke 2025 fellows Brandee Younger & Kassa Overall","credits":{"affiliation":[]},"height":691,"resized_urls":{"large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MOMK4X7NDJH4PHY3CKLKG6MCGY.jpg?auth=d3b861771d408743b41b11b68c6efb24716abd77f36cb3b0fe7c2a97166f291d&width=1440&height=691&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MOMK4X7NDJH4PHY3CKLKG6MCGY.jpg?auth=d3b861771d408743b41b11b68c6efb24716abd77f36cb3b0fe7c2a97166f291d&width=150&height=72&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MOMK4X7NDJH4PHY3CKLKG6MCGY.jpg?auth=d3b861771d408743b41b11b68c6efb24716abd77f36cb3b0fe7c2a97166f291d&width=1023&height=491&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MOMK4X7NDJH4PHY3CKLKG6MCGY.jpg?auth=d3b861771d408743b41b11b68c6efb24716abd77f36cb3b0fe7c2a97166f291d&width=1200&height=576&smart=true","small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/MOMK4X7NDJH4PHY3CKLKG6MCGY.jpg?auth=d3b861771d408743b41b11b68c6efb24716abd77f36cb3b0fe7c2a97166f291d&width=767&height=368&smart=true"},"type":"image","url":"https://cloudfront-us-east-1.images.arcpublishing.com/opb/MOMK4X7NDJH4PHY3CKLKG6MCGY.jpg","width":1440}},"subheadlines":{"basic":"Six total recipients from across the arts spectrum were selected."},"taxonomy":{"primary_section":{"name":"News"},"sections":[{"_id":"/news","additional_properties":{"original":{"site":{"site_url":null}}},"name":"News","path":"/news","type":"section"}],"tags":[{"slug":"jazz","text":"Jazz"},{"slug":"music","text":"Music"},{"slug":"awards","text":"Awards"}]},"type":"story","website_url":"/article/2025/06/04/jazz/"},"expires":1754225732633,"lastModified":1754225612592}},"google-calendar":{"{\"size\":5}":{"data":{"kind":"calendar#events","summary":"KMHD Events Calendar","updated":"2025-08-01T20:29:58.332Z","timeZone":"America/Los_Angeles","accessRole":"reader","nextPageToken":"EiwKKhIoCgYIiP6_xAYSHgocCho3YXN1ZG5uYmRzNXNhaWgzOTFpcXNobDh1ZcA-AQ==","items":[{"id":"65i6gc3mri9321cjp3arl54d4i_20250731T170000Z","status":"confirmed","summary":"Pickathon Music Festival","description":"<p><strong>Pickathon Turns 25: Unveiling an Epic Lineup!</strong></p><p><strong>July 31 - August 3, 2025</strong></p><p><b><a href=\"https://pickathon.com/lineup/\">Check out the full lineup and schedule HERE</a></b></p><p>Get ready for a diverse and exciting lineup where legendary headliners meet a wave of emerging artists you’ll discover and love. Get ready to experience the magic of Pickathon, where music, community, and creativity collide to create something truly extraordinary.</p><p>Leading the charge at our 25th anniversary is <strong>Portugal. The Man</strong>, bringing their signature genre-bending rock (and a Grammy for “Feel It Still”!). We’re also honored to welcome blues legend <strong>Taj Mahal</strong>, whose influence spans generations (and whose trophy case includes multiple Grammys!). Get ready for the captivating indie folk of <strong>Fruit Bats</strong>, the mind-expansive bluegrass sounds of <strong>Greensky Bluegrass</strong>, <strong>Haley Heynderickx’s</strong> soulful guitar, the global grooves of <strong>Reyna Tropical</strong>, the dreamy soundscapes of <strong>Ocie Elliott</strong>, and the funky instrumentals of <strong>Surprise Chef</strong>.</p>","location":"Pendarvis Farm, 16581 SE Hagen Rd, Happy Valley, OR 97086, USA","start":{"date":"2025-07-31"}},{"id":"2s5goebn7sod5c4ko86ig44aoe","status":"confirmed","summary":"Vanport 1948 Brunch Ft. Tahirah Memory and DJ Jumbo","description":"<a href=\"https://www.albertastreetpub.com/music/2025/8/3/vanport-1948-brunch-hosted-by-chef-tim-phillips\">Vanport 1948 Brunch</a>","location":"Alberta Street Pub, 1036 NE Alberta St, Portland, OR 97211, USA","start":{"dateTime":"2025-08-03T11:00:00-07:00","timeZone":"America/Los_Angeles"}},{"id":"319s037qusmqr0r05isjndammk","status":"confirmed","summary":"A Jazzy Brunch","description":"<br>12-3p<br>Studio One Theaters “A Jazzy Brunch\"<br>3945 SE Powell Blvd, Portland, OR 97202<br>ft. Clay Giberson (p), Ed Bennett (b)<br><a href=\"https://calendar.studioonetheater.com/s1live/live-music/\">https://calendar.studioonetheater.com/s1live/live-music/</a>","location":"Studio One Theaters, 3945 SE Powell Blvd, Portland, OR 97202, USA","start":{"dateTime":"2025-08-03T12:00:00-07:00","timeZone":"America/Los_Angeles"}},{"id":"3mvvt027l2cnbffe9h4res1n7l_20250803T230000Z","status":"confirmed","summary":"Hot Lovin' Jazz Babies","description":"<span><span>The Hot Lovin' Jazz Babies are a retro swing jazz band from Portland, OR.</span></span><br><span><span> </span></span><br><span><span>More info available <a href=\"https://www.albertastreetpub.com/music/2023/5/20/hot-lovin-jazz-babies\">here</a></span></span>","location":"Alberta Street Pub, 1036 NE Alberta St, Portland, OR 97211, USA","start":{"dateTime":"2025-08-03T16:00:00-07:00","timeZone":"America/Los_Angeles"}},{"id":"7asudnnbds5saih391iqshl8ue","status":"confirmed","summary":"Ed Bennett Quintet","description":"Paul Mazzio-trpt, Brian Myers-sax, Steve Chirstofferson-piano, Ed Bennett-bass, Tim Rap-drums<br>August 3rd, 5:30pm & 7:30pm shows<br>The 1905, 830 N. Shaver St.(off Mississippi Ave) Portland, Oregon<br>Tickets online @ <a href=\"https://www.the1905jazz.club\">https://www.the1905jazz.club</a><br><br>The fresh sounds of Bennett’s original compositions are be-bop influenced, but unique with<br>twists in their harmonic progressions and unusual forms.<br><br>“Ed Bennett is one of those powerhouse players whose virtuosity<br>inspires the other participants on the bandstand to give it all<br>they've got”. GEORGE FENDEL / JAZZSCENE.<br><br>Ed Bennett has long been considered one of the West Coast's premiere string bass<br>players. Living in Portland, Oregon since 1990, Ed's work has taken him virtually<br>everywhere in the world. He has worked with, toured internationally, or recorded<br>with many legendary jazz figures, including: Dizzy Gillespie, Curtis Fuller, Terell<br>Stafford, Claudio Roditi, Jeremy Pelt, Joe Henderson, Sonny Stitt, Benny Golson,<br>Frank Morgan, Richie Cole, Pete Christlieb, Bud Shank, Charles McPherson,<br>Hadley Caliman, Bobby Watson, Harry Allen, Pete Jolly, Don Abney, Joe Albany,<br>Dave Frishberg, James Williams, Mike Wofford, Pete Malinverni, Bill Mays, Dick<br>Berk, Lawrence Marable, Frank Butler, Gene Stone, Joey Baron, Chuck Redd,<br>Carmen McRae, Jimmy Witherspoon, Anita O'Day, Nancy King, Ernistine<br>Anderson, Marlena Shaw, Karrin Allyson, Mary Stallings, Dee Daniels, Bill<br>Henderson, The Modernaires, Toshiko Akiyoshi-Lew Tabakin Big Band and the<br>Gerald Wilson Orchestra","location":"The 1905, 830 N Shaver St, Portland, OR 97227, USA","start":{"dateTime":"2025-08-03T17:30:00-07:00","timeZone":"America/Los_Angeles"}}],"_id":"194a7ae296ee444ba4f3ba2cafa87d1a1e055468a28414bb511a6982ea780fb5"},"expires":1754225912804,"lastModified":1754225612538}},"manual-story-card":{"{\"description\":\"Stream all your favorite KMHD shows whenever you feel like it. Stream now! \",\"forceHero\":\"false\",\"headline\":\"KMHD On Demand\",\"imageURL\":\"https://ondemand.kmhd.org/s/listen/shows\",\"relativeLinkURL\":\"https://ondemand.kmhd.org/s/listen/shows\"}":{"data":{"type":"story","subtype":"standard","headlines":{"basic":"KMHD On Demand"},"description":{"basic":"Stream all your favorite KMHD shows whenever you feel like it. Stream now! "},"content_elements":[],"website_url":"https://ondemand.kmhd.org/s/listen/shows","promo_items":{"basic":{"type":"image","url":"https://ondemand.kmhd.org/s/listen/shows","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fondemand.kmhd.org%2Fs%2Flisten%2Fshows?auth=91ce6a4e2c8e99c1ddf389b7350eb1716425d9ad39cfe2a25e204944646c0459&width=767&height=431&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fondemand.kmhd.org%2Fs%2Flisten%2Fshows?auth=91ce6a4e2c8e99c1ddf389b7350eb1716425d9ad39cfe2a25e204944646c0459&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fondemand.kmhd.org%2Fs%2Flisten%2Fshows?auth=91ce6a4e2c8e99c1ddf389b7350eb1716425d9ad39cfe2a25e204944646c0459&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fondemand.kmhd.org%2Fs%2Flisten%2Fshows?auth=91ce6a4e2c8e99c1ddf389b7350eb1716425d9ad39cfe2a25e204944646c0459&width=1200&height=675&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fondemand.kmhd.org%2Fs%2Flisten%2Fshows?auth=91ce6a4e2c8e99c1ddf389b7350eb1716425d9ad39cfe2a25e204944646c0459&width=1440&height=810&smart=true"},"width":1440,"height":810}},"_id":"93ce60b061b94ab1ae505a11566f54e58a98456affb4cbfa612bb1212a00470e"},"expires":1754225912719,"lastModified":1754225612558},"{\"description\":\"The 24-hour playlist of every song played on 89.1 KMHD: Jazz without boundaries\",\"forceHero\":\"false\",\"headline\":\"Real-time playlist\",\"imageURL\":\"https://www.kmhd.org/playlist/\",\"relativeLinkURL\":\"https://www.kmhd.org/playlist/\"}":{"data":{"type":"story","subtype":"standard","headlines":{"basic":"Real-time playlist"},"description":{"basic":"The 24-hour playlist of every song played on 89.1 KMHD: Jazz without boundaries"},"content_elements":[],"website_url":"https://www.kmhd.org/playlist/","promo_items":{"basic":{"type":"image","url":"https://www.kmhd.org/playlist/","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fplaylist%2F?auth=5ed3090df11e2ea16391e4422a412b6040dccb31c6b5ab9a05c34cca2e3cf0f6&width=767&height=431&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fplaylist%2F?auth=5ed3090df11e2ea16391e4422a412b6040dccb31c6b5ab9a05c34cca2e3cf0f6&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fplaylist%2F?auth=5ed3090df11e2ea16391e4422a412b6040dccb31c6b5ab9a05c34cca2e3cf0f6&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fplaylist%2F?auth=5ed3090df11e2ea16391e4422a412b6040dccb31c6b5ab9a05c34cca2e3cf0f6&width=1200&height=675&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fplaylist%2F?auth=5ed3090df11e2ea16391e4422a412b6040dccb31c6b5ab9a05c34cca2e3cf0f6&width=1440&height=810&smart=true"},"width":1440,"height":810}},"_id":"5859fdd3b9bd4de2fdfcd775b0906188235baf0cddf7d24a2481af1b51985c70"},"expires":1754225912718,"lastModified":1754225612548},"{\"description\":\"Contact us using the form below with questions about your membership, Rhythm Section support, or thank-you gifts.\",\"forceHero\":\"false\",\"headline\":\"Become a member\",\"imageURL\":\"https://www.kmhd.org/give/\",\"relativeLinkURL\":\"https://www.kmhd.org/give/\"}":{"data":{"type":"story","subtype":"standard","headlines":{"basic":"Become a member"},"description":{"basic":"Contact us using the form below with questions about your membership, Rhythm Section support, or thank-you gifts."},"content_elements":[],"website_url":"https://www.kmhd.org/give/","promo_items":{"basic":{"type":"image","url":"https://www.kmhd.org/give/","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fgive%2F?auth=c663839312313a327690f6f46bd237e3cd8aca50db784b10724b5b9be2dce44c&width=767&height=431&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fgive%2F?auth=c663839312313a327690f6f46bd237e3cd8aca50db784b10724b5b9be2dce44c&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fgive%2F?auth=c663839312313a327690f6f46bd237e3cd8aca50db784b10724b5b9be2dce44c&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fgive%2F?auth=c663839312313a327690f6f46bd237e3cd8aca50db784b10724b5b9be2dce44c&width=1200&height=675&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fgive%2F?auth=c663839312313a327690f6f46bd237e3cd8aca50db784b10724b5b9be2dce44c&width=1440&height=810&smart=true"},"width":1440,"height":810}},"_id":"10255cb5eb83930feb15ab1210cfa41233a673b68d9438edf5d24ae2f0454d85"},"expires":1754225614152,"lastModified":1754225314054},"{\"description\":\"Every program listed on KMHD Jazz Radio 24/7\",\"forceHero\":\"false\",\"headline\":\"Broadcast Schedule\",\"imageURL\":\"https://www.kmhd.org/schedule/\",\"relativeLinkURL\":\"https://www.kmhd.org/schedule/\"}":{"data":{"type":"story","subtype":"standard","headlines":{"basic":"Broadcast Schedule"},"description":{"basic":"Every program listed on KMHD Jazz Radio 24/7"},"content_elements":[],"website_url":"https://www.kmhd.org/schedule/","promo_items":{"basic":{"type":"image","url":"https://www.kmhd.org/schedule/","resized_urls":{"small":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fschedule%2F?auth=793096dea7c268be7733a009ab081827e741ad77db914676097b76c8d54fe804&width=767&height=431&smart=true","lowResBody":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fschedule%2F?auth=793096dea7c268be7733a009ab081827e741ad77db914676097b76c8d54fe804&width=150&height=84&smart=true","medium":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fschedule%2F?auth=793096dea7c268be7733a009ab081827e741ad77db914676097b76c8d54fe804&width=1023&height=575&smart=true","shareable":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fschedule%2F?auth=793096dea7c268be7733a009ab081827e741ad77db914676097b76c8d54fe804&width=1200&height=675&smart=true","large":"https://opb-opb-prod.cdn.arcpublishing.com/resizer/v2/https%3A%2F%2Fwww.kmhd.org%2Fschedule%2F?auth=793096dea7c268be7733a009ab081827e741ad77db914676097b76c8d54fe804&width=1440&height=810&smart=true"},"width":1440,"height":810}},"_id":"4723f9a82320d638368cd6f5a4d4466f9f629295c538abe956c5093b71e8ac1a"},"expires":1754225912739,"lastModified":1754225612629}},"stream-launcher":{"{\"site\":\"kmhd\"}":{"data":{"display_buy":true,"status":true,"affiliate":{"amazon":"oregonpublicb-20","itunes":"10l9HX","arkiv":null},"onNow":{"_id":"684b183a1617713158b01d65","event_id":"684b183a1617713158b01d58","program_id":"521e1eb7336e8e9452000001","date":"2025-08-03","start_utc":"2025-08-03T06:00:00.000Z","end_utc":"2025-08-03T12:00:00.000Z","start_time":"02:00","end_time":"08:00","day":"Sun","program":{"program_id":"521e1eb7336e8e9452000001","parentID":null,"national_program_id":"","isParent":false,"name":"Out of the Night","program_desc":"It's late night listening at its finest. Moody, mellow, cool and blue — jazz that speaks to you late at night. When you're up late, we're here to be your companion.","program_format":"Jazz","program_link":"","twitter":"","facebook":"","station_id":"","ucs":"519298c7e1c876ffebb2149b","hosts":[]},"conflict_edited":1749751866305,"widget_config":{"custom_fields":false,"episode_notes":false,"host_display":false,"host_allow":false,"catalog_number":false,"label":false,"album_art":false,"customized":false},"has_playlist":true,"playlist":"REMOVED","song":{"_duration":338000,"_start_time":"08-03-2025 05:52:54","trackName":"I'm Old Fashioned","artistName":"Tommy Flanagan","collectionName":"Jazz Poet","_id":"688f5bad9c845e52b320dd5e","buy":{"itunes":"https://api.composer.nprstations.org/v1/widget/itunes?artistName=Tommy Flanagan&trackName=I'm Old Fashioned&collectionName=Jazz Poet&at=10l9HX","amazon":"http://www.amazon.com/s/?search-alias=digital-music&keywords=Tommy+Flanagan+I'm+Old+Fashioned&tag=oregonpublicb-20"}}},"nextUp":[{"_id":"6765f0cf48be9d35e63a4ac0","event_id":"6765f0cf48be9d35e63a4aa0","program_id":"521e2162cbfec1677a000001","date":"2025-08-03","start_utc":"Sun Aug 03 2025 08:00:00 GMT-0400 (EDT)","end_utc":"Sun Aug 03 2025 10:00:00 GMT-0400 (EDT)","start_time":"08:00","end_time":"10:00","day":"Sun","program":{"program_id":"521e2162cbfec1677a000001","parentID":null,"national_program_id":"","isParent":false,"name":"Vintage Jazz","program_desc":"Traditional jazz, ragtime, stride, more from the '20s, '30s and '40s with Dr. Phil Brenes.","program_format":"Jazz","program_link":null,"twitter":null,"facebook":null,"station_id":"","ucs":"519298c7e1c876ffebb2149b","hosts":[{"name":"Dr. Phil Brenes"}],"_date_modified":"01-02-2025 12:12:31.558"},"conflict_edited":1734734031398,"widget_config":{"custom_fields":false,"episode_notes":false,"host_display":true,"host_allow":false,"catalog_number":false,"label":false,"album_art":false,"customized":false},"fullstart":"2025-08-03 08:00","fullend":"2025-08-03 10:00","conflicts":["6765f0cf48be9d35e63a4ac0"]}],"ucs":{"_id":"519298c7e1c876ffebb2149b","amazon_affiliate_id":"oregonpublicb-20","arkiv_affiliate_id":"","arkive_affiliate_id":"","enable_sx_reporting":true,"fullname":"KMHD","ignores_dst":false,"itunes_affiliate_id":"10l9HX","legacy":"811","name":"kmhd","parent_station_id":"0","station":"station_kmhd_811","timezone":"PST","websitelink":"http://www.kmhd.org/","_zoneInfo":{"offset":-8,"id":"US_Pacific"}},"settings":{"times":false},"_id":"76cc853271d0f230abd4dca03c29201d33d4bd553fd9998617b6615b8f97b81f"},"expires":1754225732671,"lastModified":1754225612611}}};Fusion.layout="Homepage";Fusion.metas={"description":{"value":"KMHD Home Page","html":false},"pageType":{"value":"homepage","html":false},"keywords":{"value":"KMHD, homepage","html":false},"Title":{"value":"KMHD Home Page","html":true}};Fusion.outputType="default";Fusion.template="page/psiIT51cJKzw3s";Fusion.tree={"collection":"layouts","type":"Homepage","props":{"collection":"layouts","type":"Homepage","id":"Homepage","childProps":[{"collection":"sections","id":0},{"collection":"sections","id":1},{"collection":"sections","id":2},{"collection":"sections","id":3},{"collection":"sections","id":4},{"collection":"sections","id":5},{"collection":"sections","id":6},{"collection":"sections","id":7},{"collection":"sections","id":8},{"collection":"sections","id":9},{"collection":"sections","id":10},{"collection":"sections","id":11},{"collection":"sections","id":12}]},"children":[{"collection":"sections","props":{"collection":"sections","id":0},"children":[{"collection":"features","type":"global/InlineCTA","props":{"collection":"features","type":"global/InlineCTA","id":"f0faCqUyC6POm6","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"show":true,"theme":"default","ctaType":"buttons","fullBleed":true,"noVerticalMargin":true,"newWindow":true,"showButtonIcon":true,"header":"Federal funding for public media has been eliminated. ","description":"Take action to sustain a strong future for Jazz Without Boundaries on KMHD. Make your monthly Rhythm Section contribution now.","contributionFormUrl":"https://www.kmhd.org/give/federal-funding/","buttonLink1Label":"Contribute now","buttonLink1Url":"https://www.kmhd.org/give/federal-funding/"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/banner","props":{"collection":"features","type":"global/banner","id":"f0f966sIPpBU5AF","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"membership","title":"Your support ensures even more great jazz in 2025 and beyond","description":"Join the Rhythm Section now!","link":"https://www.kmhd.org/give/","showBanner":false,"tabletMargin":null},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/header","props":{"collection":"features","type":"global/header","id":"f0fuEfBQPpBU59k","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":1},"children":[{"collection":"features","type":"global/inTheNews","props":{"collection":"features","type":"global/inTheNews","id":"f0fiXqEYPpBU5ep","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"url4":"https://www.kmhd.org/playlist/","text3":"Live Events","text2":"Public Media Funding","dataSource":"curated","text1":"Join Rhythm Section","url1":"https://www.kmhd.org/give/","title":"Jazz Without Boundaries","text4":"Playlist","url2":"https://www.kmhd.org/article/2025/07/01/federal-funding/","url3":"https://www.kmhd.org/live-events/","text5":"Listen On Demand","url5":"https://ondemand.kmhd.org/","text6":"","url6":"","text7":"Jazz Notes Newsletter","url7":"https://www.kmhd.org/newsletter/","text8":"Roy Ayers","url8":"https://www.kmhd.org/article/2025/03/05/roy-ayers-of-everybody-loves-the-sunshine-fame-dies-at-84/","text9":"Records We Love","url9":"https://www.kmhd.org/tag/records-we-love/","url10":"","text10":""},"displayProperties":{},"localEdits":{"items":{}},"variants":{}}},{"collection":"chains","type":"FeatureWithRail","props":{"collection":"chains","type":"FeatureWithRail","id":"c0fIwYcFjrog7PK","customFields":{"largeStoryLocation":"left","featureColumnLength":1,"displayBottomDivider":true},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fs2cEwu6xB4To","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/08/01/record-store-rundown/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showKicker":false,"showTag":true,"tagLabel":"The Scene","linkImage":true,"overrideAssetID":"GXYC6KZT55GRLIDDWUSYTS623E","relatedLink1Label":"","relatedLink1Url":"","relatedLink1Tag":"","relatedLink2Label":"Find out more events happening in the area!","relatedLink2Url":"https://www.kmhd.org/live-events/","relatedLink2Tag":"Events Calendar","showRelatedLinks":true,"relatedLink3Label":"Sign up for Jazz Notes and learn about everything we do!","relatedLink3Url":"https://www.kmhd.org/newsletter/","relatedLink3Tag":"Newsletter","relatedLink4Label":"Special records from the KMHD staff","relatedLink4Url":"https://www.kmhd.org/tag/records-we-love/","relatedLink4Tag":"Playlist","relatedLink5Url":"https://ondemand.kmhd.org/","relatedLink5Label":"Catch up on all your favorite KMHD shows","relatedLink5Tag":"Listen on Demand"},"displayProperties":{},"localEdits":{"O5M3XLOGCJJRROIDR6SEPW6Z4U":{"description":{"basic":"The musical visionary led a multi-racial funk band that produced five Top 10 hits in the late 1960s and early '70s."},"headlines":{"basic":"Sly Stone, visionary frontman of the Family Stone, has died at age 82"}}},"variants":{}}},{"collection":"features","type":"global/ad","props":{"collection":"features","type":"global/ad","id":"f0f8xvgSigXe8Wf","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"renderTablet":true,"renderDesktop":true},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/eventsWidget","props":{"collection":"features","type":"global/eventsWidget","id":"f0fkx7F82Eli8vi","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"title":"Jazz Calendar","buttonText":"More events","numberOfEvents":null,"buttonURL":"https://www.kmhd.org/live-events/"},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"features","type":"global/newsletter","props":{"collection":"features","type":"global/newsletter","id":"f0f9fDm6QpBU5VO","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"newsletter":"SUBSCRIBE_KMHD_JAZZ_NOTES","description":"Sign up to receive the latest jazz news and event listings in your inbox once a month.","buttonText":"Sign Up","header":"Jazz Notes newsletter","ampSignupURL":"https://www.opb.org/newsletters/","pbInternal_cloneId":"f0f0pd3SmHoe2xs"},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":2},"children":[{"collection":"features","type":"global/htmlBox","props":{"collection":"features","type":"global/htmlBox","id":"f0f7q5297O4H2EL","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"wrap0Title":"KMHD's Recommended Record Stores","HTMLContent":"<iframe src=\"https://www.google.com/maps/d/embed?mid=1cNkf7iKTHQM18wMAjeixy5X46zufUSE&ehbc=2E312F&noprof=1\" width=\"1215\" height=\"480\"></iframe>"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/divider","props":{"collection":"features","type":"global/divider","id":"f0f5Jh3Y3Hyvbb","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"thick"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"chains","type":"ThreeColumn","props":{"collection":"chains","type":"ThreeColumn","id":"c0fz7TrkxWIK8XL","customFields":{"firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true,"subheadingText":"Push Play","subheadingLinkURL":"https://ondemand.kmhd.org/s/listen/shows"},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fc0mM5qCFfgs","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"manual-story-card","contentConfigValues":{"headline":"KMHD On Demand","description":"Stream all your favorite KMHD shows whenever you feel like it. Stream now! ","imageURL":"https://ondemand.kmhd.org/s/listen/shows","relativeLinkURL":"https://ondemand.kmhd.org/s/listen/shows"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"RB2QGAJQYVGATJ5AZBHCHNWEMY","showBorderBottom":false,"linkImage":true},"displayProperties":{},"localEdits":{"93ce60b061b94ab1ae505a11566f54e58a98456affb4cbfa612bb1212a00470e":{"headlines":{"basic":"On Demand"},"description":{"basic":"Listen to all your favorite KMHD shows at any time. Stream now!"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fpXXmq84Mz3e","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"manual-story-card","contentConfigValues":{"headline":"Real-time playlist","description":"The 24-hour playlist of every song played on 89.1 KMHD: Jazz without boundaries","imageURL":"https://www.kmhd.org/playlist/","relativeLinkURL":"https://www.kmhd.org/playlist/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"SPYHHJBXJBAPVKNYNK6UQPFNYM","showBorderBottom":false,"linkImage":true},"displayProperties":{},"localEdits":{"5859fdd3b9bd4de2fdfcd775b0906188235baf0cddf7d24a2481af1b51985c70":{"description":{"basic":"Real-time 24-hour playlist of every song played on 89.1 KMHD, jazz without boundaries."},"headlines":{"basic":"Broadcast Playlist"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fTAKxEwSYL6Df","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/03/20/kmhd-jazz-without-boundaries-playlist/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"IUTDWLPUPFC6LPPANXNY374ZYA","linkImage":true},"displayProperties":{},"localEdits":{"YHWLVQBTJVGGJBPBFXYES74TPE":{"description":{"basic":"Seven years of playlists curated by KMHD. A look back as the music always moves forward."},"headlines":{"basic":"The Ultimate Jazz Playlist"}}},"variants":{}}},{"collection":"features","type":"global/divider","props":{"collection":"features","type":"global/divider","id":"f0f6nXLkd5Wtli","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"style":"thick"},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"chains","type":"FeatureWithRail","props":{"collection":"chains","type":"FeatureWithRail","id":"c0fUHUvuxIZo3CC","customFields":{"largeStoryLocation":"left","featureColumnLength":1,"displayBottomDivider":false,"displayTopDivider":true},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fUPkZsZDPa8jS","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/07/21/in-conversation-with-sml/"}},"layout":"vert-large","showDescription":true,"showImage":true,"showCaption":false,"showCredit":true,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"XOR2PWSML5GATEG4OWZOID7T4A","showBorderBottom":true,"showAudio":true,"showTag":true,"tagLabel":"","relatedLink2Url":"https://www.kmhd.org/article/2023/08/18/kassa-overall-hip-hop-jazz-deena-b-clyde-drexler-mix-kmhd/","relatedLink2Tag":"In Conversation","relatedLink2Label":"Check out our 2023 talk with Kassa Overall","showRelatedLinks":true,"relatedLink1Url":"https://www.kmhd.org/schedule/","relatedLink1Tag":"Broadcast Schedule","relatedLink1Label":"Check out all the shows KMHD has 24 hours a day!","relatedLink3Tag":"Newsletter","relatedLink3Label":"Sign up for Jazz Notes and don't miss a thing!","relatedLink3Url":"https://www.kmhd.org/newsletter/","linkImage":true,"relatedLink4Label":"Stream all our past week's shows whenever you like!","relatedLink4Url":"https://ondemand.kmhd.org/s/listen/shows","relatedLink4Tag":"On Demand","relatedLink5Label":"","relatedLink5Url":"","relatedLink5Tag":"","relatedLink6Url":"","relatedLink6Tag":"","relatedLink6Label":"","relatedLink7Url":"","relatedLink7Tag":"","relatedLink7Label":"","overrideImageCaption":""},"displayProperties":{},"localEdits":{"EXXODYPMR5DQHJFLUCTHAASDUA":{"description":{"basic":"Congratulations and much love to the new winners of the prestigious Doris Duke Foundation Awards."}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fWmGPX3nUG5Vh","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/07/14/in-conversation-with-josh-johnson/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showBorderBottom":false,"relatedLink1Label":"KMHD Events Calendar","relatedLink1Url":"https://www.kmhd.org/live-events/","relatedLink2Label":"","showRelatedLinks":true,"relatedLink1Tag":"More","linkImage":true,"overrideAssetID":"TJPKX7TMNJAG3P2YIEFFFON5HI","overrideImageCaption":"","tagLabel":"Tiny Desk","showKicker":false,"showTag":false},"displayProperties":{},"localEdits":{"EXXODYPMR5DQHJFLUCTHAASDUA":{"description":{"basic":"The award comes with an unrestricted cash prize of $525,000 and honor up to six artists working in the fields of contemporary dance, jazz and theater."}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f5ufcaHoFA5EC","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/06/10/portland-summer-jazz-festivals-season-preview/"}},"layout":"vert","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showTag":false,"tagLabel":"The Scene","linkImage":true,"overrideAssetID":"VN3YTU52NZCB5DWA32NZT5KLOQ","overrideImageCaption":""},"displayProperties":{},"localEdits":{"HAAE6B36SBGEPD5LHEAYKDUL5A":{"headlines":{"basic":"Omari Jazz' 'Dream Child' Extended Edition Listening Session "},"description":{"basic":"It was a rainy night in Southeast Portland, like one of many, but the hang with the artist going in depth on his quietly thumping 2020 album was a solid one."}}},"variants":{}}}]},{"collection":"chains","type":"EvenSpacedChain","props":{"collection":"chains","type":"EvenSpacedChain","id":"c0fMan1OQgrf7vG","customFields":{"useEvenSpacing":true,"numberOfColumns":"three","firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true,"displayTopDivider":true,"displayBottomDivider":true,"subheadingText":"KMHD Interviews","subheadingLinkURL":"https://www.kmhd.org/tag/kmhd-interviews/"},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f3Q9mWEA1X6lq","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/06/09/in-conversation-with-anna-butterss/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":true,"tagColor":"blue","allowContentEditable":true,"showAudio":true,"overrideAssetID":"RI2F3STT4JAODL52QCM776P6C4","linkImage":true},"displayProperties":{},"localEdits":{"LITLKWA64BBEPLKBADMS5SAQ4I":{"description":{"basic":"KMHD host Alex Newman takes a deep dive with the New York-based drummer about his winding career."},"headlines":{"basic":"Drummer Jay Mumford"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fykJgETzXX5dq","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/07/07/in-conversation-with-jimetta-rose/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showAudio":true,"linkImage":true,"overrideAssetID":"WGMOYWYIYNGIZHV7YXE423TKGU"},"displayProperties":{},"localEdits":{"M4S7KRE4G5FFPGEZSUT5BXHGH4":{"description":{"basic":"Saxophonist Nicole McCabe talks making music in Portland, her love for Cannonball Adderley and more."},"headlines":{"basic":"Saxophonist Nicole McCabe"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fjEwCGyJhi73m","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/07/02/in-conversation-with-esperanza-spalding/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showAudio":true,"linkImage":true,"overrideAssetID":"RULETFUIXNFTHISRLMISB2ZW3E"},"displayProperties":{},"localEdits":{"3DTFVMWMFFCEBMJTZMJL2XNV7Q":{"headlines":{"basic":"Bassist/non-profit co-director esperanza spalding"},"description":{"basic":"On the summer solstice, esperanza spalding talked with Anthony Dean-Harris about Prismid Sanctuary."}}},"variants":{}}}]},{"collection":"chains","type":"EvenSpacedChain","props":{"collection":"chains","type":"EvenSpacedChain","id":"c0fzK12o2jsq6RP","customFields":{"useEvenSpacing":true,"numberOfColumns":"three","firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true,"subheadingText":"Records We Love","subheadingLinkURL":"https://www.kmhd.org/tag/records-we-love/","displayBottomDivider":true},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fA50WH5qmj1cM","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2024/11/01/records-we-love-dave-pike-set-live-at-philharmonie-nicole-damato/"}},"layout":"vert-compact","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true},"displayProperties":{},"localEdits":{"KTKFAKBSAJFHRFSAE3AFFX5AQQ":{"description":{"basic":"Hosts dig into their records, pull out a gem, and tell us why the album is essential."},"headlines":{"basic":"'Live at the Philharmonie' by Dave Pike"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fvgXaAPwPr6ka","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2024/06/10/records-we-love-pharoah-sanders-promises-bryson-wallace/"}},"layout":"vert-compact","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true},"displayProperties":{},"localEdits":{"2YG6KLPYZNDPBO3X7NZ3F63CTY":{"headlines":{"basic":"‘Promises’ by Floating Points, Pharoah Sanders & The London Symphony Orchestra"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fuQ3OWAa2i42u","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2023/09/14/records-we-love-jazz-orlando-cachaito-bri-drennon-kmhd/"}},"layout":"vert-compact","showDescription":false,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"linkImage":true},"displayProperties":{},"localEdits":{"LAE3BKPIHRFSZIOJWJR6ON7YWE":{"headlines":{"basic":"‘Cachaito' by Orlando ‘Cachaito’ Lopez "},"description":{}}},"variants":{}}}]},{"collection":"chains","type":"ThreeColumn","props":{"collection":"chains","type":"ThreeColumn","id":"c0frT6bqYBLS7XW","customFields":{"firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true,"subheadingText":"Sounds Visual Radio","subheadingLinkURL":"https://www.kmhd.org/tag/sounds-visual-radio/","displayBottomDivider":true},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fLKnKjwYU82bv","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/03/17/sounds-visual-radio-samm-culley/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":true,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"NZGGFHBTN5HKHFLG47GRP7PWFM","showAudio":true,"linkImage":true,"pbInternal_cloneId":"f0fLKnKjwYU82bv","overrideImageCaption":"Episode 14: Samm Culley","tagLabel":""},"displayProperties":{},"localEdits":{"4EES77XYKZDPFK34K2W4YXVYDA":{"headlines":{"basic":"Episode 14: Samm Culley"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fQSJeJhKP66Oi","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/03/24/sounds-visual-radio-sonny-rollins/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":true,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"AFDZISNM7VEVNMM5MZDQ6D3254","showAudio":true,"linkImage":true,"pbInternal_cloneId":"f0fQSJeJhKP66Oi","overrideImageCaption":"Episode 14: Samm Culley","tagLabel":""},"displayProperties":{},"localEdits":{"MX37F5AN5BGXHAYK4IYTKC3HDU":{"headlines":{"basic":"Episode 15: Sonny Rollins"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fM1H9EFYvN8EW","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/04/21/sounds-visual-radio-gary-bartz/"}},"layout":null,"showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"JPG3VUGHQZABLIGD5HJGPOXT7U","showAudio":true},"displayProperties":{},"localEdits":{"GCMT62HOXNDVVKYJB3DAYC423A":{"headlines":{"basic":"Episode 16: Gary Bartz"},"description":{"basic":"The pivotal jazz saxophonist talks about Charles Mingus’ jazz workshop in NYC, his stint with Miles Davis’ band in the early 70’s, and the formation of NTU Troop."}}},"variants":{}}}]},{"collection":"chains","type":"triptych","props":{"collection":"chains","type":"triptych","id":"c0f9nYvWEMFBtS","customFields":{},"displayProperties":{}},"children":[{"collection":"features","type":"global/htmlBox","props":{"collection":"features","type":"global/htmlBox","id":"f0fNF8L24reC3l","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"wrap0Title":"<a href=https://www.youtube.com/@kmhd8898>Subscribe to the KMHD YouTube channel</a> ","HTMLContent":"<iframe width=\"1215\" height=\"650\" src=\"https://www.youtube.com/embed/iN8NywNE6yw?si=gfrLE9d4nRXlLu1q\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>","wrap1Credit":"","wrap2Description":"","addSpacing":false,"includePym":false},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fFz5HzFSLT2lL","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/kmhd/article/kassa-overall-drummer-album-back-pack-jazz-portland-i-think-im-good/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":true,"showCredit":true,"tagColor":"blue","allowContentEditable":true},"displayProperties":{},"localEdits":{"CN7KB3SGJJEYPFPPHRSJTYYJC4":{"description":{"basic":"Artist, drummer and backpack jazz producer Kassa Overall's journey has led him to commanding the rhythm section for some of the greatest musicians in the world. "},"headlines":{"basic":"48 Hours With jazz producer Kassa Overall"}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f97jRB0jYU2CF","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/video/2022/10/24/theon-cross-putting-respect-on-the-tuba/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":true,"showCredit":true,"tagColor":"blue","allowContentEditable":true},"displayProperties":{},"localEdits":{"039c1035-6522-4989-948f-c6d5307dc801":{"headlines":{"basic":"Theon Cross: Putting respect on the tuba"},"description":{"basic":"Tubaist Theon Cross talks with KMHD about his original style and bringing joy through his music no matter the genre."}}},"variants":{}}}]}]},{"collection":"sections","props":{"collection":"sections","id":3},"children":[{"collection":"chains","type":"EvenSpacedChain","props":{"collection":"chains","type":"EvenSpacedChain","id":"c0f2G5GveGY17jj","customFields":{"useEvenSpacing":true,"numberOfColumns":"three","firstColumnLength":1,"secondColumnLength":1,"thirdColumnLength":1,"mobileSpacing":true},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fFmXPC33Nz3MN","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"manual-story-card","contentConfigValues":{"headline":"Become a member","imageURL":"https://www.kmhd.org/give/","relativeLinkURL":"https://www.kmhd.org/give/","description":"Contact us using the form below with questions about your membership, Rhythm Section support, or thank-you gifts."}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"showBorderBottom":true,"overrideAssetID":"TLDCHNIELVGBNNFLJCJIWLSXVQ","linkImage":true},"displayProperties":{},"localEdits":{"10255cb5eb83930feb15ab1210cfa41233a673b68d9438edf5d24ae2f0454d85":{"headlines":{"basic":"Join the Rhythm Section!"},"description":{"basic":"With your ongoing monthly contribution, it's the best way to reliably support KMHD."}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0fBbaOYXbTw4t5","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"manual-story-card","contentConfigValues":{"headline":"Broadcast Schedule","imageURL":"https://www.kmhd.org/schedule/","relativeLinkURL":"https://www.kmhd.org/schedule/","description":"Every program listed on KMHD Jazz Radio 24/7"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"UI7TQRAK6VBGHJVFNE4DHQYNKE","showBorderBottom":true,"linkImage":true},"displayProperties":{},"localEdits":{"4723f9a82320d638368cd6f5a4d4466f9f629295c538abe956c5093b71e8ac1a":{"description":{"basic":"Every program on 89.1 KMHD Jazz Radio, Jazz Without Boundaries."}}},"variants":{}}},{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0ffYWcC8C7d7Xl","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/about-us/"}},"layout":"vert","showDescription":true,"showImage":true,"showCaption":false,"showCredit":false,"tagColor":"blue","allowContentEditable":true,"overrideAssetID":"VTGHSULQ2BGWNJ3QTP7P6QXBBI","showBorderBottom":true,"linkImage":true},"displayProperties":{},"localEdits":{"D2WGQIKB4FBZ3AD4DUAL7VHXSE":{"description":{"basic":"Member-supported radio station KMHD has been a staple of Portland since 1984."}}},"variants":{}}}]},{"collection":"chains","type":"FeatureWithRail","props":{"collection":"chains","type":"FeatureWithRail","id":"c0f92zGGQpBU5Qp","customFields":{"largeStoryLocation":"left"},"displayProperties":{}},"children":[{"collection":"features","type":"global/storyCard","props":{"collection":"features","type":"global/storyCard","id":"f0f8vjmvQpBU5lh","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"showCaption":false,"relatedLink5Tag":"a musical journey","showDescription":true,"relatedLink2Tag":"","contentConfig":{"contentService":"content-api-story-card","contentConfigValues":{"websiteUrl":"https://www.kmhd.org/article/2025/06/04/jazz/"}},"tagColor":"kmhd","relatedLink3Tag":"","allowContentEditable":true,"relatedLink8Tag":"none","relatedLink9Tag":"none","relatedLink10Tag":"none","relatedLink7Tag":"none","layout":"vert-large","relatedLink6Tag":"none","relatedLink1Tag":"playlist","pbInternal_cloneId":"f0f5d3IiBTNW123","showImage":true,"relatedLink4Tag":"","showAudio":true,"showTag":false,"tagLabel":"OPB/KMHD","linkImage":true,"overrideAssetID":"525DZEZTVJBD5OJSYU6R5336U4","relatedLink1Label":"KMHD curates the best jazz singles of 2023","relatedLink1Url":"https://www.kmhd.org/article/2023/12/18/kmhd-jazz-singles-playlist-2023/","showRelatedLinks":false,"relatedLink2Label":"","relatedLink2Url":"","showCredit":false,"relatedLink3Url":"","relatedLink3Label":"","relatedLink4Url":"","relatedLink4Label":"","relatedLink5Url":"","relatedLink5Label":"","showBorderBottom":false,"showKicker":false},"displayProperties":{},"localEdits":{"YLIMOLTRAVETPLOE3QK3MTI3RE":{"headlines":{"basic":"How Portland's Pleasure Shaped a Sound "},"description":{"basic":"Portland band Pleasure helped to shape the sound for the 1970s by combining jazz, R&B, funk and soul. "}}},"variants":{}}},{"collection":"features","type":"global/eventsWidget","props":{"collection":"features","type":"global/eventsWidget","id":"f0f1wxcxQpBU5G3","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"title":"LIVE EVENTS","buttonText":"more events","numberOfEvents":5,"buttonURL":"/live-events"},"displayProperties":{},"localEdits":{},"variants":{}}}]}]},{"collection":"sections","props":{"collection":"sections","id":4},"children":[]},{"collection":"sections","props":{"collection":"sections","id":5},"children":[]},{"collection":"sections","props":{"collection":"sections","id":6},"children":[]},{"collection":"sections","props":{"collection":"sections","id":7},"children":[]},{"collection":"sections","props":{"collection":"sections","id":8},"children":[]},{"collection":"sections","props":{"collection":"sections","id":9},"children":[]},{"collection":"sections","props":{"collection":"sections","id":10},"children":[]},{"collection":"sections","props":{"collection":"sections","id":11},"children":[{"collection":"features","type":"global/sustainer","props":{"collection":"features","type":"global/sustainer","id":"f0fvvFvPQpBU5sS","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{"text":"Jazz Without Boundaries is made possible by the power of member support. Be a part of it!","buttonText":"Join the Rhythm Section Now","buttonLink":"https://www.kmhd.org/give/","pbInternal_cloneId":"f0fSKbAW4QGAPn"},"displayProperties":{},"localEdits":{},"variants":{}}},{"collection":"features","type":"global/footer","props":{"collection":"features","type":"global/footer","id":"f0fh1sLTQpBU5Wy","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{},"displayProperties":{},"localEdits":{},"variants":{}}}]},{"collection":"sections","props":{"collection":"sections","id":12},"children":[{"collection":"features","type":"global/streamLauncher","props":{"collection":"features","type":"global/streamLauncher","id":"f0fyXUMWQpBU57n","contentConfig":{"contentService":"","contentConfigValues":{},"inherit":true},"customFields":{},"displayProperties":{},"localEdits":{},"variants":{}}}]}]};Fusion.spa=false;Fusion.spaEnabled=false;</script><script async="" src="https://opb.video-player.arcpublishing.com/prod/powaBoot.js"></script><div id="consent-banner" style="position:fixed;bottom:0;z-index:999999"></div></body></html>