Skip to content

Instantly share code, notes, and snippets.

@cwndrws
Created March 8, 2017 04:48
Show Gist options
  • Save cwndrws/a895d685fdb9cd3ba2a159dd00bc4058 to your computer and use it in GitHub Desktop.
Save cwndrws/a895d685fdb9cd3ba2a159dd00bc4058 to your computer and use it in GitHub Desktop.
Pro cycling average heights by nationality
from bs4 import BeautifulSoup
import requests
base_url = 'http://www.procyclingstats.com/'
team_path = 'teams'
def teams(team_page_path):
page_text = requests.get(base_url + team_page_path).text
soup = BeautifulSoup(page_text, 'html.parser')
content_div = soup.find_all('div', {'class': 'content'})[0]
world_tour_div = content_div.find_all('div')[5]
for team_column_div in world_tour_div.find_all('div')[0:3]:
for team_anchor in team_column_div.find_all('a'):
team = {}
team['name'] = team_anchor.text
team['path'] = team_anchor.attrs['href']
yield team
def rider_map_from_anchor(anchor):
rider_map = {}
rider_map['path'] = anchor.attrs['href']
rider_map['name'] = ' '.join(anchor.text.split()[::-1])
return rider_map
def rider_anchors_from_team_page(team_path):
page_text = requests.get(base_url + team_path).text
soup = BeautifulSoup(page_text, 'html.parser')
rider_list_div = soup.find_all('div', {'class': 'subDiv name show'})
rider_list = rider_list_div[0].find_all('a', {'class': 'rider'})
return rider_list
def rider_info_from_map(rider_map):
try:
page_text = requests.get(base_url + rider_map['path']).text
soup = BeautifulSoup(page_text, 'html.parser')
content_div = soup.find_all('div', {'class': 'content'})[0]
rider_div = content_div.find_all('div')[6]
info_div = rider_div.find_all('div')[1]
info_span = info_div.find_all('span')[0]
nation_weight_height_span = info_span.find_all('span')[0]
nationality = nation_weight_height_span.find_all('a')[0].text
rider_map['nationality'] = nationality
weight_height_span = nation_weight_height_span.find_all('span')[1]
weight = int(weight_height_span.text.split('kg')[0].split(':')[1].strip())
rider_map['weight'] = weight
height_span = weight_height_span.find_all('span')[0]
height = float(height_span.text.split('m')[0].split(':')[1].strip())
rider_map['height'] = height
except:
pass
return rider_map
def team_roster(team_path):
for rider in rider_anchors_from_team_page(team_path):
yield rider_info_from_map(rider_map_from_anchor(rider))
def world_tour_teams():
for team in teams(team_path):
team['roster'] = list(team_roster(team['path']))
yield team
def world_tour_by_nationality(world_tour_teams):
nationalities = {}
for team in world_tour_teams:
for rider in team['roster']:
try:
if rider['nationality'] not in nationalities:
nationalities[rider['nationality']] = [rider]
else:
nationalities[rider['nationality']].append(rider)
except KeyError:
print('could not find the nationality of {} rider: {}'.format(team['name'], rider))
return nationalities
def average_heights_by_nationality(world_tour_nationalities):
nations = {}
for nationality, riders in world_tour_nationalities.items():
nation = {}
nation['heights'] = []
nation['num_of_no_heights'] = 0
for rider in riders:
if 'height' not in rider:
nation['num_of_no_heights'] += 1
else:
nation['heights'].append(rider['height'])
if len(nation['heights']) == 0:
print('No heights found for {}'.format(nationality))
else:
nation['average_height'] = (sum(nation['heights']) / len(nation['heights']))
nations[nationality] = nation
return nations
[
[
"Colombia",
1.698333333333333
],
[
"Taiwan",
1.7
],
[
"Algeria",
1.72
],
[
"Japan",
1.75
],
[
"Ethiopia",
1.75
],
[
"Rwanda",
1.75
],
[
"Argentina",
1.75
],
[
"Croatia",
1.75
],
[
"Australia",
1.7776923076923075
],
[
"Canada",
1.7833333333333332
],
[
"Spain",
1.7842857142857138
],
[
"Slovenia",
1.7863636363636362
],
[
"Italy",
1.787719298245614
],
[
"France",
1.7923684210526316
],
[
"Portugal",
1.7924999999999998
],
[
"Kazakhstan",
1.7975
],
[
"Ireland",
1.8
],
[
"Eritrea",
1.8099999999999998
],
[
"Ukraine",
1.81
],
[
"Estonia",
1.81
],
[
"Slovakia",
1.81
],
[
"Costa Rica",
1.81
],
[
"Denmark",
1.8122222222222222
],
[
"Poland",
1.8128571428571427
],
[
"Great Britain",
1.8142857142857147
],
[
"Latvia",
1.815
],
[
"Czech Republic",
1.816
],
[
"Russia",
1.8233333333333335
],
[
"Belarus",
1.8250000000000002
],
[
"United States",
1.826666666666667
],
[
"Netherlands",
1.8308333333333333
],
[
"South Africa",
1.8312500000000003
],
[
"Austria",
1.835
],
[
"Belgium",
1.8359999999999999
],
[
"Switzerland",
1.8399999999999996
],
[
"Norway",
1.8419999999999999
],
[
"New Zealand",
1.842
],
[
"Germany",
1.8476923076923077
],
[
"Luxembourg",
1.8749999999999998
],
[
"Lithuania",
1.8833333333333335
],
[
"Sweden",
1.94
]
]
{
"Lithuania": [
{
"path": "rider/Gediminas_Bagdonas",
"name": "Gediminas Bagdonas",
"nationality": "Lithuania",
"weight": 78,
"height": 1.85
},
{
"path": "rider/Ramunas_navardauskas",
"name": "Ramunas Navardauskas",
"nationality": "Lithuania",
"weight": 77,
"height": 1.9
},
{
"path": "rider/Ignatas_Konovalovas",
"name": "Ignatas Konovalovas",
"nationality": "Lithuania",
"weight": 75,
"height": 1.9
}
],
"Belgium": [
{
"path": "rider/Jan_Bakelants",
"name": "Jan Bakelants",
"nationality": "Belgium",
"weight": 67,
"height": 1.77
},
{
"path": "rider/Oliver_naesen",
"name": "Oliver Naesen",
"nationality": "Belgium",
"weight": 71,
"height": 1.84
},
{
"path": "rider/Stijn_Vandenbergh",
"name": "Stijn Vandenbergh",
"nationality": "Belgium",
"weight": 85,
"height": 1.99
},
{
"path": "rider/Laurens_De_Vreese",
"name": "Laurens Vreese de",
"nationality": "Belgium",
"weight": 76,
"height": 1.9
},
{
"path": "rider/Ben_Hermans",
"name": "Ben Hermans",
"nationality": "Belgium",
"weight": 72,
"height": 1.86
},
{
"path": "rider/Dylan_Teuns",
"name": "Dylan Teuns",
"nationality": "Belgium",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Greg_Van_Avermaet",
"name": "Greg Avermaet Van",
"nationality": "Belgium",
"weight": 74,
"height": 1.81
},
{
"path": "rider/Loic_Vliegen",
"name": "Lo\\u00c3\\u00afc Vliegen",
"nationality": "Belgium",
"weight": 66,
"height": 1.83
},
{
"path": "rider/Tom_Van_Asbroeck",
"name": "Tom Asbroeck Van",
"nationality": "Belgium",
"weight": 69,
"height": 1.82
},
{
"path": "rider/Sep_Vanmarcke",
"name": "Sep Vanmarcke",
"nationality": "Belgium",
"weight": 77,
"height": 1.9
},
{
"path": "rider/Serge_Pauwels",
"name": "Serge Pauwels",
"nationality": "Belgium",
"weight": 65,
"height": 1.78
},
{
"path": "rider/Sander_Armee",
"name": "Sander Arm\\u00c3\\u00a9e",
"nationality": "Belgium",
"weight": 72,
"height": 1.89
},
{
"path": "rider/Tiesj_Benoot",
"name": "Tiesj Benoot",
"nationality": "Belgium",
"weight": 72,
"height": 1.9
},
{
"path": "rider/Kris_Boeckmans",
"name": "Kris Boeckmans",
"nationality": "Belgium",
"weight": 74,
"height": 1.8
},
{
"path": "rider/Sean_De_Bie",
"name": "Sean Bie de",
"nationality": "Belgium",
"weight": 65,
"height": 1.73
},
{
"path": "rider/Thomas_De_Gendt",
"name": "Thomas Gendt de",
"nationality": "Belgium",
"weight": 69,
"height": 1.77
},
{
"path": "rider/Bart_De_Clercq",
"name": "Bart Clercq De",
"nationality": "Belgium",
"weight": 67,
"height": 1.83
},
{
"path": "rider/Jasper_De_Buyst",
"name": "Jasper Buyst de",
"nationality": "Belgium",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Jens_Debusschere",
"name": "Jens Debusschere",
"nationality": "Belgium",
"weight": 78,
"height": 1.83
},
{
"path": "rider/Frederik_Frison",
"name": "Frederik Frison",
"nationality": "Belgium",
"weight": 79,
"height": 1.94
},
{
"path": "rider/Nikolas_Maes",
"name": "Nikolas Maes",
"nationality": "Belgium",
"weight": 78,
"height": 1.9
},
{
"path": "rider/Remy_Mertz",
"name": "Remy Mertz",
"nationality": "Belgium"
},
{
"path": "rider/Maxime_Monfort",
"name": "Maxime Monfort",
"nationality": "Belgium",
"weight": 66,
"height": 1.81
},
{
"path": "rider/Jurgen_Roelandts",
"name": "Jurgen Roelandts",
"nationality": "Belgium",
"weight": 78,
"height": 1.84
},
{
"path": "rider/Tosh_Van_Der_Sande",
"name": "Tosh Sande der Van",
"nationality": "Belgium",
"weight": 64,
"height": 1.78
},
{
"path": "rider/Jelle_Vanendert",
"name": "Jelle Vanendert",
"nationality": "Belgium",
"weight": 62,
"height": 1.84
},
{
"path": "rider/Louis_Vervaeke",
"name": "Louis Vervaeke",
"nationality": "Belgium",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Jelle_Wallays",
"name": "Jelle Wallays",
"nationality": "Belgium",
"weight": 77,
"height": 1.85
},
{
"path": "rider/Tim_Wellens",
"name": "Tim Wellens",
"nationality": "Belgium",
"weight": 65,
"height": 1.83
},
{
"path": "rider/Enzo_Wouters",
"name": "Enzo Wouters",
"nationality": "Belgium"
},
{
"path": "rider/Jens_Keukeleire",
"name": "Jens Keukeleire",
"nationality": "Belgium"
},
{
"path": "rider/Tom_Boonen",
"name": "Tom Boonen",
"nationality": "Belgium",
"weight": 82,
"height": 1.92
},
{
"path": "rider/Laurens_De_Plus",
"name": "Laurens Plus De",
"nationality": "Belgium",
"weight": 67,
"height": 1.89
},
{
"path": "rider/Tim_Declercq",
"name": "Tim Declercq",
"nationality": "Belgium",
"weight": 78,
"height": 1.9
},
{
"path": "rider/Dries_Devenyns",
"name": "Dries Devenyns",
"nationality": "Belgium",
"weight": 64,
"height": 1.76
},
{
"path": "rider/Philippe_Gilbert",
"name": "Philippe Gilbert",
"nationality": "Belgium",
"weight": 67,
"height": 1.79
},
{
"path": "rider/Iljo_Keisse",
"name": "Iljo Keisse",
"nationality": "Belgium",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Yves_Lampaert",
"name": "Yves Lampaert",
"nationality": "Belgium",
"weight": 75,
"height": 1.8
},
{
"path": "rider/Pieter_Serry",
"name": "Pieter Serry",
"nationality": "Belgium",
"weight": 65,
"height": 1.86
},
{
"path": "rider/Julien_Vermote",
"name": "Julien Vermote",
"nationality": "Belgium",
"weight": 71,
"height": 1.79
},
{
"path": "rider/Jenthe_Biermans",
"name": "Jenthe Biermans",
"nationality": "Belgium"
},
{
"path": "rider/Baptiste_Planckaert",
"name": "Baptiste Planckaert",
"nationality": "Belgium"
},
{
"path": "rider/Victor_Campenaerts",
"name": "Victor Campenaerts",
"nationality": "Belgium"
},
{
"path": "rider/Floris_De_Tier",
"name": "Floris Tier De",
"nationality": "Belgium",
"weight": 59,
"height": 1.72
},
{
"path": "rider/Gijs_Van_Hoecke",
"name": "Gijs Hoecke Van",
"nationality": "Belgium",
"weight": 77,
"height": 1.86
},
{
"path": "rider/Jurgen_Van_Den_Broeck",
"name": "Jurgen Broeck den van",
"nationality": "Belgium",
"weight": 69,
"height": 1.85
},
{
"path": "rider/Maarten_Wynants",
"name": "Maarten Wynants",
"nationality": "Belgium",
"weight": 74,
"height": 1.9
},
{
"path": "rider/Bert_De_Backer",
"name": "Bert Backer de",
"nationality": "Belgium",
"weight": 79,
"height": 1.83
},
{
"path": "rider/Zico_Waeytens",
"name": "Zico Waeytens",
"nationality": "Belgium",
"weight": 67,
"height": 1.8
},
{
"path": "rider/Jasper_Stuyven",
"name": "Jasper Stuyven",
"nationality": "Belgium",
"weight": 78,
"height": 1.86
},
{
"path": "rider/Edward_Theuns",
"name": "Edward Theuns",
"nationality": "Belgium",
"weight": 72,
"height": 1.83
}
],
"France": [
{
"path": "rider/Rudy_Barbier",
"name": "Rudy Barbier",
"nationality": "France"
},
{
"path": "rider/Romain_Bardet",
"name": "Romain Bardet",
"nationality": "France",
"weight": 65,
"height": 1.84
},
{
"path": "rider/Julien_Berard",
"name": "Julien B\\u00c3\\u00a9rard",
"nationality": "France",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Francois_Bidard",
"name": "Fran\\u00c3\\u00a7ois Bidard",
"nationality": "France"
},
{
"path": "rider/Mikael_Cherel",
"name": "Micka\\u00c3\\u00abl Ch\\u00c3\\u00a9rel",
"nationality": "France",
"weight": 65,
"height": 1.85
},
{
"path": "rider/Clement_Chevrier",
"name": "Cl\\u00c3\\u00a9ment Chevrier",
"nationality": "France",
"weight": 56,
"height": 1.77
},
{
"path": "rider/Benoit_Cosnefroy",
"name": "Benoit Cosnefroy",
"nationality": "France"
},
{
"path": "rider/Axel_Domont",
"name": "Axel Domont",
"nationality": "France",
"weight": 65,
"height": 1.79
},
{
"path": "rider/Samuel_Dumoulin",
"name": "Samuel Dumoulin",
"nationality": "France",
"weight": 56,
"height": 1.59
},
{
"path": "rider/Hubert_Dupont",
"name": "Hubert Dupont",
"nationality": "France",
"weight": 58,
"height": 1.74
},
{
"path": "rider/Julien_Duval",
"name": "Julien Duval",
"nationality": "France"
},
{
"path": "rider/Cyril_Gautier",
"name": "Cyril Gautier",
"nationality": "France",
"weight": 64,
"height": 1.68
},
{
"path": "rider/Alexandre_Geniez",
"name": "Alexandre Geniez",
"nationality": "France",
"weight": 64,
"height": 1.82
},
{
"path": "rider/Alexis_Gougeard",
"name": "Alexis Gougeard",
"nationality": "France",
"weight": 66,
"height": 1.76
},
{
"path": "rider/Quentin_Jauregui",
"name": "Quentin Jauregui",
"nationality": "France",
"weight": 60,
"height": 1.76
},
{
"path": "rider/Pierre_Latour",
"name": "Pierre Latour",
"nationality": "France",
"weight": 64,
"height": 1.8
},
{
"path": "rider/nans_Peters",
"name": "Nans Peters",
"nationality": "France"
},
{
"path": "rider/Christophe_Riblon",
"name": "Christophe Riblon",
"nationality": "France",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Alexis_Vuillermoz",
"name": "Alexis Vuillermoz",
"nationality": "France",
"weight": 60,
"height": 1.74
},
{
"path": "rider/Amael_Moinard",
"name": "Ama\\u00c3\\u00abl Moinard",
"nationality": "France",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Pierre_Rolland",
"name": "Pierre Rolland",
"nationality": "France",
"weight": 67,
"height": 1.84
},
{
"path": "rider/William_Bonnet",
"name": "William Bonnet",
"nationality": "France",
"weight": 78,
"height": 1.85
},
{
"path": "rider/Arnaud_Courteille",
"name": "Arnaud Courteille",
"nationality": "France",
"weight": 62,
"height": 1.76
},
{
"path": "rider/Mickael_Delage",
"name": "Micka\\u00c3\\u00abl Delage",
"nationality": "France",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Arnaud_Demare",
"name": "Arnaud D\\u00c3\\u00a9mare",
"nationality": "France",
"weight": 78,
"height": 1.82
},
{
"path": "rider/Marc_Fournier",
"name": "Marc Fournier",
"nationality": "France"
},
{
"path": "rider/David_Gaudu",
"name": "David Gaudu",
"nationality": "France"
},
{
"path": "rider/Matthieu_Ladagnous",
"name": "Matthieu Ladagnous",
"nationality": "France",
"weight": 73,
"height": 1.82
},
{
"path": "rider/Olivier_Le_Gac",
"name": "Olivier Gac Le",
"nationality": "France",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Johan_Le_Bon",
"name": "Johan Bon Le",
"nationality": "France",
"weight": 71,
"height": 1.8
},
{
"path": "rider/Jeremy_Maison",
"name": "J\\u00c3\\u00a9r\\u00c3\\u00a9my Maison",
"nationality": "France"
},
{
"path": "rider/Lorrenzo_Manzin",
"name": "Lorrenzo Manzin",
"nationality": "France",
"weight": 70,
"height": 1.75
},
{
"path": "rider/Rudy_Molard",
"name": "Rudy Molard",
"nationality": "France",
"weight": 62,
"height": 1.78
},
{
"path": "rider/Cedric_Pineau",
"name": "C\\u00c3\\u00a9dric Pineau",
"nationality": "France",
"weight": 68,
"height": 1.77
},
{
"path": "rider/Thibaut_Pinot",
"name": "Thibaut Pinot",
"nationality": "France",
"weight": 63,
"height": 1.8
},
{
"path": "rider/Kevin_Reza",
"name": "K\\u00c3\\u00a9vin R\\u00c3\\u00a9za",
"nationality": "France",
"weight": 72,
"height": 1.86
},
{
"path": "rider/Anthony_Roux",
"name": "Anthony Roux",
"nationality": "France",
"weight": 70,
"height": 1.89
},
{
"path": "rider/Jeremy_Roy",
"name": "J\\u00c3\\u00a9r\\u00c3\\u00a9my Roy",
"nationality": "France",
"weight": 70,
"height": 1.86
},
{
"path": "rider/Marc_Sarreau",
"name": "Marc Sarreau",
"nationality": "France",
"weight": 74,
"height": 1.82
},
{
"path": "rider/Benoit_Vaugrenard",
"name": "Benoit Vaugrenard",
"nationality": "France",
"weight": 72,
"height": 1.85
},
{
"path": "rider/Arthur_Vichot",
"name": "Arthur Vichot",
"nationality": "France",
"weight": 69,
"height": 1.84
},
{
"path": "rider/Leo_Vincent",
"name": "L\\u00c3\\u00a9o Vincent",
"nationality": "France"
},
{
"path": "rider/Tony_Gallopin",
"name": "Tony Gallopin",
"nationality": "France",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Julian_Alaphilippe",
"name": "Julian Alaphilippe",
"nationality": "France",
"weight": 62,
"height": 1.73
},
{
"path": "rider/Remi_Cavagna",
"name": "R\\u00c3\\u00a9mi Cavagna",
"nationality": "France"
},
{
"path": "rider/Kenny_Elissonde",
"name": "Kenny Elissonde",
"nationality": "France",
"weight": 52,
"height": 1.69
},
{
"path": "rider/Warren_Barguil",
"name": "Warren Barguil",
"nationality": "France",
"weight": 60,
"height": 1.83
},
{
"path": "rider/Julien_Bernard",
"name": "Julien Bernard",
"nationality": "France",
"weight": 60,
"height": 1.76
}
],
"Germany": [
{
"path": "rider/nico_Denz",
"name": "Nico Denz",
"nationality": "Germany",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Pascal_Ackermann",
"name": "Pascal Ackermann",
"nationality": "Germany",
"weight": 78,
"height": 1.8
},
{
"path": "rider/Emanuel_Buchmann",
"name": "Emanuel Buchmann",
"nationality": "Germany",
"weight": 62,
"height": 1.81
},
{
"path": "rider/Marcus_Burghardt",
"name": "Marcus Burghardt",
"nationality": "Germany",
"weight": 75,
"height": 1.89
},
{
"path": "rider/Silvio_Herklotz",
"name": "Silvio Herklotz",
"nationality": "Germany",
"weight": 68,
"height": 1.9
},
{
"path": "rider/Christoph_Pfingsten",
"name": "Christoph Pfingsten",
"nationality": "Germany",
"weight": 69,
"height": 1.79
},
{
"path": "rider/Andreas_Schillinger",
"name": "Andreas Schillinger",
"nationality": "Germany",
"weight": 71,
"height": 1.88
},
{
"path": "rider/Michael_Schwarzmann",
"name": "Michael Schwarzmann",
"nationality": "Germany",
"weight": 69,
"height": 1.74
},
{
"path": "rider/Rudiger_Selig",
"name": "R\\u00c3\\u00bcdiger Selig",
"nationality": "Germany",
"weight": 80,
"height": 1.88
},
{
"path": "rider/Andre_Greipel",
"name": "Andr\\u00c3\\u00a9 Greipel",
"nationality": "Germany",
"weight": 75,
"height": 1.84
},
{
"path": "rider/Marcel_Sieberg",
"name": "Marcel Sieberg",
"nationality": "Germany",
"weight": 80,
"height": 1.98
},
{
"path": "rider/Jasha_Sutterlin",
"name": "Jasha S\\u00c3\\u00bctterlin",
"nationality": "Germany",
"weight": 78,
"height": 1.84
},
{
"path": "rider/Roger_Kluge",
"name": "Roger Kluge",
"nationality": "Germany",
"weight": 83,
"height": 1.92
},
{
"path": "rider/Marcel_Kittel",
"name": "Marcel Kittel",
"nationality": "Germany",
"weight": 82,
"height": 1.88
},
{
"path": "rider/Maximilian_Schachmann",
"name": "Maximilian Schachmann",
"nationality": "Germany"
},
{
"path": "rider/Tony_Martin",
"name": "Tony Martin",
"nationality": "Germany",
"weight": 75,
"height": 1.85
},
{
"path": "rider/Marco_Mathis",
"name": "Marco Mathis",
"nationality": "Germany"
},
{
"path": "rider/nils_Politt",
"name": "Nils Politt",
"nationality": "Germany",
"weight": 80,
"height": 1.92
},
{
"path": "rider/Rick_Zabel",
"name": "Rick Zabel",
"nationality": "Germany",
"weight": 72,
"height": 1.84
},
{
"path": "rider/Paul_Martens",
"name": "Paul Martens",
"nationality": "Germany",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Robert_Wagner",
"name": "Robert Wagner",
"nationality": "Germany",
"weight": 75,
"height": 1.86
},
{
"path": "rider/Christian_Knees",
"name": "Christian Knees",
"nationality": "Germany",
"weight": 81,
"height": 1.94
},
{
"path": "rider/nikias_Arndt",
"name": "Nikias Arndt",
"nationality": "Germany"
},
{
"path": "rider/Phil_Bauhaus",
"name": "Phil Bauhaus",
"nationality": "Germany",
"weight": 71,
"height": 1.84
},
{
"path": "rider/Johannes_Frohlinger",
"name": "Johannes Fr\\u00c3\\u00b6hlinger",
"nationality": "Germany",
"weight": 62,
"height": 1.73
},
{
"path": "rider/Simon_Geschke",
"name": "Simon Geschke",
"nationality": "Germany",
"weight": 64,
"height": 1.7
},
{
"path": "rider/Lennard_Kamna",
"name": "Lennard K\\u00c3\\u00a4mna",
"nationality": "Germany",
"weight": 65,
"height": 1.81
},
{
"path": "rider/Max_Walscheid",
"name": "Max Walscheid",
"nationality": "Germany",
"weight": 89,
"height": 1.99
},
{
"path": "rider/John_Degenkolb",
"name": "John Degenkolb",
"nationality": "Germany",
"weight": 77,
"height": 1.8
}
],
"Norway": [
{
"path": "rider/Sondre_Holst_Enger",
"name": "Holst Sondre Enger",
"nationality": "Norway",
"weight": 69,
"height": 1.71
},
{
"path": "rider/Truls_Korsaeth",
"name": "Truls Korsaeth",
"nationality": "Norway"
},
{
"path": "rider/Edvald_Boasson_Hagen",
"name": "Edvald Hagen Boasson",
"nationality": "Norway",
"weight": 75,
"height": 1.85
},
{
"path": "rider/Odd_Christian_Eiking",
"name": "Christian Odd Eiking",
"nationality": "Norway"
},
{
"path": "rider/Daniel_Hoelgaard",
"name": "Daniel Hoelgaard",
"nationality": "Norway"
},
{
"path": "rider/Sven_Erik_Bystrm",
"name": "Erik Sven Bystr\\u00c3\\u00b8m",
"nationality": "Norway",
"weight": 72,
"height": 1.89
},
{
"path": "rider/Alexander_Kristoff",
"name": "Alexander Kristoff",
"nationality": "Norway",
"weight": 78,
"height": 1.81
},
{
"path": "rider/Amund_Grondahl_Jansen",
"name": "Grondahl Amund Jansen",
"nationality": "Norway"
},
{
"path": "rider/Sindre_Skjoestad_Lunke",
"name": "Skj\\u00c3\\u00b8stad Sindre Lunke",
"nationality": "Norway"
},
{
"path": "rider/Vegard_Stake_Laengen",
"name": "Stake Vegard Laengen",
"nationality": "Norway",
"weight": 80,
"height": 1.95
}
],
"Switzerland": [
{
"path": "rider/Mathias_Frank",
"name": "Mathias Frank",
"nationality": "Switzerland",
"weight": 64,
"height": 1.76
},
{
"path": "rider/Tom_Bohli",
"name": "Tom Bohli",
"nationality": "Switzerland",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Silvan_Dillier",
"name": "Silvan Dillier",
"nationality": "Switzerland",
"weight": 75,
"height": 1.83
},
{
"path": "rider/Martin_Elmiger",
"name": "Martin Elmiger",
"nationality": "Switzerland",
"weight": 73,
"height": 1.82
},
{
"path": "rider/Kilian_Frankiny",
"name": "Kilian Frankiny",
"nationality": "Switzerland"
},
{
"path": "rider/Stefan_Kung",
"name": "Stefan K\\u00c3\\u00bcng",
"nationality": "Switzerland",
"weight": 83,
"height": 1.93
},
{
"path": "rider/Michael_Schar",
"name": "Michael Schar",
"nationality": "Switzerland",
"weight": 74,
"height": 1.96
},
{
"path": "rider/Danilo_Wyss",
"name": "Danilo Wyss",
"nationality": "Switzerland",
"weight": 65,
"height": 1.76
},
{
"path": "rider/Steve_Morabito",
"name": "Steve Morabito",
"nationality": "Switzerland",
"weight": 74,
"height": 1.86
},
{
"path": "rider/Sebastien_Reichenbach",
"name": "Sebastien Reichenbach",
"nationality": "Switzerland",
"weight": 64,
"height": 1.78
},
{
"path": "rider/Michael_Albasini",
"name": "Michael Albasini",
"nationality": "Switzerland",
"weight": 65,
"height": 1.72
},
{
"path": "rider/Reto_Hollenstein",
"name": "Reto Hollenstein",
"nationality": "Switzerland",
"weight": 80,
"height": 1.97
},
{
"path": "rider/Gregory_Rast",
"name": "Gregory Rast",
"nationality": "Switzerland",
"weight": 80,
"height": 1.86
}
],
"Luxembourg": [
{
"path": "rider/Ben_Gastauer",
"name": "Ben Gastauer",
"nationality": "Luxembourg",
"weight": 73,
"height": 1.9
},
{
"path": "rider/Jean_pierre_Drucker",
"name": "Jean-Pierre Drucker",
"nationality": "Luxembourg",
"weight": 75,
"height": 1.82
},
{
"path": "rider/Bob_Jungels",
"name": "Bob Jungels",
"nationality": "Luxembourg",
"weight": 72,
"height": 1.89
},
{
"path": "rider/Laurent_Didier",
"name": "Laurent Didier",
"nationality": "Luxembourg",
"weight": 68,
"height": 1.89
}
],
"Canada": [
{
"path": "rider/Hugo_Houle",
"name": "Hugo Houle",
"nationality": "Canada",
"weight": 71,
"height": 1.85
},
{
"path": "rider/Michael_Woods",
"name": "Michael Woods",
"nationality": "Canada",
"weight": 64,
"height": 1.75
},
{
"path": "rider/Svein_Tuft",
"name": "Svein Tuft",
"nationality": "Canada",
"weight": 77,
"height": 1.75
}
],
"Italy": [
{
"path": "rider/Matteo_Montaguti",
"name": "Matteo Montaguti",
"nationality": "Italy",
"weight": 65,
"height": 1.81
},
{
"path": "rider/Domenico_Pozzovivo",
"name": "Domenico Pozzovivo",
"nationality": "Italy",
"weight": 53,
"height": 1.65
},
{
"path": "rider/Fabio_Aru",
"name": "Fabio Aru",
"nationality": "Italy",
"weight": 66,
"height": 1.83
},
{
"path": "rider/Dario_Cataldo",
"name": "Dario Cataldo",
"nationality": "Italy",
"weight": 64,
"height": 1.75
},
{
"path": "rider/Oscar_Gatto",
"name": "Oscar Gatto",
"nationality": "Italy",
"weight": 67,
"height": 1.74
},
{
"path": "rider/Riccardo_Minali",
"name": "Riccardo Minali",
"nationality": "Italy"
},
{
"path": "rider/Moreno_Moser",
"name": "Moreno Moser",
"nationality": "Italy",
"weight": 64,
"height": 1.77
},
{
"path": "rider/Michele_Scarponi",
"name": "Michele Scarponi",
"nationality": "Italy",
"weight": 62,
"height": 1.74
},
{
"path": "rider/Paolo_Tiralongo",
"name": "Paolo Tiralongo",
"nationality": "Italy",
"weight": 63,
"height": 1.78
},
{
"path": "rider/Valerio_Agnoli",
"name": "Valerio Agnoli",
"nationality": "Italy",
"weight": 72,
"height": 1.78
},
{
"path": "rider/Manuele_Boaro",
"name": "Manuele Boaro",
"nationality": "Italy",
"weight": 64,
"height": 1.73
},
{
"path": "rider/Niccolo_Bonifazio",
"name": "Niccolo Bonifazio",
"nationality": "Italy",
"weight": 68,
"height": 1.72
},
{
"path": "rider/Sonny_Colbrelli",
"name": "Sonny Colbrelli",
"nationality": "Italy",
"weight": 71,
"height": 1.76
},
{
"path": "rider/Enrico_Gasparotto",
"name": "Enrico Gasparotto",
"nationality": "Italy",
"weight": 65,
"height": 1.74
},
{
"path": "rider/Vincenzo_nibali",
"name": "Vincenzo Nibali",
"nationality": "Italy",
"weight": 65,
"height": 1.81
},
{
"path": "rider/Antonio_nibali",
"name": "Antonio Nibali",
"nationality": "Italy",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Franco_Pellizotti",
"name": "Franco Pellizotti",
"nationality": "Italy",
"weight": 64,
"height": 1.75
},
{
"path": "rider/Giovanni_Visconti",
"name": "Giovanni Visconti",
"nationality": "Italy",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Damiano_Caruso",
"name": "Damiano Caruso",
"nationality": "Italy",
"weight": 67,
"height": 1.79
},
{
"path": "rider/Alessandro_De_Marchi",
"name": "Alessandro Marchi De",
"nationality": "Italy",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Daniel_Oss",
"name": "Daniel Oss",
"nationality": "Italy",
"weight": 75,
"height": 1.9
},
{
"path": "rider/Manuel_Quinziato",
"name": "Manuel Quinziato",
"nationality": "Italy",
"weight": 74,
"height": 1.85
},
{
"path": "rider/Manuel_Senni",
"name": "Manuel Senni",
"nationality": "Italy",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Cesare_Benedetti",
"name": "Cesare Benedetti",
"nationality": "Italy",
"weight": 63,
"height": 1.7
},
{
"path": "rider/Matteo_Pelucchi",
"name": "Matteo Pelucchi",
"nationality": "Italy",
"weight": 76,
"height": 1.82
},
{
"path": "rider/Alberto_Bettiol",
"name": "Alberto Bettiol",
"nationality": "Italy",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Davide_Formolo",
"name": "Davide Formolo",
"nationality": "Italy",
"weight": 62,
"height": 1.81
},
{
"path": "rider/Davide_Villella",
"name": "Davide Villella",
"nationality": "Italy",
"weight": 66,
"height": 1.82
},
{
"path": "rider/Kristian_Sbaragli",
"name": "Kristian Sbaragli",
"nationality": "Italy",
"weight": 70,
"height": 1.75
},
{
"path": "rider/Davide_Cimolai",
"name": "Davide Cimolai",
"nationality": "Italy",
"weight": 69,
"height": 1.85
},
{
"path": "rider/Jacopo_Guarnieri",
"name": "Jacopo Guarnieri",
"nationality": "Italy",
"weight": 78,
"height": 1.89
},
{
"path": "rider/Daniele_Bennati",
"name": "Daniele Bennati",
"nationality": "Italy",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Adriano_Malori",
"name": "Adriano Malori",
"nationality": "Italy",
"weight": 68,
"height": 1.82
},
{
"path": "rider/Gianluca_Brambilla",
"name": "Gianluca Brambilla",
"nationality": "Italy",
"weight": 57,
"height": 1.7
},
{
"path": "rider/Eros_Capecchi",
"name": "Eros Capecchi",
"nationality": "Italy",
"weight": 66,
"height": 1.83
},
{
"path": "rider/Davide_Martinelli",
"name": "Davide Martinelli",
"nationality": "Italy",
"weight": 71,
"height": 1.86
},
{
"path": "rider/Fabio_Sabatini",
"name": "Fabio Sabatini",
"nationality": "Italy",
"weight": 74,
"height": 1.87
},
{
"path": "rider/Matteo_Trentin",
"name": "Matteo Trentin",
"nationality": "Italy",
"weight": 74,
"height": 1.79
},
{
"path": "rider/Enrico_Battaglin",
"name": "Enrico Battaglin",
"nationality": "Italy",
"weight": 66,
"height": 1.74
},
{
"path": "rider/Gianni_Moscon",
"name": "Gianni Moscon",
"nationality": "Italy"
},
{
"path": "rider/Salvatore_Puccio",
"name": "Salvatore Puccio",
"nationality": "Italy",
"weight": 68,
"height": 1.82
},
{
"path": "rider/Diego_Rosa",
"name": "Diego Rosa",
"nationality": "Italy",
"weight": 65,
"height": 1.78
},
{
"path": "rider/Elia_Viviani",
"name": "Elia Viviani",
"nationality": "Italy",
"weight": 67,
"height": 1.78
},
{
"path": "rider/Eugenio_Alafaci",
"name": "Eugenio Alafaci",
"nationality": "Italy",
"weight": 77,
"height": 1.87
},
{
"path": "rider/Marco_Coledan",
"name": "Marco Coledan",
"nationality": "Italy",
"weight": 83,
"height": 1.9
},
{
"path": "rider/Fabio_Felline",
"name": "Fabio Felline",
"nationality": "Italy",
"weight": 68,
"height": 1.75
},
{
"path": "rider/Giacomo_Nizzolo",
"name": "Giacomo Nizzolo",
"nationality": "Italy",
"weight": 72,
"height": 1.84
},
{
"path": "rider/Matteo_Bono",
"name": "Matteo Bono",
"nationality": "Italy",
"weight": 60,
"height": 1.71
},
{
"path": "rider/Simone_Consonni",
"name": "Simone Consonni",
"nationality": "Italy"
},
{
"path": "rider/Valerio_Conti",
"name": "Valerio Conti",
"nationality": "Italy",
"weight": 60,
"height": 1.72
},
{
"path": "rider/Roberto_Ferrari",
"name": "Roberto Ferrari",
"nationality": "Italy",
"weight": 73,
"height": 1.73
},
{
"path": "rider/Filippo_Ganna",
"name": "Filippo Ganna",
"nationality": "Italy",
"weight": 76,
"height": 1.93
},
{
"path": "rider/Andrea_Guardini",
"name": "Andrea Guardini",
"nationality": "Italy",
"weight": 66,
"height": 1.75
},
{
"path": "rider/Marco_Marcato",
"name": "Marco Marcato",
"nationality": "Italy",
"weight": 67,
"height": 1.74
},
{
"path": "rider/Sacha_Modolo",
"name": "Sacha Modolo",
"nationality": "Italy",
"weight": 67,
"height": 1.8
},
{
"path": "rider/Manuele_Mori",
"name": "Manuele Mori",
"nationality": "Italy",
"weight": 62,
"height": 1.72
},
{
"path": "rider/Simone_Petilli",
"name": "Simone Petilli",
"nationality": "Italy",
"weight": 63,
"height": 1.78
},
{
"path": "rider/Edward_Ravasi",
"name": "Edward Ravasi",
"nationality": "Italy",
"weight": 62,
"height": 1.81
},
{
"path": "rider/Oliviero_Troia",
"name": "Oliviero Troia",
"nationality": "Italy"
},
{
"path": "rider/Diego_Ulissi",
"name": "Diego Ulissi",
"nationality": "Italy",
"weight": 61,
"height": 1.75
},
{
"path": "rider/Federico_Zurlo",
"name": "Federico Zurlo",
"nationality": "Italy",
"weight": 70,
"height": 1.78
}
],
"Spain": [
{
"path": "rider/Pello_Bilbao",
"name": "Pello Bilbao",
"nationality": "Spain",
"weight": 60,
"height": 1.74
},
{
"path": "rider/Luis_Leon_Sanchez",
"name": "Leon Luis Sanchez",
"nationality": "Spain",
"weight": 74,
"height": 1.87
},
{
"path": "rider/Ivan_Garcia_Cortina",
"name": "Ivan Cortina Garcia",
"nationality": "Spain"
},
{
"path": "rider/Jon_Ander_Insausti",
"name": "Ander Jon Insausti",
"nationality": "Spain"
},
{
"path": "rider/Ion_Izagirre",
"name": "Ion Izagirre",
"nationality": "Spain",
"weight": 60,
"height": 1.73
},
{
"path": "rider/Javier_Moreno",
"name": "Javier Moreno",
"nationality": "Spain",
"weight": 63,
"height": 1.81
},
{
"path": "rider/Samuel_Sanchez",
"name": "Samuel S\\u00c3\\u00a1nchez",
"nationality": "Spain",
"weight": 65,
"height": 1.75
},
{
"path": "rider/Fran_Ventoso",
"name": "Francisco Ventoso",
"nationality": "Spain",
"weight": 76,
"height": 1.8
},
{
"path": "rider/Igor_Anton",
"name": "Igor Anton",
"nationality": "Spain",
"weight": 58,
"height": 1.73
},
{
"path": "rider/Omar_Fraile",
"name": "Omar Fraile",
"nationality": "Spain",
"weight": 69,
"height": 1.84
},
{
"path": "rider/Rafael_Valls",
"name": "Rafael Valls",
"nationality": "Spain",
"weight": 59,
"height": 1.71
},
{
"path": "rider/Jorge_Arcas",
"name": "Jorge Arcas",
"nationality": "Spain",
"weight": 68,
"height": 1.87
},
{
"path": "rider/Carlos_Barbero",
"name": "Carlos Barbero",
"nationality": "Spain",
"weight": 66,
"height": 1.78
},
{
"path": "rider/Hector_Carretero",
"name": "H\\u00c3\\u00a9ctor Carretero",
"nationality": "Spain"
},
{
"path": "rider/Jonathan_Castroviejo",
"name": "Jonathan Castroviejo",
"nationality": "Spain",
"weight": 62,
"height": 1.71
},
{
"path": "rider/Victor_De_La_Parte",
"name": "V\\u00c3\\u00adctor Parte La De",
"nationality": "Spain",
"weight": 66,
"height": 1.81
},
{
"path": "rider/Imanol_Erviti",
"name": "Imanol Erviti",
"nationality": "Spain",
"weight": 75,
"height": 1.89
},
{
"path": "rider/Ruben_Fernandez",
"name": "Rub\\u00c3\\u00a9n Fern\\u00c3\\u00a1ndez",
"nationality": "Spain",
"weight": 60,
"height": 1.77
},
{
"path": "rider/Jose_Herrada",
"name": "Jos\\u00c3\\u00a9 Herrada",
"nationality": "Spain",
"weight": 66,
"height": 1.77
},
{
"path": "rider/Jesus_Herrada_Lopez",
"name": "Jes\\u00c3\\u00bas Herrada",
"nationality": "Spain",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Gorka_Izagirre",
"name": "Gorka Izagirre",
"nationality": "Spain"
},
{
"path": "rider/Daniel_Moreno",
"name": "Daniel Moreno",
"nationality": "Spain",
"weight": 59,
"height": 1.73
},
{
"path": "rider/Antonio_Pedrero",
"name": "Antonio Pedrero",
"nationality": "Spain"
},
{
"path": "rider/Jose_Joaquin_Rojas",
"name": "Joaqu\\u00c3\\u00adn Jos\\u00c3\\u00a9 Rojas",
"nationality": "Spain",
"weight": 69,
"height": 1.79
},
{
"path": "rider/Marc_Soler",
"name": "Marc Soler",
"nationality": "Spain",
"weight": 68,
"height": 1.86
},
{
"path": "rider/Alejandro_Valverde",
"name": "Alejandro Valverde",
"nationality": "Spain",
"weight": 61,
"height": 1.78
},
{
"path": "rider/Ruben_Plaza",
"name": "Rub\\u00c3\\u00a9n Plaza",
"nationality": "Spain",
"weight": 77,
"height": 1.91
},
{
"path": "rider/Carlos_Verona",
"name": "Carlos Verona",
"nationality": "Spain",
"weight": 68,
"height": 1.86
},
{
"path": "rider/David_de_la_Cruz",
"name": "David Cruz la de",
"nationality": "Spain",
"weight": 66,
"height": 1.82
},
{
"path": "rider/Enric_Mas",
"name": "Enric Mas",
"nationality": "Spain"
},
{
"path": "rider/Alberto_Losada",
"name": "Alberto Losada",
"nationality": "Spain",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Angel_Vicioso",
"name": "\\u00c3\\u0081ngel Vicioso",
"nationality": "Spain",
"weight": 60,
"height": 1.7
},
{
"path": "rider/Juan_Jose_Lobato",
"name": "Jos\\u00c3\\u00a9 Juan Lobato",
"nationality": "Spain",
"weight": 64,
"height": 1.73
},
{
"path": "rider/Benat_Intxausti",
"name": "Be\\u00c3\\u00b1at Intxausti",
"nationality": "Spain",
"weight": 61,
"height": 1.75
},
{
"path": "rider/Mikel_Landa",
"name": "Mikel Landa",
"nationality": "Spain",
"weight": 60,
"height": 1.73
},
{
"path": "rider/David_Lopez",
"name": "David Lopez",
"nationality": "Spain",
"weight": 68,
"height": 1.79
},
{
"path": "rider/Mikel_nieve",
"name": "Mikel Nieve",
"nationality": "Spain",
"weight": 62,
"height": 1.73
},
{
"path": "rider/Alberto_Contador",
"name": "Alberto Contador",
"nationality": "Spain",
"weight": 61,
"height": 1.76
},
{
"path": "rider/Jesus_Hernandez_3",
"name": "Jes\\u00c3\\u00bas Hern\\u00c3\\u00a1ndez",
"nationality": "Spain",
"weight": 58,
"height": 1.69
},
{
"path": "rider/Markel_Irizar",
"name": "Markel Irizar",
"nationality": "Spain",
"weight": 73,
"height": 1.82
},
{
"path": "rider/Haimar_Zubeldia",
"name": "Haimar Zubeldia",
"nationality": "Spain",
"weight": 68,
"height": 1.79
}
],
"Kazakhstan": [
{
"path": "rider/Zhandos_Bizhigitov",
"name": "Zhandos Bizhigitov",
"nationality": "Kazakhstan"
},
{
"path": "rider/Daniil_Fominykh",
"name": "Daniil Fominykh",
"nationality": "Kazakhstan",
"weight": 70,
"height": 1.82
},
{
"path": "rider/Dmitriy_Gruzdev",
"name": "Dmitriy Gruzdev",
"nationality": "Kazakhstan",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Arman_Kamyshev",
"name": "Arman Kamyshev",
"nationality": "Kazakhstan",
"weight": 67,
"height": 1.82
},
{
"path": "rider/Bakhtiyar_Kozhatayev",
"name": "Bakhtiyar Kozhatayev",
"nationality": "Kazakhstan",
"weight": 62,
"height": 1.72
},
{
"path": "rider/Aleksey_Lutsenko",
"name": "Alexey Lutsenko",
"nationality": "Kazakhstan",
"weight": 70,
"height": 1.75
},
{
"path": "rider/Nikita_Stalnov",
"name": "Nikita Stalnov",
"nationality": "Kazakhstan",
"weight": 63,
"height": 1.77
},
{
"path": "rider/Ruslan_Tleubayev",
"name": "Ruslan Tleubayev",
"nationality": "Kazakhstan",
"weight": 70,
"height": 1.78
},
{
"path": "rider/Artyom_Zakharov",
"name": "Artyom Zakharov",
"nationality": "Kazakhstan"
},
{
"path": "rider/Andrey_Zeits",
"name": "Andrey Zeits",
"nationality": "Kazakhstan",
"weight": 73,
"height": 1.89
}
],
"Denmark": [
{
"path": "rider/Matti_Breschel",
"name": "Matti Breschel",
"nationality": "Denmark",
"weight": 70,
"height": 1.81
},
{
"path": "rider/Jakob_Fuglsang",
"name": "Jakob Fuglsang",
"nationality": "Denmark",
"weight": 68,
"height": 1.82
},
{
"path": "rider/Jesper_Hansen_1",
"name": "Jesper Hansen",
"nationality": "Denmark",
"weight": 60,
"height": 1.76
},
{
"path": "rider/Michael_Valgren_Andersen",
"name": "Michael Valgren",
"nationality": "Denmark",
"weight": 71,
"height": 1.79
},
{
"path": "rider/Lars_Ytting_Bak",
"name": "Ytting Lars Bak",
"nationality": "Denmark",
"weight": 76,
"height": 1.9
},
{
"path": "rider/Magnus_Cort_nielsen",
"name": "Magnus Nielsen Cort",
"nationality": "Denmark"
},
{
"path": "rider/Christopher_Juul_jensen",
"name": "Christopher Juul-Jensen",
"nationality": "Denmark",
"weight": 73,
"height": 1.83
},
{
"path": "rider/Michael_Morkov",
"name": "Michael M\\u00c3\\u00b8rk\\u00c3\\u00b8v",
"nationality": "Denmark",
"weight": 69,
"height": 1.83
},
{
"path": "rider/Mads_Wurtz_Schmidt",
"name": "Mads Schmidt W\\u00c3\\u00bcrtz",
"nationality": "Denmark"
},
{
"path": "rider/Soren_Kragh_Andersen",
"name": "Kragh S\\u00c3\\u00b8ren Andersen",
"nationality": "Denmark",
"weight": 73,
"height": 1.78
},
{
"path": "rider/Mads_Pedersen",
"name": "Mads Pedersen",
"nationality": "Denmark",
"weight": 70,
"height": 1.79
}
],
"Russia": [
{
"path": "rider/Sergei_Chernetckii",
"name": "Sergei Chernetckii",
"nationality": "Russia",
"weight": 63,
"height": 1.76
},
{
"path": "rider/Maxim_Belkov",
"name": "Maxim Belkov",
"nationality": "Russia",
"weight": 71,
"height": 1.84
},
{
"path": "rider/Pavel_Kochetkov",
"name": "Pavel Kochetkov",
"nationality": "Russia",
"weight": 72,
"height": 1.84
},
{
"path": "rider/Viacheslav_Kuznetsov",
"name": "Viacheslav Kuznetsov",
"nationality": "Russia",
"weight": 70,
"height": 1.84
},
{
"path": "rider/Matvey_Mamykin",
"name": "Matvey Mamykin",
"nationality": "Russia",
"weight": 62,
"height": 1.79
},
{
"path": "rider/Ilnur_Zakarin",
"name": "Ilnur Zakarin",
"nationality": "Russia",
"weight": 67,
"height": 1.87
}
],
"Ukraine": [
{
"path": "rider/Andrei_Grivko",
"name": "Andrei Grivko",
"nationality": "Ukraine",
"weight": 70,
"height": 1.81
}
],
"Estonia": [
{
"path": "rider/Tanel_Kangert",
"name": "Tanel Kangert",
"nationality": "Estonia",
"weight": 65,
"height": 1.78
},
{
"path": "rider/Rein_Taaramae",
"name": "Rein Taaram\\u00c3\\u00a4e",
"nationality": "Estonia",
"weight": 66,
"height": 1.84
}
],
"Colombia": [
{
"path": "rider/Miguel_Angel_Lopez",
"name": "\\u00c3\\u0081ngel Miguel L\\u00c3\\u00b3pez",
"nationality": "Colombia",
"weight": 65,
"height": 1.7
},
{
"path": "rider/Rigoberto_Uran",
"name": "Rigoberto Uran",
"nationality": "Colombia",
"weight": 63,
"height": 1.73
},
{
"path": "rider/Winner_Anacona",
"name": "Winner Anacona",
"nationality": "Colombia",
"weight": 65,
"height": 1.79
},
{
"path": "rider/Carlos_Betancur",
"name": "Carlos Betancur",
"nationality": "Colombia",
"weight": 65,
"height": 1.67
},
{
"path": "rider/nairo_Quintana",
"name": "Nairo Quintana",
"nationality": "Colombia",
"weight": 59,
"height": 1.67
},
{
"path": "rider/Dayer_Quintana_Rojas",
"name": "Dayer Quintana",
"nationality": "Colombia",
"weight": 58,
"height": 1.67
},
{
"path": "rider/Johan_Esteban_Chaves",
"name": "Esteban Johan Chaves",
"nationality": "Colombia",
"weight": 55,
"height": 1.64
},
{
"path": "rider/Rendon_Gaviria",
"name": "Fernando Gaviria",
"nationality": "Colombia"
},
{
"path": "rider/Jhonatan_Restrepo",
"name": "Jhonatan Restrepo",
"nationality": "Colombia",
"weight": 69,
"height": 1.71
},
{
"path": "rider/Sergio_Luis_Henao",
"name": "Luis Sergio Henao",
"nationality": "Colombia",
"weight": 61,
"height": 1.69
},
{
"path": "rider/Sebastian_Henao",
"name": "Sebasti\\u00c3\\u00a1n Henao",
"nationality": "Colombia",
"weight": 57,
"height": 1.71
},
{
"path": "rider/Jarlinson_Pantano",
"name": "Jarlinson Pantano",
"nationality": "Colombia",
"weight": 61,
"height": 1.73
},
{
"path": "rider/John_Darwin_Atapuma",
"name": "Darwin John Atapuma",
"nationality": "Colombia",
"weight": 60,
"height": 1.67
}
],
"Japan": [
{
"path": "rider/Yukiya_Arashiro",
"name": "Yukiya Arashiro",
"nationality": "Japan",
"weight": 64,
"height": 1.7
},
{
"path": "rider/Fumiyuki_Beppu",
"name": "Fumiyuki Beppu",
"nationality": "Japan",
"weight": 69,
"height": 1.8
}
],
"Slovenia": [
{
"path": "rider/Grega_Bole",
"name": "Grega Bole",
"nationality": "Slovenia",
"weight": 68,
"height": 1.77
},
{
"path": "rider/Borut_Bozic",
"name": "Borut Bozic",
"nationality": "Slovenia",
"weight": 67,
"height": 1.8
},
{
"path": "rider/Janez_Brajkovic",
"name": "Janez Brajkovi\\u00c4\\u008d",
"nationality": "Slovenia",
"weight": 65,
"height": 1.75
},
{
"path": "rider/Domen_novak",
"name": "Domen Novak",
"nationality": "Slovenia"
},
{
"path": "rider/David_Per",
"name": "David Per",
"nationality": "Slovenia"
},
{
"path": "rider/Luka_Pibernik",
"name": "Luka Pibernik",
"nationality": "Slovenia",
"weight": 60,
"height": 1.77
},
{
"path": "rider/Kristijan_Koren",
"name": "Kristijan Koren",
"nationality": "Slovenia",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Luka_Mezgec",
"name": "Luka Mezgec",
"nationality": "Slovenia",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Simon_Spilak",
"name": "Simon pilak \\u00c5",
"nationality": "Slovenia",
"weight": 68,
"height": 1.76
},
{
"path": "rider/Primoz_Roglic",
"name": "Primo\\u00c5\\u00be Rogli\\u00c4\\u008d",
"nationality": "Slovenia",
"weight": 65,
"height": 1.77
},
{
"path": "rider/Marko_Kump",
"name": "Marko Kump",
"nationality": "Slovenia",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Matej_Mohoric",
"name": "Matej Mohoric",
"nationality": "Slovenia",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Jan_Polanc",
"name": "Jan Polanc",
"nationality": "Slovenia",
"weight": 59,
"height": 1.72
}
],
"Czech Republic": [
{
"path": "rider/Ondrej_Cink",
"name": "Ondrej Cink",
"nationality": "Czech Republic"
},
{
"path": "rider/Jan_Barta",
"name": "Jan B\\u00c3\\u00a1rta",
"nationality": "Czech Republic",
"weight": 75,
"height": 1.84
},
{
"path": "rider/Leopold_Konig",
"name": "Leopold K\\u00c3\\u00b6nig",
"nationality": "Czech Republic",
"weight": 62,
"height": 1.78
},
{
"path": "rider/Roman_Kreuziger_1",
"name": "Roman Kreuziger",
"nationality": "Czech Republic",
"weight": 65,
"height": 1.83
},
{
"path": "rider/Zdenek_Stybar",
"name": "Zdenek Stybar",
"nationality": "Czech Republic",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Petr_Vakoc",
"name": "Petr Vakoc",
"nationality": "Czech Republic",
"weight": 68,
"height": 1.8
}
],
"Taiwan": [
{
"path": "rider/Chun_Kai_Feng",
"name": "Kai Chun Feng",
"nationality": "Taiwan",
"weight": 68,
"height": 1.7
}
],
"Ethiopia": [
{
"path": "rider/Tsgabu_Gebremaryam_Grmay",
"name": "Tsgabu Grmay",
"nationality": "Ethiopia",
"weight": 63,
"height": 1.75
}
],
"Australia": [
{
"path": "rider/Heinrich_Haussler",
"name": "Heinrich Haussler",
"nationality": "Australia",
"weight": 74,
"height": 1.81
},
{
"path": "rider/Rohan_Dennis",
"name": "Rohan Dennis",
"nationality": "Australia",
"weight": 71,
"height": 1.82
},
{
"path": "rider/Richie_Porte",
"name": "Richie Porte",
"nationality": "Australia",
"weight": 62,
"height": 1.72
},
{
"path": "rider/Miles_Scotson",
"name": "Miles Scotson",
"nationality": "Australia"
},
{
"path": "rider/Jay_Mccarthy",
"name": "Jay McCarthy",
"nationality": "Australia",
"weight": 63,
"height": 1.74
},
{
"path": "rider/Brendan_Canty",
"name": "Brendan Canty",
"nationality": "Australia",
"weight": 60,
"height": 1.7
},
{
"path": "rider/William_Clarke",
"name": "William Clarke",
"nationality": "Australia",
"weight": 81,
"height": 1.92
},
{
"path": "rider/Simon_Clarke",
"name": "Simon Clarke",
"nationality": "Australia",
"weight": 63,
"height": 1.75
},
{
"path": "rider/nathan_Haas",
"name": "Nathan Haas",
"nationality": "Australia",
"weight": 80,
"height": 1.78
},
{
"path": "rider/Lachlan_Morton",
"name": "Lachlan Morton",
"nationality": "Australia"
},
{
"path": "rider/Ben_O_Connor",
"name": "Ben O'Connor",
"nationality": "Australia"
},
{
"path": "rider/Mark_Renshaw",
"name": "Mark Renshaw",
"nationality": "Australia",
"weight": 72,
"height": 1.79
},
{
"path": "rider/Adam_Hansen",
"name": "Adam Hansen",
"nationality": "Australia",
"weight": 75,
"height": 1.86
},
{
"path": "rider/Rory_Sutherland",
"name": "Rory Sutherland",
"nationality": "Australia",
"weight": 75,
"height": 1.88
},
{
"path": "rider/Mitchell_Docker",
"name": "Mitchell Docker",
"nationality": "Australia"
},
{
"path": "rider/Luke_Durbridge",
"name": "Luke Durbridge",
"nationality": "Australia"
},
{
"path": "rider/Alexander_Edmondson",
"name": "Alexander Edmondson",
"nationality": "Australia"
},
{
"path": "rider/Caleb_Ewan",
"name": "Caleb Ewan",
"nationality": "Australia",
"weight": 61,
"height": 1.65
},
{
"path": "rider/Simon_Gerrans",
"name": "Simon Gerrans",
"nationality": "Australia",
"weight": 62,
"height": 1.69
},
{
"path": "rider/Jack_Haig",
"name": "Jack Haig",
"nationality": "Australia"
},
{
"path": "rider/Mathew_Hayman",
"name": "Mathew Hayman",
"nationality": "Australia"
},
{
"path": "rider/Michael_Hepburn",
"name": "Michael Hepburn",
"nationality": "Australia"
},
{
"path": "rider/Damien_Howson",
"name": "Damien Howson",
"nationality": "Australia"
},
{
"path": "rider/Robert_Power",
"name": "Robert Power",
"nationality": "Australia"
},
{
"path": "rider/Chris_Hamilton",
"name": "Chris Hamilton",
"nationality": "Australia"
},
{
"path": "rider/Michael_Matthews",
"name": "Michael Matthews",
"nationality": "Australia"
}
],
"Belarus": [
{
"path": "rider/Kanstantsin_Siutsou",
"name": "Kanstantsin Siutsou",
"nationality": "Belarus",
"weight": 68,
"height": 1.83
},
{
"path": "rider/Vasil_Kiryienka",
"name": "Vasil Kiryienka",
"nationality": "Belarus",
"weight": 69,
"height": 1.82
}
],
"China": [
{
"path": "rider/Meiyin_Wang",
"name": "Meiyin Wang",
"nationality": "China"
}
],
"United States": [
{
"path": "rider/Brent_Bookwalter",
"name": "Brent Bookwalter",
"nationality": "United States",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Joey_Rosskopf",
"name": "Joey Rosskopf",
"nationality": "United States",
"weight": 76,
"height": 1.87
},
{
"path": "rider/Tejay_Van_Garderen",
"name": "Tejay Garderen van",
"nationality": "United States",
"weight": 72,
"height": 1.86
},
{
"path": "rider/nathan_Brown",
"name": "Nathan Brown",
"nationality": "United States",
"weight": 65,
"height": 1.82
},
{
"path": "rider/Lawson_Craddock",
"name": "Lawson Craddock",
"nationality": "United States",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Joe_Dombrowski",
"name": "Joe Dombrowski",
"nationality": "United States",
"weight": 63,
"height": 1.86
},
{
"path": "rider/Alex_Howes",
"name": "Alex Howes",
"nationality": "United States",
"weight": 61,
"height": 1.8
},
{
"path": "rider/Taylor_Phinney",
"name": "Taylor Phinney",
"nationality": "United States",
"weight": 82,
"height": 1.97
},
{
"path": "rider/Andrew_Talansky",
"name": "Andrew Talansky",
"nationality": "United States",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Tyler_Farrar",
"name": "Tyler Farrar",
"nationality": "United States",
"weight": 73,
"height": 1.83
},
{
"path": "rider/Benjamin_King_1",
"name": "Benjamin King",
"nationality": "United States",
"weight": 68,
"height": 1.83
},
{
"path": "rider/Alexey_Vermeulen",
"name": "Alexey Vermeulen",
"nationality": "United States",
"weight": 62,
"height": 1.78
},
{
"path": "rider/Ian_Boswell",
"name": "Ian Boswell",
"nationality": "United States",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Chad_Haga",
"name": "Chad Haga",
"nationality": "United States"
},
{
"path": "rider/Gregory_Daniel",
"name": "Gregory Daniel",
"nationality": "United States"
},
{
"path": "rider/Kiel_Reijnen",
"name": "Kiel Reijnen",
"nationality": "United States",
"weight": 63,
"height": 1.8
},
{
"path": "rider/Peter_Stetina",
"name": "Peter Stetina",
"nationality": "United States",
"weight": 63,
"height": 1.8
}
],
"Netherlands": [
{
"path": "rider/Floris_Gerts",
"name": "Floris Gerts",
"nationality": "Netherlands"
},
{
"path": "rider/Sebastian_Langeveld",
"name": "Sebastian Langeveld",
"nationality": "Netherlands",
"weight": 67,
"height": 1.78
},
{
"path": "rider/Tom_Jelte_Slagter",
"name": "Tom-Jelte Slagter",
"nationality": "Netherlands",
"weight": 58,
"height": 1.69
},
{
"path": "rider/Dylan_Van_Baarle",
"name": "Dylan Baarle van",
"nationality": "Netherlands",
"weight": 78,
"height": 1.87
},
{
"path": "rider/Wouter_Wippert",
"name": "Wouter Wippert",
"nationality": "Netherlands",
"weight": 75,
"height": 1.78
},
{
"path": "rider/Moreno_Hofland",
"name": "Moreno Hofland",
"nationality": "Netherlands",
"weight": 71,
"height": 1.79
},
{
"path": "rider/niki_Terpstra",
"name": "Niki Terpstra",
"nationality": "Netherlands",
"weight": 75,
"height": 1.88
},
{
"path": "rider/Maurits_Lammertink",
"name": "Maurits Lammertink",
"nationality": "Netherlands",
"weight": 63,
"height": 1.7
},
{
"path": "rider/Lars_Boom",
"name": "Lars Boom",
"nationality": "Netherlands",
"weight": 72,
"height": 1.91
},
{
"path": "rider/Koen_Bouwman",
"name": "Koen Bouwman",
"nationality": "Netherlands",
"weight": 60,
"height": 1.78
},
{
"path": "rider/Twan_Castelijns",
"name": "Twan Castelijns",
"nationality": "Netherlands",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Stef_Clement",
"name": "Stef Clement",
"nationality": "Netherlands",
"weight": 67,
"height": 1.81
},
{
"path": "rider/Robert_Gesink",
"name": "Robert Gesink",
"nationality": "Netherlands",
"weight": 70,
"height": 1.89
},
{
"path": "rider/Dylan_Groenewegen",
"name": "Dylan Groenewegen",
"nationality": "Netherlands",
"weight": 70,
"height": 1.77
},
{
"path": "rider/Martijn_Keizer",
"name": "Martijn Keizer",
"nationality": "Netherlands",
"weight": 72,
"height": 1.93
},
{
"path": "rider/Steven_Kruijswijk",
"name": "Steven Kruijswijk",
"nationality": "Netherlands",
"weight": 66,
"height": 1.78
},
{
"path": "rider/Steven_Lammertink",
"name": "Steven Lammertink",
"nationality": "Netherlands",
"weight": 68,
"height": 1.76
},
{
"path": "rider/Tom_Leezer",
"name": "Tom Leezer",
"nationality": "Netherlands",
"weight": 76,
"height": 1.85
},
{
"path": "rider/Bert_Jan_Lindeman",
"name": "Bert-Jan Lindeman",
"nationality": "Netherlands",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Daan_Olivier",
"name": "Daan Olivier",
"nationality": "Netherlands",
"weight": 64,
"height": 1.88
},
{
"path": "rider/Timo_Roosen",
"name": "Timo Roosen",
"nationality": "Netherlands",
"weight": 75,
"height": 1.94
},
{
"path": "rider/Bram_Tankink",
"name": "Bram Tankink",
"nationality": "Netherlands",
"weight": 71,
"height": 1.81
},
{
"path": "rider/Antwan_Tolhoek",
"name": "Antwan Tolhoek",
"nationality": "Netherlands",
"weight": 61,
"height": 1.78
},
{
"path": "rider/Jos_Van_Emden",
"name": "Jos Emden van",
"nationality": "Netherlands",
"weight": 74,
"height": 1.86
},
{
"path": "rider/Wout_Poels",
"name": "Wout Poels",
"nationality": "Netherlands",
"weight": 66,
"height": 1.83
},
{
"path": "rider/Danny_Van_Poppel",
"name": "Danny Poppel van",
"nationality": "Netherlands",
"weight": 80,
"height": 1.83
},
{
"path": "rider/Roy_Curvers",
"name": "Roy Curvers",
"nationality": "Netherlands",
"weight": 73,
"height": 1.88
},
{
"path": "rider/Tom_Dumoulin",
"name": "Tom Dumoulin",
"nationality": "Netherlands",
"weight": 69,
"height": 1.85
},
{
"path": "rider/Lennard_Hofstede",
"name": "Lennard Hofstede",
"nationality": "Netherlands"
},
{
"path": "rider/Wilco_Kelderman",
"name": "Wilco Kelderman",
"nationality": "Netherlands",
"weight": 65,
"height": 1.85
},
{
"path": "rider/Sam_Oomen",
"name": "Sam Oomen",
"nationality": "Netherlands"
},
{
"path": "rider/Ramon_Sinkeldam",
"name": "Ramon Sinkeldam",
"nationality": "Netherlands",
"weight": 77,
"height": 1.93
},
{
"path": "rider/Tom_Stamsnijder",
"name": "Tom Stamsnijder",
"nationality": "Netherlands",
"weight": 90,
"height": 1.91
},
{
"path": "rider/Laurens_Ten_Dam",
"name": "Laurens Dam ten",
"nationality": "Netherlands",
"weight": 67,
"height": 1.84
},
{
"path": "rider/Mike_Teunissen",
"name": "Mike Teunissen",
"nationality": "Netherlands",
"weight": 73,
"height": 1.84
},
{
"path": "rider/Albert_Timmer",
"name": "Albert Timmer",
"nationality": "Netherlands",
"weight": 71,
"height": 1.86
},
{
"path": "rider/Koen_De_Kort",
"name": "Koen Kort de",
"nationality": "Netherlands",
"weight": 69,
"height": 1.79
},
{
"path": "rider/Bauke_Mollema",
"name": "Bauke Mollema",
"nationality": "Netherlands",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Boy_Van_Poppel",
"name": "Boy Poppel van",
"nationality": "Netherlands",
"weight": 74,
"height": 1.85
}
],
"Ireland": [
{
"path": "rider/nicolas_Roche",
"name": "Nicolas Roche",
"nationality": "Ireland",
"weight": 70,
"height": 1.78
},
{
"path": "rider/Sam_Bennett",
"name": "Sam Bennett",
"nationality": "Ireland",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Ryan_Mullen",
"name": "Ryan Mullen",
"nationality": "Ireland",
"weight": 77,
"height": 1.89
},
{
"path": "rider/Daniel_Martin_1",
"name": "Daniel Martin",
"nationality": "Ireland",
"weight": 59,
"height": 1.75
},
{
"path": "rider/Philip_Deignan",
"name": "Philip Deignan",
"nationality": "Ireland",
"weight": 65,
"height": 1.8
}
],
"New Zealand": [
{
"path": "rider/Shane_Archbold",
"name": "Shane Archbold",
"nationality": "New Zealand",
"weight": 80,
"height": 1.82
},
{
"path": "rider/Patrick_Bevin",
"name": "Patrick Bevin",
"nationality": "New Zealand",
"weight": 75,
"height": 1.8
},
{
"path": "rider/Thomas_Scully",
"name": "Thomas Scully",
"nationality": "New Zealand",
"weight": 85,
"height": 1.88
},
{
"path": "rider/Sam_Bewley",
"name": "Sam Bewley",
"nationality": "New Zealand"
},
{
"path": "rider/Jack_Bauer",
"name": "Jack Bauer",
"nationality": "New Zealand",
"weight": 74,
"height": 1.91
},
{
"path": "rider/George_Bennett",
"name": "George Bennett",
"nationality": "New Zealand",
"weight": 58,
"height": 1.8
}
],
"Slovakia": [
{
"path": "rider/Erik_Baska",
"name": "Erik Ba\\u00c5\\u00a1ka",
"nationality": "Slovakia",
"weight": 74,
"height": 1.82
},
{
"path": "rider/Michael_Kolar",
"name": "Michael Kolar",
"nationality": "Slovakia"
},
{
"path": "rider/Juraj_Sagan",
"name": "Juraj Sagan",
"nationality": "Slovakia",
"weight": 65,
"height": 1.73
},
{
"path": "rider/Peter_Sagan",
"name": "Peter Sagan",
"nationality": "Slovakia",
"weight": 73,
"height": 1.84
},
{
"path": "rider/Martin_Velits",
"name": "Martin Velits",
"nationality": "Slovakia",
"weight": 70,
"height": 1.85
}
],
"Poland": [
{
"path": "rider/Maciej_Bodnar",
"name": "Maciej Bodnar",
"nationality": "Poland",
"weight": 70,
"height": 1.86
},
{
"path": "rider/Rafal_Majka",
"name": "Rafa\\u00c5\\u0082 Majka",
"nationality": "Poland",
"weight": 62,
"height": 1.73
},
{
"path": "rider/Pawel_Poljanski",
"name": "Pawel Poljanski",
"nationality": "Poland"
},
{
"path": "rider/Tomasz_Marczynski",
"name": "Tomasz Marczynski",
"nationality": "Poland",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Michal_Golas",
"name": "Michal Golas",
"nationality": "Poland",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Michal_Kwiatkowski",
"name": "Michal Kwiatkowski",
"nationality": "Poland",
"weight": 68,
"height": 1.76
},
{
"path": "rider/Lukasz_Wisniowski",
"name": "\\u00c5\\u0081ukasz Wi\\u00c5\\u009bniowski",
"nationality": "Poland",
"weight": 79,
"height": 1.9
},
{
"path": "rider/Przemyslaw_niemiec",
"name": "Przemyslaw Niemiec",
"nationality": "Poland",
"weight": 62,
"height": 1.84
}
],
"Austria": [
{
"path": "rider/Patrick_Konrad",
"name": "Patrick Konrad",
"nationality": "Austria",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Gregor_Muhlberger",
"name": "Gregor M\\u00c3\\u00bchlberger",
"nationality": "Austria",
"weight": 64,
"height": 1.8
},
{
"path": "rider/Lukas_Postlberger",
"name": "Lukas P\\u00c3\\u00b6stlberger",
"nationality": "Austria",
"weight": 70,
"height": 1.82
},
{
"path": "rider/Bernhard_Eisel",
"name": "Bernhard Eisel",
"nationality": "Austria",
"weight": 74,
"height": 1.83
},
{
"path": "rider/Marco_Haller",
"name": "Marco Haller",
"nationality": "Austria",
"weight": 72,
"height": 1.78
},
{
"path": "rider/Georg_Preidler",
"name": "Georg Preidler",
"nationality": "Austria",
"weight": 68,
"height": 1.9
},
{
"path": "rider/Matthias_Brandle",
"name": "Matthias Br\\u00c3\\u00a4ndle",
"nationality": "Austria",
"weight": 77,
"height": 1.89
},
{
"path": "rider/Michael_Gogl",
"name": "Michael Gogl",
"nationality": "Austria",
"weight": 70,
"height": 1.86
}
],
"Portugal": [
{
"path": "rider/Jose_Mendes",
"name": "Jos\\u00c3\\u00a9 Mendes",
"nationality": "Portugal",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Nuno_Bico",
"name": "Nuno Bico",
"nationality": "Portugal",
"weight": 64,
"height": 1.81
},
{
"path": "rider/nelson_Oliveira",
"name": "Nelson Oliveira",
"nationality": "Portugal",
"weight": 67,
"height": 1.8
},
{
"path": "rider/Jose_Goncalves",
"name": "Jos\\u00c3\\u00a9 Gon\\u00c3\\u00a7alves",
"nationality": "Portugal",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Tiago_Machado",
"name": "Tiago Machado",
"nationality": "Portugal",
"weight": 63,
"height": 1.78
},
{
"path": "rider/Andre_Cardoso",
"name": "Andr\\u00c3\\u00a9 Cardoso",
"nationality": "Portugal",
"weight": 56,
"height": 1.68
},
{
"path": "rider/Ruben_Guerreiro",
"name": "Ruben Guerreiro",
"nationality": "Portugal",
"weight": 64,
"height": 1.78
},
{
"path": "rider/Rui_Costa",
"name": "Rui Costa",
"nationality": "Portugal",
"weight": 69,
"height": 1.83
}
],
"Latvia": [
{
"path": "rider/Aleksejs_Saramotins",
"name": "Aleksejs Saramotins",
"nationality": "Latvia",
"weight": 75,
"height": 1.85
},
{
"path": "rider/Toms_Skujins",
"name": "Toms Skuji\\u00c5\\u0086\\u00c5\\u00a1",
"nationality": "Latvia",
"weight": 70,
"height": 1.78
}
],
"Great Britain": [
{
"path": "rider/Hugh_Carthy",
"name": "Hugh Carthy",
"nationality": "Great Britain",
"weight": 63,
"height": 1.89
},
{
"path": "rider/Mark_Cavendish",
"name": "Mark Cavendish",
"nationality": "Great Britain",
"weight": 70,
"height": 1.75
},
{
"path": "rider/Stephen_Cummings",
"name": "Stephen Cummings",
"nationality": "Great Britain",
"weight": 73,
"height": 1.89
},
{
"path": "rider/Scott_Thwaites",
"name": "Scott Thwaites",
"nationality": "Great Britain",
"weight": 69,
"height": 1.78
},
{
"path": "rider/James_Shaw",
"name": "Callum James Shaw",
"nationality": "Great Britain",
"weight": 63,
"height": 1.79
},
{
"path": "rider/Alex_Dowsett",
"name": "Alex Dowsett",
"nationality": "Great Britain",
"weight": 75,
"height": 1.82
},
{
"path": "rider/Adam_Yates",
"name": "Adam Yates",
"nationality": "Great Britain"
},
{
"path": "rider/Simon_Yates",
"name": "Simon Yates",
"nationality": "Great Britain",
"weight": 59,
"height": 1.72
},
{
"path": "rider/Jonathan_Dibben",
"name": "Jonathan Dibben",
"nationality": "Great Britain"
},
{
"path": "rider/Owain_Doull",
"name": "Owain Doull",
"nationality": "Great Britain",
"weight": 71,
"height": 1.81
},
{
"path": "rider/Christopher_Froome",
"name": "Christopher Froome",
"nationality": "Great Britain",
"weight": 69,
"height": 1.86
},
{
"path": "rider/Tao_Geoghegan_Hart",
"name": "Tao Hart Geoghegan",
"nationality": "Great Britain"
},
{
"path": "rider/Peter_Kennaugh",
"name": "Peter Kennaugh",
"nationality": "Great Britain",
"weight": 66,
"height": 1.73
},
{
"path": "rider/Luke_Rowe",
"name": "Luke Rowe",
"nationality": "Great Britain",
"weight": 72,
"height": 1.85
},
{
"path": "rider/Ian_Stannard",
"name": "Ian Stannard",
"nationality": "Great Britain",
"weight": 83,
"height": 1.89
},
{
"path": "rider/Geraint_Thomas",
"name": "Geraint Thomas",
"nationality": "Great Britain",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Ben_Swift",
"name": "Ben Swift",
"nationality": "Great Britain",
"weight": 69,
"height": 1.79
}
],
"Eritrea": [
{
"path": "rider/Natnael_Berhane",
"name": "Natnael Berhane",
"nationality": "Eritrea",
"weight": 66,
"height": 1.82
},
{
"path": "rider/Mekseb_Debesay",
"name": "Mekseb Debesay",
"nationality": "Eritrea"
},
{
"path": "rider/Merhawi_Kudus",
"name": "Merhawi Kudus",
"nationality": "Eritrea",
"weight": 58,
"height": 1.73
},
{
"path": "rider/Daniel_Teklehaimanot",
"name": "Daniel Teklehaimanot",
"nationality": "Eritrea",
"weight": 70,
"height": 1.88
}
],
"South Africa": [
{
"path": "rider/Nick_Dougall",
"name": "Nick Dougall",
"nationality": "South Africa",
"weight": 72,
"height": 1.9
},
{
"path": "rider/Ryan_Gibbons",
"name": "Ryan Gibbons",
"nationality": "South Africa"
},
{
"path": "rider/Reinardt_Janse_Van_Rensburg",
"name": "Reinardt Rensburg van Janse",
"nationality": "South Africa",
"weight": 74,
"height": 1.82
},
{
"path": "rider/Jacques_Janse_van_Rensburg",
"name": "Jacques Rensburg van Janse",
"nationality": "South Africa",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Jay_Robert_Thomson",
"name": "Robert Jay Thomson",
"nationality": "South Africa",
"weight": 75,
"height": 1.85
},
{
"path": "rider/Johann_Van_Zyl",
"name": "Johann Zyl Van",
"nationality": "South Africa",
"weight": 72,
"height": 1.9
},
{
"path": "rider/Jaco_Venter",
"name": "Jaco Venter",
"nationality": "South Africa",
"weight": 70,
"height": 1.89
},
{
"path": "rider/Daryl_Impey",
"name": "Daryl Impey",
"nationality": "South Africa",
"weight": 70,
"height": 1.81
},
{
"path": "rider/Louis_Meintjes",
"name": "Louis Meintjes",
"nationality": "South Africa",
"weight": 61,
"height": 1.73
}
],
"Rwanda": [
{
"path": "rider/Adrien_Niyonshuti",
"name": "Adrien Niyonshuti",
"nationality": "Rwanda",
"weight": 63,
"height": 1.75
}
],
"Algeria": [
{
"path": "rider/Youcef_Reguigui",
"name": "Youcef Reguigui",
"nationality": "Algeria",
"weight": 69,
"height": 1.72
}
],
"Sweden": [
{
"path": "rider/Tobias_Ludvigsson",
"name": "Tobias Ludvigsson",
"nationality": "Sweden",
"weight": 76,
"height": 1.94
}
],
"Costa Rica": [
{
"path": "rider/Andrey_Amador",
"name": "Andrey Amador",
"nationality": "Costa Rica",
"weight": 73,
"height": 1.81
}
],
"Ecuador": [
{
"path": "rider/Richard_Carapaz",
"name": "Richard Carapaz",
"nationality": "Ecuador"
}
],
"Hongkong": [
{
"path": "rider/King_Lok_Cheung",
"name": "Lok King Cheung",
"nationality": "Hongkong"
}
],
"Argentina": [
{
"path": "rider/Ariel_Maximiliano_Richeze",
"name": "Maximiliano Ariel Richeze",
"nationality": "Argentina",
"weight": 68,
"height": 1.75
}
],
"Croatia": [
{
"path": "rider/Robert_Kiserlovski",
"name": "Robert Ki\\u00c5\\u00a1erlovski",
"nationality": "Croatia",
"weight": 72,
"height": 1.8
},
{
"path": "rider/Kristijan_Durasek",
"name": "Kristijan Durasek",
"nationality": "Croatia",
"weight": 56,
"height": 1.7
}
],
"Morocco": [
{
"path": "rider/Anass_Ait_El_Abdia",
"name": "Anass Abdia El Ait",
"nationality": "Morocco"
}
],
"United Arab Emirates": [
{
"path": "rider/Yousef_Mohamed_Mirza",
"name": "Mohamed Yousef Mirza",
"nationality": "United Arab Emirates"
}
]
}
[
{
"name": "AG2R La Mondiale",
"path": "team/AG2R_La_Mondiale_2017",
"roster": [
{
"path": "rider/Gediminas_Bagdonas",
"name": "Gediminas Bagdonas",
"nationality": "Lithuania",
"weight": 78,
"height": 1.85
},
{
"path": "rider/Jan_Bakelants",
"name": "Jan Bakelants",
"nationality": "Belgium",
"weight": 67,
"height": 1.77
},
{
"path": "rider/Rudy_Barbier",
"name": "Rudy Barbier",
"nationality": "France"
},
{
"path": "rider/Romain_Bardet",
"name": "Romain Bardet",
"nationality": "France",
"weight": 65,
"height": 1.84
},
{
"path": "rider/Julien_Berard",
"name": "Julien B\\u00c3\\u00a9rard",
"nationality": "France",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Francois_Bidard",
"name": "Fran\\u00c3\\u00a7ois Bidard",
"nationality": "France"
},
{
"path": "rider/Mikael_Cherel",
"name": "Micka\\u00c3\\u00abl Ch\\u00c3\\u00a9rel",
"nationality": "France",
"weight": 65,
"height": 1.85
},
{
"path": "rider/Clement_Chevrier",
"name": "Cl\\u00c3\\u00a9ment Chevrier",
"nationality": "France",
"weight": 56,
"height": 1.77
},
{
"path": "rider/Benoit_Cosnefroy",
"name": "Benoit Cosnefroy",
"nationality": "France"
},
{
"path": "rider/nico_Denz",
"name": "Nico Denz",
"nationality": "Germany",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Axel_Domont",
"name": "Axel Domont",
"nationality": "France",
"weight": 65,
"height": 1.79
},
{
"path": "rider/Samuel_Dumoulin",
"name": "Samuel Dumoulin",
"nationality": "France",
"weight": 56,
"height": 1.59
},
{
"path": "rider/Hubert_Dupont",
"name": "Hubert Dupont",
"nationality": "France",
"weight": 58,
"height": 1.74
},
{
"path": "rider/Julien_Duval",
"name": "Julien Duval",
"nationality": "France"
},
{
"path": "rider/Sondre_Holst_Enger",
"name": "Holst Sondre Enger",
"nationality": "Norway",
"weight": 69,
"height": 1.71
},
{
"path": "rider/Mathias_Frank",
"name": "Mathias Frank",
"nationality": "Switzerland",
"weight": 64,
"height": 1.76
},
{
"path": "rider/Ben_Gastauer",
"name": "Ben Gastauer",
"nationality": "Luxembourg",
"weight": 73,
"height": 1.9
},
{
"path": "rider/Cyril_Gautier",
"name": "Cyril Gautier",
"nationality": "France",
"weight": 64,
"height": 1.68
},
{
"path": "rider/Alexandre_Geniez",
"name": "Alexandre Geniez",
"nationality": "France",
"weight": 64,
"height": 1.82
},
{
"path": "rider/Alexis_Gougeard",
"name": "Alexis Gougeard",
"nationality": "France",
"weight": 66,
"height": 1.76
},
{
"path": "rider/Hugo_Houle",
"name": "Hugo Houle",
"nationality": "Canada",
"weight": 71,
"height": 1.85
},
{
"path": "rider/Quentin_Jauregui",
"name": "Quentin Jauregui",
"nationality": "France",
"weight": 60,
"height": 1.76
},
{
"path": "rider/Pierre_Latour",
"name": "Pierre Latour",
"nationality": "France",
"weight": 64,
"height": 1.8
},
{
"path": "rider/Matteo_Montaguti",
"name": "Matteo Montaguti",
"nationality": "Italy",
"weight": 65,
"height": 1.81
},
{
"path": "rider/Oliver_naesen",
"name": "Oliver Naesen",
"nationality": "Belgium",
"weight": 71,
"height": 1.84
},
{
"path": "rider/nans_Peters",
"name": "Nans Peters",
"nationality": "France"
},
{
"path": "rider/Domenico_Pozzovivo",
"name": "Domenico Pozzovivo",
"nationality": "Italy",
"weight": 53,
"height": 1.65
},
{
"path": "rider/Christophe_Riblon",
"name": "Christophe Riblon",
"nationality": "France",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Stijn_Vandenbergh",
"name": "Stijn Vandenbergh",
"nationality": "Belgium",
"weight": 85,
"height": 1.99
},
{
"path": "rider/Alexis_Vuillermoz",
"name": "Alexis Vuillermoz",
"nationality": "France",
"weight": 60,
"height": 1.74
}
]
},
{
"name": "Astana Pro Team",
"path": "team/Astana_Pro_Team_2017",
"roster": [
{
"path": "rider/Fabio_Aru",
"name": "Fabio Aru",
"nationality": "Italy",
"weight": 66,
"height": 1.83
},
{
"path": "rider/Pello_Bilbao",
"name": "Pello Bilbao",
"nationality": "Spain",
"weight": 60,
"height": 1.74
},
{
"path": "rider/Zhandos_Bizhigitov",
"name": "Zhandos Bizhigitov",
"nationality": "Kazakhstan"
},
{
"path": "rider/Matti_Breschel",
"name": "Matti Breschel",
"nationality": "Denmark",
"weight": 70,
"height": 1.81
},
{
"path": "rider/Dario_Cataldo",
"name": "Dario Cataldo",
"nationality": "Italy",
"weight": 64,
"height": 1.75
},
{
"path": "rider/Sergei_Chernetckii",
"name": "Sergei Chernetckii",
"nationality": "Russia",
"weight": 63,
"height": 1.76
},
{
"path": "rider/Laurens_De_Vreese",
"name": "Laurens Vreese de",
"nationality": "Belgium",
"weight": 76,
"height": 1.9
},
{
"path": "rider/Daniil_Fominykh",
"name": "Daniil Fominykh",
"nationality": "Kazakhstan",
"weight": 70,
"height": 1.82
},
{
"path": "rider/Jakob_Fuglsang",
"name": "Jakob Fuglsang",
"nationality": "Denmark",
"weight": 68,
"height": 1.82
},
{
"path": "rider/Oscar_Gatto",
"name": "Oscar Gatto",
"nationality": "Italy",
"weight": 67,
"height": 1.74
},
{
"path": "rider/Andrei_Grivko",
"name": "Andrei Grivko",
"nationality": "Ukraine",
"weight": 70,
"height": 1.81
},
{
"path": "rider/Dmitriy_Gruzdev",
"name": "Dmitriy Gruzdev",
"nationality": "Kazakhstan",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Jesper_Hansen_1",
"name": "Jesper Hansen",
"nationality": "Denmark",
"weight": 60,
"height": 1.76
},
{
"path": "rider/Arman_Kamyshev",
"name": "Arman Kamyshev",
"nationality": "Kazakhstan",
"weight": 67,
"height": 1.82
},
{
"path": "rider/Tanel_Kangert",
"name": "Tanel Kangert",
"nationality": "Estonia",
"weight": 65,
"height": 1.78
},
{
"path": "rider/Truls_Korsaeth",
"name": "Truls Korsaeth",
"nationality": "Norway"
},
{
"path": "rider/Bakhtiyar_Kozhatayev",
"name": "Bakhtiyar Kozhatayev",
"nationality": "Kazakhstan",
"weight": 62,
"height": 1.72
},
{
"path": "rider/Miguel_Angel_Lopez",
"name": "\\u00c3\\u0081ngel Miguel L\\u00c3\\u00b3pez",
"nationality": "Colombia",
"weight": 65,
"height": 1.7
},
{
"path": "rider/Aleksey_Lutsenko",
"name": "Alexey Lutsenko",
"nationality": "Kazakhstan",
"weight": 70,
"height": 1.75
},
{
"path": "rider/Riccardo_Minali",
"name": "Riccardo Minali",
"nationality": "Italy"
},
{
"path": "rider/Moreno_Moser",
"name": "Moreno Moser",
"nationality": "Italy",
"weight": 64,
"height": 1.77
},
{
"path": "rider/Luis_Leon_Sanchez",
"name": "Leon Luis Sanchez",
"nationality": "Spain",
"weight": 74,
"height": 1.87
},
{
"path": "rider/Michele_Scarponi",
"name": "Michele Scarponi",
"nationality": "Italy",
"weight": 62,
"height": 1.74
},
{
"path": "rider/Nikita_Stalnov",
"name": "Nikita Stalnov",
"nationality": "Kazakhstan",
"weight": 63,
"height": 1.77
},
{
"path": "rider/Paolo_Tiralongo",
"name": "Paolo Tiralongo",
"nationality": "Italy",
"weight": 63,
"height": 1.78
},
{
"path": "rider/Ruslan_Tleubayev",
"name": "Ruslan Tleubayev",
"nationality": "Kazakhstan",
"weight": 70,
"height": 1.78
},
{
"path": "rider/Michael_Valgren_Andersen",
"name": "Michael Valgren",
"nationality": "Denmark",
"weight": 71,
"height": 1.79
},
{
"path": "rider/Artyom_Zakharov",
"name": "Artyom Zakharov",
"nationality": "Kazakhstan"
},
{
"path": "rider/Andrey_Zeits",
"name": "Andrey Zeits",
"nationality": "Kazakhstan",
"weight": 73,
"height": 1.89
}
]
},
{
"name": "Bahrain Merida Pro Cycling Team",
"path": "team/Bahrain_Merida_Pro_Cycling_Team_2017",
"roster": [
{
"path": "rider/Valerio_Agnoli",
"name": "Valerio Agnoli",
"nationality": "Italy",
"weight": 72,
"height": 1.78
},
{
"path": "rider/Yukiya_Arashiro",
"name": "Yukiya Arashiro",
"nationality": "Japan",
"weight": 64,
"height": 1.7
},
{
"path": "rider/Manuele_Boaro",
"name": "Manuele Boaro",
"nationality": "Italy",
"weight": 64,
"height": 1.73
},
{
"path": "rider/Grega_Bole",
"name": "Grega Bole",
"nationality": "Slovenia",
"weight": 68,
"height": 1.77
},
{
"path": "rider/Niccolo_Bonifazio",
"name": "Niccolo Bonifazio",
"nationality": "Italy",
"weight": 68,
"height": 1.72
},
{
"path": "rider/Borut_Bozic",
"name": "Borut Bozic",
"nationality": "Slovenia",
"weight": 67,
"height": 1.8
},
{
"path": "rider/Janez_Brajkovic",
"name": "Janez Brajkovi\\u00c4\\u008d",
"nationality": "Slovenia",
"weight": 65,
"height": 1.75
},
{
"path": "rider/Ondrej_Cink",
"name": "Ondrej Cink",
"nationality": "Czech Republic"
},
{
"path": "rider/Sonny_Colbrelli",
"name": "Sonny Colbrelli",
"nationality": "Italy",
"weight": 71,
"height": 1.76
},
{
"path": "rider/Chun_Kai_Feng",
"name": "Kai Chun Feng",
"nationality": "Taiwan",
"weight": 68,
"height": 1.7
},
{
"path": "rider/Ivan_Garcia_Cortina",
"name": "Ivan Cortina Garcia",
"nationality": "Spain"
},
{
"path": "rider/Enrico_Gasparotto",
"name": "Enrico Gasparotto",
"nationality": "Italy",
"weight": 65,
"height": 1.74
},
{
"path": "rider/Tsgabu_Gebremaryam_Grmay",
"name": "Tsgabu Grmay",
"nationality": "Ethiopia",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Heinrich_Haussler",
"name": "Heinrich Haussler",
"nationality": "Australia",
"weight": 74,
"height": 1.81
},
{
"path": "rider/Jon_Ander_Insausti",
"name": "Ander Jon Insausti",
"nationality": "Spain"
},
{
"path": "rider/Ion_Izagirre",
"name": "Ion Izagirre",
"nationality": "Spain",
"weight": 60,
"height": 1.73
},
{
"path": "rider/Javier_Moreno",
"name": "Javier Moreno",
"nationality": "Spain",
"weight": 63,
"height": 1.81
},
{
"path": "rider/Ramunas_navardauskas",
"name": "Ramunas Navardauskas",
"nationality": "Lithuania",
"weight": 77,
"height": 1.9
},
{
"path": "rider/Vincenzo_nibali",
"name": "Vincenzo Nibali",
"nationality": "Italy",
"weight": 65,
"height": 1.81
},
{
"path": "rider/Antonio_nibali",
"name": "Antonio Nibali",
"nationality": "Italy",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Domen_novak",
"name": "Domen Novak",
"nationality": "Slovenia"
},
{
"path": "rider/Franco_Pellizotti",
"name": "Franco Pellizotti",
"nationality": "Italy",
"weight": 64,
"height": 1.75
},
{
"path": "rider/David_Per",
"name": "David Per",
"nationality": "Slovenia"
},
{
"path": "rider/Luka_Pibernik",
"name": "Luka Pibernik",
"nationality": "Slovenia",
"weight": 60,
"height": 1.77
},
{
"path": "rider/Kanstantsin_Siutsou",
"name": "Kanstantsin Siutsou",
"nationality": "Belarus",
"weight": 68,
"height": 1.83
},
{
"path": "rider/Giovanni_Visconti",
"name": "Giovanni Visconti",
"nationality": "Italy",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Meiyin_Wang",
"name": "Meiyin Wang",
"nationality": "China"
}
]
},
{
"name": "BMC Racing Team",
"path": "team/BMC_Racing_Team_2017",
"roster": [
{
"path": "rider/Tom_Bohli",
"name": "Tom Bohli",
"nationality": "Switzerland",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Brent_Bookwalter",
"name": "Brent Bookwalter",
"nationality": "United States",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Damiano_Caruso",
"name": "Damiano Caruso",
"nationality": "Italy",
"weight": 67,
"height": 1.79
},
{
"path": "rider/Alessandro_De_Marchi",
"name": "Alessandro Marchi De",
"nationality": "Italy",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Rohan_Dennis",
"name": "Rohan Dennis",
"nationality": "Australia",
"weight": 71,
"height": 1.82
},
{
"path": "rider/Silvan_Dillier",
"name": "Silvan Dillier",
"nationality": "Switzerland",
"weight": 75,
"height": 1.83
},
{
"path": "rider/Jean_pierre_Drucker",
"name": "Jean-Pierre Drucker",
"nationality": "Luxembourg",
"weight": 75,
"height": 1.82
},
{
"path": "rider/Martin_Elmiger",
"name": "Martin Elmiger",
"nationality": "Switzerland",
"weight": 73,
"height": 1.82
},
{
"path": "rider/Kilian_Frankiny",
"name": "Kilian Frankiny",
"nationality": "Switzerland"
},
{
"path": "rider/Floris_Gerts",
"name": "Floris Gerts",
"nationality": "Netherlands"
},
{
"path": "rider/Ben_Hermans",
"name": "Ben Hermans",
"nationality": "Belgium",
"weight": 72,
"height": 1.86
},
{
"path": "rider/Stefan_Kung",
"name": "Stefan K\\u00c3\\u00bcng",
"nationality": "Switzerland",
"weight": 83,
"height": 1.93
},
{
"path": "rider/Amael_Moinard",
"name": "Ama\\u00c3\\u00abl Moinard",
"nationality": "France",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Daniel_Oss",
"name": "Daniel Oss",
"nationality": "Italy",
"weight": 75,
"height": 1.9
},
{
"path": "rider/Richie_Porte",
"name": "Richie Porte",
"nationality": "Australia",
"weight": 62,
"height": 1.72
},
{
"path": "rider/Manuel_Quinziato",
"name": "Manuel Quinziato",
"nationality": "Italy",
"weight": 74,
"height": 1.85
},
{
"path": "rider/nicolas_Roche",
"name": "Nicolas Roche",
"nationality": "Ireland",
"weight": 70,
"height": 1.78
},
{
"path": "rider/Joey_Rosskopf",
"name": "Joey Rosskopf",
"nationality": "United States",
"weight": 76,
"height": 1.87
},
{
"path": "rider/Samuel_Sanchez",
"name": "Samuel S\\u00c3\\u00a1nchez",
"nationality": "Spain",
"weight": 65,
"height": 1.75
},
{
"path": "rider/Michael_Schar",
"name": "Michael Schar",
"nationality": "Switzerland",
"weight": 74,
"height": 1.96
},
{
"path": "rider/Miles_Scotson",
"name": "Miles Scotson",
"nationality": "Australia"
},
{
"path": "rider/Manuel_Senni",
"name": "Manuel Senni",
"nationality": "Italy",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Dylan_Teuns",
"name": "Dylan Teuns",
"nationality": "Belgium",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Greg_Van_Avermaet",
"name": "Greg Avermaet Van",
"nationality": "Belgium",
"weight": 74,
"height": 1.81
},
{
"path": "rider/Tejay_Van_Garderen",
"name": "Tejay Garderen van",
"nationality": "United States",
"weight": 72,
"height": 1.86
},
{
"path": "rider/Fran_Ventoso",
"name": "Francisco Ventoso",
"nationality": "Spain",
"weight": 76,
"height": 1.8
},
{
"path": "rider/Loic_Vliegen",
"name": "Lo\\u00c3\\u00afc Vliegen",
"nationality": "Belgium",
"weight": 66,
"height": 1.83
},
{
"path": "rider/Danilo_Wyss",
"name": "Danilo Wyss",
"nationality": "Switzerland",
"weight": 65,
"height": 1.76
}
]
},
{
"name": "Bora - Hansgrohe",
"path": "team/Bora_Hansgrohe_2017",
"roster": [
{
"path": "rider/Pascal_Ackermann",
"name": "Pascal Ackermann",
"nationality": "Germany",
"weight": 78,
"height": 1.8
},
{
"path": "rider/Shane_Archbold",
"name": "Shane Archbold",
"nationality": "New Zealand",
"weight": 80,
"height": 1.82
},
{
"path": "rider/Jan_Barta",
"name": "Jan B\\u00c3\\u00a1rta",
"nationality": "Czech Republic",
"weight": 75,
"height": 1.84
},
{
"path": "rider/Erik_Baska",
"name": "Erik Ba\\u00c5\\u00a1ka",
"nationality": "Slovakia",
"weight": 74,
"height": 1.82
},
{
"path": "rider/Cesare_Benedetti",
"name": "Cesare Benedetti",
"nationality": "Italy",
"weight": 63,
"height": 1.7
},
{
"path": "rider/Sam_Bennett",
"name": "Sam Bennett",
"nationality": "Ireland",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Maciej_Bodnar",
"name": "Maciej Bodnar",
"nationality": "Poland",
"weight": 70,
"height": 1.86
},
{
"path": "rider/Emanuel_Buchmann",
"name": "Emanuel Buchmann",
"nationality": "Germany",
"weight": 62,
"height": 1.81
},
{
"path": "rider/Marcus_Burghardt",
"name": "Marcus Burghardt",
"nationality": "Germany",
"weight": 75,
"height": 1.89
},
{
"path": "rider/Silvio_Herklotz",
"name": "Silvio Herklotz",
"nationality": "Germany",
"weight": 68,
"height": 1.9
},
{
"path": "rider/Michael_Kolar",
"name": "Michael Kolar",
"nationality": "Slovakia"
},
{
"path": "rider/Patrick_Konrad",
"name": "Patrick Konrad",
"nationality": "Austria",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Leopold_Konig",
"name": "Leopold K\\u00c3\\u00b6nig",
"nationality": "Czech Republic",
"weight": 62,
"height": 1.78
},
{
"path": "rider/Rafal_Majka",
"name": "Rafa\\u00c5\\u0082 Majka",
"nationality": "Poland",
"weight": 62,
"height": 1.73
},
{
"path": "rider/Jay_Mccarthy",
"name": "Jay McCarthy",
"nationality": "Australia",
"weight": 63,
"height": 1.74
},
{
"path": "rider/Jose_Mendes",
"name": "Jos\\u00c3\\u00a9 Mendes",
"nationality": "Portugal",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Gregor_Muhlberger",
"name": "Gregor M\\u00c3\\u00bchlberger",
"nationality": "Austria",
"weight": 64,
"height": 1.8
},
{
"path": "rider/Matteo_Pelucchi",
"name": "Matteo Pelucchi",
"nationality": "Italy",
"weight": 76,
"height": 1.82
},
{
"path": "rider/Christoph_Pfingsten",
"name": "Christoph Pfingsten",
"nationality": "Germany",
"weight": 69,
"height": 1.79
},
{
"path": "rider/Pawel_Poljanski",
"name": "Pawel Poljanski",
"nationality": "Poland"
},
{
"path": "rider/Lukas_Postlberger",
"name": "Lukas P\\u00c3\\u00b6stlberger",
"nationality": "Austria",
"weight": 70,
"height": 1.82
},
{
"path": "rider/Juraj_Sagan",
"name": "Juraj Sagan",
"nationality": "Slovakia",
"weight": 65,
"height": 1.73
},
{
"path": "rider/Peter_Sagan",
"name": "Peter Sagan",
"nationality": "Slovakia",
"weight": 73,
"height": 1.84
},
{
"path": "rider/Aleksejs_Saramotins",
"name": "Aleksejs Saramotins",
"nationality": "Latvia",
"weight": 75,
"height": 1.85
},
{
"path": "rider/Andreas_Schillinger",
"name": "Andreas Schillinger",
"nationality": "Germany",
"weight": 71,
"height": 1.88
},
{
"path": "rider/Michael_Schwarzmann",
"name": "Michael Schwarzmann",
"nationality": "Germany",
"weight": 69,
"height": 1.74
},
{
"path": "rider/Rudiger_Selig",
"name": "R\\u00c3\\u00bcdiger Selig",
"nationality": "Germany",
"weight": 80,
"height": 1.88
}
]
},
{
"name": "Cannondale-Drapac Pro Cycling Team",
"path": "team/Cannondale_Drapac_Pro_Cycling_Team_2017",
"roster": [
{
"path": "rider/Alberto_Bettiol",
"name": "Alberto Bettiol",
"nationality": "Italy",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Patrick_Bevin",
"name": "Patrick Bevin",
"nationality": "New Zealand",
"weight": 75,
"height": 1.8
},
{
"path": "rider/nathan_Brown",
"name": "Nathan Brown",
"nationality": "United States",
"weight": 65,
"height": 1.82
},
{
"path": "rider/Brendan_Canty",
"name": "Brendan Canty",
"nationality": "Australia",
"weight": 60,
"height": 1.7
},
{
"path": "rider/Hugh_Carthy",
"name": "Hugh Carthy",
"nationality": "Great Britain",
"weight": 63,
"height": 1.89
},
{
"path": "rider/William_Clarke",
"name": "William Clarke",
"nationality": "Australia",
"weight": 81,
"height": 1.92
},
{
"path": "rider/Simon_Clarke",
"name": "Simon Clarke",
"nationality": "Australia",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Lawson_Craddock",
"name": "Lawson Craddock",
"nationality": "United States",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Joe_Dombrowski",
"name": "Joe Dombrowski",
"nationality": "United States",
"weight": 63,
"height": 1.86
},
{
"path": "rider/Davide_Formolo",
"name": "Davide Formolo",
"nationality": "Italy",
"weight": 62,
"height": 1.81
},
{
"path": "rider/Alex_Howes",
"name": "Alex Howes",
"nationality": "United States",
"weight": 61,
"height": 1.8
},
{
"path": "rider/Kristijan_Koren",
"name": "Kristijan Koren",
"nationality": "Slovenia",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Sebastian_Langeveld",
"name": "Sebastian Langeveld",
"nationality": "Netherlands",
"weight": 67,
"height": 1.78
},
{
"path": "rider/Ryan_Mullen",
"name": "Ryan Mullen",
"nationality": "Ireland",
"weight": 77,
"height": 1.89
},
{
"path": "rider/Taylor_Phinney",
"name": "Taylor Phinney",
"nationality": "United States",
"weight": 82,
"height": 1.97
},
{
"path": "rider/Pierre_Rolland",
"name": "Pierre Rolland",
"nationality": "France",
"weight": 67,
"height": 1.84
},
{
"path": "rider/Thomas_Scully",
"name": "Thomas Scully",
"nationality": "New Zealand",
"weight": 85,
"height": 1.88
},
{
"path": "rider/Toms_Skujins",
"name": "Toms Skuji\\u00c5\\u0086\\u00c5\\u00a1",
"nationality": "Latvia",
"weight": 70,
"height": 1.78
},
{
"path": "rider/Tom_Jelte_Slagter",
"name": "Tom-Jelte Slagter",
"nationality": "Netherlands",
"weight": 58,
"height": 1.69
},
{
"path": "rider/Andrew_Talansky",
"name": "Andrew Talansky",
"nationality": "United States",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Rigoberto_Uran",
"name": "Rigoberto Uran",
"nationality": "Colombia",
"weight": 63,
"height": 1.73
},
{
"path": "rider/Dylan_Van_Baarle",
"name": "Dylan Baarle van",
"nationality": "Netherlands",
"weight": 78,
"height": 1.87
},
{
"path": "rider/Tom_Van_Asbroeck",
"name": "Tom Asbroeck Van",
"nationality": "Belgium",
"weight": 69,
"height": 1.82
},
{
"path": "rider/Sep_Vanmarcke",
"name": "Sep Vanmarcke",
"nationality": "Belgium",
"weight": 77,
"height": 1.9
},
{
"path": "rider/Davide_Villella",
"name": "Davide Villella",
"nationality": "Italy",
"weight": 66,
"height": 1.82
},
{
"path": "rider/Wouter_Wippert",
"name": "Wouter Wippert",
"nationality": "Netherlands",
"weight": 75,
"height": 1.78
},
{
"path": "rider/Michael_Woods",
"name": "Michael Woods",
"nationality": "Canada",
"weight": 64,
"height": 1.75
}
]
},
{
"name": "Dimension Data",
"path": "team/Dimension_Data_2017",
"roster": [
{
"path": "rider/Igor_Anton",
"name": "Igor Anton",
"nationality": "Spain",
"weight": 58,
"height": 1.73
},
{
"path": "rider/Natnael_Berhane",
"name": "Natnael Berhane",
"nationality": "Eritrea",
"weight": 66,
"height": 1.82
},
{
"path": "rider/Edvald_Boasson_Hagen",
"name": "Edvald Hagen Boasson",
"nationality": "Norway",
"weight": 75,
"height": 1.85
},
{
"path": "rider/Mark_Cavendish",
"name": "Mark Cavendish",
"nationality": "Great Britain",
"weight": 70,
"height": 1.75
},
{
"path": "rider/Stephen_Cummings",
"name": "Stephen Cummings",
"nationality": "Great Britain",
"weight": 73,
"height": 1.89
},
{
"path": "rider/Mekseb_Debesay",
"name": "Mekseb Debesay",
"nationality": "Eritrea"
},
{
"path": "rider/Nick_Dougall",
"name": "Nick Dougall",
"nationality": "South Africa",
"weight": 72,
"height": 1.9
},
{
"path": "rider/Bernhard_Eisel",
"name": "Bernhard Eisel",
"nationality": "Austria",
"weight": 74,
"height": 1.83
},
{
"path": "rider/Tyler_Farrar",
"name": "Tyler Farrar",
"nationality": "United States",
"weight": 73,
"height": 1.83
},
{
"path": "rider/Omar_Fraile",
"name": "Omar Fraile",
"nationality": "Spain",
"weight": 69,
"height": 1.84
},
{
"path": "rider/Ryan_Gibbons",
"name": "Ryan Gibbons",
"nationality": "South Africa"
},
{
"path": "rider/nathan_Haas",
"name": "Nathan Haas",
"nationality": "Australia",
"weight": 80,
"height": 1.78
},
{
"path": "rider/Reinardt_Janse_Van_Rensburg",
"name": "Reinardt Rensburg van Janse",
"nationality": "South Africa",
"weight": 74,
"height": 1.82
},
{
"path": "rider/Jacques_Janse_van_Rensburg",
"name": "Jacques Rensburg van Janse",
"nationality": "South Africa",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Benjamin_King_1",
"name": "Benjamin King",
"nationality": "United States",
"weight": 68,
"height": 1.83
},
{
"path": "rider/Merhawi_Kudus",
"name": "Merhawi Kudus",
"nationality": "Eritrea",
"weight": 58,
"height": 1.73
},
{
"path": "rider/Lachlan_Morton",
"name": "Lachlan Morton",
"nationality": "Australia"
},
{
"path": "rider/Adrien_Niyonshuti",
"name": "Adrien Niyonshuti",
"nationality": "Rwanda",
"weight": 63,
"height": 1.75
},
{
"path": "rider/Ben_O_Connor",
"name": "Ben O'Connor",
"nationality": "Australia"
},
{
"path": "rider/Serge_Pauwels",
"name": "Serge Pauwels",
"nationality": "Belgium",
"weight": 65,
"height": 1.78
},
{
"path": "rider/Youcef_Reguigui",
"name": "Youcef Reguigui",
"nationality": "Algeria",
"weight": 69,
"height": 1.72
},
{
"path": "rider/Mark_Renshaw",
"name": "Mark Renshaw",
"nationality": "Australia",
"weight": 72,
"height": 1.79
},
{
"path": "rider/Kristian_Sbaragli",
"name": "Kristian Sbaragli",
"nationality": "Italy",
"weight": 70,
"height": 1.75
},
{
"path": "rider/Daniel_Teklehaimanot",
"name": "Daniel Teklehaimanot",
"nationality": "Eritrea",
"weight": 70,
"height": 1.88
},
{
"path": "rider/Jay_Robert_Thomson",
"name": "Robert Jay Thomson",
"nationality": "South Africa",
"weight": 75,
"height": 1.85
},
{
"path": "rider/Scott_Thwaites",
"name": "Scott Thwaites",
"nationality": "Great Britain",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Johann_Van_Zyl",
"name": "Johann Zyl Van",
"nationality": "South Africa",
"weight": 72,
"height": 1.9
},
{
"path": "rider/Jaco_Venter",
"name": "Jaco Venter",
"nationality": "South Africa",
"weight": 70,
"height": 1.89
}
]
},
{
"name": "FDJ",
"path": "team/FDJ_2017",
"roster": [
{
"path": "rider/William_Bonnet",
"name": "William Bonnet",
"nationality": "France",
"weight": 78,
"height": 1.85
},
{
"path": "rider/Davide_Cimolai",
"name": "Davide Cimolai",
"nationality": "Italy",
"weight": 69,
"height": 1.85
},
{
"path": "rider/Arnaud_Courteille",
"name": "Arnaud Courteille",
"nationality": "France",
"weight": 62,
"height": 1.76
},
{
"path": "rider/Mickael_Delage",
"name": "Micka\\u00c3\\u00abl Delage",
"nationality": "France",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Arnaud_Demare",
"name": "Arnaud D\\u00c3\\u00a9mare",
"nationality": "France",
"weight": 78,
"height": 1.82
},
{
"path": "rider/Odd_Christian_Eiking",
"name": "Christian Odd Eiking",
"nationality": "Norway"
},
{
"path": "rider/Marc_Fournier",
"name": "Marc Fournier",
"nationality": "France"
},
{
"path": "rider/David_Gaudu",
"name": "David Gaudu",
"nationality": "France"
},
{
"path": "rider/Jacopo_Guarnieri",
"name": "Jacopo Guarnieri",
"nationality": "Italy",
"weight": 78,
"height": 1.89
},
{
"path": "rider/Daniel_Hoelgaard",
"name": "Daniel Hoelgaard",
"nationality": "Norway"
},
{
"path": "rider/Ignatas_Konovalovas",
"name": "Ignatas Konovalovas",
"nationality": "Lithuania",
"weight": 75,
"height": 1.9
},
{
"path": "rider/Matthieu_Ladagnous",
"name": "Matthieu Ladagnous",
"nationality": "France",
"weight": 73,
"height": 1.82
},
{
"path": "rider/Olivier_Le_Gac",
"name": "Olivier Gac Le",
"nationality": "France",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Johan_Le_Bon",
"name": "Johan Bon Le",
"nationality": "France",
"weight": 71,
"height": 1.8
},
{
"path": "rider/Tobias_Ludvigsson",
"name": "Tobias Ludvigsson",
"nationality": "Sweden",
"weight": 76,
"height": 1.94
},
{
"path": "rider/Valentin_Madouas",
"name": "Valentin Madouas"
},
{
"path": "rider/Jeremy_Maison",
"name": "J\\u00c3\\u00a9r\\u00c3\\u00a9my Maison",
"nationality": "France"
},
{
"path": "rider/Lorrenzo_Manzin",
"name": "Lorrenzo Manzin",
"nationality": "France",
"weight": 70,
"height": 1.75
},
{
"path": "rider/Rudy_Molard",
"name": "Rudy Molard",
"nationality": "France",
"weight": 62,
"height": 1.78
},
{
"path": "rider/Steve_Morabito",
"name": "Steve Morabito",
"nationality": "Switzerland",
"weight": 74,
"height": 1.86
},
{
"path": "rider/Cedric_Pineau",
"name": "C\\u00c3\\u00a9dric Pineau",
"nationality": "France",
"weight": 68,
"height": 1.77
},
{
"path": "rider/Thibaut_Pinot",
"name": "Thibaut Pinot",
"nationality": "France",
"weight": 63,
"height": 1.8
},
{
"path": "rider/Sebastien_Reichenbach",
"name": "Sebastien Reichenbach",
"nationality": "Switzerland",
"weight": 64,
"height": 1.78
},
{
"path": "rider/Kevin_Reza",
"name": "K\\u00c3\\u00a9vin R\\u00c3\\u00a9za",
"nationality": "France",
"weight": 72,
"height": 1.86
},
{
"path": "rider/Anthony_Roux",
"name": "Anthony Roux",
"nationality": "France",
"weight": 70,
"height": 1.89
},
{
"path": "rider/Jeremy_Roy",
"name": "J\\u00c3\\u00a9r\\u00c3\\u00a9my Roy",
"nationality": "France",
"weight": 70,
"height": 1.86
},
{
"path": "rider/Marc_Sarreau",
"name": "Marc Sarreau",
"nationality": "France",
"weight": 74,
"height": 1.82
},
{
"path": "rider/Benoit_Vaugrenard",
"name": "Benoit Vaugrenard",
"nationality": "France",
"weight": 72,
"height": 1.85
},
{
"path": "rider/Arthur_Vichot",
"name": "Arthur Vichot",
"nationality": "France",
"weight": 69,
"height": 1.84
},
{
"path": "rider/Leo_Vincent",
"name": "L\\u00c3\\u00a9o Vincent",
"nationality": "France"
}
]
},
{
"name": "Lotto Soudal",
"path": "team/Lotto_Soudal_2017",
"roster": [
{
"path": "rider/Sander_Armee",
"name": "Sander Arm\\u00c3\\u00a9e",
"nationality": "Belgium",
"weight": 72,
"height": 1.89
},
{
"path": "rider/Lars_Ytting_Bak",
"name": "Ytting Lars Bak",
"nationality": "Denmark",
"weight": 76,
"height": 1.9
},
{
"path": "rider/Tiesj_Benoot",
"name": "Tiesj Benoot",
"nationality": "Belgium",
"weight": 72,
"height": 1.9
},
{
"path": "rider/Kris_Boeckmans",
"name": "Kris Boeckmans",
"nationality": "Belgium",
"weight": 74,
"height": 1.8
},
{
"path": "rider/Sean_De_Bie",
"name": "Sean Bie de",
"nationality": "Belgium",
"weight": 65,
"height": 1.73
},
{
"path": "rider/Thomas_De_Gendt",
"name": "Thomas Gendt de",
"nationality": "Belgium",
"weight": 69,
"height": 1.77
},
{
"path": "rider/Bart_De_Clercq",
"name": "Bart Clercq De",
"nationality": "Belgium",
"weight": 67,
"height": 1.83
},
{
"path": "rider/Jasper_De_Buyst",
"name": "Jasper Buyst de",
"nationality": "Belgium",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Jens_Debusschere",
"name": "Jens Debusschere",
"nationality": "Belgium",
"weight": 78,
"height": 1.83
},
{
"path": "rider/Frederik_Frison",
"name": "Frederik Frison",
"nationality": "Belgium",
"weight": 79,
"height": 1.94
},
{
"path": "rider/Tony_Gallopin",
"name": "Tony Gallopin",
"nationality": "France",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Andre_Greipel",
"name": "Andr\\u00c3\\u00a9 Greipel",
"nationality": "Germany",
"weight": 75,
"height": 1.84
},
{
"path": "rider/Adam_Hansen",
"name": "Adam Hansen",
"nationality": "Australia",
"weight": 75,
"height": 1.86
},
{
"path": "rider/Moreno_Hofland",
"name": "Moreno Hofland",
"nationality": "Netherlands",
"weight": 71,
"height": 1.79
},
{
"path": "rider/Nikolas_Maes",
"name": "Nikolas Maes",
"nationality": "Belgium",
"weight": 78,
"height": 1.9
},
{
"path": "rider/Tomasz_Marczynski",
"name": "Tomasz Marczynski",
"nationality": "Poland",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Remy_Mertz",
"name": "Remy Mertz",
"nationality": "Belgium"
},
{
"path": "rider/Maxime_Monfort",
"name": "Maxime Monfort",
"nationality": "Belgium",
"weight": 66,
"height": 1.81
},
{
"path": "rider/Jurgen_Roelandts",
"name": "Jurgen Roelandts",
"nationality": "Belgium",
"weight": 78,
"height": 1.84
},
{
"path": "rider/James_Shaw",
"name": "Callum James Shaw",
"nationality": "Great Britain",
"weight": 63,
"height": 1.79
},
{
"path": "rider/Marcel_Sieberg",
"name": "Marcel Sieberg",
"nationality": "Germany",
"weight": 80,
"height": 1.98
},
{
"path": "rider/Rafael_Valls",
"name": "Rafael Valls",
"nationality": "Spain",
"weight": 59,
"height": 1.71
},
{
"path": "rider/Tosh_Van_Der_Sande",
"name": "Tosh Sande der Van",
"nationality": "Belgium",
"weight": 64,
"height": 1.78
},
{
"path": "rider/Jelle_Vanendert",
"name": "Jelle Vanendert",
"nationality": "Belgium",
"weight": 62,
"height": 1.84
},
{
"path": "rider/Louis_Vervaeke",
"name": "Louis Vervaeke",
"nationality": "Belgium",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Jelle_Wallays",
"name": "Jelle Wallays",
"nationality": "Belgium",
"weight": 77,
"height": 1.85
},
{
"path": "rider/Tim_Wellens",
"name": "Tim Wellens",
"nationality": "Belgium",
"weight": 65,
"height": 1.83
},
{
"path": "rider/Enzo_Wouters",
"name": "Enzo Wouters",
"nationality": "Belgium"
}
]
},
{
"name": "Movistar Team",
"path": "team/Movistar_Team_2017",
"roster": [
{
"path": "rider/Andrey_Amador",
"name": "Andrey Amador",
"nationality": "Costa Rica",
"weight": 73,
"height": 1.81
},
{
"path": "rider/Winner_Anacona",
"name": "Winner Anacona",
"nationality": "Colombia",
"weight": 65,
"height": 1.79
},
{
"path": "rider/Jorge_Arcas",
"name": "Jorge Arcas",
"nationality": "Spain",
"weight": 68,
"height": 1.87
},
{
"path": "rider/Carlos_Barbero",
"name": "Carlos Barbero",
"nationality": "Spain",
"weight": 66,
"height": 1.78
},
{
"path": "rider/Daniele_Bennati",
"name": "Daniele Bennati",
"nationality": "Italy",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Carlos_Betancur",
"name": "Carlos Betancur",
"nationality": "Colombia",
"weight": 65,
"height": 1.67
},
{
"path": "rider/Nuno_Bico",
"name": "Nuno Bico",
"nationality": "Portugal",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Richard_Carapaz",
"name": "Richard Carapaz",
"nationality": "Ecuador"
},
{
"path": "rider/Hector_Carretero",
"name": "H\\u00c3\\u00a9ctor Carretero",
"nationality": "Spain"
},
{
"path": "rider/Jonathan_Castroviejo",
"name": "Jonathan Castroviejo",
"nationality": "Spain",
"weight": 62,
"height": 1.71
},
{
"path": "rider/Victor_De_La_Parte",
"name": "V\\u00c3\\u00adctor Parte La De",
"nationality": "Spain",
"weight": 66,
"height": 1.81
},
{
"path": "rider/Alex_Dowsett",
"name": "Alex Dowsett",
"nationality": "Great Britain",
"weight": 75,
"height": 1.82
},
{
"path": "rider/Imanol_Erviti",
"name": "Imanol Erviti",
"nationality": "Spain",
"weight": 75,
"height": 1.89
},
{
"path": "rider/Ruben_Fernandez",
"name": "Rub\\u00c3\\u00a9n Fern\\u00c3\\u00a1ndez",
"nationality": "Spain",
"weight": 60,
"height": 1.77
},
{
"path": "rider/Jose_Herrada",
"name": "Jos\\u00c3\\u00a9 Herrada",
"nationality": "Spain",
"weight": 66,
"height": 1.77
},
{
"path": "rider/Jesus_Herrada_Lopez",
"name": "Jes\\u00c3\\u00bas Herrada",
"nationality": "Spain",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Gorka_Izagirre",
"name": "Gorka Izagirre",
"nationality": "Spain"
},
{
"path": "rider/Adriano_Malori",
"name": "Adriano Malori",
"nationality": "Italy",
"weight": 68,
"height": 1.82
},
{
"path": "rider/Daniel_Moreno",
"name": "Daniel Moreno",
"nationality": "Spain",
"weight": 59,
"height": 1.73
},
{
"path": "rider/nelson_Oliveira",
"name": "Nelson Oliveira",
"nationality": "Portugal",
"weight": 67,
"height": 1.8
},
{
"path": "rider/Antonio_Pedrero",
"name": "Antonio Pedrero",
"nationality": "Spain"
},
{
"path": "rider/nairo_Quintana",
"name": "Nairo Quintana",
"nationality": "Colombia",
"weight": 59,
"height": 1.67
},
{
"path": "rider/Dayer_Quintana_Rojas",
"name": "Dayer Quintana",
"nationality": "Colombia",
"weight": 58,
"height": 1.67
},
{
"path": "rider/Jose_Joaquin_Rojas",
"name": "Joaqu\\u00c3\\u00adn Jos\\u00c3\\u00a9 Rojas",
"nationality": "Spain",
"weight": 69,
"height": 1.79
},
{
"path": "rider/Marc_Soler",
"name": "Marc Soler",
"nationality": "Spain",
"weight": 68,
"height": 1.86
},
{
"path": "rider/Rory_Sutherland",
"name": "Rory Sutherland",
"nationality": "Australia",
"weight": 75,
"height": 1.88
},
{
"path": "rider/Jasha_Sutterlin",
"name": "Jasha S\\u00c3\\u00bctterlin",
"nationality": "Germany",
"weight": 78,
"height": 1.84
},
{
"path": "rider/Alejandro_Valverde",
"name": "Alejandro Valverde",
"nationality": "Spain",
"weight": 61,
"height": 1.78
}
]
},
{
"name": "ORICA-Scott",
"path": "team/ORICA_Scott_2017",
"roster": [
{
"path": "rider/Michael_Albasini",
"name": "Michael Albasini",
"nationality": "Switzerland",
"weight": 65,
"height": 1.72
},
{
"path": "rider/Sam_Bewley",
"name": "Sam Bewley",
"nationality": "New Zealand"
},
{
"path": "rider/Johan_Esteban_Chaves",
"name": "Esteban Johan Chaves",
"nationality": "Colombia",
"weight": 55,
"height": 1.64
},
{
"path": "rider/King_Lok_Cheung",
"name": "Lok King Cheung",
"nationality": "Hongkong"
},
{
"path": "rider/Magnus_Cort_nielsen",
"name": "Magnus Nielsen Cort",
"nationality": "Denmark"
},
{
"path": "rider/Mitchell_Docker",
"name": "Mitchell Docker",
"nationality": "Australia"
},
{
"path": "rider/Luke_Durbridge",
"name": "Luke Durbridge",
"nationality": "Australia"
},
{
"path": "rider/Alexander_Edmondson",
"name": "Alexander Edmondson",
"nationality": "Australia"
},
{
"path": "rider/Caleb_Ewan",
"name": "Caleb Ewan",
"nationality": "Australia",
"weight": 61,
"height": 1.65
},
{
"path": "rider/Simon_Gerrans",
"name": "Simon Gerrans",
"nationality": "Australia",
"weight": 62,
"height": 1.69
},
{
"path": "rider/Jack_Haig",
"name": "Jack Haig",
"nationality": "Australia"
},
{
"path": "rider/Mathew_Hayman",
"name": "Mathew Hayman",
"nationality": "Australia"
},
{
"path": "rider/Michael_Hepburn",
"name": "Michael Hepburn",
"nationality": "Australia"
},
{
"path": "rider/Damien_Howson",
"name": "Damien Howson",
"nationality": "Australia"
},
{
"path": "rider/Daryl_Impey",
"name": "Daryl Impey",
"nationality": "South Africa",
"weight": 70,
"height": 1.81
},
{
"path": "rider/Christopher_Juul_jensen",
"name": "Christopher Juul-Jensen",
"nationality": "Denmark",
"weight": 73,
"height": 1.83
},
{
"path": "rider/Jens_Keukeleire",
"name": "Jens Keukeleire",
"nationality": "Belgium"
},
{
"path": "rider/Roger_Kluge",
"name": "Roger Kluge",
"nationality": "Germany",
"weight": 83,
"height": 1.92
},
{
"path": "rider/Roman_Kreuziger_1",
"name": "Roman Kreuziger",
"nationality": "Czech Republic",
"weight": 65,
"height": 1.83
},
{
"path": "rider/Luka_Mezgec",
"name": "Luka Mezgec",
"nationality": "Slovenia",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Ruben_Plaza",
"name": "Rub\\u00c3\\u00a9n Plaza",
"nationality": "Spain",
"weight": 77,
"height": 1.91
},
{
"path": "rider/Robert_Power",
"name": "Robert Power",
"nationality": "Australia"
},
{
"path": "rider/Svein_Tuft",
"name": "Svein Tuft",
"nationality": "Canada",
"weight": 77,
"height": 1.75
},
{
"path": "rider/Carlos_Verona",
"name": "Carlos Verona",
"nationality": "Spain",
"weight": 68,
"height": 1.86
},
{
"path": "rider/Adam_Yates",
"name": "Adam Yates",
"nationality": "Great Britain"
},
{
"path": "rider/Simon_Yates",
"name": "Simon Yates",
"nationality": "Great Britain",
"weight": 59,
"height": 1.72
}
]
},
{
"name": "Quick-Step Floors",
"path": "team/Quick_Step_Floors_2017",
"roster": [
{
"path": "rider/Julian_Alaphilippe",
"name": "Julian Alaphilippe",
"nationality": "France",
"weight": 62,
"height": 1.73
},
{
"path": "rider/Jack_Bauer",
"name": "Jack Bauer",
"nationality": "New Zealand",
"weight": 74,
"height": 1.91
},
{
"path": "rider/Tom_Boonen",
"name": "Tom Boonen",
"nationality": "Belgium",
"weight": 82,
"height": 1.92
},
{
"path": "rider/Gianluca_Brambilla",
"name": "Gianluca Brambilla",
"nationality": "Italy",
"weight": 57,
"height": 1.7
},
{
"path": "rider/Eros_Capecchi",
"name": "Eros Capecchi",
"nationality": "Italy",
"weight": 66,
"height": 1.83
},
{
"path": "rider/Remi_Cavagna",
"name": "R\\u00c3\\u00a9mi Cavagna",
"nationality": "France"
},
{
"path": "rider/Laurens_De_Plus",
"name": "Laurens Plus De",
"nationality": "Belgium",
"weight": 67,
"height": 1.89
},
{
"path": "rider/David_de_la_Cruz",
"name": "David Cruz la de",
"nationality": "Spain",
"weight": 66,
"height": 1.82
},
{
"path": "rider/Tim_Declercq",
"name": "Tim Declercq",
"nationality": "Belgium",
"weight": 78,
"height": 1.9
},
{
"path": "rider/Dries_Devenyns",
"name": "Dries Devenyns",
"nationality": "Belgium",
"weight": 64,
"height": 1.76
},
{
"path": "rider/Rendon_Gaviria",
"name": "Fernando Gaviria",
"nationality": "Colombia"
},
{
"path": "rider/Philippe_Gilbert",
"name": "Philippe Gilbert",
"nationality": "Belgium",
"weight": 67,
"height": 1.79
},
{
"path": "rider/Bob_Jungels",
"name": "Bob Jungels",
"nationality": "Luxembourg",
"weight": 72,
"height": 1.89
},
{
"path": "rider/Iljo_Keisse",
"name": "Iljo Keisse",
"nationality": "Belgium",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Marcel_Kittel",
"name": "Marcel Kittel",
"nationality": "Germany",
"weight": 82,
"height": 1.88
},
{
"path": "rider/Yves_Lampaert",
"name": "Yves Lampaert",
"nationality": "Belgium",
"weight": 75,
"height": 1.8
},
{
"path": "rider/Daniel_Martin_1",
"name": "Daniel Martin",
"nationality": "Ireland",
"weight": 59,
"height": 1.75
},
{
"path": "rider/Davide_Martinelli",
"name": "Davide Martinelli",
"nationality": "Italy",
"weight": 71,
"height": 1.86
},
{
"path": "rider/Enric_Mas",
"name": "Enric Mas",
"nationality": "Spain"
},
{
"path": "rider/Ariel_Maximiliano_Richeze",
"name": "Maximiliano Ariel Richeze",
"nationality": "Argentina",
"weight": 68,
"height": 1.75
},
{
"path": "rider/Fabio_Sabatini",
"name": "Fabio Sabatini",
"nationality": "Italy",
"weight": 74,
"height": 1.87
},
{
"path": "rider/Maximilian_Schachmann",
"name": "Maximilian Schachmann",
"nationality": "Germany"
},
{
"path": "rider/Pieter_Serry",
"name": "Pieter Serry",
"nationality": "Belgium",
"weight": 65,
"height": 1.86
},
{
"path": "rider/Zdenek_Stybar",
"name": "Zdenek Stybar",
"nationality": "Czech Republic",
"weight": 71,
"height": 1.83
},
{
"path": "rider/niki_Terpstra",
"name": "Niki Terpstra",
"nationality": "Netherlands",
"weight": 75,
"height": 1.88
},
{
"path": "rider/Matteo_Trentin",
"name": "Matteo Trentin",
"nationality": "Italy",
"weight": 74,
"height": 1.79
},
{
"path": "rider/Petr_Vakoc",
"name": "Petr Vakoc",
"nationality": "Czech Republic",
"weight": 68,
"height": 1.8
},
{
"path": "rider/Martin_Velits",
"name": "Martin Velits",
"nationality": "Slovakia",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Julien_Vermote",
"name": "Julien Vermote",
"nationality": "Belgium",
"weight": 71,
"height": 1.79
}
]
},
{
"name": "Team Katusha - Alpecin",
"path": "team/Team_Katusha_Alpecin_2017",
"roster": [
{
"path": "rider/Maxim_Belkov",
"name": "Maxim Belkov",
"nationality": "Russia",
"weight": 71,
"height": 1.84
},
{
"path": "rider/Jenthe_Biermans",
"name": "Jenthe Biermans",
"nationality": "Belgium"
},
{
"path": "rider/Sven_Erik_Bystrm",
"name": "Erik Sven Bystr\\u00c3\\u00b8m",
"nationality": "Norway",
"weight": 72,
"height": 1.89
},
{
"path": "rider/Jose_Goncalves",
"name": "Jos\\u00c3\\u00a9 Gon\\u00c3\\u00a7alves",
"nationality": "Portugal",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Marco_Haller",
"name": "Marco Haller",
"nationality": "Austria",
"weight": 72,
"height": 1.78
},
{
"path": "rider/Reto_Hollenstein",
"name": "Reto Hollenstein",
"nationality": "Switzerland",
"weight": 80,
"height": 1.97
},
{
"path": "rider/Robert_Kiserlovski",
"name": "Robert Ki\\u00c5\\u00a1erlovski",
"nationality": "Croatia",
"weight": 72,
"height": 1.8
},
{
"path": "rider/Pavel_Kochetkov",
"name": "Pavel Kochetkov",
"nationality": "Russia",
"weight": 72,
"height": 1.84
},
{
"path": "rider/Alexander_Kristoff",
"name": "Alexander Kristoff",
"nationality": "Norway",
"weight": 78,
"height": 1.81
},
{
"path": "rider/Viacheslav_Kuznetsov",
"name": "Viacheslav Kuznetsov",
"nationality": "Russia",
"weight": 70,
"height": 1.84
},
{
"path": "rider/Maurits_Lammertink",
"name": "Maurits Lammertink",
"nationality": "Netherlands",
"weight": 63,
"height": 1.7
},
{
"path": "rider/Alberto_Losada",
"name": "Alberto Losada",
"nationality": "Spain",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Tiago_Machado",
"name": "Tiago Machado",
"nationality": "Portugal",
"weight": 63,
"height": 1.78
},
{
"path": "rider/Matvey_Mamykin",
"name": "Matvey Mamykin",
"nationality": "Russia",
"weight": 62,
"height": 1.79
},
{
"path": "rider/Tony_Martin",
"name": "Tony Martin",
"nationality": "Germany",
"weight": 75,
"height": 1.85
},
{
"path": "rider/Marco_Mathis",
"name": "Marco Mathis",
"nationality": "Germany"
},
{
"path": "rider/Michael_Morkov",
"name": "Michael M\\u00c3\\u00b8rk\\u00c3\\u00b8v",
"nationality": "Denmark",
"weight": 69,
"height": 1.83
},
{
"path": "rider/Baptiste_Planckaert",
"name": "Baptiste Planckaert",
"nationality": "Belgium"
},
{
"path": "rider/nils_Politt",
"name": "Nils Politt",
"nationality": "Germany",
"weight": 80,
"height": 1.92
},
{
"path": "rider/Jhonatan_Restrepo",
"name": "Jhonatan Restrepo",
"nationality": "Colombia",
"weight": 69,
"height": 1.71
},
{
"path": "rider/Rein_Taaramae",
"name": "Rein Taaram\\u00c3\\u00a4e",
"nationality": "Estonia",
"weight": 66,
"height": 1.84
},
{
"path": "rider/Angel_Vicioso",
"name": "\\u00c3\\u0081ngel Vicioso",
"nationality": "Spain",
"weight": 60,
"height": 1.7
},
{
"path": "rider/Mads_Wurtz_Schmidt",
"name": "Mads Schmidt W\\u00c3\\u00bcrtz",
"nationality": "Denmark"
},
{
"path": "rider/Rick_Zabel",
"name": "Rick Zabel",
"nationality": "Germany",
"weight": 72,
"height": 1.84
},
{
"path": "rider/Ilnur_Zakarin",
"name": "Ilnur Zakarin",
"nationality": "Russia",
"weight": 67,
"height": 1.87
},
{
"path": "rider/Simon_Spilak",
"name": "Simon pilak \\u00c5",
"nationality": "Slovenia",
"weight": 68,
"height": 1.76
}
]
},
{
"name": "Team LottoNL-Jumbo",
"path": "team/Team_LottoNL_Jumbo_2017",
"roster": [
{
"path": "rider/Enrico_Battaglin",
"name": "Enrico Battaglin",
"nationality": "Italy",
"weight": 66,
"height": 1.74
},
{
"path": "rider/George_Bennett",
"name": "George Bennett",
"nationality": "New Zealand",
"weight": 58,
"height": 1.8
},
{
"path": "rider/Lars_Boom",
"name": "Lars Boom",
"nationality": "Netherlands",
"weight": 72,
"height": 1.91
},
{
"path": "rider/Koen_Bouwman",
"name": "Koen Bouwman",
"nationality": "Netherlands",
"weight": 60,
"height": 1.78
},
{
"path": "rider/Victor_Campenaerts",
"name": "Victor Campenaerts",
"nationality": "Belgium"
},
{
"path": "rider/Twan_Castelijns",
"name": "Twan Castelijns",
"nationality": "Netherlands",
"weight": 70,
"height": 1.8
},
{
"path": "rider/Stef_Clement",
"name": "Stef Clement",
"nationality": "Netherlands",
"weight": 67,
"height": 1.81
},
{
"path": "rider/Floris_De_Tier",
"name": "Floris Tier De",
"nationality": "Belgium",
"weight": 59,
"height": 1.72
},
{
"path": "rider/Robert_Gesink",
"name": "Robert Gesink",
"nationality": "Netherlands",
"weight": 70,
"height": 1.89
},
{
"path": "rider/Dylan_Groenewegen",
"name": "Dylan Groenewegen",
"nationality": "Netherlands",
"weight": 70,
"height": 1.77
},
{
"path": "rider/Amund_Grondahl_Jansen",
"name": "Grondahl Amund Jansen",
"nationality": "Norway"
},
{
"path": "rider/Martijn_Keizer",
"name": "Martijn Keizer",
"nationality": "Netherlands",
"weight": 72,
"height": 1.93
},
{
"path": "rider/Steven_Kruijswijk",
"name": "Steven Kruijswijk",
"nationality": "Netherlands",
"weight": 66,
"height": 1.78
},
{
"path": "rider/Steven_Lammertink",
"name": "Steven Lammertink",
"nationality": "Netherlands",
"weight": 68,
"height": 1.76
},
{
"path": "rider/Tom_Leezer",
"name": "Tom Leezer",
"nationality": "Netherlands",
"weight": 76,
"height": 1.85
},
{
"path": "rider/Bert_Jan_Lindeman",
"name": "Bert-Jan Lindeman",
"nationality": "Netherlands",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Juan_Jose_Lobato",
"name": "Jos\\u00c3\\u00a9 Juan Lobato",
"nationality": "Spain",
"weight": 64,
"height": 1.73
},
{
"path": "rider/Paul_Martens",
"name": "Paul Martens",
"nationality": "Germany",
"weight": 69,
"height": 1.78
},
{
"path": "rider/Daan_Olivier",
"name": "Daan Olivier",
"nationality": "Netherlands",
"weight": 64,
"height": 1.88
},
{
"path": "rider/Primoz_Roglic",
"name": "Primo\\u00c5\\u00be Rogli\\u00c4\\u008d",
"nationality": "Slovenia",
"weight": 65,
"height": 1.77
},
{
"path": "rider/Timo_Roosen",
"name": "Timo Roosen",
"nationality": "Netherlands",
"weight": 75,
"height": 1.94
},
{
"path": "rider/Bram_Tankink",
"name": "Bram Tankink",
"nationality": "Netherlands",
"weight": 71,
"height": 1.81
},
{
"path": "rider/Antwan_Tolhoek",
"name": "Antwan Tolhoek",
"nationality": "Netherlands",
"weight": 61,
"height": 1.78
},
{
"path": "rider/Gijs_Van_Hoecke",
"name": "Gijs Hoecke Van",
"nationality": "Belgium",
"weight": 77,
"height": 1.86
},
{
"path": "rider/Jos_Van_Emden",
"name": "Jos Emden van",
"nationality": "Netherlands",
"weight": 74,
"height": 1.86
},
{
"path": "rider/Jurgen_Van_Den_Broeck",
"name": "Jurgen Broeck den van",
"nationality": "Belgium",
"weight": 69,
"height": 1.85
},
{
"path": "rider/Alexey_Vermeulen",
"name": "Alexey Vermeulen",
"nationality": "United States",
"weight": 62,
"height": 1.78
},
{
"path": "rider/Robert_Wagner",
"name": "Robert Wagner",
"nationality": "Germany",
"weight": 75,
"height": 1.86
},
{
"path": "rider/Maarten_Wynants",
"name": "Maarten Wynants",
"nationality": "Belgium",
"weight": 74,
"height": 1.9
}
]
},
{
"name": "Team Sky",
"path": "team/Team_Sky_2017",
"roster": [
{
"path": "rider/Ian_Boswell",
"name": "Ian Boswell",
"nationality": "United States",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Philip_Deignan",
"name": "Philip Deignan",
"nationality": "Ireland",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Jonathan_Dibben",
"name": "Jonathan Dibben",
"nationality": "Great Britain"
},
{
"path": "rider/Owain_Doull",
"name": "Owain Doull",
"nationality": "Great Britain",
"weight": 71,
"height": 1.81
},
{
"path": "rider/Kenny_Elissonde",
"name": "Kenny Elissonde",
"nationality": "France",
"weight": 52,
"height": 1.69
},
{
"path": "rider/Christopher_Froome",
"name": "Christopher Froome",
"nationality": "Great Britain",
"weight": 69,
"height": 1.86
},
{
"path": "rider/Tao_Geoghegan_Hart",
"name": "Tao Hart Geoghegan",
"nationality": "Great Britain"
},
{
"path": "rider/Michal_Golas",
"name": "Michal Golas",
"nationality": "Poland",
"weight": 65,
"height": 1.8
},
{
"path": "rider/Sergio_Luis_Henao",
"name": "Luis Sergio Henao",
"nationality": "Colombia",
"weight": 61,
"height": 1.69
},
{
"path": "rider/Sebastian_Henao",
"name": "Sebasti\\u00c3\\u00a1n Henao",
"nationality": "Colombia",
"weight": 57,
"height": 1.71
},
{
"path": "rider/Benat_Intxausti",
"name": "Be\\u00c3\\u00b1at Intxausti",
"nationality": "Spain",
"weight": 61,
"height": 1.75
},
{
"path": "rider/Peter_Kennaugh",
"name": "Peter Kennaugh",
"nationality": "Great Britain",
"weight": 66,
"height": 1.73
},
{
"path": "rider/Vasil_Kiryienka",
"name": "Vasil Kiryienka",
"nationality": "Belarus",
"weight": 69,
"height": 1.82
},
{
"path": "rider/Christian_Knees",
"name": "Christian Knees",
"nationality": "Germany",
"weight": 81,
"height": 1.94
},
{
"path": "rider/Michal_Kwiatkowski",
"name": "Michal Kwiatkowski",
"nationality": "Poland",
"weight": 68,
"height": 1.76
},
{
"path": "rider/Mikel_Landa",
"name": "Mikel Landa",
"nationality": "Spain",
"weight": 60,
"height": 1.73
},
{
"path": "rider/David_Lopez",
"name": "David Lopez",
"nationality": "Spain",
"weight": 68,
"height": 1.79
},
{
"path": "rider/Gianni_Moscon",
"name": "Gianni Moscon",
"nationality": "Italy"
},
{
"path": "rider/Mikel_nieve",
"name": "Mikel Nieve",
"nationality": "Spain",
"weight": 62,
"height": 1.73
},
{
"path": "rider/Wout_Poels",
"name": "Wout Poels",
"nationality": "Netherlands",
"weight": 66,
"height": 1.83
},
{
"path": "rider/Salvatore_Puccio",
"name": "Salvatore Puccio",
"nationality": "Italy",
"weight": 68,
"height": 1.82
},
{
"path": "rider/Diego_Rosa",
"name": "Diego Rosa",
"nationality": "Italy",
"weight": 65,
"height": 1.78
},
{
"path": "rider/Luke_Rowe",
"name": "Luke Rowe",
"nationality": "Great Britain",
"weight": 72,
"height": 1.85
},
{
"path": "rider/Ian_Stannard",
"name": "Ian Stannard",
"nationality": "Great Britain",
"weight": 83,
"height": 1.89
},
{
"path": "rider/Geraint_Thomas",
"name": "Geraint Thomas",
"nationality": "Great Britain",
"weight": 71,
"height": 1.83
},
{
"path": "rider/Danny_Van_Poppel",
"name": "Danny Poppel van",
"nationality": "Netherlands",
"weight": 80,
"height": 1.83
},
{
"path": "rider/Elia_Viviani",
"name": "Elia Viviani",
"nationality": "Italy",
"weight": 67,
"height": 1.78
},
{
"path": "rider/Lukasz_Wisniowski",
"name": "\\u00c5\\u0081ukasz Wi\\u00c5\\u009bniowski",
"nationality": "Poland",
"weight": 79,
"height": 1.9
}
]
},
{
"name": "Team Sunweb ",
"path": "team/Team_Sunweb_2017",
"roster": [
{
"path": "rider/Sindre_Skjoestad_Lunke",
"name": "Skj\\u00c3\\u00b8stad Sindre Lunke",
"nationality": "Norway"
},
{
"path": "rider/Soren_Kragh_Andersen",
"name": "Kragh S\\u00c3\\u00b8ren Andersen",
"nationality": "Denmark",
"weight": 73,
"height": 1.78
},
{
"path": "rider/nikias_Arndt",
"name": "Nikias Arndt",
"nationality": "Germany"
},
{
"path": "rider/Warren_Barguil",
"name": "Warren Barguil",
"nationality": "France",
"weight": 60,
"height": 1.83
},
{
"path": "rider/Phil_Bauhaus",
"name": "Phil Bauhaus",
"nationality": "Germany",
"weight": 71,
"height": 1.84
},
{
"path": "rider/Roy_Curvers",
"name": "Roy Curvers",
"nationality": "Netherlands",
"weight": 73,
"height": 1.88
},
{
"path": "rider/Bert_De_Backer",
"name": "Bert Backer de",
"nationality": "Belgium",
"weight": 79,
"height": 1.83
},
{
"path": "rider/Tom_Dumoulin",
"name": "Tom Dumoulin",
"nationality": "Netherlands",
"weight": 69,
"height": 1.85
},
{
"path": "rider/Johannes_Frohlinger",
"name": "Johannes Fr\\u00c3\\u00b6hlinger",
"nationality": "Germany",
"weight": 62,
"height": 1.73
},
{
"path": "rider/Simon_Geschke",
"name": "Simon Geschke",
"nationality": "Germany",
"weight": 64,
"height": 1.7
},
{
"path": "rider/Chad_Haga",
"name": "Chad Haga",
"nationality": "United States"
},
{
"path": "rider/Chris_Hamilton",
"name": "Chris Hamilton",
"nationality": "Australia"
},
{
"path": "rider/Lennard_Hofstede",
"name": "Lennard Hofstede",
"nationality": "Netherlands"
},
{
"path": "rider/Wilco_Kelderman",
"name": "Wilco Kelderman",
"nationality": "Netherlands",
"weight": 65,
"height": 1.85
},
{
"path": "rider/Lennard_Kamna",
"name": "Lennard K\\u00c3\\u00a4mna",
"nationality": "Germany",
"weight": 65,
"height": 1.81
},
{
"path": "rider/Michael_Matthews",
"name": "Michael Matthews",
"nationality": "Australia"
},
{
"path": "rider/Sam_Oomen",
"name": "Sam Oomen",
"nationality": "Netherlands"
},
{
"path": "rider/Georg_Preidler",
"name": "Georg Preidler",
"nationality": "Austria",
"weight": 68,
"height": 1.9
},
{
"path": "rider/Ramon_Sinkeldam",
"name": "Ramon Sinkeldam",
"nationality": "Netherlands",
"weight": 77,
"height": 1.93
},
{
"path": "rider/Tom_Stamsnijder",
"name": "Tom Stamsnijder",
"nationality": "Netherlands",
"weight": 90,
"height": 1.91
},
{
"path": "rider/Laurens_Ten_Dam",
"name": "Laurens Dam ten",
"nationality": "Netherlands",
"weight": 67,
"height": 1.84
},
{
"path": "rider/Mike_Teunissen",
"name": "Mike Teunissen",
"nationality": "Netherlands",
"weight": 73,
"height": 1.84
},
{
"path": "rider/Albert_Timmer",
"name": "Albert Timmer",
"nationality": "Netherlands",
"weight": 71,
"height": 1.86
},
{
"path": "rider/Zico_Waeytens",
"name": "Zico Waeytens",
"nationality": "Belgium",
"weight": 67,
"height": 1.8
},
{
"path": "rider/Max_Walscheid",
"name": "Max Walscheid",
"nationality": "Germany",
"weight": 89,
"height": 1.99
}
]
},
{
"name": "Trek - Segafredo",
"path": "team/Trek_Segafredo_2017",
"roster": [
{
"path": "rider/Eugenio_Alafaci",
"name": "Eugenio Alafaci",
"nationality": "Italy",
"weight": 77,
"height": 1.87
},
{
"path": "rider/Fumiyuki_Beppu",
"name": "Fumiyuki Beppu",
"nationality": "Japan",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Julien_Bernard",
"name": "Julien Bernard",
"nationality": "France",
"weight": 60,
"height": 1.76
},
{
"path": "rider/Matthias_Brandle",
"name": "Matthias Br\\u00c3\\u00a4ndle",
"nationality": "Austria",
"weight": 77,
"height": 1.89
},
{
"path": "rider/Andre_Cardoso",
"name": "Andr\\u00c3\\u00a9 Cardoso",
"nationality": "Portugal",
"weight": 56,
"height": 1.68
},
{
"path": "rider/Marco_Coledan",
"name": "Marco Coledan",
"nationality": "Italy",
"weight": 83,
"height": 1.9
},
{
"path": "rider/Alberto_Contador",
"name": "Alberto Contador",
"nationality": "Spain",
"weight": 61,
"height": 1.76
},
{
"path": "rider/Gregory_Daniel",
"name": "Gregory Daniel",
"nationality": "United States"
},
{
"path": "rider/Koen_De_Kort",
"name": "Koen Kort de",
"nationality": "Netherlands",
"weight": 69,
"height": 1.79
},
{
"path": "rider/John_Degenkolb",
"name": "John Degenkolb",
"nationality": "Germany",
"weight": 77,
"height": 1.8
},
{
"path": "rider/Laurent_Didier",
"name": "Laurent Didier",
"nationality": "Luxembourg",
"weight": 68,
"height": 1.89
},
{
"path": "rider/Fabio_Felline",
"name": "Fabio Felline",
"nationality": "Italy",
"weight": 68,
"height": 1.75
},
{
"path": "rider/Michael_Gogl",
"name": "Michael Gogl",
"nationality": "Austria",
"weight": 70,
"height": 1.86
},
{
"path": "rider/Ruben_Guerreiro",
"name": "Ruben Guerreiro",
"nationality": "Portugal",
"weight": 64,
"height": 1.78
},
{
"path": "rider/Jesus_Hernandez_3",
"name": "Jes\\u00c3\\u00bas Hern\\u00c3\\u00a1ndez",
"nationality": "Spain",
"weight": 58,
"height": 1.69
},
{
"path": "rider/Markel_Irizar",
"name": "Markel Irizar",
"nationality": "Spain",
"weight": 73,
"height": 1.82
},
{
"path": "rider/Bauke_Mollema",
"name": "Bauke Mollema",
"nationality": "Netherlands",
"weight": 64,
"height": 1.81
},
{
"path": "rider/Giacomo_Nizzolo",
"name": "Giacomo Nizzolo",
"nationality": "Italy",
"weight": 72,
"height": 1.84
},
{
"path": "rider/Jarlinson_Pantano",
"name": "Jarlinson Pantano",
"nationality": "Colombia",
"weight": 61,
"height": 1.73
},
{
"path": "rider/Mads_Pedersen",
"name": "Mads Pedersen",
"nationality": "Denmark",
"weight": 70,
"height": 1.79
},
{
"path": "rider/Gregory_Rast",
"name": "Gregory Rast",
"nationality": "Switzerland",
"weight": 80,
"height": 1.86
},
{
"path": "rider/Kiel_Reijnen",
"name": "Kiel Reijnen",
"nationality": "United States",
"weight": 63,
"height": 1.8
},
{
"path": "rider/Peter_Stetina",
"name": "Peter Stetina",
"nationality": "United States",
"weight": 63,
"height": 1.8
},
{
"path": "rider/Jasper_Stuyven",
"name": "Jasper Stuyven",
"nationality": "Belgium",
"weight": 78,
"height": 1.86
},
{
"path": "rider/Edward_Theuns",
"name": "Edward Theuns",
"nationality": "Belgium",
"weight": 72,
"height": 1.83
},
{
"path": "rider/Boy_Van_Poppel",
"name": "Boy Poppel van",
"nationality": "Netherlands",
"weight": 74,
"height": 1.85
},
{
"path": "rider/Haimar_Zubeldia",
"name": "Haimar Zubeldia",
"nationality": "Spain",
"weight": 68,
"height": 1.79
}
]
},
{
"name": "UAE Team Emirates",
"path": "team/UAE_Team_Emirates_2017",
"roster": [
{
"path": "rider/Anass_Ait_El_Abdia",
"name": "Anass Abdia El Ait",
"nationality": "Morocco"
},
{
"path": "rider/John_Darwin_Atapuma",
"name": "Darwin John Atapuma",
"nationality": "Colombia",
"weight": 60,
"height": 1.67
},
{
"path": "rider/Matteo_Bono",
"name": "Matteo Bono",
"nationality": "Italy",
"weight": 60,
"height": 1.71
},
{
"path": "rider/Simone_Consonni",
"name": "Simone Consonni",
"nationality": "Italy"
},
{
"path": "rider/Valerio_Conti",
"name": "Valerio Conti",
"nationality": "Italy",
"weight": 60,
"height": 1.72
},
{
"path": "rider/Rui_Costa",
"name": "Rui Costa",
"nationality": "Portugal",
"weight": 69,
"height": 1.83
},
{
"path": "rider/Kristijan_Durasek",
"name": "Kristijan Durasek",
"nationality": "Croatia",
"weight": 56,
"height": 1.7
},
{
"path": "rider/Roberto_Ferrari",
"name": "Roberto Ferrari",
"nationality": "Italy",
"weight": 73,
"height": 1.73
},
{
"path": "rider/Filippo_Ganna",
"name": "Filippo Ganna",
"nationality": "Italy",
"weight": 76,
"height": 1.93
},
{
"path": "rider/Andrea_Guardini",
"name": "Andrea Guardini",
"nationality": "Italy",
"weight": 66,
"height": 1.75
},
{
"path": "rider/Marko_Kump",
"name": "Marko Kump",
"nationality": "Slovenia",
"weight": 69,
"height": 1.8
},
{
"path": "rider/Vegard_Stake_Laengen",
"name": "Stake Vegard Laengen",
"nationality": "Norway",
"weight": 80,
"height": 1.95
},
{
"path": "rider/Marco_Marcato",
"name": "Marco Marcato",
"nationality": "Italy",
"weight": 67,
"height": 1.74
},
{
"path": "rider/Louis_Meintjes",
"name": "Louis Meintjes",
"nationality": "South Africa",
"weight": 61,
"height": 1.73
},
{
"path": "rider/Yousef_Mohamed_Mirza",
"name": "Mohamed Yousef Mirza",
"nationality": "United Arab Emirates"
},
{
"path": "rider/Sacha_Modolo",
"name": "Sacha Modolo",
"nationality": "Italy",
"weight": 67,
"height": 1.8
},
{
"path": "rider/Matej_Mohoric",
"name": "Matej Mohoric",
"nationality": "Slovenia",
"weight": 70,
"height": 1.85
},
{
"path": "rider/Manuele_Mori",
"name": "Manuele Mori",
"nationality": "Italy",
"weight": 62,
"height": 1.72
},
{
"path": "rider/Przemyslaw_niemiec",
"name": "Przemyslaw Niemiec",
"nationality": "Poland",
"weight": 62,
"height": 1.84
},
{
"path": "rider/Simone_Petilli",
"name": "Simone Petilli",
"nationality": "Italy",
"weight": 63,
"height": 1.78
},
{
"path": "rider/Jan_Polanc",
"name": "Jan Polanc",
"nationality": "Slovenia",
"weight": 59,
"height": 1.72
},
{
"path": "rider/Edward_Ravasi",
"name": "Edward Ravasi",
"nationality": "Italy",
"weight": 62,
"height": 1.81
},
{
"path": "rider/Ben_Swift",
"name": "Ben Swift",
"nationality": "Great Britain",
"weight": 69,
"height": 1.79
},
{
"path": "rider/Oliviero_Troia",
"name": "Oliviero Troia",
"nationality": "Italy"
},
{
"path": "rider/Diego_Ulissi",
"name": "Diego Ulissi",
"nationality": "Italy",
"weight": 61,
"height": 1.75
},
{
"path": "rider/Federico_Zurlo",
"name": "Federico Zurlo",
"nationality": "Italy",
"weight": 70,
"height": 1.78
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment