qid
stringlengths
6
9
source
stringlengths
6
259
target
stringlengths
6
409
anonymized_target
stringlengths
16
454
atis_4341
what flights leave seattle on sunday on continental after 9pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 2100 : ti ) ( from $0 seattle : ci ) ( day $0 sunday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2281
list the nonstop flights early tuesday morning from dallas to atlanta
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_3688
then list the flights from atlanta to philadelphia early wednesday morning nonstop
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4531
what is the earliest flight between logan and bwi
( argmin $0 ( and ( flight $0 ) ( from $0 bos : ap ) ( to $0 bwi : ap ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ap ) ( to $0 ANON_ENTITY : ap ) ) ( departure_time $0 ) )
atis_4577
what is the earliest flight that i can get from bwi to boston logan
( argmin $0 ( and ( flight $0 ) ( from $0 bwi : ap ) ( to $0 bos : ap ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ap ) ( to $0 ANON_ENTITY : ap ) ) ( departure_time $0 ) )
atis_1037
how much is the cheapest flight from denver to pittsburgh
( fare ( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) ) )
( fare ( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) ) )
atis_2997
show me all flights to dallas that are less than 1500 dollars round trip
( lambda $0 e ( and ( flight $0 ) ( to $0 dallas : ci ) ( < ( fare $0 ) 1500 : do ) ( round_trip $0 ) ) )
( lambda $0 e ( and ( flight $0 ) ( to $0 ANON_ENTITY : ci ) ( < ( fare $0 ) ANON_ENTITY : do ) ( round_trip $0 ) ) )
atis_2254
list the flights arriving in boston from atlanta on august fifth
( lambda $0 e ( and ( month_arrival $0 august : mn ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( flight $0 ) ( day_number_arrival $0 5 : dn ) ) )
( lambda $0 e ( and ( month_arrival $0 ANON_ENTITY : mn ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( flight $0 ) ( day_number_arrival $0 ANON_ENTITY : dn ) ) )
atis_4924
what's the lowest round trip fare from bwi to any city
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 bwi : ap ) ( exists $2 ( and ( city $2 ) ( to $1 $2 ) ) ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ap ) ( exists $2 ( and ( city $2 ) ( to $1 $2 ) ) ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_3448
show me the flights from denver to baltimore or washington dc that arrive before or around noon
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( or ( to $0 baltimore : ci ) ( to $0 washington : ci ) ) ( or ( approx_arrival_time $0 1200 : ti ) ( < ( arrival_time $0 ) 1200 : ti ) ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( or ( to $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( or ( approx_arrival_time $0 ANON_ENTITY : ti ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ) ) )
atis_2983
show me all flights from san francisco to pittsburgh which arrive in pittsburgh before 9 o'clock am tomorrow
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 900 : ti ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( tomorrow_arrival $0 ) ) )
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( tomorrow_arrival $0 ) ) )
atis_1828
i'm traveling from boston to atlanta and i'd like to go sometime after 5pm but i want to know what kind of airplane it's on
( lambda $0 e ( lambda $1 e ( and ( = ( airline : e $0 ) $1 ) ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( = ( ANON_ENTITY : e $0 ) $1 ) ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ) )
atis_456
economy fares new york to miami round trip
( lambda $0 e ( exists $1 ( and ( economy $1 ) ( round_trip $1 ) ( from $1 new_york : ci ) ( to $1 miami : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( economy $1 ) ( round_trip $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3532
show me the flights on delta to atlanta in the morning
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 morning : pd ) ( to $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( to $0 ANON_ENTITY : ci ) ) )
atis_3537
show me the flights on twa to atlanta in the morning
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( during_day $0 morning : pd ) ( to $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( to $0 ANON_ENTITY : ci ) ) )
atis_4745
what is the smallest aircraft available to fly on from pittsburgh to baltimore
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) ( capacity $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( capacity $0 ) )
atis_5000
which flight from pittsburgh to baltimore carries the smallest number of passengers
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) ( capacity $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( capacity $0 ) )
atis_2218
list round trip flights between boston and oakland using twa
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( airline $0 tw : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1401
i would like a flight between denver and san francisco leaving from denver in the afternoon and arriving at 5pm it must be a nonstop flight
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( arrival_time $0 ANON_ENTITY : ti ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_5017
which nonstop flight from atlanta to oakland leaves in the afternoon and arrives at 5pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( arrival_time $0 ANON_ENTITY : ti ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1010
how much does it cost to fly from atlanta to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1011
how much does it cost to fly from boston to atlanta
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1025
how much is a flight from washington to boston
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 washington : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1026
how much is a flight from washington to montreal
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 washington : ci ) ( to $1 montreal : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2671
please show me all fares for flights from denver to oakland
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 oakland : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2717
price of flight from cleveland to nashville
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 cleveland : ci ) ( to $1 nashville : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2718
price of flight from nashville to cleveland
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 nashville : ci ) ( to $1 cleveland : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3064
show me all the prices of flights from baltimore to dallas
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3260
show me prices of flights from baltimore to dallas
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3281
show me the air fare for the flights from baltimore to dallas
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3598
show me the price of all flights from atlanta to washington dc
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3600
show me the prices of all flights from atlanta to washington dc
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3846
what are the fares for flights between boston and washington dc
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3964
what are the prices of the flights from dallas to baltimore
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4061
what fare codes cover flights from philadelphia to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4497
what is the cost for these flights from baltimore to philadelphia
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4501
what is the cost of a flight from boston to denver
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4502
what is the cost of a flight from boston to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4508
what is the cost of flights from denver to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4588
what is the fare for flights from denver to atlanta
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4720
what is the price of flights from indianapolis to memphis
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 indianapolis : ci ) ( to $1 memphis : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4728
what is the schedule of ground transportation from the airport in philadelphia into downtown
( lambda $0 e ( exists $1 ( and ( ground_transport $1 ) ( to_city $1 philadelphia : ci ) ( from_airport $1 philadelphia : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( ground_transport $1 ) ( to_city $1 ANON_ENTITY : ci ) ( from_airport $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_4729
what is the schedule of ground transportation from washington airport into downtown
( lambda $0 e ( exists $1 ( and ( ground_transport $1 ) ( to_city $1 washington : ci ) ( from_airport $1 washington : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( ground_transport $1 ) ( to_city $1 ANON_ENTITY : ci ) ( from_airport $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_4558
what is the earliest flight from washington to san francisco on friday that serves breakfast
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) ( departure_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( departure_time $0 ) )
atis_352
do i get a meal on the atlanta to bwi flight eastern 210
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( flight_number $1 210 : fn ) ( from $1 atlanta : ci ) ( to $1 bwi : ap ) ( = ( meal $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ap ) ( = ( meal $1 ) $0 ) ) ) )
atis_4568
what is the earliest flight leaving denver and arriving in baltimore on united airlines first class on july fourth
( departure_time ( argmin $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( day_number $0 4 : dn ) ( month $0 july : mn ) ) ( departure_time $0 ) ) )
( departure_time ( argmin $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( departure_time $0 ) ) )
atis_5019
which northwest flights stop in denver before noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( arrival_time $0 ) 1200 : ti ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_2854
show me airlines going from pittsburgh going to denver and then continuing to san francisco on monday
( lambda $0 e ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( stop $1 denver : ci ) ( day $1 monday : da ) ( = ( airline : e $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
atis_1179
i need flight and airline information for a flight from denver to salt lake city on monday departing after 5pm
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 denver : ci ) ( to $0 salt_lake_city : ci ) ( day $0 monday : da ) ( = ( airline : e $0 ) $1 ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( = ( ANON_ENTITY : e $0 ) $1 ) ) ) )
atis_4458
what is the cheapest flight from boston to bwi
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 bwi : ap ) ) ( fare $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ap ) ) ( fare $0 ) )
atis_3766
what airlines serve denver
( lambda x e ( and ( airline x ) ( services x denver : ci ) ) )
( lambda x e ( and ( airline x ) ( services x ANON_ENTITY : ci ) ) )
atis_1290
i want a flight from san francisco to denver leaving san francisco in the afternoon arriving denver around 5 in the afternoon
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 ANON_ENTITY : ti ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_1893
is there a flight from boston to atlanta which leaves boston in the afternoon and arrives close to 5pm
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 ANON_ENTITY : ti ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_569
flight from ontario to orlando that departs 9 hours before arriving
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 orlando : ci ) ( time_elapsed $0 9 : hr ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( time_elapsed $0 ANON_ENTITY : hr ) ) )
atis_3325
show me the cheapest one way tickets from atlanta to dallas
( argmin $0 ( and ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ) ( fare $0 ) )
( argmin $0 ( and ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
atis_4885
what's the cheapest one way ticket from baltimore to atlanta
( argmin $0 ( and ( oneway $0 ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
( argmin $0 ( and ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
atis_4072
what flight goes from denver to baltimore first class on united airlines arriving on may seventh
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( month_arrival $0 may : mn ) ( day_number_arrival $0 7 : dn ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( month_arrival $0 ANON_ENTITY : mn ) ( day_number_arrival $0 ANON_ENTITY : dn ) ) )
atis_2691
please show me flights from pittsburgh to atlanta on wednesday morning serving breakfast
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4251
what flights from pittsburgh to atlanta on wednesday morning serves breakfast
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4391
what is american's last flight from boston to washington dc on july twenty first
( argmax $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day_number $0 21 : dn ) ( month $0 july : mn ) ) ( departure_time $0 ) )
( argmax $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( departure_time $0 ) )
atis_1840
in flight meal oakland to philadelphia saturday
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 oakland : ci ) ( to $1 philadelphia : ci ) ( day $1 saturday : da ) ( = ( meal $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( meal $1 ) $0 ) ) ) )
atis_4976
which airlines fly from bwi to dallas fort worth
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 bwi : ap ) ( to $1 dallas : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ap ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
atis_2132
list flights and fares from tacoma to orlando round trip leaving saturday returning next saturday
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 tacoma : ci ) ( to $0 orlando : ci ) ( day $0 saturday : da ) ( = ( fare $0 ) $1 ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( = ( fare $0 ) $1 ) ) ) )
atis_3984
what cities does northwest fly to
( lambda $0 e ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 nw : al ) ( to $1 $0 ) ) ) ) )
( lambda $0 e ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( to $1 $0 ) ) ) ) )
atis_4890
what's the difference between fare code q and fare code b
( lambda $0 e ( and ( fare_basis_code $0 q : fb ) ( fare_basis_code $0 f : fb ) ) )
( lambda $0 e ( and ( fare_basis_code $0 ANON_ENTITY : fb ) ( fare_basis_code $0 ANON_ENTITY : fb ) ) )
atis_4891
what's the difference between fare code q and fare code f
( lambda $0 e ( and ( fare_basis_code $0 q : fb ) ( fare_basis_code $0 f : fb ) ) )
( lambda $0 e ( and ( fare_basis_code $0 ANON_ENTITY : fb ) ( fare_basis_code $0 ANON_ENTITY : fb ) ) )
atis_290
could you please list all of the classes of flights there are
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( = ( booking_class $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( = ( booking_class $1 ) $0 ) ) ) )
atis_4589
what is the fare from atlanta to boston on coach one way
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( class_type $1 coach : cl ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4592
what is the fare from philadelphia to pittsburgh business class one way
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( class_type $1 business : cl ) ( from $1 philadelphia : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_189
can you give me information on all the flights from san francisco no from pittsburgh to san francisco on monday
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( not ( from $0 san_francisco : ci ) ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( not ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_747
give me a flight from baltimore to newark that arrives as early as possible
( argmin $0 ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_3371
show me the first flight that arrives in toronto from cincinnati
( argmin $0 ( and ( flight $0 ) ( from $0 cincinnati : ci ) ( to $0 toronto : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_4069
what flight from boston to atlanta arrives earliest in atlanta
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_4071
what flight from denver to pittsburgh arrives earliest in the morning
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_4523
what is the earliest arrival in salt lake city of a flight from toronto
( argmin $0 ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 salt_lake_city : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_4524
what is the earliest arriving flight between boston and washington dc
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_4525
what is the earliest arriving flight from boston to washington dc
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_4526
what is the earliest arriving flight from houston to orlando
( argmin $0 ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 orlando : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_4892
what's the earliest arriving flight between boston and washington dc
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( arrival_time $0 ) )
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
atis_4362
what ground transportation is available from the pittsburgh airport to downtown and how much does it cost
( lambda $0 e ( lambda $1 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ( from_airport $0 pittsburgh : ci ) ( = ( ground_fare $0 ) $1 ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( ground_transport $0 ) ( to_city $0 ANON_ENTITY : ci ) ( from_airport $0 ANON_ENTITY : ci ) ( = ( ground_fare $0 ) $1 ) ) ) )
atis_1049
i am interested in booking an early flight from dallas into houston and returning in the late evening
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $1 ) ( during_day $1 late_evening : pd ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ( to $1 dallas : ci ) ( from $1 houston : ci ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $1 ) ( during_day $1 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( from $1 ANON_ENTITY : ci ) ) ) )
atis_1050
i am interested in booking an early morning flight from dallas into houston and returning in the late evening
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $1 ) ( during_day $1 late_evening : pd ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ( to $1 dallas : ci ) ( from $1 houston : ci ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $1 ) ( during_day $1 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( from $1 ANON_ENTITY : ci ) ) ) )
atis_4495
what is the code for business class
( lambda $0 e ( and ( fare_basis_code $0 ) ( class_type $0 business : cl ) ) )
( lambda $0 e ( and ( fare_basis_code $0 ) ( class_type $0 ANON_ENTITY : cl ) ) )
atis_2094
list all the flights from charlotte to atlanta that return around 7pm
( lambda $0 e ( and ( flight $0 ) ( approx_return_time $0 1900 : ti ) ( from $0 charlotte : ci ) ( to $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( approx_return_time $0 ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
atis_3755
what airlines fly into denver
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
atis_3756
what airlines fly into salt lake city
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( to $1 salt_lake_city : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
atis_955
how many different flight classes are there
( count $0 ( class_of_service $0 ) )
( count $0 ( class_of_service $0 ) )
atis_818
give me the flights from indianapolis to orlando on december twenty seventh and twenty eighth
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( or ( day_number $0 27 : dn ) ( day_number $0 28 : dn ) ) ( month $0 december : mn ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( or ( day_number $0 ANON_ENTITY : dn ) ( day_number $0 ANON_ENTITY : dn ) ) ( month $0 ANON_ENTITY : mn ) ) )
atis_1844
in the next two days i want to fly from nashville to san jose or to tacoma
( lambda $0 e ( and ( flight $0 ) ( from $0 nashville : ci ) ( or ( to $0 tacoma : ci ) ( to $0 san_jose : ci ) ) ( next_days $0 2 : i ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( or ( to $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( next_days $0 ANON_ENTITY : i ) ) )
atis_1646
i'd like a limo in denver on august seventh
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 denver : ci ) ( day_number $0 7 : dn ) ( month $0 august : mn ) ) )
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
atis_1753
i'd like to go from st. paul to kansas city on friday with a meal
( lambda $0 e ( and ( has_meal $0 ) ( from $0 st_paul : ci ) ( to $0 kansas_city : ci ) ( day $0 friday : da ) ) )
( lambda $0 e ( and ( has_meal $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2060
list all flights on continental leaving denver and arriving at chicago on monday before noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 chicago : ci ) ( day_arrival $0 monday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
atis_3994
what delta flights from cincinnati to new york city arrive at new york city before 6pm on saturday
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 cincinnati : ci ) ( to $0 new_york : ci ) ( day_arrival $0 saturday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
atis_1733
i'd like to fly from minneapolis to long beach two days from today in the early morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 minneapolis : ci ) ( to $0 long_beach : ci ) ( days_from_today $0 2 : i ) ) )
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( days_from_today $0 ANON_ENTITY : i ) ) )
atis_2533
please give me the flight times the morning on united airlines for september twentieth from philadelphia to san francisco
( lambda $0 e ( exists $1 ( and ( airline $1 ua : al ) ( during_day $1 morning : pd ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( day_number $1 20 : dn ) ( month $1 september : mn ) ( = ( departure_time $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( airline $1 ANON_ENTITY : al ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_510
find me the earliest boston departure and the latest atlanta return trip so that i can be on the ground the maximum amount of time in atlanta and return to boston on the same day
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 boston : ci ) ( from $0 atlanta : ci ) ) ( departure_time $2 ) ) ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( departure_time $2 ) ) ) ) ) )
atis_511
find me the earliest boston departure for atlanta and the lastest return trip from atlanta so that i can be in atlanta the longest amount of time but return to boston the same day
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 boston : ci ) ( from $0 atlanta : ci ) ) ( departure_time $2 ) ) ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( departure_time $2 ) ) ) ) ) )
atis_512
find me the earliest flight from boston to atlanta and the latest return from atlanta to boston within the same day
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 boston : ci ) ( from $0 atlanta : ci ) ) ( departure_time $2 ) ) ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( departure_time $2 ) ) ) ) ) )
atis_513
find me the earliest flight from boston to atlanta and the latest return to boston on the same day
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 boston : ci ) ( from $0 atlanta : ci ) ) ( departure_time $2 ) ) ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( departure_time $2 ) ) ) ) ) )
atis_914
how can i get from boston to atlanta and back in the same day and have the most hours on the ground in atlanta
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 boston : ci ) ( from $0 atlanta : ci ) ) ( departure_time $2 ) ) ) ) ) )
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( departure_time $2 ) ) ) ) ) )