it's not possible to determine whether I have any loans in any particular countries
there's a crude workaround for that which involves looking at the source code for one's public Kiva lender page, and scrolling down to the section quite near the end where the charts are built & displayed.
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(draw_PieChart_4c46170e4bca8);
function draw_PieChart_4c46170e4bca8() {
var data = new google.visualization.DataTable();
data.addColumn('string','ooblab');
data.addColumn('number','country');
data.addRows(55);data.setValue(0,0,'Peru');
data.setValue(0,1,14.47);
data.setValue(1,0,'Bolivia');
data.setValue(1,1,13.82);
data.setValue(2,0,'Tajikistan');
data.setValue(2,1,8.96);
data.setValue(3,0,'Paraguay');
data.setValue(3,1,7.81);
data.setValue(4,0,'Cambodia');
data.setValue(4,1,5.1);
data.setValue(5,0,'Uganda');
data.setValue(5,1,5.02);
. . . [etc , for whatever total number of countries.]
the last number in each set (the number with the decimal point) looks like the portfolio's percentage of loans to that particular country.
Oh well, I think my collection of Kiva countries was complete, anyway.
P