combined_text
stringlengths
106
1.05k
###question:Which Sport had an Event of men's 400 m hurdles?###answer:SELECT sport FROM table_name_21 WHERE event = "men's 400 m hurdles"###context:CREATE TABLE table_name_21 (sport VARCHAR, event VARCHAR)
###question:What Medal had a Name of manuel felix diaz?###answer:SELECT medal FROM table_name_1 WHERE name = "manuel felix diaz"###context:CREATE TABLE table_name_1 (medal VARCHAR, name VARCHAR)
###question:Which Name had a Games of 2008 beijing, and a Medal of gold?###answer:SELECT name FROM table_name_37 WHERE games = "2008 beijing" AND medal = "gold"###context:CREATE TABLE table_name_37 (name VARCHAR, games VARCHAR, medal VARCHAR)
###question:What is bedford's mascot?###answer:SELECT mascot FROM table_name_20 WHERE location = "bedford"###context:CREATE TABLE table_name_20 (mascot VARCHAR, location VARCHAR)
###question:Segment A of heather gems is what netflix episode?###answer:SELECT netflix FROM table_name_97 WHERE segment_a = "heather gems"###context:CREATE TABLE table_name_97 (netflix VARCHAR, segment_a VARCHAR)
###question:Segment B of aerospace fuel lines is what netflix episode?###answer:SELECT netflix FROM table_name_99 WHERE segment_b = "aerospace fuel lines"###context:CREATE TABLE table_name_99 (netflix VARCHAR, segment_b VARCHAR)
###question:Segment B of aerospace fuel lines has what segment A?###answer:SELECT segment_a FROM table_name_5 WHERE segment_b = "aerospace fuel lines"###context:CREATE TABLE table_name_5 (segment_a VARCHAR, segment_b VARCHAR)
###question:Episode smaller than 210 had what segment c?###answer:SELECT segment_c FROM table_name_67 WHERE episode < 210###context:CREATE TABLE table_name_67 (segment_c VARCHAR, episode INTEGER)
###question:What's the Material collected for the 978-1401209674 ISBN?###answer:SELECT material_collected FROM table_name_75 WHERE isbn = "978-1401209674"###context:CREATE TABLE table_name_75 (material_collected VARCHAR, isbn VARCHAR)
###question:How many Volume Numbers have the title of Darkness Falls?###answer:SELECT SUM(vol__number) FROM table_name_64 WHERE title = "darkness falls"###context:CREATE TABLE table_name_64 (vol__number INTEGER, title VARCHAR)
###question:What's the Lowest Volume Number that was published November 2004?###answer:SELECT MIN(vol__number) FROM table_name_5 WHERE publication_date = "november 2004"###context:CREATE TABLE table_name_5 (vol__number INTEGER, publication_date VARCHAR)
###question:What Type of game has a Results¹ of 10:1?###answer:SELECT type_of_game FROM table_name_33 WHERE results¹ = "10:1"###context:CREATE TABLE table_name_33 (type_of_game VARCHAR, results¹ VARCHAR)
###question:With the Type is game of friendly and the City Belgrade and November 2 as the Date what were the Results¹?###answer:SELECT results¹ FROM table_name_82 WHERE type_of_game = "friendly" AND city = "belgrade" AND date = "november 2"###context:CREATE TABLE table_name_82 (results¹ VARCHAR, date VARCHAR, type_of_g...
###question:What is the name of the City with December 21 as a Date?###answer:SELECT city FROM table_name_94 WHERE date = "december 21"###context:CREATE TABLE table_name_94 (city VARCHAR, date VARCHAR)
###question:What Type of game was played on Date of July 29?###answer:SELECT type_of_game FROM table_name_28 WHERE date = "july 29"###context:CREATE TABLE table_name_28 (type_of_game VARCHAR, date VARCHAR)
###question:What is the Results¹ that was a friendly game and played on June 25?###answer:SELECT results¹ FROM table_name_12 WHERE type_of_game = "friendly" AND date = "june 25"###context:CREATE TABLE table_name_12 (results¹ VARCHAR, type_of_game VARCHAR, date VARCHAR)
###question:What is the version shown for the Length of 4:58?###answer:SELECT version FROM table_name_1 WHERE length = "4:58"###context:CREATE TABLE table_name_1 (version VARCHAR, length VARCHAR)
###question:What is the version shown for the Length of 5:20, and shows Remixed by —?###answer:SELECT version FROM table_name_48 WHERE length = "5:20" AND remixed_by = "—"###context:CREATE TABLE table_name_48 (version VARCHAR, length VARCHAR, remixed_by VARCHAR)
###question:Record of 19–16 occurred on what date?###answer:SELECT date FROM table_name_78 WHERE record = "19–16"###context:CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR)
###question:Loss of postponed (rain) rescheduled for may 10 had what record?###answer:SELECT record FROM table_name_60 WHERE loss = "postponed (rain) rescheduled for may 10"###context:CREATE TABLE table_name_60 (record VARCHAR, loss VARCHAR)
###question:Opponent of @ braves, and a Loss of pelfrey (2–5) had what score?###answer:SELECT score FROM table_name_88 WHERE opponent = "@ braves" AND loss = "pelfrey (2–5)"###context:CREATE TABLE table_name_88 (score VARCHAR, opponent VARCHAR, loss VARCHAR)
###question:Attendance of 30,335 had what record?###answer:SELECT record FROM table_name_74 WHERE attendance = "30,335"###context:CREATE TABLE table_name_74 (record VARCHAR, attendance VARCHAR)
###question:Record of 22–20 involved what score?###answer:SELECT score FROM table_name_46 WHERE record = "22–20"###context:CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)
###question:Score of postponed (rain) rescheduled for June 27 had what loss?###answer:SELECT loss FROM table_name_32 WHERE score = "postponed (rain) rescheduled for june 27"###context:CREATE TABLE table_name_32 (loss VARCHAR, score VARCHAR)
###question:Station Ownership of eicb tv, and a Call sign of ktcj-ld is what virtual network?###answer:SELECT virtual_channel FROM table_name_25 WHERE station_ownership = "eicb tv" AND call_sign = "ktcj-ld"###context:CREATE TABLE table_name_25 (virtual_channel VARCHAR, station_ownership VARCHAR, call_sign VARCHAR)
###question:Call sign of k33ln-ld, and a Virtual channel of 33.5 is what network?###answer:SELECT network FROM table_name_52 WHERE call_sign = "k33ln-ld" AND virtual_channel = "33.5"###context:CREATE TABLE table_name_52 (network VARCHAR, call_sign VARCHAR, virtual_channel VARCHAR)
###question:Digital channel of 32 belongs to what analog channel?###answer:SELECT analog_channel FROM table_name_3 WHERE digital_channel = "32"###context:CREATE TABLE table_name_3 (analog_channel VARCHAR, digital_channel VARCHAR)
###question:Call sign of k43hb-ld is what virtual channel?###answer:SELECT virtual_channel FROM table_name_13 WHERE call_sign = "k43hb-ld"###context:CREATE TABLE table_name_13 (virtual_channel VARCHAR, call_sign VARCHAR)
###question:Virtual channel of 16.5 has what call sign?###answer:SELECT call_sign FROM table_name_23 WHERE virtual_channel = "16.5"###context:CREATE TABLE table_name_23 (call_sign VARCHAR, virtual_channel VARCHAR)
###question:Network of nbc is what digital channel?###answer:SELECT digital_channel FROM table_name_31 WHERE network = "nbc"###context:CREATE TABLE table_name_31 (digital_channel VARCHAR, network VARCHAR)
###question:What is the latest first year with 0 total medals and over 0 golds?###answer:SELECT MAX(first) FROM table_name_5 WHERE total > 0 AND gold > 0###context:CREATE TABLE table_name_5 (first INTEGER, total VARCHAR, gold VARCHAR)
###question:How many bronzes associated with over 0 total medals, 3 golds, and over 6 games?###answer:SELECT AVG(bronze) FROM table_name_9 WHERE total > 0 AND gold = 3 AND games > 6###context:CREATE TABLE table_name_9 (bronze INTEGER, games VARCHAR, total VARCHAR, gold VARCHAR)
###question:What is the fewest number of medals associated with under 6 games and over 0 golds?###answer:SELECT MIN(total) FROM table_name_44 WHERE games < 6 AND gold > 0###context:CREATE TABLE table_name_44 (total INTEGER, games VARCHAR, gold VARCHAR)
###question:How many games are associated with over 0 golds and a first year before 2008?###answer:SELECT SUM(games) FROM table_name_61 WHERE gold > 0 AND first < 2008###context:CREATE TABLE table_name_61 (games INTEGER, gold VARCHAR, first VARCHAR)
###question:What is the largest value for goals in rank over 3 with goal ration of 0.54?###answer:SELECT MAX(goals) FROM table_name_53 WHERE rank > 3 AND goal_ratio = 0.54###context:CREATE TABLE table_name_53 (goals INTEGER, rank VARCHAR, goal_ratio VARCHAR)
###question:How many goal ratios have rank of 2 with more than 44 games?###answer:SELECT COUNT(goal_ratio) FROM table_name_46 WHERE rank = 2 AND games > 44###context:CREATE TABLE table_name_46 (goal_ratio VARCHAR, rank VARCHAR, games VARCHAR)
###question:How many games have 23 goals with a rank greater than 9?###answer:SELECT COUNT(games) FROM table_name_62 WHERE goals = 23 AND rank > 9###context:CREATE TABLE table_name_62 (games VARCHAR, goals VARCHAR, rank VARCHAR)
###question:How many goals have a goal ration less than 0.8 with 56 games?###answer:SELECT COUNT(goals) FROM table_name_49 WHERE goal_ratio < 0.8 AND games = 56###context:CREATE TABLE table_name_49 (goals VARCHAR, goal_ratio VARCHAR, games VARCHAR)
###question:What Event has an Outcome of other open tournaments?###answer:SELECT event FROM table_name_34 WHERE outcome = "other open tournaments"###context:CREATE TABLE table_name_34 (event VARCHAR, outcome VARCHAR)
###question:What is the Outcome of the Singles Event in London, England?###answer:SELECT outcome FROM table_name_12 WHERE event = "singles" AND venue = "london, england"###context:CREATE TABLE table_name_12 (outcome VARCHAR, event VARCHAR, venue VARCHAR)
###question:What is the Opponent in final with an All England Open Outcome?###answer:SELECT opponent_in_the_final FROM table_name_58 WHERE outcome = "all england open"###context:CREATE TABLE table_name_58 (opponent_in_the_final VARCHAR, outcome VARCHAR)
###question:Who was the Opponent in London, England with an Outcome of 1?###answer:SELECT opponent_in_the_final FROM table_name_8 WHERE outcome = "1" AND venue = "london, england"###context:CREATE TABLE table_name_8 (opponent_in_the_final VARCHAR, outcome VARCHAR, venue VARCHAR)
###question:What is the Outcome when All England Open is the Opponent in the final?###answer:SELECT outcome FROM table_name_67 WHERE opponent_in_the_final = "all england open"###context:CREATE TABLE table_name_67 (outcome VARCHAR, opponent_in_the_final VARCHAR)
###question:What is the Name of the stage with a Length of 16.62km and Time of 15:10?###answer:SELECT name FROM table_name_11 WHERE length = "16.62km" AND time = "15:10"###context:CREATE TABLE table_name_11 (name VARCHAR, length VARCHAR, time VARCHAR)
###question:What is the Name of the stage with S. Loeb as the Winner with a Length of 13.04km and a Stage of SS12?###answer:SELECT name FROM table_name_8 WHERE winner = "s. loeb" AND length = "13.04km" AND stage = "ss12"###context:CREATE TABLE table_name_8 (name VARCHAR, stage VARCHAR, winner VARCHAR, length VARCHAR)
###question:What is the Name of the SS5 Stage?###answer:SELECT name FROM table_name_90 WHERE stage = "ss5"###context:CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR)
###question:What is the Name of the SS11 Stage?###answer:SELECT name FROM table_name_3 WHERE stage = "ss11"###context:CREATE TABLE table_name_3 (name VARCHAR, stage VARCHAR)
###question:How many games ended in a record of 30-28-4, with a March more than 1?###answer:SELECT COUNT(game) FROM table_name_42 WHERE record = "30-28-4" AND march > 1###context:CREATE TABLE table_name_42 (game VARCHAR, record VARCHAR, march VARCHAR)
###question:What competition has a result of W on June 30, 1966?###answer:SELECT competition FROM table_name_31 WHERE result = "w" AND date = "june 30, 1966"###context:CREATE TABLE table_name_31 (competition VARCHAR, result VARCHAR, date VARCHAR)
###question:What is the result of the International Friendly competition on May 15, 1966?###answer:SELECT result FROM table_name_89 WHERE competition = "international friendly" AND date = "may 15, 1966"###context:CREATE TABLE table_name_89 (result VARCHAR, competition VARCHAR, date VARCHAR)
###question:What is the result when the score is 4-0?###answer:SELECT result FROM table_name_82 WHERE score = "4-0"###context:CREATE TABLE table_name_82 (result VARCHAR, score VARCHAR)
###question:What is the code for rank 10?###answer:SELECT code__iata_icao_ FROM table_name_18 WHERE rank = 10###context:CREATE TABLE table_name_18 (code__iata_icao_ VARCHAR, rank VARCHAR)
###question:Name the week 6 when week 3 is 25 and week 7 is eliminated###answer:SELECT week_6 FROM table_name_85 WHERE week_3 = "25" AND week_7 = "eliminated"###context:CREATE TABLE table_name_85 (week_6 VARCHAR, week_3 VARCHAR, week_7 VARCHAR)
###question:Name the week 3 for team of mark/jennifer###answer:SELECT week_3 FROM table_name_99 WHERE team = "mark/jennifer"###context:CREATE TABLE table_name_99 (week_3 VARCHAR, team VARCHAR)
###question:Name the team for week 1 of 33###answer:SELECT team FROM table_name_66 WHERE week_1 = "33"###context:CREATE TABLE table_name_66 (team VARCHAR, week_1 VARCHAR)
###question:Name the week 3 with week 6 of 31+40=71###answer:SELECT week_3 FROM table_name_94 WHERE week_6 = 31 + 40 = 71###context:CREATE TABLE table_name_94 (week_3 VARCHAR, week_6 VARCHAR)
###question:Name the week 3 of 36###answer:SELECT week_1 FROM table_name_67 WHERE week_3 = "36"###context:CREATE TABLE table_name_67 (week_1 VARCHAR, week_3 VARCHAR)
###question:Name the team for week 1 of 28###answer:SELECT team FROM table_name_88 WHERE week_1 = "28"###context:CREATE TABLE table_name_88 (team VARCHAR, week_1 VARCHAR)
###question:Who was the home team in the game having a visitor of Chicago?###answer:SELECT home FROM table_name_21 WHERE visitor = "chicago"###context:CREATE TABLE table_name_21 (home VARCHAR, visitor VARCHAR)
###question:What is the date of the game that had a visitor of Chicago?###answer:SELECT date FROM table_name_22 WHERE visitor = "chicago"###context:CREATE TABLE table_name_22 (date VARCHAR, visitor VARCHAR)
###question:what album is 5:15 long###answer:SELECT version FROM table_name_60 WHERE length = "5:15"###context:CREATE TABLE table_name_60 (version VARCHAR, length VARCHAR)
###question:How many total show when silver is 0, bronze is 1, and the rank is less than 3?###answer:SELECT COUNT(total) FROM table_name_73 WHERE silver = 0 AND bronze = 1 AND rank < 3###context:CREATE TABLE table_name_73 (total VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR)
###question:What is the number for rank when gold is less than 0?###answer:SELECT SUM(rank) FROM table_name_91 WHERE gold < 0###context:CREATE TABLE table_name_91 (rank INTEGER, gold INTEGER)
###question:What is the average for silver when bronze is less than 1, and gold is more than 0?###answer:SELECT AVG(silver) FROM table_name_57 WHERE bronze < 1 AND gold > 0###context:CREATE TABLE table_name_57 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
###question:What is the average Gold when the rank is less than 3 and the bronze is less than 1?###answer:SELECT AVG(gold) FROM table_name_79 WHERE rank < 3 AND bronze < 1###context:CREATE TABLE table_name_79 (gold INTEGER, rank VARCHAR, bronze VARCHAR)
###question:What is the average Rank when there are 2 bronze, the total is 2 and gold is less than 0?###answer:SELECT AVG(rank) FROM table_name_19 WHERE bronze = 2 AND total = 2 AND gold < 0###context:CREATE TABLE table_name_19 (rank INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR)
###question:what player is playing on round 1###answer:SELECT player FROM table_name_53 WHERE round = "1"###context:CREATE TABLE table_name_53 (player VARCHAR, round VARCHAR)
###question:what is the school that hosts mikael renberg###answer:SELECT college_junior_club_team__league_ FROM table_name_91 WHERE player = "mikael renberg"###context:CREATE TABLE table_name_91 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
###question:Which area served has a Callsign of 5ddn?###answer:SELECT area_served FROM table_name_99 WHERE callsign = "5ddn"###context:CREATE TABLE table_name_99 (area_served VARCHAR, callsign VARCHAR)
###question:What is the purpose for Frequency of 102.3?###answer:SELECT purpose FROM table_name_65 WHERE frequency = "102.3"###context:CREATE TABLE table_name_65 (purpose VARCHAR, frequency VARCHAR)
###question:What is the current freq for Frequency of 104.7?###answer:SELECT freq_currently FROM table_name_67 WHERE frequency = "104.7"###context:CREATE TABLE table_name_67 (freq_currently VARCHAR, frequency VARCHAR)
###question:What was the score for the game with FK Bratstvo as home team?###answer:SELECT score FROM table_name_7 WHERE home = "fk bratstvo"###context:CREATE TABLE table_name_7 (score VARCHAR, home VARCHAR)
###question:What was the attendance of the game that had an away team of FK Mogren?###answer:SELECT attendance FROM table_name_89 WHERE guest = "fk mogren"###context:CREATE TABLE table_name_89 (attendance VARCHAR, guest VARCHAR)
###question:What was the final score for the match with a partnering of Tessa Price?###answer:SELECT score_in_the_final FROM table_name_48 WHERE partnering = "tessa price"###context:CREATE TABLE table_name_48 (score_in_the_final VARCHAR, partnering VARCHAR)
###question:What is the earliest round that Donald Mason had a pick larger than 114?###answer:SELECT MIN(round) FROM table_name_18 WHERE player = "donald mason" AND pick > 114###context:CREATE TABLE table_name_18 (round INTEGER, player VARCHAR, pick VARCHAR)
###question:What is the nationality of the player from Drexel who had a pick larger than 183?###answer:SELECT nationality FROM table_name_9 WHERE pick > 183 AND school_club_team = "drexel"###context:CREATE TABLE table_name_9 (nationality VARCHAR, pick VARCHAR, school_club_team VARCHAR)
###question:What country has grandstand stadium as the stadium?###answer:SELECT country FROM table_name_71 WHERE stadium = "grandstand stadium"###context:CREATE TABLE table_name_71 (country VARCHAR, stadium VARCHAR)
###question:What is the average capacity that has switzerland as the country?###answer:SELECT AVG(capacity) FROM table_name_19 WHERE country = "switzerland"###context:CREATE TABLE table_name_19 (capacity INTEGER, country VARCHAR)
###question:What is the average capacity that has rod laver arena as the stadium?###answer:SELECT AVG(capacity) FROM table_name_97 WHERE stadium = "rod laver arena"###context:CREATE TABLE table_name_97 (capacity INTEGER, stadium VARCHAR)
###question:How much January has a Record of 26–12–6, and Points smaller than 58?###answer:SELECT SUM(january) FROM table_name_37 WHERE record = "26–12–6" AND points < 58###context:CREATE TABLE table_name_37 (january INTEGER, record VARCHAR, points VARCHAR)
###question:Which Points have a Score of 4–1?###answer:SELECT MAX(points) FROM table_name_35 WHERE score = "4–1"###context:CREATE TABLE table_name_35 (points INTEGER, score VARCHAR)
###question:How many Games have a Score of 2–6, and Points larger than 62?###answer:SELECT COUNT(game) FROM table_name_38 WHERE score = "2–6" AND points > 62###context:CREATE TABLE table_name_38 (game VARCHAR, score VARCHAR, points VARCHAR)
###question:Tell me the region for catalog of 576 096-2###answer:SELECT region FROM table_name_61 WHERE catalog = "576 096-2"###context:CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR)
###question:Name the catalog for 26 march 1996###answer:SELECT catalog FROM table_name_2 WHERE date = "26 march 1996"###context:CREATE TABLE table_name_2 (catalog VARCHAR, date VARCHAR)
###question:Name the region with catalog of 576 097-2###answer:SELECT region FROM table_name_47 WHERE catalog = "576 097-2"###context:CREATE TABLE table_name_47 (region VARCHAR, catalog VARCHAR)
###question:The game that has a save of lynch (4) ended with what score?###answer:SELECT score FROM table_name_41 WHERE save = "lynch (4)"###context:CREATE TABLE table_name_41 (score VARCHAR, save VARCHAR)
###question:On which day did the Chicago Cubs have a loss of trout (4-2)?###answer:SELECT date FROM table_name_23 WHERE loss = "trout (4-2)"###context:CREATE TABLE table_name_23 (date VARCHAR, loss VARCHAR)
###question:What is the loss for the game against @ expos, with a save of parrett (2)?###answer:SELECT loss FROM table_name_28 WHERE opponent = "@ expos" AND save = "parrett (2)"###context:CREATE TABLE table_name_28 (loss VARCHAR, opponent VARCHAR, save VARCHAR)
###question:The game with a loss of smith (2-4) ended with what score?###answer:SELECT score FROM table_name_6 WHERE loss = "smith (2-4)"###context:CREATE TABLE table_name_6 (score VARCHAR, loss VARCHAR)
###question:What is the date for the game that included a loss of sutcliffe (10-4)?###answer:SELECT date FROM table_name_45 WHERE loss = "sutcliffe (10-4)"###context:CREATE TABLE table_name_45 (date VARCHAR, loss VARCHAR)
###question:What is the date of the Greater Greensboro Chrysler Classic?###answer:SELECT date FROM table_name_88 WHERE tournament = "greater greensboro chrysler classic"###context:CREATE TABLE table_name_88 (date VARCHAR, tournament VARCHAR)
###question:What is the score of the B.C. Open in New York?###answer:SELECT score FROM table_name_65 WHERE location = "new york" AND tournament = "b.c. open"###context:CREATE TABLE table_name_65 (score VARCHAR, location VARCHAR, tournament VARCHAR)
###question:Who is the winner of the tournament in Georgia on Oct 3?###answer:SELECT winner FROM table_name_90 WHERE location = "georgia" AND date = "oct 3"###context:CREATE TABLE table_name_90 (winner VARCHAR, location VARCHAR, date VARCHAR)
###question:What's the largest shirt number when the cap number is 5?###answer:SELECT MAX(shirt_number) FROM table_name_22 WHERE cap_number = 5###context:CREATE TABLE table_name_22 (shirt_number INTEGER, cap_number VARCHAR)
###question:Which team is in the Southeast with a home at Philips Arena?###answer:SELECT team FROM table_name_29 WHERE division = "southeast" AND home_arena = "philips arena"###context:CREATE TABLE table_name_29 (team VARCHAR, division VARCHAR, home_arena VARCHAR)
###question:Which division do the Toronto Raptors belong in?###answer:SELECT division FROM table_name_87 WHERE team = "toronto raptors"###context:CREATE TABLE table_name_87 (division VARCHAR, team VARCHAR)
###question:Which city includes the Target Center arena?###answer:SELECT city FROM table_name_62 WHERE home_arena = "target center"###context:CREATE TABLE table_name_62 (city VARCHAR, home_arena VARCHAR)
###question:Which conference is in Portland, Oregon?###answer:SELECT conference FROM table_name_80 WHERE city = "portland, oregon"###context:CREATE TABLE table_name_80 (conference VARCHAR, city VARCHAR)
###question:Which city includes Barclays Center?###answer:SELECT city FROM table_name_55 WHERE home_arena = "barclays center"###context:CREATE TABLE table_name_55 (city VARCHAR, home_arena VARCHAR)
###question:Which WYSIWYG Editor has a User-selectable themes of yes, and an Unread message tracking of session, and an Image attachment of plugin?###answer:SELECT wysiwyg_editor FROM table_name_79 WHERE user_selectable_themes = "yes" AND unread_message_tracking = "session" AND image_attachment = "plugin"###context:CRE...