I see "NULL" entries in the "country_code" column. This may cause the error.
Try the following:
1. Backup all your site files and the MySQL database - this will help you to recover your site if something goes wrong on the second step.
2. Run this MySQL query:
Code:
update xc_profile_addresses set country_code = 'US' where country_code IS NULL;
Does this help?