answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MIN(number_of_dances) FROM table_1354805_3 WHERE average = "34.1"
The minimum average number of dancers is 34.1 how many times
CREATE TABLE table_1354805_3 (number_of_dances INTEGER, average VARCHAR)
SELECT MAX(crowd) FROM table_name_3 WHERE home_team = "north melbourne"
What is the largest Crowd number for the Home team of North Melbourne?
CREATE TABLE table_name_3 (crowd INTEGER, home_team VARCHAR)
SELECT MAX(season) FROM table_name_43 WHERE date = "27 october 1957"
What is the most recent season with a date of 27 October 1957?
CREATE TABLE table_name_43 (season INTEGER, date VARCHAR)
SELECT winning_driver FROM table_name_59 WHERE winning_constructor = "talbot"
What Winning driver has a Winning constructor of talbot?
CREATE TABLE table_name_59 (winning_driver VARCHAR, winning_constructor VARCHAR)
SELECT location FROM table_name_68 WHERE champion = "anke huber"
What location did Anke Huber win the championship?
CREATE TABLE table_name_68 (location VARCHAR, champion VARCHAR)
SELECT extra_points FROM table_25642873_2 WHERE touchdowns = 5
The player who had 5 touchdowns had how many extra points?
CREATE TABLE table_25642873_2 (extra_points VARCHAR, touchdowns VARCHAR)
SELECT pregame_host FROM table_name_98 WHERE network = "bold"
What is the name of the pregame host when Bold was the network?
CREATE TABLE table_name_98 (pregame_host VARCHAR, network VARCHAR)
SELECT COUNT(status) FROM table_1341522_38 WHERE first_elected = 1968
how many status with first elected being 1968
CREATE TABLE table_1341522_38 (status VARCHAR, first_elected VARCHAR)
SELECT t2.color_description FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code GROUP BY t2.color_description ORDER BY COUNT(*) LIMIT 1
What is the description of the color used by least products?
CREATE TABLE ref_colors (color_description VARCHAR, color_code VARCHAR); CREATE TABLE products (color_code VARCHAR)
SELECT COUNT(first_elected) FROM table_1342233_5 WHERE district = "Arkansas 4"
How many were first elected in the Arkansas 4 district?
CREATE TABLE table_1342233_5 (first_elected VARCHAR, district VARCHAR)
SELECT driver FROM table_name_82 WHERE laps < 14 AND grid < 16 AND time_retired = "not classified"
Who is the driver when the laps are smaller than 14, the grid is smaller than 16, and the Time/retired is not classified?
CREATE TABLE table_name_82 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT county FROM table_name_38 WHERE ihsaa_class = "a" AND mascot = "cavaliers"
Which IHSAA class A school are the Cavaliers from?
CREATE TABLE table_name_38 (county VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)
SELECT laps FROM table_name_7 WHERE grid = "26"
WHAT IS THE LAPS WITH A GRID OF 26?
CREATE TABLE table_name_7 (laps VARCHAR, grid VARCHAR)
SELECT weight FROM table_name_13 WHERE length = "1168mm / 46 in"
What is Weight, when Length is 1168mm / 46 in?
CREATE TABLE table_name_13 (weight VARCHAR, length VARCHAR)
SELECT SUM(gold) FROM table_name_99 WHERE bronze = 2 AND silver < 0
Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold?
CREATE TABLE table_name_99 (gold INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT technology FROM table_name_88 WHERE gel_pouring = "no" AND analysis_time = "8 days"
what is the technology when the gel pouring is no and the analysis time is 8 days?
CREATE TABLE table_name_88 (technology VARCHAR, gel_pouring VARCHAR, analysis_time VARCHAR)
SELECT nationality FROM table_name_20 WHERE name = "anna khlistunova"
What is Anna Khlistunova's Nationality?
CREATE TABLE table_name_20 (nationality VARCHAR, name VARCHAR)
SELECT name FROM table_name_31 WHERE transfer_fee = "free" AND status = "transfer" AND country = "eng"
What is the name of the free transfer fee with a transfer status and an ENG country?
CREATE TABLE table_name_31 (name VARCHAR, country VARCHAR, transfer_fee VARCHAR, status VARCHAR)
SELECT estimated_value FROM table_1217448_1 WHERE cover_date = "August 1962"
what's the estimated value where cover date is august 1962
CREATE TABLE table_1217448_1 (estimated_value VARCHAR, cover_date VARCHAR)
SELECT recopa_sudamericana_1998 FROM table_14962316_9 WHERE team = "Flamengo"
Did Flamengo play in the Recopa Sudamericana in 1998
CREATE TABLE table_14962316_9 (recopa_sudamericana_1998 VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_name_24 WHERE date = "april 9"
Who had the high rebounds, and how many did he have, for the game played on April 9?
CREATE TABLE table_name_24 (high_rebounds VARCHAR, date VARCHAR)
SELECT SUM(crowd) FROM table_name_47 WHERE venue = "brunswick street oval"
How big is the Venue of Brunswick Street Oval?
CREATE TABLE table_name_47 (crowd INTEGER, venue VARCHAR)
SELECT machine FROM table_name_75 WHERE trophy = "susan jenness trophy"
What machine did susan jenness trophy earn the trophy?
CREATE TABLE table_name_75 (machine VARCHAR, trophy VARCHAR)
SELECT class FROM table_name_50 WHERE erp_w > 2 AND call_sign = "w223au"
What is the Class for the ERP W of more than 2 and the call sign of w223au?
CREATE TABLE table_name_50 (class VARCHAR, erp_w VARCHAR, call_sign VARCHAR)
SELECT surface FROM table_name_96 WHERE opponent_in_the_final = "steven diez"
What surface was the tournament played on against Steven Diez?
CREATE TABLE table_name_96 (surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT MAX(ranking_round_rank) FROM table_name_3 WHERE nation = "russia" AND final_rank > 11
What is the highest Ranking Round Rank for Russia with a Final Rank over 11?
CREATE TABLE table_name_3 (ranking_round_rank INTEGER, nation VARCHAR, final_rank VARCHAR)
SELECT COUNT(points) FROM table_16795394_3 WHERE team__number2 = "Lanús"
If team two is Lanús, what was the total number of points?
CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)
SELECT partner FROM table_name_12 WHERE year > 2012 AND outcome = "winner"
Who was the partner of the winner after 2012?
CREATE TABLE table_name_12 (partner VARCHAR, year VARCHAR, outcome VARCHAR)
SELECT outcome FROM table_name_75 WHERE score = "6–3, 6–4"
What is the Outcome of the match with a Score of 6–3, 6–4?
CREATE TABLE table_name_75 (outcome VARCHAR, score VARCHAR)
SELECT AVG(game) FROM table_name_22 WHERE points = 19 AND opponent = "new jersey devils"
What's the average game against the New Jersey Devils with 19 points?
CREATE TABLE table_name_22 (game INTEGER, points VARCHAR, opponent VARCHAR)
SELECT AVG(lane) FROM table_name_88 WHERE name = "rebecca brown"
What is the average lane that is called rebecca brown?
CREATE TABLE table_name_88 (lane INTEGER, name VARCHAR)
SELECT time_retired FROM table_name_62 WHERE grid = 14
What is the time/retired of the team with a grid of 14?
CREATE TABLE table_name_62 (time_retired VARCHAR, grid VARCHAR)
SELECT DISTINCT LOCATION FROM station WHERE number_of_platforms >= 15 AND total_passengers > 25
Show all locations that have train stations with at least 15 platforms and train stations with more than 25 total passengers.
CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR, total_passengers VARCHAR)
SELECT team_2 FROM table_name_82 WHERE team_1 = "harbour view"
What team 2 has a team 1 of harbour view?
CREATE TABLE table_name_82 (team_2 VARCHAR, team_1 VARCHAR)
SELECT MIN(_number_s_dam_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = "Nome (CA)"
How many dams are there in the Nome (CA) area?
CREATE TABLE table_17978052_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)
SELECT broadcast_date FROM table_2101431_1 WHERE archive = "16mm t/r" AND run_time = "23:25"
What is the broadcast date of the episode on 16mm t/r that ran 23:25?
CREATE TABLE table_2101431_1 (broadcast_date VARCHAR, archive VARCHAR, run_time VARCHAR)
SELECT opposition FROM table_26847237_3 WHERE score = "37 - 28"
Who is the opposition when the score is 37 - 28?
CREATE TABLE table_26847237_3 (opposition VARCHAR, score VARCHAR)
SELECT us_viewers__millions_ FROM table_11230937_2 WHERE no_in_season = 15
How many millions of viewers watched episode 15?
CREATE TABLE table_11230937_2 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)
SELECT reason_for_vacancy FROM table_2417445_4 WHERE district = "Massachusetts 6th"
When massachusetts 6th is the district what is the reason for vacancy?
CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, district VARCHAR)
SELECT launch_date FROM table_name_11 WHERE space_agency = "nasa" AND name = "wide field infrared explorer (wire)"
When did NASA launch the wide field infrared explorer (wire)?
CREATE TABLE table_name_11 (launch_date VARCHAR, space_agency VARCHAR, name VARCHAR)
SELECT score FROM table_name_37 WHERE competition = "friendly" AND date = "19 april 1979"
Which friendly competition took place on 19 April 1979?
CREATE TABLE table_name_37 (score VARCHAR, competition VARCHAR, date VARCHAR)
SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.GovernmentForm = "Republic" GROUP BY T2.Language HAVING COUNT(*) = 1
Which languages are spoken by only one country in republic governments?
CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR); CREATE TABLE country (Code VARCHAR, GovernmentForm VARCHAR)
SELECT length__female_ FROM table_name_15 WHERE common_name = "panther chameleon"
What is the length of the Panther Chameleon?
CREATE TABLE table_name_15 (length__female_ VARCHAR, common_name VARCHAR)
SELECT COUNT(ground) FROM table_16388478_2 WHERE home_team = "Sydney"
How many locations were there when sydney was the home team?
CREATE TABLE table_16388478_2 (ground VARCHAR, home_team VARCHAR)
SELECT launched FROM table_name_31 WHERE date_of_commission = "3 may 2001"
What is the Launched which is on 3 may 2001?
CREATE TABLE table_name_31 (launched VARCHAR, date_of_commission VARCHAR)
SELECT time_retired FROM table_name_69 WHERE constructor = "brabham - alfa romeo" AND driver = "carlos reutemann"
What is the Time/Retired of Carlos Reutemann who was driving a brabham - Alfa Romeo?
CREATE TABLE table_name_69 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)
SELECT AVG(gold) FROM table_name_90 WHERE total = 1 AND rank = "6" AND bronze > 1
What is the average gold total for nations ranked 6 with 1 total medal and 1 bronze medal?
CREATE TABLE table_name_90 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR)
SELECT surface FROM table_name_71 WHERE week = "march 16"
What was the surface that was played on during the week of March 16?
CREATE TABLE table_name_71 (surface VARCHAR, week VARCHAR)
SELECT COUNT(DISTINCT sportname) FROM Sportsinfo
How many sports do we have?
CREATE TABLE Sportsinfo (sportname VARCHAR)
SELECT SUM(against) FROM table_name_19 WHERE draw = 1 AND played < 8
What is the total against with 1 draw and less than 8 played?
CREATE TABLE table_name_19 (against INTEGER, draw VARCHAR, played VARCHAR)
SELECT MAX(rank) FROM table_name_54 WHERE name = "josefin lillhage"
What is the highest rank for Josefin Lillhage?
CREATE TABLE table_name_54 (rank INTEGER, name VARCHAR)
SELECT AVG(rank) FROM table_name_15 WHERE bronze < 13 AND total = 11 AND gold > 4
What is the average rank of a country with less than 13 bronze medals, a total of 11 medals, and more than 4 gold?
CREATE TABLE table_name_15 (rank INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT capacity__mw_ FROM table_26387382_1 WHERE turbines = "50-60"
What all capacities have turbines between 50-60?
CREATE TABLE table_26387382_1 (capacity__mw_ VARCHAR, turbines VARCHAR)
SELECT SUM(2006) FROM table_name_83 WHERE 2011 > 4113 AND 2008 < 7181
What is the 2006 value with a 2011 value greater than 4113 and a 2008 value less than 7181?
CREATE TABLE table_name_83 (Id VARCHAR)
SELECT earnings___$__ FROM table_name_7 WHERE top_10s = 23
What amount of earnings corresponds with a Top 10s rank of 23?
CREATE TABLE table_name_7 (earnings___$__ VARCHAR, top_10s VARCHAR)
SELECT AVG(partial_failures) FROM table_name_53 WHERE country = "russia" AND failures > 0 AND family = "angara" AND launches > 1
What is the partial failure for the Country of russia, and a Failure larger than 0, and a Family of angara, and a Launch larger than 1?
CREATE TABLE table_name_53 (partial_failures INTEGER, launches VARCHAR, family VARCHAR, country VARCHAR, failures VARCHAR)
SELECT h___a FROM table_name_34 WHERE round = "round 2"
what is the h/a round of round 2
CREATE TABLE table_name_34 (h___a VARCHAR, round VARCHAR)
SELECT name FROM table_name_10 WHERE bonus > 1 AND only_point > 7 AND total_point < 21
What is Name, when Bonus is greater than 1, when Only Point is greater than 7, and when Total Point is less than 21?
CREATE TABLE table_name_10 (name VARCHAR, total_point VARCHAR, bonus VARCHAR, only_point VARCHAR)
SELECT name FROM student WHERE dept_name = 'History' ORDER BY tot_cred DESC LIMIT 1
What is the name of the student who has the highest total credits in the History department.
CREATE TABLE student (name VARCHAR, dept_name VARCHAR, tot_cred VARCHAR)
SELECT AVG(michelle) FROM table_name_39 WHERE discipline = "archery"
How did michelle do in archery?
CREATE TABLE table_name_39 (michelle INTEGER, discipline VARCHAR)
SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE quillacollo_municipality = 93131
If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum?
CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, quillacollo_municipality VARCHAR)
SELECT SUM(killeen_rate) FROM table_name_8 WHERE reported_offenses > 216 AND us_rate < 3274 AND texas_rate < 2688.9 AND crime = "violent crime"
Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate?
CREATE TABLE table_name_8 (killeen_rate INTEGER, crime VARCHAR, texas_rate VARCHAR, reported_offenses VARCHAR, us_rate VARCHAR)
SELECT MAX(bosniaks) FROM table_name_8 WHERE census_year > 2002
Tell me the highest bosniaks for year more than 2002
CREATE TABLE table_name_8 (bosniaks INTEGER, census_year INTEGER)
SELECT player FROM table_name_22 WHERE score = 67 - 72 - 71 - 75 = 285
Which Player has a Score of 67-72-71-75=285?
CREATE TABLE table_name_22 (player VARCHAR, score VARCHAR)
SELECT number_ & _name FROM table_name_78 WHERE date = "1958"
What is the number & name of the livery in 1958?
CREATE TABLE table_name_78 (number_ VARCHAR, _name VARCHAR, date VARCHAR)
SELECT MAX(lowest) FROM table_name_67 WHERE stadium = "ibrox stadium" AND average > 49 OFFSET 143
What's the highest lowest number of capacity that ibrox stadium has when the average is larger than 49,143?
CREATE TABLE table_name_67 (lowest INTEGER, stadium VARCHAR, average VARCHAR)
SELECT player FROM table_name_24 WHERE school = "seton hall university"
What player is from Seton Hall University?
CREATE TABLE table_name_24 (player VARCHAR, school VARCHAR)
SELECT COUNT(laps) FROM table_name_89 WHERE year = "1955"
How many laps were in 1955?
CREATE TABLE table_name_89 (laps VARCHAR, year VARCHAR)
SELECT notes FROM table_name_59 WHERE rank < 2
what is the notes when the rank is less than 2?
CREATE TABLE table_name_59 (notes VARCHAR, rank INTEGER)
SELECT club FROM table_name_8 WHERE try_bonus = "2"
Which club has a try bonus of 2 ?
CREATE TABLE table_name_8 (club VARCHAR, try_bonus VARCHAR)
SELECT field FROM table_name_88 WHERE opponent = "cannons" AND result = "w 16-11"
What field is an opponent of cannons and resulted with w 16-11?
CREATE TABLE table_name_88 (field VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT to_par FROM table_name_9 WHERE player = "todd hamilton"
What was Todd Hamilton's to par?
CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR)
SELECT earnings_before_interest_and_taxes__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.78"
Name the ebit for eps being 1.78
CREATE TABLE table_20614109_1 (earnings_before_interest_and_taxes__€m_ VARCHAR, earnings_per_share__€_ VARCHAR)
SELECT region FROM table_name_35 WHERE vehicles__1209_ = 57
What region has 57 vehicles?
CREATE TABLE table_name_35 (region VARCHAR, vehicles__1209_ VARCHAR)
SELECT result FROM table_name_85 WHERE opponent = "pittsburgh steelers"
What was the result for the game against the Pittsburgh Steelers?
CREATE TABLE table_name_85 (result VARCHAR, opponent VARCHAR)
SELECT party FROM table_1979619_3 WHERE residence = "Bensalem"
Name the party for bensalem
CREATE TABLE table_1979619_3 (party VARCHAR, residence VARCHAR)
SELECT SUM(silver) FROM table_name_30 WHERE nation = "japan" AND gold > 1
How many silvers for japan (1 gold)?
CREATE TABLE table_name_30 (silver INTEGER, nation VARCHAR, gold VARCHAR)
SELECT losing_bonus FROM table_name_22 WHERE drawn = "1" AND lost = "13"
What is the losing bonus with 1 draw and 13 losses?
CREATE TABLE table_name_22 (losing_bonus VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT record FROM table_name_70 WHERE date = "13 may"
What is the record of the game on 13 May?
CREATE TABLE table_name_70 (record VARCHAR, date VARCHAR)
SELECT MIN(a_score) FROM table_name_61 WHERE b_score = 9.15 AND total = 16.05
What is the lowest A Score when the B Score is 9.15, and total is 16.05?
CREATE TABLE table_name_61 (a_score INTEGER, b_score VARCHAR, total VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_92 WHERE position = "goaltender"
Which college has a position of goaltender?
CREATE TABLE table_name_92 (college_junior_club_team__league_ VARCHAR, position VARCHAR)
SELECT MIN(game) FROM table_name_62 WHERE date = "23 april" AND batting_2nd = "england 5/113 (19)"
what is the game for 23 april when batting 2nd is england 5/113 (19)?
CREATE TABLE table_name_62 (game INTEGER, date VARCHAR, batting_2nd VARCHAR)
SELECT played FROM table_name_62 WHERE points_against = "374"
What is Played, when Points Against is "374"?
CREATE TABLE table_name_62 (played VARCHAR, points_against VARCHAR)
SELECT COUNT(points) FROM table_17625749_3 WHERE losing_bonus = "2" AND points_for = "642"
How many points categories are there when the losing bonus is 2 and points for are 642?
CREATE TABLE table_17625749_3 (points VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
SELECT date FROM table_name_25 WHERE result = "aus by 382 runs"
What date has aus by 382 runs as the result?
CREATE TABLE table_name_25 (date VARCHAR, result VARCHAR)
SELECT State FROM representative GROUP BY State HAVING COUNT(*) >= 2
What states have at least two representatives?
CREATE TABLE representative (State VARCHAR)
SELECT playoffs FROM table_1427998_1 WHERE league = "USISL" AND regular_season = "1st, Pacific"
What is the playoff result when the league is USISL and the regular season record is 1st, pacific.
CREATE TABLE table_1427998_1 (playoffs VARCHAR, league VARCHAR, regular_season VARCHAR)
SELECT nationality FROM table_name_44 WHERE position = "g" AND pick > 26
What is Nationality, when Position is "G", and when Pick is greater than 26?
CREATE TABLE table_name_44 (nationality VARCHAR, position VARCHAR, pick VARCHAR)
SELECT date FROM table_name_8 WHERE source = "surveyusa" AND obama = "54%"
When has a Source of surveyusa and a Obama of 54%?
CREATE TABLE table_name_8 (date VARCHAR, source VARCHAR, obama VARCHAR)
SELECT scorers FROM table_27654988_1 WHERE result = "0–4 7–1 0–3"
Who were the scorers in the game with final score 0–4 7–1 0–3?
CREATE TABLE table_27654988_1 (scorers VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_52 WHERE week = 6
Who was the opponent at the week 6 game?
CREATE TABLE table_name_52 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_12 WHERE record = "65-95"
Which Opponent has a Record of 65-95?
CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR)
SELECT power FROM table_name_17 WHERE city_of_license = "thunder bay"
What power has thunder bay as the city of license?
CREATE TABLE table_name_17 (power VARCHAR, city_of_license VARCHAR)
SELECT season FROM table_14242137_4 WHERE oberliga_bayern = "SpVgg Bayreuth" AND oberliga_südwest = "FSV Salmrohr"
Name the season for spvgg bayreuth and fsv salmrohr
CREATE TABLE table_14242137_4 (season VARCHAR, oberliga_bayern VARCHAR, oberliga_südwest VARCHAR)
SELECT country FROM table_name_89 WHERE money__$_ = "400" AND player = "leland gibson"
What Country is Player Leland Gibson with Money of 400 from?
CREATE TABLE table_name_89 (country VARCHAR, money__$_ VARCHAR, player VARCHAR)
SELECT environment FROM table_13677808_1 WHERE overall__average_ = "4.7"
What is the environment rating of the country with an overall average rating of 4.7?
CREATE TABLE table_13677808_1 (environment VARCHAR, overall__average_ VARCHAR)
SELECT race FROM table_name_30 WHERE runners = 7 AND odds = "1/3"
Which Race has a Runners of 7 and Odds of 1/3?
CREATE TABLE table_name_30 (race VARCHAR, runners VARCHAR, odds VARCHAR)
SELECT player FROM table_name_43 WHERE money___$__ < 335
Which player won less than $335?
CREATE TABLE table_name_43 (player VARCHAR, money___$__ INTEGER)
SELECT torque FROM table_name_99 WHERE type = "16 valves dohc" AND code = "k4m hi-flex"
What is the torque of the engine with a type 16 valves dohc and a code k4m hi-flex?
CREATE TABLE table_name_99 (torque VARCHAR, type VARCHAR, code VARCHAR)
SELECT latin_commander FROM table_name_88 WHERE battle = "siege of constantinople"
Who is the Latin Commander of the Siege of Constantinople?
CREATE TABLE table_name_88 (latin_commander VARCHAR, battle VARCHAR)