Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v3 GET /weightlifting/get_results
Returns the results of the specific round/discipline
Request URL
https://dsg-api.com/clients/{client_name}/weightlifting/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}
API Threshold
  • 10k calls per hour (2.78 calls per second)
  • This threshold applies to ALL your calls you do across the API.
  • Your number of calls get reset every hour at :00
  • If the thresold is reached within the hour you will get a xml/json message accordingly (which is gone when the next hour starts, see previous point)
Parameters
authkey
string Required
client authentification key
client
string Required
unique client ID
discipline_id
int
unique identifier for a discipline
ftype
string
changes feed type from XML to json (ftype=json or ftype=json_array)
id
int Required
season or round id to return
lang
string
two-character language code, defaults to 'en'
type
string Required
type is either "season" or "round"
Nodes
competition
details about competition
area_id
unique identifier for an area
area_name
name of the area
competition_id
unique identifier for a competition
format
competition format (domestic_league, domestic_cup, domestic_league_cup, domestic_super_cup, international_cup, international_super_cup, playoff, tournament, race, unofficial)
gender
determines the gender of the competition (male or female)
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of the competition
type
determines if a competition is between club teams (club) or national teams (international)
contestant
weightlifting/powerlifting results for the contestant
body_weight
body_weight in kg
clean_jerk_1st_fail
1st clean_jerk attempt, yes = fail, no = success
clean_jerk_1st_kg
1st clean_jerk attempt in kg
clean_jerk_2nd_fail
2nd clean_jerk attempt, yes = fail, no = success
clean_jerk_2nd_kg
2nd clean_jerk attempt in kg
clean_jerk_3rd_fail
3rd clean_jerk attempt, yes = fail, no = success
clean_jerk_3rd_kg
3rd clean_jerk attempt in kg
clean_jerk_record
type of record for the contestant (SB,PB,WR,OR etc)
clean_jerk_result
best clean jerk attempt
common_name
common name of the person
first_name
first name of the person
group
group the contestant competes
last_name
last name of the person
nationality_area_code
three character area code
nationality_area_id
unique identifier for an area
nationality_area_name
area name of peoples nationality
people_id
unique identifier for person
points
final points after all attempts
position
position value
record
type of record for the contestant or team (SB,PB,WR,OR etc)
short_name
shortened name of the person
snatch_1st_fail
1st snatch attempt, yes = fail, no = success
snatch_1st_kg
1st snatch attempt in kg
snatch_2nd_fail
2nd snatch attempt, yes = fail, no = success
snatch_2nd_kg
2nd snatch attempt in kg
snatch_3rd_fail
3rd snatch attempt, yes = fail, no = success
snatch_3rd_kg
3rd snatch attempt in kg
snatch_record
type of record for the contestant (SB,PB,WR,OR etc)
snatch_result
best snatch attempt
status
status for this round, mainly if qualified or not (qualied = Q for example)
datasportsgroup
details about the API version, sport, language and generation timestamp
generated_utc
UTC timestamp when the API output was generated
lang
language of the API call
sport
sport value
version
version of the API
discipline
basic information about the discipline
discipline_id
unique identifier of the discipline
name
name of the discipline
type
type of discipline (contestant, contestant_team or team)
gender
details about the gender
age_group
defines the age group (senior,u23,u22,u21....)
value
gender type (male, female or mixed)
method
details about the API function
method_id
unique ID of method
name
name of method
round
details about the round
end_date
end date, format 'yyyy-mm-dd'
end_date_utc
end date in UTC timezone, format 'yyyy-mm-dd'
end_time
end time, format 'HH:mm:ss'
end_time_utc
end time in UTC timezone, format 'HH:mm:ss'
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of round
round_id
unique identifier of round
start_date
start date, format 'yyyy-mm-dd'
start_date_utc
start date in UTC timezone, format 'yyyy-mm-dd'.
start_time
start time, format 'HH:mm:ss'
start_time_utc
start time in UTC timezone, format 'HH:mm:ss'
type
determines if the round contains a table or a cup structure (knock-out)
round_extra
extra round details
medal_round
indicates if medals are awarded in this round
status
status of the round (Scheduled,Live,Played,Postponed,Cancelled,Break)
season
details about the season
end_date
end date, format 'yyyy-mm-dd'
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
logo
full path URL of logo for particular season
original_name
competition name during this season
season_id
unique identifier for season
start_date
start date, format 'yyyy-mm-dd'
title
title of season
tour
details about the tour
gender
gender of the tour
name
name of the particular tour
tour_id
unique tour identifier
tour_type
defines if the tournament is part of a tour or not. If not then value "non-tour"
tour_season
details about a tour season
logo
full path URL of logo for particular tour_season
name
name of the tour_season
title
title of the particular tour season
tour_season_id
unique identifier of a tour season
venue
basic details about the venue
venue_area_id
unique identifier for an area
venue_area_name
name of the area
venue_city
city where the venue is based
venue_id
unique identifier of the venue
venue_image
full path URL of venue or circuit image
venue_name
current name of the venue
Response Headers
200
Success
401
Unauthorized
429
Too Many Requests
Code Samples
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://dsg-api.com/clients/{client_name}/weightlifting/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERPWD, "{User}:{Password}");
$content = curl_exec($ch);
curl_close($ch);
?>
curl GET -u "User:Password" "https://dsg-api.com/clients/{client_name}/weightlifting/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}"
Imports System
Imports System.Net	
Imports System.IO
Imports System.Text

Public Module Module1
	Public Sub Main()
		Dim url As String = "https://dsg-api.com/clients/{client_name}/weightlifting/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}"
		Dim myReq As WebRequest = WebRequest.Create(url)
		myReq.Credentials = new System.Net.NetworkCredential("{User}", "{Password}")
		Dim wr As WebResponse = myReq.GetResponse()
		Dim receiveStream As Stream = wr.GetResponseStream()
		Dim reader As StreamReader = New StreamReader(receiveStream, Encoding.UTF8)
		Dim content As String = reader.ReadToEnd()
	End Sub
