answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT average_ratings FROM table_name_38 WHERE episodes > 9 AND japanese_title = "ホタルノヒカリ"
CREATE TABLE table_name_38 (average_ratings VARCHAR, episodes VARCHAR, japanese_title VARCHAR)
What is average ratings for Japanese title of ホタルノヒカリ, with episodes larger than 9?
SELECT MIN(episodes) FROM table_name_65 WHERE average_ratings = "8.7%"
CREATE TABLE table_name_65 (episodes INTEGER, average_ratings VARCHAR)
Which episodes has the lowest average ratings of 8.7%?
SELECT romaji_title FROM table_name_94 WHERE japanese_title = "菊次郎とさき 3"
CREATE TABLE table_name_94 (romaji_title VARCHAR, japanese_title VARCHAR)
Which romaji title, has Japanese title of 菊次郎とさき 3?
SELECT tv_station FROM table_name_45 WHERE episodes > 10 AND romaji_title = "tantei gakuen q"
CREATE TABLE table_name_45 (tv_station VARCHAR, episodes VARCHAR, romaji_title VARCHAR)
Which TV station, has romaji title of tantei gakuen q and episodes larger than 10?
SELECT almaty_, _kazakhstan FROM table_name_17 WHERE sergey_filimonov___kaz__ = "210kg"
CREATE TABLE table_name_17 (almaty_ VARCHAR, _kazakhstan VARCHAR, sergey_filimonov___kaz__ VARCHAR)
What is the Almaty, Kazakhstan when Sergey Filimonov ( KAZ ) is 210kg?
SELECT sergey_filimonov___kaz__ FROM table_name_69 WHERE "snatch" = "snatch"
CREATE TABLE table_name_69 (sergey_filimonov___kaz__ VARCHAR)
What shows for Sergey Filimonov (KAZ) when the Snatch shows snatch?
SELECT almaty_, _kazakhstan FROM table_name_42 WHERE sergey_filimonov___kaz__ = "210kg"
CREATE TABLE table_name_42 (almaty_ VARCHAR, _kazakhstan VARCHAR, sergey_filimonov___kaz__ VARCHAR)
What is the Almaty, Kazakhstan when the Sergey Filimonov (KAZ) is 210kg?
SELECT MIN(year) FROM table_name_89 WHERE role = "main" AND character = "guan yu (關羽)"
CREATE TABLE table_name_89 (year INTEGER, role VARCHAR, character VARCHAR)
What year was the main role a character named Guan Yu (關羽)?
SELECT english FROM table_name_88 WHERE character = "lin ming kuan (林明寬)"
CREATE TABLE table_name_88 (english VARCHAR, character VARCHAR)
What is the English character for Lin Ming Kuan (林明寬)?
SELECT character FROM table_name_85 WHERE year > 2010 AND role = "lead role" AND chinese_title = "戀夏38℃"
CREATE TABLE table_name_85 (character VARCHAR, chinese_title VARCHAR, year VARCHAR, role VARCHAR)
What character has a Year larger than 2010 with a lead role, and Chinese Title of 戀夏38℃?
SELECT AVG(year) FROM table_name_27 WHERE character = "wu ji wei (無極威)"
CREATE TABLE table_name_27 (year INTEGER, character VARCHAR)
What is the year that has a character named Wu Ji Wei (無極威)?
SELECT MIN(round) FROM table_name_81 WHERE opponent = "aleksandr pitchkounov"
CREATE TABLE table_name_81 (round INTEGER, opponent VARCHAR)
Which Round has an Opponent of aleksandr pitchkounov?
SELECT result FROM table_name_92 WHERE round = 5 AND event = "mt one"
CREATE TABLE table_name_92 (result VARCHAR, round VARCHAR, event VARCHAR)
Which Result has a Round of 5, and an Event of mt one?
SELECT COUNT(draws) FROM table_name_66 WHERE against > 924 AND club = "mortlake" AND losses < 14
CREATE TABLE table_name_66 (draws VARCHAR, losses VARCHAR, against VARCHAR, club VARCHAR)
Mortlake club has more than 924 against, less than 14 losses, and how many total draws?
SELECT SUM(wins) FROM table_name_39 WHERE club = "cobden" AND draws > 2
CREATE TABLE table_name_39 (wins INTEGER, club VARCHAR, draws VARCHAR)
What is the total number of wins for Cobden club when there are more than 2 draws?
SELECT COUNT(draws) FROM table_name_28 WHERE against = 797 AND wins > 10
CREATE TABLE table_name_28 (draws VARCHAR, against VARCHAR, wins VARCHAR)
When against is 797 and wins is more than 10, what is the sum of draws?
SELECT AVG(draws) FROM table_name_63 WHERE wins < 9 AND club = "warrnambool"
CREATE TABLE table_name_63 (draws INTEGER, wins VARCHAR, club VARCHAR)
Club warrnambool has less than 9 wins and what average of draws?
SELECT AVG(draws) FROM table_name_11 WHERE club = "mortlake" AND wins < 0
CREATE TABLE table_name_11 (draws INTEGER, club VARCHAR, wins VARCHAR)
What is the average number of draws for Mortlake club when they have less than 0 wins?
SELECT AVG(foreign_population) FROM table_name_26 WHERE population__2004_ > 234733
CREATE TABLE table_name_26 (foreign_population INTEGER, population__2004_ INTEGER)
Which Foreign population has a Population (2004) larger than 234733?
SELECT AVG(population__2004_) FROM table_name_38 WHERE moroccan_population > 234506
CREATE TABLE table_name_38 (population__2004_ INTEGER, moroccan_population INTEGER)
Which Population (2004) has a Moroccan population larger than 234506?
SELECT date FROM table_name_98 WHERE opponent = "vfl sindelfingen"
CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)
What date was the opponent VFL Sindelfingen?
SELECT date FROM table_name_44 WHERE attendance = "1,804"
CREATE TABLE table_name_44 (date VARCHAR, attendance VARCHAR)
What date was the attendance 1,804?
SELECT opponent FROM table_name_98 WHERE attendance = "628"
CREATE TABLE table_name_98 (opponent VARCHAR, attendance VARCHAR)
Who was the opponent with an attendance of 628?
SELECT bike FROM table_name_24 WHERE grid > 17 AND laps < 8 AND rider = "milos cihak"
CREATE TABLE table_name_24 (bike VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)
What bike has a grid greater than 17, laps less than 8, with milos cihak as the rider?
SELECT MAX(grid) FROM table_name_89 WHERE rider = "gregorio lavilla"
CREATE TABLE table_name_89 (grid INTEGER, rider VARCHAR)
What is the highest grid that has gregorio lavilla as the rider?
SELECT rider FROM table_name_64 WHERE laps < 20 AND bike = "ducati 1098 rs 08" AND time = "accident" AND grid < 14
CREATE TABLE table_name_64 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, bike VARCHAR)
What rider has laps less than 20, a ducati 1098 rs 08 as the bike, with accident as the time, and a grid less than 14?
SELECT SUM(overs) FROM table_name_33 WHERE runs = 5231 AND matches < 37
CREATE TABLE table_name_33 (overs INTEGER, runs VARCHAR, matches VARCHAR)
How many overs when there are 5231 runs and fewer than 37 matches?
SELECT MIN(wickets) FROM table_name_84 WHERE career = "1946-1960" AND maidens > 419
CREATE TABLE table_name_84 (wickets INTEGER, career VARCHAR, maidens VARCHAR)
What are the fewest wickets when player's career spanned 1946-1960 and maidens were more than 419?
SELECT MAX(wickets) FROM table_name_55 WHERE maidens > 630 AND best = "7/72"
CREATE TABLE table_name_55 (wickets INTEGER, maidens VARCHAR, best VARCHAR)
What is the largest number of wickets when there are more than 630 maidens and a best of 7/72?
SELECT name FROM table_name_53 WHERE overs < 2047.3 AND wickets > 200 AND average > 29.02
CREATE TABLE table_name_53 (name VARCHAR, average VARCHAR, overs VARCHAR, wickets VARCHAR)
Who has fewer than 2047.3 overs, more than 200 wickets and an average of 29.02?
SELECT attendance FROM table_name_60 WHERE competition = "scottish cup" AND date = "29.02.2000"
CREATE TABLE table_name_60 (attendance VARCHAR, competition VARCHAR, date VARCHAR)
How many people attended the Scottish Cup on 29.02.2000?
SELECT score FROM table_name_90 WHERE competition = "league cup" AND season = "2007-08"
CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR, season VARCHAR)
What was the score of the league cup in the 2007-08 season?
SELECT MIN(attendance) FROM table_name_39 WHERE season = "2010-11" AND score = "2–0"
CREATE TABLE table_name_39 (attendance INTEGER, season VARCHAR, score VARCHAR)
What is the attendance in the game in the 2010-11 season, when the score was 2–0?
SELECT 1 AS st_place_team FROM table_name_84 WHERE year > 1956
CREATE TABLE table_name_84 (year INTEGER)
What team was in 1st plate in a year later than 1956?
SELECT base FROM table_name_59 WHERE company = "theatro technis karolos koun"
CREATE TABLE table_name_59 (base VARCHAR, company VARCHAR)
Which base has a company of Theatro Technis Karolos Koun?
SELECT company FROM table_name_74 WHERE author = "aristophanes" AND play = "plutus"
CREATE TABLE table_name_74 (company VARCHAR, author VARCHAR, play VARCHAR)
Which company has an author of Aristophanes and play of Plutus?
SELECT author FROM table_name_22 WHERE company = "semeio theatre"
CREATE TABLE table_name_22 (author VARCHAR, company VARCHAR)
Which author has a company of the Semeio Theatre?
SELECT play FROM table_name_47 WHERE company = "radu stanca national theatre"
CREATE TABLE table_name_47 (play VARCHAR, company VARCHAR)
Which play was done by the Radu Stanca National Theatre company?
SELECT play FROM table_name_96 WHERE base = "aosta"
CREATE TABLE table_name_96 (play VARCHAR, base VARCHAR)
Which play had a base of Aosta?
SELECT country FROM table_name_33 WHERE base = "athens" AND company = "attis theatre"
CREATE TABLE table_name_33 (country VARCHAR, base VARCHAR, company VARCHAR)
What is the country of the play based in Athens at the Attis Theatre company?
SELECT class FROM table_name_14 WHERE quantity > 96
CREATE TABLE table_name_14 (class VARCHAR, quantity INTEGER)
Which Class has a Quantity larger than 96?
SELECT COUNT(quantity) FROM table_name_11 WHERE type = "1′c1′ h2t"
CREATE TABLE table_name_11 (quantity VARCHAR, type VARCHAR)
How much Quantity has a Type of 1′c1′ h2t?
SELECT class FROM table_name_85 WHERE type = "1′c n2t"
CREATE TABLE table_name_85 (class VARCHAR, type VARCHAR)
Which Class has a Type of 1′c n2t?
SELECT year_s__of_manufacture FROM table_name_90 WHERE quantity > 39 AND type = "1′c1′ h2t"
CREATE TABLE table_name_90 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR)
Which Year(s) of manufacture has a Quantity larger than 39, and a Type of 1′c1′ h2t?
SELECT year_s__of_manufacture FROM table_name_13 WHERE quantity = 2 AND type = "b n2t"
CREATE TABLE table_name_13 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR)
Which Year(s) of manufacture has a Quantity of 2, and a Type of b n2t?
SELECT MAX(place) FROM table_name_18 WHERE lost > 4 AND points < 18 AND team = "atlético veragüense"
CREATE TABLE table_name_18 (place INTEGER, team VARCHAR, lost VARCHAR, points VARCHAR)
what is the highest place when lost is more than 4, points is less than 18 and team is Team of atlético veragüense?
SELECT MIN(lost) FROM table_name_72 WHERE place > 4 AND goals_scored = 12 AND points > 4
CREATE TABLE table_name_72 (lost INTEGER, points VARCHAR, place VARCHAR, goals_scored VARCHAR)
what is the least lost when the place is higher than 4, goals scored is 12 and points is more than 4?
SELECT COUNT(place) FROM table_name_85 WHERE team = "tauro" AND played < 18
CREATE TABLE table_name_85 (place VARCHAR, team VARCHAR, played VARCHAR)
how many times is the team tauro and played less than 18?
SELECT MIN(played) FROM table_name_39 WHERE points = 36 AND place > 2
CREATE TABLE table_name_39 (played INTEGER, points VARCHAR, place VARCHAR)
what is the least played when points is 36 and place is more than 2?
SELECT AVG(points) FROM table_name_97 WHERE goals_conceded = 14 AND goals_scored < 32
CREATE TABLE table_name_97 (points INTEGER, goals_conceded VARCHAR, goals_scored VARCHAR)
what is the average points when goals conceded is 14 and goals scored is less than 32?
SELECT result FROM table_name_63 WHERE week > 1 AND attendance = "69,149" AND opponent = "seattle seahawks"
CREATE TABLE table_name_63 (result VARCHAR, opponent VARCHAR, week VARCHAR, attendance VARCHAR)
Playing against the Seattle Seahawks in a week after week 1 before 69,149 people what was the result of the game?
SELECT COUNT(week) FROM table_name_23 WHERE date = "bye"
CREATE TABLE table_name_23 (week VARCHAR, date VARCHAR)
How many weeks in total has bye as the date?
SELECT country FROM table_name_58 WHERE player = "tiger woods"
CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)
What country does Tiger Woods come from?
SELECT ri_song_hui___prk__ FROM table_name_49 WHERE world_record = "olympic record" AND "snatch" = "snatch"
CREATE TABLE table_name_49 (ri_song_hui___prk__ VARCHAR, world_record VARCHAR)
What's the Ri Song-Hui when the olympic record is the world record and snatch was snatch?
SELECT 102 AS kg FROM table_name_56 WHERE ri_song_hui___prk__ = "226kg"
CREATE TABLE table_name_56 (ri_song_hui___prk__ VARCHAR)
What's the 102kg when the Ri Song-Hui was 226kg?
SELECT 102 AS kg FROM table_name_56 WHERE world_record = "olympic record" AND "snatch" = "snatch"
CREATE TABLE table_name_56 (world_record VARCHAR)
What's the 102kg when the snatch was snatch and the olympic record was the world record?
SELECT AVG(pick) FROM table_name_82 WHERE team = "texas rangers"
CREATE TABLE table_name_82 (pick INTEGER, team VARCHAR)
What was the average pick made by the Texas Rangers?
SELECT hometown_school FROM table_name_18 WHERE team = "san diego padres" AND player = "bob geren"
CREATE TABLE table_name_18 (hometown_school VARCHAR, team VARCHAR, player VARCHAR)
What was the home town of Bob Geren, picked by the San Diego Padres?
SELECT position FROM table_name_94 WHERE player = "jon perlman"
CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR)
What was the position of Jon Perlman?
SELECT college FROM table_name_73 WHERE position = "tackle" AND pick < 87
CREATE TABLE table_name_73 (college VARCHAR, position VARCHAR, pick VARCHAR)
What college has a pick smaller than 87 for the position of tackle?
SELECT college FROM table_name_51 WHERE pick = 85
CREATE TABLE table_name_51 (college VARCHAR, pick VARCHAR)
What college had the pick of 85?
SELECT MIN(losses) FROM table_name_96 WHERE club = "mortlake" AND against < 970
CREATE TABLE table_name_96 (losses INTEGER, club VARCHAR, against VARCHAR)
What are the least losses of Mortlake having less than 970 against?
SELECT COUNT(against) FROM table_name_30 WHERE draws > 0
CREATE TABLE table_name_30 (against VARCHAR, draws INTEGER)
What's the total against when the draws are more than 0?
SELECT COUNT(wins) FROM table_name_92 WHERE draws < 0
CREATE TABLE table_name_92 (wins VARCHAR, draws INTEGER)
What's the total wins when the draws are less than 0?
SELECT MIN(against) FROM table_name_50 WHERE club = "cobden" AND draws > 0
CREATE TABLE table_name_50 (against INTEGER, club VARCHAR, draws VARCHAR)
What's the least against number for Cobden with draws more than 0?
SELECT MAX(against) FROM table_name_43 WHERE draws > 0
CREATE TABLE table_name_43 (against INTEGER, draws INTEGER)
What's the most against when the draws are more than 0?
SELECT SUM(wins) FROM table_name_46 WHERE against = 1261
CREATE TABLE table_name_46 (wins INTEGER, against VARCHAR)
What are the total wins when there are 1261 against?
SELECT notes FROM table_name_33 WHERE time = "1:42.309"
CREATE TABLE table_name_33 (notes VARCHAR, time VARCHAR)
What is the notes entry for the row with a Time of 1:42.309?
SELECT SUM(rank) FROM table_name_96 WHERE country = "china"
CREATE TABLE table_name_96 (rank INTEGER, country VARCHAR)
What is the rank for China?
SELECT time FROM table_name_54 WHERE notes = "qs" AND country = "cuba"
CREATE TABLE table_name_54 (time VARCHAR, notes VARCHAR, country VARCHAR)
What is the time for Cuba, with a notes entry of QS?
SELECT COUNT(week) FROM table_name_17 WHERE date = "october 10, 1976"
CREATE TABLE table_name_17 (week VARCHAR, date VARCHAR)
What is the Week number on October 10, 1976?
SELECT date FROM table_name_89 WHERE result = "l 33–14"
CREATE TABLE table_name_89 (date VARCHAR, result VARCHAR)
What is the Date of the game with a Result of L 33–14?
SELECT augmented_fifth FROM table_name_48 WHERE major_third = "d"
CREATE TABLE table_name_48 (augmented_fifth VARCHAR, major_third VARCHAR)
The Major third of D has what for the Augmented fifth?
SELECT minor_seventh FROM table_name_29 WHERE major_third = "c"
CREATE TABLE table_name_29 (minor_seventh VARCHAR, major_third VARCHAR)
A major third of C has what listed for the Minor seventh?
SELECT chord FROM table_name_23 WHERE minor_seventh = "f"
CREATE TABLE table_name_23 (chord VARCHAR, minor_seventh VARCHAR)
What is the listed chord for a Minor seventh of F?
SELECT episode FROM table_name_71 WHERE rank = 1
CREATE TABLE table_name_71 (episode VARCHAR, rank VARCHAR)
Which Episode has a Rank of 1?
SELECT rally_hq FROM table_name_62 WHERE rally_name = "adac rally deutschland"
CREATE TABLE table_name_62 (rally_hq VARCHAR, rally_name VARCHAR)
Where was adac rally deutschland's rally HQ?
SELECT rally_hq FROM table_name_9 WHERE round = 1
CREATE TABLE table_name_9 (rally_hq VARCHAR, round VARCHAR)
Where was the Rally HQ for Round 1?
SELECT support_category FROM table_name_67 WHERE round = 9
CREATE TABLE table_name_67 (support_category VARCHAR, round VARCHAR)
Which Support Category had a Round score of 9?
SELECT surface FROM table_name_58 WHERE rally_hq = "salou"
CREATE TABLE table_name_58 (surface VARCHAR, rally_hq VARCHAR)
What Surface had a Rally HQ of salou?
SELECT MIN(lane) FROM table_name_85 WHERE nationality = "czech republic" AND time > 21.05
CREATE TABLE table_name_85 (lane INTEGER, nationality VARCHAR, time VARCHAR)
What is the lowest lane in the Czech Republic and a time larger than 21.05?
SELECT MAX(lane) FROM table_name_31 WHERE rank > 2 AND nationality = "guyana"
CREATE TABLE table_name_31 (lane INTEGER, rank VARCHAR, nationality VARCHAR)
What is the highest lane with a rank larger than 2 in Guyana?
SELECT SUM(rank) FROM table_name_61 WHERE athlete = "solomon bayoh" AND time < 22.16
CREATE TABLE table_name_61 (rank INTEGER, athlete VARCHAR, time VARCHAR)
What is the sum rank of Solomon Bayoh when his time was smaller than 22.16?
SELECT artist FROM table_name_18 WHERE album = "soul"
CREATE TABLE table_name_18 (artist VARCHAR, album VARCHAR)
Who is the artist of the album Soul?
SELECT athlete FROM table_name_51 WHERE time < 11.13 AND country = "belgium"
CREATE TABLE table_name_51 (athlete VARCHAR, time VARCHAR, country VARCHAR)
who is the athlete when the time is less than 11.13 and the country is belgium?
SELECT athlete FROM table_name_33 WHERE rank < 13 AND time > 11.13 AND country = "bahamas" AND heat > 2
CREATE TABLE table_name_33 (athlete VARCHAR, heat VARCHAR, country VARCHAR, rank VARCHAR, time VARCHAR)
who is the athlete when the rank is less than 13, time more than 11.13, country is bahamas and the heat more than 2?
SELECT SUM(heat) FROM table_name_89 WHERE athlete = "anita pistone"
CREATE TABLE table_name_89 (heat INTEGER, athlete VARCHAR)
what is the heat when the athlete is anita pistone?
SELECT COUNT(time) FROM table_name_8 WHERE rank > 29 AND athlete = "barbara pierre" AND heat < 5
CREATE TABLE table_name_8 (time VARCHAR, heat VARCHAR, rank VARCHAR, athlete VARCHAR)
how many times is the rank more than 29, the athlete is barbara pierre and the heat less than 5?
SELECT ihsaa_class FROM table_name_83 WHERE location = "linton"
CREATE TABLE table_name_83 (ihsaa_class VARCHAR, location VARCHAR)
Which IHSAA Class has a Location of linton?
SELECT SUM(played) FROM table_name_86 WHERE lost > 10 AND points < 5
CREATE TABLE table_name_86 (played INTEGER, lost VARCHAR, points VARCHAR)
What is the sum of matches played for teams with more than 10 losses and under 5 points?
SELECT COUNT(position) FROM table_name_56 WHERE points > 5 AND drawn = 3 AND lost < 2
CREATE TABLE table_name_56 (position VARCHAR, lost VARCHAR, points VARCHAR, drawn VARCHAR)
What is the total number of positions for teams with more than 5 points, 3 draws, and under 2 losses?
SELECT AVG(drawn) FROM table_name_95 WHERE lost < 4 AND points < 21
CREATE TABLE table_name_95 (drawn INTEGER, lost VARCHAR, points VARCHAR)
What is the average number of losses for teams with under 4 losses and under 21 points?
SELECT home_team FROM table_name_85 WHERE attendance = "2,029"
CREATE TABLE table_name_85 (home_team VARCHAR, attendance VARCHAR)
What is the home team at the game with an Attendance of 2,029?
SELECT away_team FROM table_name_73 WHERE attendance = "1,730"
CREATE TABLE table_name_73 (away_team VARCHAR, attendance VARCHAR)
What is the away team at the game with an Attendance of 1,730?
SELECT away_team FROM table_name_18 WHERE tie_no = "2"
CREATE TABLE table_name_18 (away_team VARCHAR, tie_no VARCHAR)
What is the away team at the game with a Tie no of 2?
SELECT f_laps FROM table_name_94 WHERE points = "n/a" AND poles = "1" AND wins = "0"
CREATE TABLE table_name_94 (f_laps VARCHAR, wins VARCHAR, points VARCHAR, poles VARCHAR)
What F/Laps listing has entries of n/a Points, 1 Poles, and 0 Wins?
SELECT series FROM table_name_96 WHERE season < 2003 AND podiums = "1" AND points = "n/a"
CREATE TABLE table_name_96 (series VARCHAR, points VARCHAR, season VARCHAR, podiums VARCHAR)
What Series has a season that is older than 2003 with a Podiums entry of 1 and a Points entry that is n/a?
SELECT podiums FROM table_name_74 WHERE series = "world rally championship"
CREATE TABLE table_name_74 (podiums VARCHAR, series VARCHAR)
What Podiums listing has a World Rally Championship series entry?
SELECT races FROM table_name_15 WHERE points = "n/a" AND wins = "0" AND position = "6th"
CREATE TABLE table_name_15 (races VARCHAR, position VARCHAR, points VARCHAR, wins VARCHAR)
What races have n/a Points, 0 Wins, and 6th Position entries?
SELECT MAX(season) FROM table_name_34 WHERE team = "prema powerteam" AND series = "masters of formula three"
CREATE TABLE table_name_34 (season INTEGER, team VARCHAR, series VARCHAR)
What is the most recent season for the Prema Powerteam with a Masters of Formula Three series?