End Module
response = requests.get("https://dsg-api.com/clients/{client_name}/weightlifting/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example
200 Success
{"datasportsgroup":{"version":"2.591.3","sport":"weightlifting","lang":"en","generated_utc":"2025-08-01T15:09:05+00:00","method":{"method_id":"591","name":"get_results"},"tour":{"tour_id":"","name":"","gender":"","tour_type":"non-tour","tour_season":{"tour_season_id":"","title":"","name":"","logo":"","competition":{"competition_id":"4989","name":"Pan-American Weightlifting Championships","gender":"both","type":"player","format":"tournament","area_id":"1","area_name":"World","last_updated":"2025-01-12 12:36:26","season":{"season_id":"74972","title":"2025 Cali","original_name":"Pan-American Weightlifting Championships","start_date":"2025-07-12","end_date":"2025-07-18","logo":"","last_updated":"2025-07-21 17:29:43","season_extra":{"status":"Scheduled","surface":"","type":"","city":{"city_id":"","city_name":""},"venue":{"venue_id":"","venue_name":"","venue_image":""}},"discipline":[{"discipline_id":"107","name":"69 kg","type":"contestant","gender":{"value":"female","age_group":"senior","round":{"round_id":"128727","name":"Final","type":"table","start_date":"2025-07-16","start_time":"12:00:00","start_date_utc":"2025-07-16","start_time_utc":"10:00:00","end_date":"2025-07-16","end_time":"14:00:00","end_date_utc":"2025-07-16","end_time_utc":"12:00:00","last_updated":"2025-07-22 00:09:10","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7743898","first_name":"Olivia Lynn","last_name":"Lynn Reeves","short_name":"O. Lynn","common_name":"Olivia Lynn","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"68.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"141","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"146","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"149","clean_jerk_record":"","clean_jerk_result":"149","group":"","points":"268","record":"","snatch_1st_fail":"no","snatch_1st_kg":"113","snatch_2nd_fail":"no","snatch_2nd_kg":"117","snatch_3rd_fail":"no","snatch_3rd_kg":"119","snatch_record":"","snatch_result":"119","status":""},{"position":"2","people_id":"7905281","first_name":"Julieth Alejandra","last_name":"Rodriguez Quintero","short_name":"J. Rodriguez Quintero","common_name":"Julieth Rodriguez ","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"68.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"130","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"135","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"140","clean_jerk_record":"","clean_jerk_result":"135","group":"","points":"245","record":"","snatch_1st_fail":"no","snatch_1st_kg":"106","snatch_2nd_fail":"yes","snatch_2nd_kg":"110","snatch_3rd_fail":"no","snatch_3rd_kg":"110","snatch_record":"","snatch_result":"110","status":""},{"position":"3","people_id":"7905881","first_name":"Diana Laura","last_name":"Garcia Hernandez","short_name":"D. Garcia Hernandez","common_name":"Diana Garcia Hernandez","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"68.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"118","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"123","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"125","clean_jerk_record":"","clean_jerk_result":"123","group":"","points":"216","record":"","snatch_1st_fail":"no","snatch_1st_kg":"95","snatch_2nd_fail":"yes","snatch_2nd_kg":"98","snatch_3rd_fail":"no","snatch_3rd_kg":"98","snatch_record":"","snatch_result":"98","status":""},{"position":"4","people_id":"7793703","first_name":"Alexis","last_name":"Ashworth","short_name":"A. Ashworth","common_name":"Alexis Ashworth","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"67.95","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"115","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"117","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"117","clean_jerk_record":"","clean_jerk_result":"117","group":"","points":"215","record":"","snatch_1st_fail":"no","snatch_1st_kg":"90","snatch_2nd_fail":"no","snatch_2nd_kg":"93","snatch_3rd_fail":"yes","snatch_3rd_kg":"95","snatch_record":"","snatch_result":"93","status":""},{"position":"5","people_id":"8029052","first_name":"Andreann","last_name":"Lamarre","short_name":"A. Lamarre","common_name":"Andreann Lamarre","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"69.00","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"110","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"110","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"116","clean_jerk_record":"","clean_jerk_result":"116","group":"","points":"208","record":"","snatch_1st_fail":"no","snatch_1st_kg":"92","snatch_2nd_fail":"yes","snatch_2nd_kg":"96","snatch_3rd_fail":"yes","snatch_3rd_kg":"96","snatch_record":"","snatch_result":"92","status":""},{"position":"6","people_id":"7979211","first_name":"Casey Jordan","last_name":"Aguilar-Gervase","short_name":"C. Aguilar-Gervase","common_name":"Casey Aguilar-Gervase","nationality_area_id":"157","nationality_area_code":"PRI","nationality_area_name":"Puerto Rico","body_weight":"65.60","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"100","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"105","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"108","clean_jerk_record":"","clean_jerk_result":"108","group":"","points":"194","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"87","snatch_2nd_fail":"yes","snatch_2nd_kg":"87","snatch_3rd_fail":"no","snatch_3rd_kg":"87","snatch_record":"","snatch_result":"87","status":""},{"position":"7","people_id":"8029050","first_name":"Constanza Noelia","last_name":"Celis Gutierrez","short_name":"C. Celis","common_name":"Constanza Celis","nationality_area_id":"48","nationality_area_code":"CHL","nationality_area_name":"Chile","body_weight":"68.40","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"107","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"107","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"112","clean_jerk_record":"","clean_jerk_result":"107","group":"","points":"193","record":"","snatch_1st_fail":"no","snatch_1st_kg":"85","snatch_2nd_fail":"yes","snatch_2nd_kg":"90","snatch_3rd_fail":"yes","snatch_3rd_kg":"90","snatch_record":"","snatch_result":"85","status":""},{"position":"8","people_id":"8000312","first_name":"Kelly ","last_name":"Aparicio","short_name":"K. Aparicio","common_name":"Kelly Aparicio","nationality_area_id":"150","nationality_area_code":"PAN","nationality_area_name":"Panama","body_weight":"68.95","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"97","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"101","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"105","clean_jerk_record":"","clean_jerk_result":"105","group":"","points":"184","record":"","snatch_1st_fail":"no","snatch_1st_kg":"75","snatch_2nd_fail":"yes","snatch_2nd_kg":"79","snatch_3rd_fail":"no","snatch_3rd_kg":"79","snatch_record":"","snatch_result":"79","status":""},{"position":"9","people_id":"406784","first_name":"Lucia Cecila","last_name":"Castanyeda Gomez","short_name":"L. Castanyeda","common_name":"Lucia Castanyeda","nationality_area_id":"142","nationality_area_code":"NIC","nationality_area_name":"Nicaragua","body_weight":"67.10","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"92","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"96","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"100","clean_jerk_record":"","clean_jerk_result":"96","group":"","points":"173","record":"","snatch_1st_fail":"no","snatch_1st_kg":"78","snatch_2nd_fail":"yes","snatch_2nd_kg":"81","snatch_3rd_fail":"yes","snatch_3rd_kg":"81","snatch_record":"","snatch_result":"78","status":""},{"position":"10","people_id":"8029057","first_name":"Yanira","last_name":"James Flores","short_name":"Y. James","common_name":"Yanira James","nationality_area_id":"90","nationality_area_code":"HND","nationality_area_name":"Honduras","body_weight":"67.40","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"95","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"95","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"95","clean_jerk_record":"","clean_jerk_result":"95","group":"","points":"172","record":"","snatch_1st_fail":"no","snatch_1st_kg":"70","snatch_2nd_fail":"no","snatch_2nd_kg":"73","snatch_3rd_fail":"no","snatch_3rd_kg":"76","snatch_record":"","snatch_result":"76","status":""}]}}}}},{"discipline_id":"108","name":"77 kg","type":"contestant","gender":{"value":"female","age_group":"senior","round":{"round_id":"128729","name":"Final","type":"table","start_date":"2025-07-16","start_time":"16:00:00","start_date_utc":"2025-07-16","start_time_utc":"14:00:00","end_date":"2025-07-16","end_time":"18:00:00","end_date_utc":"2025-07-16","end_time_utc":"16:00:00","last_updated":"2025-07-22 00:09:39","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"488420","first_name":"Martha Ann","last_name":"Rogers","short_name":"M. Rogers","common_name":"Martha Rogers","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"75.45","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"134","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"137","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"139","clean_jerk_record":"","clean_jerk_result":"139","group":"","points":"249","record":"","snatch_1st_fail":"no","snatch_1st_kg":"105","snatch_2nd_fail":"no","snatch_2nd_kg":"109","snatch_3rd_fail":"no","snatch_3rd_kg":"111","snatch_record":"","snatch_result":"111","status":""},{"position":"2","people_id":"7905865","first_name":"MarI Leivis","last_name":"Sanchez Perinan","short_name":"M. Sánchez","common_name":"MarI Sánchez","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"76.45","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"130","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"134","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"137","clean_jerk_record":"","clean_jerk_result":"137","group":"","points":"248","record":"","snatch_1st_fail":"no","snatch_1st_kg":"105","snatch_2nd_fail":"no","snatch_2nd_kg":"109","snatch_3rd_fail":"no","snatch_3rd_kg":"110","snatch_record":"","snatch_result":"110","status":""},{"position":"3","people_id":"7743919","first_name":"Laura","last_name":"Nascimento Amaro","short_name":"Laura Amaro","common_name":"Laura Amaro","nationality_area_id":"35","nationality_area_code":"BRA","nationality_area_name":"Brazil","body_weight":"76.10","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"130","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"134","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"136","clean_jerk_record":"","clean_jerk_result":"136","group":"","points":"246","record":"","snatch_1st_fail":"no","snatch_1st_kg":"106","snatch_2nd_fail":"yes","snatch_2nd_kg":"109","snatch_3rd_fail":"no","snatch_3rd_kg":"110","snatch_record":"","snatch_result":"110","status":""},{"position":"4","people_id":"7905303","first_name":"Bella Nancy","last_name":"Paredes Arreaga","short_name":"B. Paredes","common_name":"Bella Paredes","nationality_area_id":"65","nationality_area_code":"ECU","nationality_area_name":"Ecuador","body_weight":"74.25","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"130","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"135","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"137","clean_jerk_record":"","clean_jerk_result":"135","group":"","points":"239","record":"","snatch_1st_fail":"no","snatch_1st_kg":"102","snatch_2nd_fail":"yes","snatch_2nd_kg":"106","snatch_3rd_fail":"no","snatch_3rd_kg":"106","snatch_record":"","snatch_result":"106","status":""},{"position":"5","people_id":"7975460","first_name":"Darly Isabel","last_name":"Sanchez Periñan","short_name":"D. Sanchez","common_name":"Darly Sanchez","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"76.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"131","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"135","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"138","clean_jerk_record":"","clean_jerk_result":"135","group":"","points":"239","record":"","snatch_1st_fail":"no","snatch_1st_kg":"104","snatch_2nd_fail":"yes","snatch_2nd_kg":"108","snatch_3rd_fail":"yes","snatch_3rd_kg":"109","snatch_record":"","snatch_result":"104","status":""},{"position":"6","people_id":"488405","first_name":"Aremi","last_name":"Fuentes Zavala","short_name":"A. Fuentes Zavala","common_name":"Aremi Fuentes Zavala","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"76.55","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"128","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"132","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"136","clean_jerk_record":"","clean_jerk_result":"132","group":"","points":"238","record":"","snatch_1st_fail":"no","snatch_1st_kg":"104","snatch_2nd_fail":"yes","snatch_2nd_kg":"109","snatch_3rd_fail":"yes","snatch_3rd_kg":"109","snatch_record":"","snatch_result":"104","status":""},{"position":"7","people_id":"8030212","first_name":"Anna","last_name":"Arveta Mc Elderry","short_name":"A. Arveta","common_name":"Anna Arveta","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"76.95","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"123","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"127","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"130","clean_jerk_record":"","clean_jerk_result":"127","group":"","points":"231","record":"","snatch_1st_fail":"no","snatch_1st_kg":"100","snatch_2nd_fail":"yes","snatch_2nd_kg":"103","snatch_3rd_fail":"no","snatch_3rd_kg":"104","snatch_record":"","snatch_result":"104","status":""},{"position":"8","people_id":"8030213","first_name":"Kristen Leanne","last_name":"Pearn","short_name":"K. Pearn","common_name":"Kristen Pearn","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"76.35","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"115","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"118","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"121","clean_jerk_record":"","clean_jerk_result":"118","group":"","points":"208","record":"","snatch_1st_fail":"no","snatch_1st_kg":"90","snatch_2nd_fail":"yes","snatch_2nd_kg":"93","snatch_3rd_fail":"yes","snatch_3rd_kg":"94","snatch_record":"","snatch_result":"90","status":""},{"position":"9","people_id":"7975464","first_name":"Beverly Shanen ","last_name":"De León Cardoza","short_name":"B. De León Cardoza","common_name":"Beverly De León Cardoza","nationality_area_id":"85","nationality_area_code":"GTM","nationality_area_name":"Guatemala","body_weight":"72.30","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"105","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"105","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"105","clean_jerk_record":"","clean_jerk_result":"105","group":"","points":"191","record":"","snatch_1st_fail":"no","snatch_1st_kg":"82","snatch_2nd_fail":"yes","snatch_2nd_kg":"86","snatch_3rd_fail":"no","snatch_3rd_kg":"86","snatch_record":"","snatch_result":"86","status":""},{"position":"10","people_id":"8030214","first_name":" Ana Cecilia","last_name":"Rivera Alvarez","short_name":"A. Rivera","common_name":" Ana Cecilia Rivera","nationality_area_id":"67","nationality_area_code":"SLV","nationality_area_name":"El Salvador","body_weight":"74.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"95","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"100","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"100","clean_jerk_record":"","clean_jerk_result":"100","group":"","points":"183","record":"","snatch_1st_fail":"no","snatch_1st_kg":"75","snatch_2nd_fail":"no","snatch_2nd_kg":"80","snatch_3rd_fail":"no","snatch_3rd_kg":"83","snatch_record":"","snatch_result":"83","status":""}]}}}}},{"discipline_id":"110","name":"94 kg","type":"contestant","gender":{"value":"male","age_group":"senior","round":{"round_id":"128730","name":"Final","type":"table","start_date":"2025-07-17","start_time":"12:00:00","start_date_utc":"2025-07-17","start_time_utc":"10:00:00","end_date":"2025-07-17","end_time":"14:00:00","end_date_utc":"2025-07-17","end_time_utc":"12:00:00","last_updated":"2025-07-22 00:10:13","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7975535","first_name":"Marcos Alejandro Bonilla","last_name":"Casierra","short_name":"M. Casierra","common_name":"Marcos Casierra","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"93.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"200","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"210","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"210","group":"","points":"371","record":"","snatch_1st_fail":"no","snatch_1st_kg":"158","snatch_2nd_fail":"yes","snatch_2nd_kg":"161","snatch_3rd_fail":"no","snatch_3rd_kg":"161","snatch_record":"","snatch_result":"161","status":""},{"position":"2","people_id":"7927283","first_name":" Angel Jose","last_name":"Luna Marin","short_name":"A. Luna Marin","common_name":" Angel Luna Marin","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"91.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"192","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"195","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"201","clean_jerk_record":"","clean_jerk_result":"195","group":"","points":"350","record":"","snatch_1st_fail":"no","snatch_1st_kg":"150","snatch_2nd_fail":"no","snatch_2nd_kg":"155","snatch_3rd_fail":"no","snatch_3rd_kg":"159","snatch_record":"","snatch_result":"159","status":""},{"position":"3","people_id":"8000093","first_name":"Vicente","last_name":"Braulio","short_name":"V. Braulio","common_name":"Vicente Braulio","nationality_area_id":"65","nationality_area_code":"ECU","nationality_area_name":"Ecuador","body_weight":"93.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"185","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"193","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"199","clean_jerk_record":"","clean_jerk_result":"193","group":"","points":"349","record":"","snatch_1st_fail":"no","snatch_1st_kg":"155","snatch_2nd_fail":"yes","snatch_2nd_kg":"159","snatch_3rd_fail":"yes","snatch_3rd_kg":"160","snatch_record":"","snatch_result":"155","status":""},{"position":"4","people_id":"8004927","first_name":"Mauricio ","last_name":"Loaiza","short_name":"M. Loaiza","common_name":"Mauricio Loaiza","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"92.00","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"185","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"190","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"194","clean_jerk_record":"","clean_jerk_result":"190","group":"","points":"345","record":"","snatch_1st_fail":"no","snatch_1st_kg":"148","snatch_2nd_fail":"no","snatch_2nd_kg":"153","snatch_3rd_fail":"yes","snatch_3rd_kg":"156","snatch_record":"","snatch_result":"153","status":""},{"position":"5","people_id":"7905629","first_name":"Antonio Jose","last_name":"Govea Sandoval","short_name":"A. Govea Sandoval","common_name":"Antonio Govea Sandoval","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"93.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"178","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"185","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"191","clean_jerk_record":"","clean_jerk_result":"185","group":"","points":"338","record":"","snatch_1st_fail":"no","snatch_1st_kg":"152","snatch_2nd_fail":"yes","snatch_2nd_kg":"157","snatch_3rd_fail":"yes","snatch_3rd_kg":"160","snatch_record":"","snatch_result":"152","status":""},{"position":"6","people_id":"7905521","first_name":"Amel Karim","last_name":"Atencia Priou","short_name":"A. Atencia","common_name":"Amel Atencia","nationality_area_id":"153","nationality_area_code":"PER","nationality_area_name":"Peru","body_weight":"91.40","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"185","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"185","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"191","clean_jerk_record":"","clean_jerk_result":"185","group":"","points":"335","record":"","snatch_1st_fail":"no","snatch_1st_kg":"145","snatch_2nd_fail":"no","snatch_2nd_kg":"150","snatch_3rd_fail":"yes","snatch_3rd_kg":"154","snatch_record":"","snatch_result":"150","status":""},{"position":"7","people_id":"8029045","first_name":"Yendri Alexander","last_name":"Benitez","short_name":"Y. Benitez","common_name":"Yendri Benitez","nationality_area_id":"64","nationality_area_code":"DOM","nationality_area_name":"Dominican Republic","body_weight":"93.30","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"168","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"173","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"177","clean_jerk_record":"","clean_jerk_result":"173","group":"","points":"320","record":"","snatch_1st_fail":"no","snatch_1st_kg":"138","snatch_2nd_fail":"no","snatch_2nd_kg":"143","snatch_3rd_fail":"no","snatch_3rd_kg":"147","snatch_record":"","snatch_result":"147","status":""},{"position":"8","people_id":"7905611","first_name":"Yomar Andres","last_name":"Lopez Cameron","short_name":"Y. Lopez Cameron","common_name":"Yomar Lopez Cameron","nationality_area_id":"157","nationality_area_code":"PRI","nationality_area_name":"Puerto Rico","body_weight":"92.20","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"162","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"170","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"176","clean_jerk_record":"","clean_jerk_result":"170","group":"","points":"312","record":"","snatch_1st_fail":"no","snatch_1st_kg":"145","snatch_2nd_fail":"yes","snatch_2nd_kg":"150","snatch_3rd_fail":"yes","snatch_3rd_kg":"150","snatch_record":"","snatch_result":"145","status":""},{"position":"9","people_id":"8029046","first_name":"Adam","last_name":"Gordon","short_name":"A. Gordon","common_name":"Adam Gordon","nationality_area_id":"101","nationality_area_code":"JAM","nationality_area_name":"Jamaica","body_weight":"92.20","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"146","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"151","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"156","clean_jerk_record":"","clean_jerk_result":"151","group":"","points":"273","record":"","snatch_1st_fail":"no","snatch_1st_kg":"135","snatch_2nd_fail":"no","snatch_2nd_kg":"142","snatch_3rd_fail":"yes","snatch_3rd_kg":"150","snatch_record":"","snatch_result":"142","status":""},{"position":"10","people_id":"8029047","first_name":"Geovanny","last_name":"Rolon Rivera","short_name":"G. Rolon Rivera","common_name":"Geovanny Rolon Rivera","nationality_area_id":"157","nationality_area_code":"PRI","nationality_area_name":"Puerto Rico","body_weight":"94.00","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"160","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"163","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"165","clean_jerk_record":"","clean_jerk_result":"","group":"","points":"","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"125","snatch_2nd_fail":"no","snatch_2nd_kg":"125","snatch_3rd_fail":"no","snatch_3rd_kg":"129","snatch_record":"","snatch_result":"129","status":""},{"position":"11","people_id":"7905520","first_name":"Jose Luis","last_name":"Lopez Carpizo","short_name":"J. Lopez","common_name":"Jose Lopez","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"93.45","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"190","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"191","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"192","clean_jerk_record":"","clean_jerk_result":"","group":"","points":"","record":"","snatch_1st_fail":"no","snatch_1st_kg":"118","snatch_2nd_fail":"no","snatch_2nd_kg":"122","snatch_3rd_fail":"yes","snatch_3rd_kg":"126","snatch_record":"","snatch_result":"122","status":""},{"position":"12","people_id":"488348","first_name":"Wesley Brian","last_name":"Kitts","short_name":"W. Kitts","common_name":"Wes Kitts","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"93.55","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"","group":"","points":"","record":"","snatch_1st_fail":"no","snatch_1st_kg":"","snatch_2nd_fail":"no","snatch_2nd_kg":"","snatch_3rd_fail":"no","snatch_3rd_kg":"","snatch_record":"","snatch_result":"","status":""}]}}}}},{"discipline_id":"113","name":"48 kg","type":"contestant","gender":{"value":"female","age_group":"senior","round":{"round_id":"128734","name":"Final","type":"table","start_date":"2025-07-13","start_time":"15:00:00","start_date_utc":"2025-07-13","start_time_utc":"13:00:00","end_date":"2025-07-13","end_time":"17:00:00","end_date_utc":"2025-07-13","end_time_utc":"15:00:00","last_updated":"2025-07-22 00:10:44","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7905572","first_name":"Dahiana","last_name":"Ortiz","short_name":"D. Ortiz","common_name":"Dahiana Ortiz","nationality_area_id":"63","nationality_area_code":"DMA","nationality_area_name":"Dominica","body_weight":"47.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"101","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"105","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"109","clean_jerk_record":"","clean_jerk_result":"105","group":"","points":"190","record":"","snatch_1st_fail":"no","snatch_1st_kg":"79","snatch_2nd_fail":"no","snatch_2nd_kg":"82","snatch_3rd_fail":"no","snatch_3rd_kg":"85","snatch_record":"","snatch_result":"85","status":""},{"position":"2","people_id":"7908334","first_name":"Emily","last_name":"Rosa Figueiredo","short_name":"Emily Rosa ","common_name":"Emily Rosa ","nationality_area_id":"35","nationality_area_code":"BRA","nationality_area_name":"Brazil","body_weight":"47.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"95","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"98","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"100","clean_jerk_record":"","clean_jerk_result":"100","group":"","points":"177","record":"","snatch_1st_fail":"no","snatch_1st_kg":"75","snatch_2nd_fail":"no","snatch_2nd_kg":"77","snatch_3rd_fail":"yes","snatch_3rd_kg":"79","snatch_record":"","snatch_result":"77","status":""},{"position":"3","people_id":"8029025","first_name":"Patricia Valentina","last_name":"Mercado Mendoza","short_name":"P. Mercado","common_name":"Patricia Mercado","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"46.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"95","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"99","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"103","clean_jerk_record":"","clean_jerk_result":"99","group":"","points":"174","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"71","snatch_2nd_fail":"no","snatch_2nd_kg":"74","snatch_3rd_fail":"no","snatch_3rd_kg":"77","snatch_record":"","snatch_result":"77","status":""},{"position":"4","people_id":"8013626","first_name":"Enderlin ","last_name":"Ulacio","short_name":"E. Ulacio","common_name":"Enderlin Ulacio","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"47.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"91","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"94","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"97","clean_jerk_record":"","clean_jerk_result":"97","group":"","points":"173","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"75","snatch_2nd_fail":"no","snatch_2nd_kg":"75","snatch_3rd_fail":"yes","snatch_3rd_kg":"78","snatch_record":"","snatch_result":"75","status":""},{"position":"5","people_id":"8002085","first_name":"Jeannis Andrea","last_name":"Ramirez Rangel","short_name":"J. Ramirez","common_name":"Jeannis Ramirez","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"47.25","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"88","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"93","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"96","clean_jerk_record":"","clean_jerk_result":"96","group":"","points":"171","record":"","snatch_1st_fail":"no","snatch_1st_kg":"72","snatch_2nd_fail":"no","snatch_2nd_kg":"74","snatch_3rd_fail":"yes","snatch_3rd_kg":"78","snatch_record":"","snatch_result":"74","status":""},{"position":"6","people_id":"7975413","first_name":"Li Jun","last_name":"Joo Hu","short_name":"L. Joo Hu","common_name":"Li Jun Joo Hu","nationality_area_id":"48","nationality_area_code":"CHL","nationality_area_name":"Chile","body_weight":"47.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"88","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"92","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"95","clean_jerk_record":"","clean_jerk_result":"95","group":"","points":"166","record":"","snatch_1st_fail":"no","snatch_1st_kg":"68","snatch_2nd_fail":"no","snatch_2nd_kg":"71","snatch_3rd_fail":"yes","snatch_3rd_kg":"73","snatch_record":"","snatch_result":"71","status":""},{"position":"7","people_id":"8029024","first_name":"Macarena Del Pilar","last_name":"Garcia Suarez","short_name":"M. Garcia","common_name":"Macarena Garcia","nationality_area_id":"48","nationality_area_code":"CHL","nationality_area_name":"Chile","body_weight":"47.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"88","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"92","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"95","clean_jerk_record":"","clean_jerk_result":"92","group":"","points":"160","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"68","snatch_2nd_fail":"no","snatch_2nd_kg":"68","snatch_3rd_fail":"yes","snatch_3rd_kg":"72","snatch_record":"","snatch_result":"68","status":""},{"position":"8","people_id":"8004791","first_name":"Mendoza ","last_name":"Alcantara July","short_name":"M. Alcantara July","common_name":"Mendoza Alcantara July","nationality_area_id":"67","nationality_area_code":"SLV","nationality_area_name":"El Salvador","body_weight":"47.45","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"75","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"80","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"82","clean_jerk_record":"","clean_jerk_result":"80","group":"","points":"140","record":"","snatch_1st_fail":"no","snatch_1st_kg":"60","snatch_2nd_fail":"yes","snatch_2nd_kg":"63","snatch_3rd_fail":"yes","snatch_3rd_kg":"63","snatch_record":"","snatch_result":"60","status":""},{"position":"9","people_id":"8004779","first_name":"Samantha ","last_name":"Arreaga","short_name":"S. Arreaga","common_name":"Samantha Arreaga","nationality_area_id":"65","nationality_area_code":"ECU","nationality_area_name":"Ecuador","body_weight":"47.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"76","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"80","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"82","clean_jerk_record":"","clean_jerk_result":"80","group":"","points":"138","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"58","snatch_2nd_fail":"no","snatch_2nd_kg":"58","snatch_3rd_fail":"yes","snatch_3rd_kg":"60","snatch_record":"","snatch_result":"58","status":""},{"position":"10","people_id":"7975410","first_name":"Faviana Eyelen","last_name":"Gavidia Diaz","short_name":"F. Gavidia","common_name":"Faviana Gavidia","nationality_area_id":"153","nationality_area_code":"PER","nationality_area_name":"Peru","body_weight":"47.00","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"75","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"75","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"80","clean_jerk_record":"","clean_jerk_result":"80","group":"","points":"137","record":"","snatch_1st_fail":"no","snatch_1st_kg":"57","snatch_2nd_fail":"yes","snatch_2nd_kg":"61","snatch_3rd_fail":"yes","snatch_3rd_kg":"61","snatch_record":"","snatch_result":"57","status":""},{"position":"11","people_id":"8029026","first_name":"Karin Ivana","last_name":"Singh","short_name":"K. Singh","common_name":"Karin Singh","nationality_area_id":"194","nationality_area_code":"TTO","nationality_area_name":"Trinidad and Tobago","body_weight":"47.00","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"59","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"62","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"62","clean_jerk_record":"","clean_jerk_result":"62","group":"","points":"111","record":"","snatch_1st_fail":"no","snatch_1st_kg":"47","snatch_2nd_fail":"no","snatch_2nd_kg":"49","snatch_3rd_fail":"yes","snatch_3rd_kg":"52","snatch_record":"","snatch_result":"49","status":""}]}}}}},{"discipline_id":"114","name":"53 kg","type":"contestant","gender":{"value":"female","age_group":"senior","round":{"round_id":"128721","name":"Final","type":"table","start_date":"2025-07-14","start_time":"12:00:00","start_date_utc":"2025-07-14","start_time_utc":"10:00:00","end_date":"2025-07-14","end_time":"14:00:00","end_date_utc":"2025-07-14","end_time_utc":"12:00:00","last_updated":"2025-07-22 00:10:59","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"400406","first_name":"Beatriz Elizabeth","last_name":"Pirón Candelario","short_name":"B. Pirón","common_name":"Beatriz Pirón","nationality_area_id":"64","nationality_area_code":"DOM","nationality_area_name":"Dominican Republic","body_weight":"52.55","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"107","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"110","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"112","clean_jerk_record":"","clean_jerk_result":"112","group":"","points":"201","record":"","snatch_1st_fail":"no","snatch_1st_kg":"88","snatch_2nd_fail":"no","snatch_2nd_kg":"91","snatch_3rd_fail":"yes","snatch_3rd_kg":"94","snatch_record":"","snatch_result":"91","status":""},{"position":"2","people_id":"7905581","first_name":"Katherin Oriana","last_name":"Echandia Zarate","short_name":"K. Echandia","common_name":"Katherin Echandia","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"52.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"106","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"109","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"111","clean_jerk_record":"","clean_jerk_result":"111","group":"","points":"199","record":"","snatch_1st_fail":"no","snatch_1st_kg":"83","snatch_2nd_fail":"no","snatch_2nd_kg":"86","snatch_3rd_fail":"no","snatch_3rd_kg":"88","snatch_record":"","snatch_result":"88","status":""},{"position":"3","people_id":"488369","first_name":"Nathasha","last_name":"Rosa Figueiredo","short_name":"Nathasha Rosa","common_name":"Nathasha Rosa","nationality_area_id":"35","nationality_area_code":"BRA","nationality_area_name":"Brazil","body_weight":"52.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"107","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"110","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"112","clean_jerk_record":"","clean_jerk_result":"110","group":"","points":"198","record":"","snatch_1st_fail":"no","snatch_1st_kg":"84","snatch_2nd_fail":"no","snatch_2nd_kg":"87","snatch_3rd_fail":"yes","snatch_3rd_kg":"89","snatch_record":"","snatch_result":"87","status":""},{"position":"4","people_id":"488365","first_name":"Jourdan Elizabeth","last_name":"Delacruz","short_name":"J. Delacruz","common_name":"Jourdan Delacruz","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"52.80","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"104","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"108","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"111","clean_jerk_record":"","clean_jerk_result":"108","group":"","points":"196","record":"","snatch_1st_fail":"no","snatch_1st_kg":"84","snatch_2nd_fail":"no","snatch_2nd_kg":"87","snatch_3rd_fail":"yes","snatch_3rd_kg":"89","snatch_record":"","snatch_result":"87","status":""},{"position":"5","people_id":"7905836","first_name":"Rohelys","last_name":"Galvis Gonzalez","short_name":"R. Galvis ","common_name":"Rohelys Galvis ","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"52.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"103","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"107","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"110","clean_jerk_record":"","clean_jerk_result":"107","group":"","points":"194","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"84","snatch_2nd_fail":"no","snatch_2nd_kg":"84","snatch_3rd_fail":"no","snatch_3rd_kg":"87","snatch_record":"","snatch_result":"87","status":""},{"position":"6","people_id":"7905843","first_name":"Shoely Mabel","last_name":"Mego Contreras","short_name":"S. Mego Contreras","common_name":"Shoely Mego Contreras","nationality_area_id":"153","nationality_area_code":"PER","nationality_area_name":"Peru","body_weight":"52.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"102","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"106","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"108","clean_jerk_record":"","clean_jerk_result":"106","group":"","points":"186","record":"","snatch_1st_fail":"no","snatch_1st_kg":"80","snatch_2nd_fail":"no","snatch_2nd_kg":"83","snatch_3rd_fail":"yes","snatch_3rd_kg":"85","snatch_record":"","snatch_result":"83","status":""},{"position":"7","people_id":"7978461","first_name":"Asia Chanel","last_name":"Gonzalez","short_name":"A. Gonzalez","common_name":"Asia Gonzalez","nationality_area_id":"157","nationality_area_code":"PRI","nationality_area_name":"Puerto Rico","body_weight":"52.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"100","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"103","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"106","clean_jerk_record":"","clean_jerk_result":"103","group":"","points":"183","record":"","snatch_1st_fail":"no","snatch_1st_kg":"72","snatch_2nd_fail":"no","snatch_2nd_kg":"76","snatch_3rd_fail":"no","snatch_3rd_kg":"81","snatch_record":"","snatch_result":"81","status":""},{"position":"8","people_id":"7905555","first_name":"Andrea","last_name":"De La Herran Martinez","short_name":"A. De La Herran ","common_name":"Andrea De La Herran","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"52.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"96","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"100","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"104","clean_jerk_record":"","clean_jerk_result":"100","group":"","points":"181","record":"","snatch_1st_fail":"no","snatch_1st_kg":"80","snatch_2nd_fail":"yes","snatch_2nd_kg":"83","snatch_3rd_fail":"yes","snatch_3rd_kg":"83","snatch_record":"","snatch_result":"80","status":""},{"position":"9","people_id":"7905584","first_name":"Kerlys Maria","last_name":"Montilla Madrid","short_name":"K. Montilla Madrid","common_name":"Kerlys Montilla","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"51.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"93","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"99","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"103","clean_jerk_record":"","clean_jerk_result":"99","group":"","points":"180","record":"","snatch_1st_fail":"no","snatch_1st_kg":"80","snatch_2nd_fail":"yes","snatch_2nd_kg":"83","snatch_3rd_fail":"yes","snatch_3rd_kg":"83","snatch_record":"","snatch_result":"80","status":""},{"position":"10","people_id":"8029028","first_name":"Rosalba","last_name":"Florian Michel","short_name":"R. Florian","common_name":"Rosalba Florian","nationality_area_id":"63","nationality_area_code":"DMA","nationality_area_name":"Dominica","body_weight":"52.20","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"98","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"101","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"102","clean_jerk_record":"","clean_jerk_result":"98","group":"","points":"179","record":"","snatch_1st_fail":"no","snatch_1st_kg":"79","snatch_2nd_fail":"yes","snatch_2nd_kg":"82","snatch_3rd_fail":"yes","snatch_3rd_kg":"82","snatch_record":"","snatch_result":"79","status":""},{"position":"11","people_id":"7975418","first_name":"Keily Michelle","last_name":"Yat González","short_name":"K. Yat González","common_name":"Keily Yat González","nationality_area_id":"85","nationality_area_code":"GTM","nationality_area_name":"Guatemala","body_weight":"51.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"95","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"98","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"100","clean_jerk_record":"","clean_jerk_result":"98","group":"","points":"176","record":"","snatch_1st_fail":"no","snatch_1st_kg":"75","snatch_2nd_fail":"no","snatch_2nd_kg":"78","snatch_3rd_fail":"yes","snatch_3rd_kg":"80","snatch_record":"","snatch_result":"78","status":""},{"position":"12","people_id":"8029027","first_name":"Allison Elieth","last_name":"Alfaro Leon","short_name":"A. Alfaro","common_name":"Allison Alfaro","nationality_area_id":"55","nationality_area_code":"CRI","nationality_area_name":"Costa Rica","body_weight":"52.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"88","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"93","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"93","clean_jerk_record":"","clean_jerk_result":"93","group":"","points":"168","record":"","snatch_1st_fail":"no","snatch_1st_kg":"75","snatch_2nd_fail":"yes","snatch_2nd_kg":"80","snatch_3rd_fail":"yes","snatch_3rd_kg":"80","snatch_record":"","snatch_result":"75","status":""},{"position":"13","people_id":"8004797","first_name":"Thais ","last_name":"Ibañez","short_name":"T. Ibañez","common_name":"Thais Ibañez","nationality_area_id":"152","nationality_area_code":"PRY","nationality_area_name":"Paraguay","body_weight":"51.15","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"78","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"83","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"83","clean_jerk_record":"","clean_jerk_result":"83","group":"","points":"143","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"60","snatch_2nd_fail":"no","snatch_2nd_kg":"60","snatch_3rd_fail":"yes","snatch_3rd_kg":"64","snatch_record":"","snatch_result":"60","status":""}]}}}}},{"discipline_id":"115","name":"58 kg","type":"contestant","gender":{"value":"female","age_group":"senior","round":{"round_id":"128723","name":"Final","type":"table","start_date":"2025-07-14","start_time":"16:00:00","start_date_utc":"2025-07-14","start_time_utc":"14:00:00","end_date":"2025-07-14","end_time":"18:00:00","end_date_utc":"2025-07-14","end_time_utc":"16:00:00","last_updated":"2025-07-22 00:11:16","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"8002170","first_name":"Eleanor Ulrey","last_name":"Miranda","short_name":"E. Miranda","common_name":"Eleanor Miranda","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"57.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"117","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"120","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"123","clean_jerk_record":"","clean_jerk_result":"120","group":"","points":"217","record":"","snatch_1st_fail":"no","snatch_1st_kg":"93","snatch_2nd_fail":"no","snatch_2nd_kg":"96","snatch_3rd_fail":"no","snatch_3rd_kg":"98","snatch_record":"","snatch_result":"98","status":""},{"position":"2","people_id":"7908510","first_name":"Jenifer Samanta","last_name":"Becerra ","short_name":"J. Becerra ","common_name":"Jenifer Becerra ","nationality_area_id":"65","nationality_area_code":"ECU","nationality_area_name":"Ecuador","body_weight":"57.25","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"115","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"118","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"121","clean_jerk_record":"","clean_jerk_result":"118","group":"","points":"216","record":"","snatch_1st_fail":"no","snatch_1st_kg":"94","snatch_2nd_fail":"yes","snatch_2nd_kg":"97","snatch_3rd_fail":"no","snatch_3rd_kg":"97","snatch_record":"","snatch_result":"97","status":""},{"position":"3","people_id":"7905245","first_name":"Maria Luz","last_name":"Casadevall","short_name":"M. Casadevall","common_name":"Maria Casadevall","nationality_area_id":"16","nationality_area_code":"ARG","nationality_area_name":"Argentina","body_weight":"57.35","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"112","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"116","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"119","clean_jerk_record":"","clean_jerk_result":"116","group":"","points":"212","record":"","snatch_1st_fail":"no","snatch_1st_kg":"91","snatch_2nd_fail":"no","snatch_2nd_kg":"94","snatch_3rd_fail":"no","snatch_3rd_kg":"96","snatch_record":"","snatch_result":"96","status":""},{"position":"4","people_id":"7908499","first_name":"Concepcion","last_name":"Usuga Correa","short_name":"C. Usuga ","common_name":"Concepcion Usuga ","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"57.95","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"110","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"115","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"119","clean_jerk_record":"","clean_jerk_result":"115","group":"","points":"210","record":"","snatch_1st_fail":"no","snatch_1st_kg":"90","snatch_2nd_fail":"no","snatch_2nd_kg":"95","snatch_3rd_fail":"yes","snatch_3rd_kg":"98","snatch_record":"","snatch_result":"95","status":""},{"position":"5","people_id":"7975416","first_name":"Gelen Yulieth","last_name":"Torres Gomez","short_name":"G. Torres","common_name":"Gelen Torres","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"57.25","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"105","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"111","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"114","clean_jerk_record":"","clean_jerk_result":"114","group":"","points":"203","record":"","snatch_1st_fail":"no","snatch_1st_kg":"90","snatch_2nd_fail":"yes","snatch_2nd_kg":"95","snatch_3rd_fail":"no","snatch_3rd_kg":"95","snatch_record":"","snatch_result":"95","status":""},{"position":"6","people_id":"8029038","first_name":"Alicia","last_name":"Feliz Vasquez","short_name":"A. Feliz","common_name":"Alicia Feliz","nationality_area_id":"63","nationality_area_code":"DMA","nationality_area_name":"Dominica","body_weight":"57.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"107","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"111","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"116","clean_jerk_record":"","clean_jerk_result":"111","group":"","points":"202","record":"","snatch_1st_fail":"no","snatch_1st_kg":"87","snatch_2nd_fail":"yes","snatch_2nd_kg":"91","snatch_3rd_fail":"no","snatch_3rd_kg":"91","snatch_record":"","snatch_result":"91","status":""},{"position":"7","people_id":"8029032","first_name":"Yasmin Juliannis","last_name":"Quintero Valera","short_name":"Y. Quintero","common_name":"Yasmin Quintero","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"57.95","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"108","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"113","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"108","group":"","points":"201","record":"","snatch_1st_fail":"no","snatch_1st_kg":"81","snatch_2nd_fail":"no","snatch_2nd_kg":"85","snatch_3rd_fail":"no","snatch_3rd_kg":"88","snatch_record":"","snatch_result":"88","status":""},{"position":"8","people_id":"8029036","first_name":"Sohaila","last_name":"Cortez Gonzalez","short_name":"S. Cortez","common_name":"Sohaila Cortez","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"57.90","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"107","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"107","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"112","clean_jerk_record":"","clean_jerk_result":"107","group":"","points":"195","record":"","snatch_1st_fail":"no","snatch_1st_kg":"87","snatch_2nd_fail":"yes","snatch_2nd_kg":"91","snatch_3rd_fail":"yes","snatch_3rd_kg":"91","snatch_record":"","snatch_result":"87","status":""},{"position":"9","people_id":"7905857","first_name":"Issi Massei","last_name":"Agrait Calo","short_name":"I. Agrait Calo","common_name":"Issi Agrait Calo","nationality_area_id":"157","nationality_area_code":"PRI","nationality_area_name":"Puerto Rico","body_weight":"57.50","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"104","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"104","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"106","clean_jerk_record":"","clean_jerk_result":"106","group":"","points":"189","record":"","snatch_1st_fail":"no","snatch_1st_kg":"80","snatch_2nd_fail":"yes","snatch_2nd_kg":"84","snatch_3rd_fail":"no","snatch_3rd_kg":"84","snatch_record":"","snatch_result":"84","status":""},{"position":"10","people_id":"7905863","first_name":"Rose","last_name":"Harvey","short_name":"R. Harvey","common_name":"Rose Harvey","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"57.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"102","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"106","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"106","clean_jerk_record":"","clean_jerk_result":"106","group":"","points":"188","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"80","snatch_2nd_fail":"no","snatch_2nd_kg":"80","snatch_3rd_fail":"no","snatch_3rd_kg":"83","snatch_record":"","snatch_result":"83","status":""},{"position":"11","people_id":"8004845","first_name":"Eiliana ","last_name":"Batista","short_name":"E. Batista","common_name":"Eiliana Batista","nationality_area_id":"64","nationality_area_code":"DOM","nationality_area_name":"Dominican Republic","body_weight":"57.55","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"100","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"105","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"108","clean_jerk_record":"","clean_jerk_result":"105","group":"","points":"186","record":"","snatch_1st_fail":"no","snatch_1st_kg":"80","snatch_2nd_fail":"no","snatch_2nd_kg":"82","snatch_3rd_fail":"yes","snatch_3rd_kg":"84","snatch_record":"","snatch_result":"82","status":""},{"position":"12","people_id":"7975420","first_name":"Nadia Morelia","last_name":"Vela Ramirez","short_name":"N. Vela Ramirez","common_name":"Nadia Vela Ramirez","nationality_area_id":"153","nationality_area_code":"PER","nationality_area_name":"Peru","body_weight":"57.90","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"100","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"104","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"104","clean_jerk_record":"","clean_jerk_result":"100","group":"","points":"183","record":"","snatch_1st_fail":"no","snatch_1st_kg":"80","snatch_2nd_fail":"yes","snatch_2nd_kg":"84","snatch_3rd_fail":"yes","snatch_3rd_kg":"84","snatch_record":"","snatch_result":"80","status":""},{"position":"13","people_id":"7908490","first_name":"Victoria Maria ","last_name":"Grenni Alvarado","short_name":"Victoria Grenni ","common_name":"Victoria Grenni ","nationality_area_id":"67","nationality_area_code":"SLV","nationality_area_name":"El Salvador","body_weight":"56.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"94","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"98","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"101","clean_jerk_record":"","clean_jerk_result":"98","group":"","points":"177","record":"","snatch_1st_fail":"no","snatch_1st_kg":"76","snatch_2nd_fail":"no","snatch_2nd_kg":"79","snatch_3rd_fail":"yes","snatch_3rd_kg":"81","snatch_record":"","snatch_result":"79","status":""},{"position":"14","people_id":"8013771","first_name":"Aneth","last_name":"Juto Martinez","short_name":"A. Juto Martinez","common_name":"Aneth Juto Martinez","nationality_area_id":"142","nationality_area_code":"NIC","nationality_area_name":"Nicaragua","body_weight":"57.45","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"90","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"95","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"98","clean_jerk_record":"","clean_jerk_result":"95","group":"","points":"169","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"71","snatch_2nd_fail":"no","snatch_2nd_kg":"71","snatch_3rd_fail":"no","snatch_3rd_kg":"74","snatch_record":"","snatch_result":"74","status":""},{"position":"15","people_id":"8029033","first_name":"Wendy","last_name":"Soto Tum","short_name":"W. Soto Tum","common_name":"Wendy Soto Tum","nationality_area_id":"85","nationality_area_code":"GTM","nationality_area_name":"Guatemala","body_weight":"56.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"85","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"90","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"90","clean_jerk_record":"","clean_jerk_result":"90","group":"","points":"160","record":"","snatch_1st_fail":"no","snatch_1st_kg":"68","snatch_2nd_fail":"yes","snatch_2nd_kg":"72","snatch_3rd_fail":"no","snatch_3rd_kg":"72","snatch_record":"","snatch_result":"72","status":""},{"position":"16","people_id":"8029029","first_name":"Nadjie","last_name":"Castillo","short_name":"N. Castillo","common_name":"Nadjie Castillo","nationality_area_id":"150","nationality_area_code":"PAN","nationality_area_name":"Panama","body_weight":"57.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"85","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"88","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"88","clean_jerk_record":"","clean_jerk_result":"85","group":"","points":"157","record":"","snatch_1st_fail":"no","snatch_1st_kg":"68","snatch_2nd_fail":"no","snatch_2nd_kg":"71","snatch_3rd_fail":"yes","snatch_3rd_kg":"74","snatch_record":"","snatch_result":"71","status":""},{"position":"17","people_id":"7908524","first_name":"Sofia Isabel","last_name":"Aleman Ardon","short_name":"S. Aleman Ardon","common_name":"Sofia Aleman Ardon","nationality_area_id":"90","nationality_area_code":"HND","nationality_area_name":"Honduras","body_weight":"57.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"80","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"85","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"87","clean_jerk_record":"","clean_jerk_result":"85","group":"","points":"156","record":"","snatch_1st_fail":"no","snatch_1st_kg":"70","snatch_2nd_fail":"yes","snatch_2nd_kg":"73","snatch_3rd_fail":"yes","snatch_3rd_kg":"73","snatch_record":"","snatch_result":"70","status":""},{"position":"18","people_id":"7905850","first_name":"Josee","last_name":"Gallant","short_name":"J. Gallant","common_name":"Josee Gallant","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"55.95","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"","group":"","points":"","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"87","snatch_2nd_fail":"yes","snatch_2nd_kg":"87","snatch_3rd_fail":"yes","snatch_3rd_kg":"87","snatch_record":"","snatch_result":"","status":""}]}}}}},{"discipline_id":"116","name":"63 kg","type":"contestant","gender":{"value":"female","age_group":"senior","round":{"round_id":"128725","name":"Final","type":"table","start_date":"2025-07-15","start_time":"14:00:00","start_date_utc":"2025-07-15","start_time_utc":"12:00:00","end_date":"2025-07-15","end_time":"16:00:00","end_date_utc":"2025-07-15","end_time_utc":"14:00:00","last_updated":"2025-07-22 00:11:37","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7926439","first_name":"Yenny","last_name":"Sinisterra Torres","short_name":"Y. Sinisterra","common_name":"Yenny Sinisterra","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"63.00","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"124","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"129","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"132","clean_jerk_record":"","clean_jerk_result":"132","group":"","points":"236","record":"","snatch_1st_fail":"no","snatch_1st_kg":"98","snatch_2nd_fail":"no","snatch_2nd_kg":"102","snatch_3rd_fail":"no","snatch_3rd_kg":"104","snatch_record":"","snatch_result":"104","status":""},{"position":"2","people_id":"7979206","first_name":"Katharine Emily","last_name":"Estep","short_name":"K. Estep","common_name":"Katharine Estep","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"60.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"124","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"128","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"131","clean_jerk_record":"","clean_jerk_result":"131","group":"","points":"228","record":"","snatch_1st_fail":"no","snatch_1st_kg":"95","snatch_2nd_fail":"no","snatch_2nd_kg":"99","snatch_3rd_fail":"yes","snatch_3rd_kg":"103","snatch_record":"","snatch_result":"99","status":""},{"position":"3","people_id":"7905186","first_name":"Janeth","last_name":"Gómez Valdivia","short_name":"J. Gómez","common_name":"Janeth Gómez","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"62.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"118","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"121","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"123","clean_jerk_record":"","clean_jerk_result":"123","group":"","points":"222","record":"","snatch_1st_fail":"no","snatch_1st_kg":"96","snatch_2nd_fail":"no","snatch_2nd_kg":"99","snatch_3rd_fail":"yes","snatch_3rd_kg":"102","snatch_record":"","snatch_result":"99","status":""},{"position":"4","people_id":"7905270","first_name":"Genesis Lourdes","last_name":"Rodriguez Gomez","short_name":"G. Rodriguez Gomez","common_name":"Genesis Rodriguez ","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"59.25","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"115","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"119","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"122","clean_jerk_record":"","clean_jerk_result":"122","group":"","points":"221","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"96","snatch_2nd_fail":"yes","snatch_2nd_kg":"96","snatch_3rd_fail":"no","snatch_3rd_kg":"97","snatch_record":"","snatch_result":"97","status":""},{"position":"5","people_id":"7908520","first_name":"Nathalia","last_name":"Novas Jimenez","short_name":"N. Novas Jimenez","common_name":"Nathalia Novas Jimenez","nationality_area_id":"63","nationality_area_code":"DMA","nationality_area_name":"Dominica","body_weight":"62.65","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"120","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"120","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"123","clean_jerk_record":"","clean_jerk_result":"120","group":"","points":"215","record":"","snatch_1st_fail":"no","snatch_1st_kg":"95","snatch_2nd_fail":"yes","snatch_2nd_kg":"98","snatch_3rd_fail":"yes","snatch_3rd_kg":"100","snatch_record":"","snatch_result":"95","status":""},{"position":"6","people_id":"7978900","first_name":"Ann Sophie","last_name":"Taschereau","short_name":"A. Taschereau","common_name":"Ann Taschereau","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"61.75","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"114","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"118","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"119","clean_jerk_record":"","clean_jerk_result":"119","group":"","points":"212","record":"","snatch_1st_fail":"no","snatch_1st_kg":"92","snatch_2nd_fail":"no","snatch_2nd_kg":"95","snatch_3rd_fail":"yes","snatch_3rd_kg":"97","snatch_record":"","snatch_result":"95","status":""},{"position":"7","people_id":"7905318","first_name":"Monica","last_name":"Knowlton","short_name":"M. Knowlton","common_name":"Monica Knowlton","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"62.20","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"112","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"117","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"117","clean_jerk_record":"","clean_jerk_result":"117","group":"","points":"209","record":"","snatch_1st_fail":"no","snatch_1st_kg":"86","snatch_2nd_fail":"no","snatch_2nd_kg":"90","snatch_3rd_fail":"yes","snatch_3rd_kg":"93","snatch_record":"","snatch_result":"90","status":""},{"position":"8","people_id":"7929241","first_name":"Eldi Jhasmin","last_name":"Paredes","short_name":"E. Paredes","common_name":"Eldi Jhasmin Paredes","nationality_area_id":"153","nationality_area_code":"PER","nationality_area_name":"Peru","body_weight":"61.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"107","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"111","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"113","clean_jerk_record":"","clean_jerk_result":"111","group":"","points":"198","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"84","snatch_2nd_fail":"no","snatch_2nd_kg":"84","snatch_3rd_fail":"no","snatch_3rd_kg":"87","snatch_record":"","snatch_result":"87","status":""},{"position":"9","people_id":"488403","first_name":"Sema Nancy","last_name":"Ludrick Rivas","short_name":"S. Ludrick ","common_name":"Sema Ludrick ","nationality_area_id":"142","nationality_area_code":"NIC","nationality_area_name":"Nicaragua","body_weight":"62.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"108","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"112","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"112","clean_jerk_record":"","clean_jerk_result":"108","group":"","points":"191","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"83","snatch_2nd_fail":"yes","snatch_2nd_kg":"83","snatch_3rd_fail":"no","snatch_3rd_kg":"83","snatch_record":"","snatch_result":"83","status":""},{"position":"10","people_id":"7993461","first_name":"Sofia ","last_name":"Ramirez","short_name":"S. Ramirez","common_name":"Sofia Ramirez","nationality_area_id":"55","nationality_area_code":"CRI","nationality_area_name":"Costa Rica","body_weight":"61.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"101","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"106","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"110","clean_jerk_record":"","clean_jerk_result":"106","group":"","points":"181","record":"","snatch_1st_fail":"no","snatch_1st_kg":"73","snatch_2nd_fail":"no","snatch_2nd_kg":"77","snatch_3rd_fail":"yes","snatch_3rd_kg":"80","snatch_record":"","snatch_result":"77","status":""},{"position":"11","people_id":"8029039","first_name":"Kynara","last_name":"Campo","short_name":"K. Campo","common_name":"Kynara Campo","nationality_area_id":"157","nationality_area_code":"PRI","nationality_area_name":"Puerto Rico","body_weight":"58.30","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"95","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"100","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"105","clean_jerk_record":"","clean_jerk_result":"100","group":"","points":"177","record":"","snatch_1st_fail":"no","snatch_1st_kg":"75","snatch_2nd_fail":"yes","snatch_2nd_kg":"80","snatch_3rd_fail":"yes","snatch_3rd_kg":"80","snatch_record":"","snatch_result":"75","status":""},{"position":"12","people_id":"8029044","first_name":"Ana Patricia","last_name":"Noj Rodriguez","short_name":"A. Noj Rodriguez","common_name":"Ana Noj Rodriguez","nationality_area_id":"85","nationality_area_code":"GTM","nationality_area_name":"Guatemala","body_weight":"60.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"85","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"90","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"92","clean_jerk_record":"","clean_jerk_result":"90","group":"","points":"","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"70","snatch_2nd_fail":"yes","snatch_2nd_kg":"70","snatch_3rd_fail":"yes","snatch_3rd_kg":"70","snatch_record":"","snatch_result":"","status":""}]}}}}},{"discipline_id":"176","name":"60 kg","type":"contestant","gender":{"value":"male","age_group":"senior","round":{"round_id":"128735","name":"Final","type":"table","start_date":"2025-07-13","start_time":"12:00:00","start_date_utc":"2025-07-13","start_time_utc":"10:00:00","end_date":"2025-07-13","end_time":"14:00:00","end_date_utc":"2025-07-13","end_time_utc":"12:00:00","last_updated":"2025-07-22 00:12:03","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7908569","first_name":"Thiago","last_name":"Felix Da Silva","short_name":"Thiago Felix Da Silva","common_name":"Thiago Felix Da Silva","nationality_area_id":"35","nationality_area_code":"BRA","nationality_area_name":"Brazil","body_weight":"59.90","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"149","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"153","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"158","clean_jerk_record":"","clean_jerk_result":"158","group":"","points":"278","record":"","snatch_1st_fail":"no","snatch_1st_kg":"120","snatch_2nd_fail":"no","snatch_2nd_kg":"123","snatch_3rd_fail":"yes","snatch_3rd_kg":"126","snatch_record":"","snatch_result":"123","status":""},{"position":"2","people_id":"7908564","first_name":"Gabriel John","last_name":"Chhum","short_name":"G. Chhum","common_name":"Gabriel Chhum","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"59.80","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"148","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"152","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"158","clean_jerk_record":"","clean_jerk_result":"152","group":"","points":"275","record":"","snatch_1st_fail":"no","snatch_1st_kg":"115","snatch_2nd_fail":"no","snatch_2nd_kg":"120","snatch_3rd_fail":"yes","snatch_3rd_kg":"123","snatch_record":"","snatch_result":"120","status":""},{"position":"3","people_id":"7993466","first_name":"Howard ","last_name":"Roche Cintron","short_name":"H. Roche Cintron","common_name":"Howard Roche Cintron","nationality_area_id":"157","nationality_area_code":"PRI","nationality_area_name":"Puerto Rico","body_weight":"59.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"131","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"136","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"141","clean_jerk_record":"","clean_jerk_result":"141","group":"","points":"250","record":"","snatch_1st_fail":"no","snatch_1st_kg":"108","snatch_2nd_fail":"yes","snatch_2nd_kg":"111","snatch_3rd_fail":"no","snatch_3rd_kg":"111","snatch_record":"","snatch_result":"111","status":""},{"position":"4","people_id":"7975505","first_name":"Angello Rafael Solorzano","last_name":"Carmona","short_name":"A. Carmona","common_name":"Angello Carmona","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"59.60","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"135","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"140","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"144","clean_jerk_record":"","clean_jerk_result":"140","group":"","points":"246","record":"","snatch_1st_fail":"no","snatch_1st_kg":"101","snatch_2nd_fail":"no","snatch_2nd_kg":"106","snatch_3rd_fail":"no","snatch_3rd_kg":"110","snatch_record":"","snatch_result":"110","status":""},{"position":"5","people_id":"7975510","first_name":"Henry Eduardo Esquivel","last_name":"Morales","short_name":"H. Morales","common_name":"Henry Morales","nationality_area_id":"85","nationality_area_code":"GTM","nationality_area_name":"Guatemala","body_weight":"59.60","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"135","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"140","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"143","clean_jerk_record":"","clean_jerk_result":"140","group":"","points":"246","record":"","snatch_1st_fail":"no","snatch_1st_kg":"105","snatch_2nd_fail":"no","snatch_2nd_kg":"108","snatch_3rd_fail":"yes","snatch_3rd_kg":"111","snatch_record":"","snatch_result":"108","status":""},{"position":"6","people_id":"8004827","first_name":"Benjamin ","last_name":"Torres","short_name":"B. Torres","common_name":"Benjamin Torres","nationality_area_id":"48","nationality_area_code":"CHL","nationality_area_name":"Chile","body_weight":"59.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"132","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"136","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"140","clean_jerk_record":"","clean_jerk_result":"136","group":"","points":"244","record":"","snatch_1st_fail":"no","snatch_1st_kg":"100","snatch_2nd_fail":"no","snatch_2nd_kg":"105","snatch_3rd_fail":"no","snatch_3rd_kg":"108","snatch_record":"","snatch_result":"108","status":""},{"position":"7","people_id":"8005001","first_name":"Duvan ","last_name":"Ferrer","short_name":"D. Ferrer","common_name":"Duvan Ferrer","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"60.00","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"132","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"132","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"135","clean_jerk_record":"","clean_jerk_result":"135","group":"","points":"","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"100","snatch_2nd_fail":"no","snatch_2nd_kg":"100","snatch_3rd_fail":"no","snatch_3rd_kg":"105","snatch_record":"","snatch_result":"105","status":""},{"position":"8","people_id":"7975507","first_name":"Juan Miguel Martínez","last_name":"González","short_name":"J. González","common_name":"Juan González","nationality_area_id":"150","nationality_area_code":"PAN","nationality_area_name":"Panama","body_weight":"59.85","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"127","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"130","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"130","clean_jerk_record":"","clean_jerk_result":"","group":"","points":"","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"115","snatch_2nd_fail":"yes","snatch_2nd_kg":"115","snatch_3rd_fail":"yes","snatch_3rd_kg":"115","snatch_record":"","snatch_result":"","status":""}]}}}}},{"discipline_id":"181","name":"110 kg","type":"contestant","gender":{"value":"male","age_group":"senior","round":{"round_id":"128731","name":"Final","type":"table","start_date":"2025-07-17","start_time":"16:00:00","start_date_utc":"2025-07-17","start_time_utc":"14:00:00","end_date":"2025-07-17","end_time":"18:00:00","end_date_utc":"2025-07-17","end_time_utc":"16:00:00","last_updated":"2025-07-22 00:12:20","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7979949","first_name":"Kolbi Malik Kwame","last_name":"Ferguson","short_name":"K. Ferguson","common_name":"Kolbi Ferguson","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"109.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"215","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"222","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"224","clean_jerk_record":"","clean_jerk_result":"215","group":"","points":"388","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"170","snatch_2nd_fail":"no","snatch_2nd_kg":"170","snatch_3rd_fail":"no","snatch_3rd_kg":"173","snatch_record":"","snatch_result":"173","status":""},{"position":"2","people_id":"8002888","first_name":"Matheus","last_name":"De Souza Pessanha","short_name":"Matheus De Souza Pessanha","common_name":"Matheus De Souza Pessanha","nationality_area_id":"35","nationality_area_code":"BRA","nationality_area_name":"Brazil","body_weight":"98.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"205","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"210","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"222","clean_jerk_record":"","clean_jerk_result":"210","group":"","points":"376","record":"","snatch_1st_fail":"no","snatch_1st_kg":"160","snatch_2nd_fail":"no","snatch_2nd_kg":"166","snatch_3rd_fail":"no","snatch_3rd_kg":"171","snatch_record":"","snatch_result":"171","status":""},{"position":"3","people_id":"7979441","first_name":"Xavier","last_name":"Lusignan","short_name":"X. Lusignan","common_name":"Xavier Lusignan","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"104.60","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"197","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"203","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"208","clean_jerk_record":"","clean_jerk_result":"208","group":"","points":"376","record":"","snatch_1st_fail":"no","snatch_1st_kg":"160","snatch_2nd_fail":"no","snatch_2nd_kg":"165","snatch_3rd_fail":"no","snatch_3rd_kg":"169","snatch_record":"","snatch_result":"169","status":""},{"position":"4","people_id":"7908776","first_name":"Karim Alejandro","last_name":"Saadi Monroy","short_name":"K. Saadi Monroy","common_name":"Karim Saadi Monroy","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"106.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"200","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"205","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"210","clean_jerk_record":"","clean_jerk_result":"205","group":"","points":"370","record":"","snatch_1st_fail":"no","snatch_1st_kg":"159","snatch_2nd_fail":"no","snatch_2nd_kg":"165","snatch_3rd_fail":"no","snatch_3rd_kg":"168","snatch_record":"","snatch_result":"168","status":""},{"position":"5","people_id":"400358","first_name":"Hernán Moises","last_name":"Viera Espinoza","short_name":"H. Viera","common_name":"Hernán Viera","nationality_area_id":"153","nationality_area_code":"PER","nationality_area_name":"Peru","body_weight":"109.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"195","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"201","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"205","clean_jerk_record":"","clean_jerk_result":"201","group":"","points":"365","record":"","snatch_1st_fail":"no","snatch_1st_kg":"160","snatch_2nd_fail":"yes","snatch_2nd_kg":"165","snatch_3rd_fail":"yes","snatch_3rd_kg":"166","snatch_record":"","snatch_result":"160","status":""},{"position":"6","people_id":"8029048","first_name":"Isaac Daniel","last_name":"Alfaro Pacheco","short_name":"I. Alfaro Pacheco","common_name":"Isaac Alfaro Pacheco","nationality_area_id":"55","nationality_area_code":"CRI","nationality_area_name":"Costa Rica","body_weight":"104.95","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"165","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"170","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"175","clean_jerk_record":"","clean_jerk_result":"175","group":"","points":"307","record":"","snatch_1st_fail":"no","snatch_1st_kg":"150","snatch_2nd_fail":"no","snatch_2nd_kg":"155","snatch_3rd_fail":"yes","snatch_3rd_kg":"160","snatch_record":"","snatch_result":"155","status":""},{"position":"7","people_id":"7905529","first_name":"James Francis","last_name":"Daley","short_name":"J. Daley","common_name":"James Daley","nationality_area_id":"101","nationality_area_code":"JAM","nationality_area_name":"Jamaica","body_weight":"106.60","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"149","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"154","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"155","clean_jerk_record":"","clean_jerk_result":"149","group":"","points":"267","record":"","snatch_1st_fail":"no","snatch_1st_kg":"127","snatch_2nd_fail":"yes","snatch_2nd_kg":"132","snatch_3rd_fail":"no","snatch_3rd_kg":"132","snatch_record":"","snatch_result":"132","status":""},{"position":"8","people_id":"8029049","first_name":"Alex Valentino","last_name":"Morel Valenzuela","short_name":"A. Morel Valenzuela","common_name":"Alex Morel Valenzuela","nationality_area_id":"152","nationality_area_code":"PRY","nationality_area_name":"Paraguay","body_weight":"98.90","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"125","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"125","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"130","clean_jerk_record":"","clean_jerk_result":"130","group":"","points":"242","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"118","snatch_2nd_fail":"no","snatch_2nd_kg":"118","snatch_3rd_fail":"yes","snatch_3rd_kg":"122","snatch_record":"","snatch_result":"118","status":""},{"position":"9","people_id":"7927282","first_name":"Jeyson Alonso","last_name":"Arias Mosquera","short_name":"J. Arias Mosquera","common_name":"Jeyson Arias Mosquera","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"102.55","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"197","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"197","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"","group":"","points":"","record":"","snatch_1st_fail":"no","snatch_1st_kg":"107","snatch_2nd_fail":"yes","snatch_2nd_kg":"112","snatch_3rd_fail":"no","snatch_3rd_kg":"112","snatch_record":"","snatch_result":"112","status":""}]}}}}},{"discipline_id":"182","name":"+110 kg","type":"contestant","gender":{"value":"male","age_group":"senior","round":{"round_id":"128732","name":"Final","type":"table","start_date":"2025-07-18","start_time":"10:00:00","start_date_utc":"2025-07-18","start_time_utc":"08:00:00","end_date":"2025-07-18","end_time":"12:00:00","end_date_utc":"2025-07-18","end_time_utc":"10:00:00","last_updated":"2025-07-22 00:12:40","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7980306","first_name":"Aaron Andrew","last_name":"Williams","short_name":"A. Williams","common_name":"Aaron Williams","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","body_weight":"179.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"215","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"224","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"224","group":"","points":"411","record":"","snatch_1st_fail":"no","snatch_1st_kg":"182","snatch_2nd_fail":"no","snatch_2nd_kg":"187","snatch_3rd_fail":"no","snatch_3rd_kg":"191","snatch_record":"","snatch_result":"191","status":""},{"position":"2","people_id":"7743387","first_name":"Rafael De Jesus","last_name":"Cerro Castillo","short_name":"Rafael Cerro Castillo","common_name":"Rafael Cerro Castillo","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"140.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"220","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"227","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"230","clean_jerk_record":"","clean_jerk_result":"220","group":"","points":"410","record":"","snatch_1st_fail":"no","snatch_1st_kg":"180","snatch_2nd_fail":"no","snatch_2nd_kg":"185","snatch_3rd_fail":"no","snatch_3rd_kg":"190","snatch_record":"","snatch_result":"190","status":""},{"position":"3","people_id":"7975540","first_name":"Santiago Cossio","last_name":"Sanchez","short_name":"S. Sanchez","common_name":"Santiago Sanchez","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"149.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"210","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"216","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"220","clean_jerk_record":"","clean_jerk_result":"216","group":"","points":"407","record":"","snatch_1st_fail":"no","snatch_1st_kg":"177","snatch_2nd_fail":"no","snatch_2nd_kg":"183","snatch_3rd_fail":"no","snatch_3rd_kg":"187","snatch_record":"","snatch_result":"187","status":""},{"position":"4","people_id":"8029053","first_name":"Ezequiel","last_name":"German Nieves","short_name":"E. German Nieves","common_name":"Ezequiel German Nieves","nationality_area_id":"64","nationality_area_code":"DOM","nationality_area_name":"Dominican Republic","body_weight":"148.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"200","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"207","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"211","clean_jerk_record":"","clean_jerk_result":"211","group":"","points":"380","record":"","snatch_1st_fail":"no","snatch_1st_kg":"165","snatch_2nd_fail":"no","snatch_2nd_kg":"170","snatch_3rd_fail":"no","snatch_3rd_kg":"175","snatch_record":"","snatch_result":"175","status":""},{"position":"5","people_id":"8029055","first_name":"Ander Santiago","last_name":"Paniagua","short_name":"A. Paniagua","common_name":"Ander Paniagua","nationality_area_id":"64","nationality_area_code":"DOM","nationality_area_name":"Dominican Republic","body_weight":"163.85","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"200","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"207","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"209","clean_jerk_record":"","clean_jerk_result":"209","group":"","points":"371","record":"","snatch_1st_fail":"no","snatch_1st_kg":"162","snatch_2nd_fail":"no","snatch_2nd_kg":"167","snatch_3rd_fail":"no","snatch_3rd_kg":"171","snatch_record":"","snatch_result":"171","status":""},{"position":"6","people_id":"7743653","first_name":"Dixon Bladimir","last_name":"Arroyo Valdez","short_name":"Dixon Arroyo Valdez","common_name":"Dixon Arroyo Valdez","nationality_area_id":"65","nationality_area_code":"ECU","nationality_area_name":"Ecuador","body_weight":"138.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"190","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"197","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"190","group":"","points":"360","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"160","snatch_2nd_fail":"yes","snatch_2nd_kg":"161","snatch_3rd_fail":"no","snatch_3rd_kg":"161","snatch_record":"","snatch_result":"161","status":""},{"position":"7","people_id":"7743651","first_name":"Gilberto Antonio","last_name":"Lemus Calanche","short_name":"Gilberto Lemus Calanche","common_name":"Gilberto Lemus Calanche","nationality_area_id":"85","nationality_area_code":"GTM","nationality_area_name":"Guatemala","body_weight":"128.45","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"185","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"195","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"198","clean_jerk_record":"","clean_jerk_result":"185","group":"","points":"346","record":"","snatch_1st_fail":"no","snatch_1st_kg":"150","snatch_2nd_fail":"no","snatch_2nd_kg":"155","snatch_3rd_fail":"no","snatch_3rd_kg":"160","snatch_record":"","snatch_result":"160","status":""},{"position":"8","people_id":"7975541","first_name":"Alonso Javier","last_name":"Bizama Conejero","short_name":"A. Bizama","common_name":"Alonso Bizama","nationality_area_id":"48","nationality_area_code":"CHL","nationality_area_name":"Chile","body_weight":"159.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"185","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"190","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"192","clean_jerk_record":"","clean_jerk_result":"185","group":"","points":"346","record":"","snatch_1st_fail":"no","snatch_1st_kg":"150","snatch_2nd_fail":"no","snatch_2nd_kg":"156","snatch_3rd_fail":"no","snatch_3rd_kg":"161","snatch_record":"","snatch_result":"156","status":""},{"position":"9","people_id":"7975542","first_name":"Rodrigo Antonio Morales","last_name":"Perez","short_name":"R. Perez","common_name":"Rodrigo Perez","nationality_area_id":"67","nationality_area_code":"SLV","nationality_area_name":"El Salvador","body_weight":"141.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"170","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"180","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"186","clean_jerk_record":"","clean_jerk_result":"180","group":"","points":"320","record":"","snatch_1st_fail":"no","snatch_1st_kg":"137","snatch_2nd_fail":"no","snatch_2nd_kg":"145","snatch_3rd_fail":"yes","snatch_3rd_kg":"148","snatch_record":"","snatch_result":"145","status":""},{"position":"10","people_id":"8029054","first_name":"David","last_name":"Jorge Vance","short_name":"D. Jorge Vance","common_name":"David Jorge Vance","nationality_area_id":"157","nationality_area_code":"PRI","nationality_area_name":"Puerto Rico","body_weight":"121.10","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"175","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"175","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"183","clean_jerk_record":"","clean_jerk_result":"175","group":"","points":"315","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"145","snatch_2nd_fail":"yes","snatch_2nd_kg":"145","snatch_3rd_fail":"no","snatch_3rd_kg":"145","snatch_record":"","snatch_result":"145","status":""},{"position":"11","people_id":"8004970","first_name":"Jorge ","last_name":"Luis Salinas","short_name":"J. Luis Salinas","common_name":"Jorge Luis Salinas","nationality_area_id":"153","nationality_area_code":"PER","nationality_area_name":"Peru","body_weight":"110.50","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"170","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"170","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"176","clean_jerk_record":"","clean_jerk_result":"170","group":"","points":"315","record":"","snatch_1st_fail":"no","snatch_1st_kg":"130","snatch_2nd_fail":"no","snatch_2nd_kg":"135","snatch_3rd_fail":"no","snatch_3rd_kg":"141","snatch_record":"","snatch_result":"141","status":""},{"position":"12","people_id":"8029056","first_name":"Chad","last_name":"Wright","short_name":"C. Wright","common_name":"Chad Wright","nationality_area_id":"101","nationality_area_code":"JAM","nationality_area_name":"Jamaica","body_weight":"133.30","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"160","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"165","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"170","clean_jerk_record":"","clean_jerk_result":"170","group":"","points":"311","record":"","snatch_1st_fail":"no","snatch_1st_kg":"130","snatch_2nd_fail":"no","snatch_2nd_kg":"135","snatch_3rd_fail":"yes","snatch_3rd_kg":"140","snatch_record":"","snatch_result":"135","status":""},{"position":"13","people_id":"8029051","first_name":"Soneil","last_name":"Ellington","short_name":"S. Ellington","common_name":"Soneil Ellington","nationality_area_id":"101","nationality_area_code":"JAM","nationality_area_name":"Jamaica","body_weight":"143.00","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"150","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"150","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"150","clean_jerk_record":"","clean_jerk_result":"","group":"","points":"","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"120","snatch_2nd_fail":"no","snatch_2nd_kg":"120","snatch_3rd_fail":"no","snatch_3rd_kg":"125","snatch_record":"","snatch_result":"125","status":""}]}}}}},{"discipline_id":"441","name":"71 kg","type":"contestant","gender":{"value":"male","age_group":"senior","round":{"round_id":"128724","name":"Final","type":"table","start_date":"2025-07-15","start_time":"12:00:00","start_date_utc":"2025-07-15","start_time_utc":"10:00:00","end_date":"2025-07-15","end_time":"14:00:00","end_date_utc":"2025-07-15","end_time_utc":"12:00:00","last_updated":"2025-07-22 00:12:54","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7975513","first_name":"Sebastian Andres Olivares","last_name":"Paez","short_name":"S. Paez","common_name":"Sebastian Paez","nationality_area_id":"51","nationality_area_code":"COL","nationality_area_name":"Colombia","body_weight":"70.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"175","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"182","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"191","clean_jerk_record":"","clean_jerk_result":"191","group":"","points":"337","record":"","snatch_1st_fail":"no","snatch_1st_kg":"141","snatch_2nd_fail":"no","snatch_2nd_kg":"146","snatch_3rd_fail":"yes","snatch_3rd_kg":"149","snatch_record":"","snatch_result":"146","status":""},{"position":"2","people_id":"7975518","first_name":"Reinner Josue","last_name":"Arango Mendez","short_name":"R. Arango","common_name":"Reinner Arango","nationality_area_id":"207","nationality_area_code":"VEN","nationality_area_name":"Venezuela","body_weight":"70.90","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"166","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"172","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"176","clean_jerk_record":"","clean_jerk_result":"172","group":"","points":"314","record":"","snatch_1st_fail":"no","snatch_1st_kg":"135","snatch_2nd_fail":"no","snatch_2nd_kg":"142","snatch_3rd_fail":"yes","snatch_3rd_kg":"147","snatch_record":"","snatch_result":"142","status":""},{"position":"3","people_id":"488310","first_name":"Jonathan","last_name":"Muñoz","short_name":"J. Muñoz","common_name":"Jonathan Muñoz","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"70.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"160","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"164","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"166","clean_jerk_record":"","clean_jerk_result":"166","group":"","points":"293","record":"","snatch_1st_fail":"no","snatch_1st_kg":"125","snatch_2nd_fail":"yes","snatch_2nd_kg":"130","snatch_3rd_fail":"no","snatch_3rd_kg":"131","snatch_record":"","snatch_result":"131","status":""},{"position":"4","people_id":"7978879","first_name":"Vicente Uriel","last_name":"Montoya Alvarado","short_name":"V. Montoya","common_name":"Vicente Montoya","nationality_area_id":"129","nationality_area_code":"MEX","nationality_area_name":"Mexico","body_weight":"70.40","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"156","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"161","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"165","clean_jerk_record":"","clean_jerk_result":"165","group":"","points":"291","record":"","snatch_1st_fail":"no","snatch_1st_kg":"125","snatch_2nd_fail":"no","snatch_2nd_kg":"130","snatch_3rd_fail":"yes","snatch_3rd_kg":"133","snatch_record":"","snatch_result":"130","status":""},{"position":"5","people_id":"8004880","first_name":"Erick ","last_name":"Estupinan","short_name":"E. Estupinan","common_name":"Erick Estupinan","nationality_area_id":"65","nationality_area_code":"ECU","nationality_area_name":"Ecuador","body_weight":"70.55","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"155","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"161","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"164","clean_jerk_record":"","clean_jerk_result":"164","group":"","points":"290","record":"","snatch_1st_fail":"no","snatch_1st_kg":"128","snatch_2nd_fail":"yes","snatch_2nd_kg":"132","snatch_3rd_fail":"yes","snatch_3rd_kg":"132","snatch_record":"","snatch_result":"128","status":""},{"position":"6","people_id":"8016825","first_name":"Jimmy ","last_name":"Lopez","short_name":"J. Lopez","common_name":"Jimmy Lopez","nationality_area_id":"65","nationality_area_code":"ECU","nationality_area_name":"Ecuador","body_weight":"70.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"155","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"160","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"163","clean_jerk_record":"","clean_jerk_result":"163","group":"","points":"290","record":"","snatch_1st_fail":"no","snatch_1st_kg":"120","snatch_2nd_fail":"yes","snatch_2nd_kg":"126","snatch_3rd_fail":"no","snatch_3rd_kg":"127","snatch_record":"","snatch_result":"127","status":""},{"position":"7","people_id":"8029037","first_name":"Francisco Alberto","last_name":"Tonton Diaz","short_name":"F. Tonton Diaz","common_name":"Francisco Tonton Diaz","nationality_area_id":"64","nationality_area_code":"DOM","nationality_area_name":"Dominican Republic","body_weight":"70.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"155","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"160","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"162","clean_jerk_record":"","clean_jerk_result":"160","group":"","points":"285","record":"","snatch_1st_fail":"no","snatch_1st_kg":"120","snatch_2nd_fail":"no","snatch_2nd_kg":"123","snatch_3rd_fail":"no","snatch_3rd_kg":"126","snatch_record":"","snatch_result":"126","status":""},{"position":"8","people_id":"7975520","first_name":"Henry Geovany Méndez","last_name":"Ye","short_name":"H. Ye","common_name":"Henry Ye","nationality_area_id":"85","nationality_area_code":"GTM","nationality_area_name":"Guatemala","body_weight":"70.45","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"155","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"160","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"160","clean_jerk_record":"","clean_jerk_result":"160","group":"","points":"285","record":"","snatch_1st_fail":"no","snatch_1st_kg":"120","snatch_2nd_fail":"yes","snatch_2nd_kg":"125","snatch_3rd_fail":"no","snatch_3rd_kg":"125","snatch_record":"","snatch_result":"125","status":""},{"position":"9","people_id":"8029035","first_name":"Matt","last_name":"Darsigny","short_name":"M. Darsigny","common_name":"Matt Darsigny","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","body_weight":"70.65","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"155","clean_jerk_2nd_fail":"yes","clean_jerk_2nd_kg":"162","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"162","clean_jerk_record":"","clean_jerk_result":"155","group":"","points":"281","record":"","snatch_1st_fail":"no","snatch_1st_kg":"120","snatch_2nd_fail":"yes","snatch_2nd_kg":"124","snatch_3rd_fail":"no","snatch_3rd_kg":"124","snatch_record":"","snatch_result":"124","status":""},{"position":"10","people_id":"7975515","first_name":"Wilfredo Camey","last_name":"Rodriguez","short_name":"W. Rodriguez","common_name":"Wilfredo Rodriguez","nationality_area_id":"85","nationality_area_code":"GTM","nationality_area_name":"Guatemala","body_weight":"69.50","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"150","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"155","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"160","clean_jerk_record":"","clean_jerk_result":"155","group":"","points":"281","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"120","snatch_2nd_fail":"no","snatch_2nd_kg":"120","snatch_3rd_fail":"yes","snatch_3rd_kg":"123","snatch_record":"","snatch_result":"120","status":""},{"position":"11","people_id":"7975514","first_name":"Jose Alexander Mendez","last_name":"Diaz","short_name":"J. Diaz","common_name":"Jose Diaz","nationality_area_id":"67","nationality_area_code":"SLV","nationality_area_name":"El Salvador","body_weight":"69.10","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"150","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"154","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"156","clean_jerk_record":"","clean_jerk_result":"154","group":"","points":"271","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"118","snatch_2nd_fail":"no","snatch_2nd_kg":"118","snatch_3rd_fail":"yes","snatch_3rd_kg":"121","snatch_record":"","snatch_result":"118","status":""},{"position":"12","people_id":"8029034","first_name":"Armando Justiniano","last_name":"Britton Hamilton","short_name":"A. Britton Hamilton","common_name":"Armando Britton Hamilton","nationality_area_id":"142","nationality_area_code":"NIC","nationality_area_name":"Nicaragua","body_weight":"69.70","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"150","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"153","clean_jerk_3rd_fail":"yes","clean_jerk_3rd_kg":"156","clean_jerk_record":"","clean_jerk_result":"153","group":"","points":"270","record":"","snatch_1st_fail":"yes","snatch_1st_kg":"118","snatch_2nd_fail":"no","snatch_2nd_kg":"118","snatch_3rd_fail":"yes","snatch_3rd_kg":"122","snatch_record":"","snatch_result":"118","status":""},{"position":"13","people_id":"8004881","first_name":"Kyle ","last_name":"Bogado","short_name":"K. Bogado","common_name":"Kyle Bogado","nationality_area_id":"152","nationality_area_code":"PRY","nationality_area_name":"Paraguay","body_weight":"69.65","clean_jerk_1st_fail":"yes","clean_jerk_1st_kg":"150","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"150","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"150","group":"","points":"270","record":"","snatch_1st_fail":"no","snatch_1st_kg":"110","snatch_2nd_fail":"no","snatch_2nd_kg":"115","snatch_3rd_fail":"yes","snatch_3rd_kg":"120","snatch_record":"","snatch_result":"115","status":""},{"position":"14","people_id":"8004847","first_name":"Gustavo","last_name":"Doyle","short_name":"G. Doyle","common_name":"Gustavo Doyle","nationality_area_id":"150","nationality_area_code":"PAN","nationality_area_name":"Panama","body_weight":"68.15","clean_jerk_1st_fail":"no","clean_jerk_1st_kg":"130","clean_jerk_2nd_fail":"no","clean_jerk_2nd_kg":"","clean_jerk_3rd_fail":"no","clean_jerk_3rd_kg":"","clean_jerk_record":"","clean_jerk_result":"130","group":"","points":"238","record":"","snatch_1st_fail":"no","snatch_1st_kg":"103","snatch_2nd_fail":"yes","snatch_2nd_kg":"108","snatch_3rd_fail":"no","snatch_3rd_kg":"108","snatch_record":"","snatch_result":"108","status":""}]}}}}}]}}}}}}