webrlvr/random_sample/generated_tasks.json.bak2
2025-06-11 17:30:06 +08:00

8182 lines
127 KiB
Plaintext

[
{
"question": "What is the email address of the customer with ID 70?",
"answer": "emma.lopez@gmail.com",
"sql": "SELECT email FROM customer_entity WHERE entity_id = 70;",
"sql_execute_result": [
[
"emma.lopez@gmail.com"
]
]
},
{
"question": "How many customers are in the 'General' group?",
"answer": 70,
"sql": "SELECT entity_id, firstname, lastname FROM customer_entity WHERE group_id = (SELECT customer_group_id FROM customer_group WHERE customer_group_code = 'General');",
"sql_execute_result": [
[
1,
"Veronica",
"Costello"
],
[
2,
"John",
"Smith"
],
[
3,
"Jane",
"Doe"
],
[
4,
"Bob",
"Jones"
],
[
5,
"Sarah",
"Miller"
],
[
6,
"Julia",
"Williams"
],
[
7,
"Bob",
"Johnson"
],
[
8,
"Mary",
"Martin"
],
[
9,
"John",
"Lee"
],
[
10,
"Jane",
"Smith"
],
[
11,
"Daniel",
"Jackson"
],
[
12,
"Lisa",
"Kim"
],
[
13,
"Matt",
"Baker"
],
[
14,
"John",
"Doe"
],
[
15,
"Jane",
"Smith"
],
[
16,
"Samantha",
"Jones"
],
[
17,
"Lily",
"Potter"
],
[
18,
"Grace",
"Nguyen"
],
[
19,
"Lucy",
"Garcia"
],
[
20,
"Olivia",
"Lee"
],
[
21,
"Ava",
"Brown"
],
[
22,
"Sophie",
"Taylor"
],
[
23,
"Alex",
"Johnson"
],
[
24,
"Emma",
"Davis"
],
[
25,
"Adam",
"Garcia"
],
[
26,
"Jennifer",
"White"
],
[
27,
"Alex",
"Martin"
],
[
28,
"Lisa",
"Green"
],
[
29,
"Michael",
"Nguyen"
],
[
30,
"David",
"Lee"
],
[
31,
"Jason",
"Miller"
],
[
32,
"Katie",
"Wong"
],
[
33,
"Adam",
"Garcia"
],
[
34,
"Brian",
"Smith"
],
[
35,
"Samantha",
"Nguyen"
],
[
36,
"Alexander",
"Thomas"
],
[
37,
"Sam",
"Wilson"
],
[
38,
"Kate",
"Jones"
],
[
39,
"David",
"Smith"
],
[
40,
"Jessica",
"Nguyen"
],
[
41,
"Maxwell",
"Baker"
],
[
42,
"Emily",
"Chen"
],
[
43,
"Anna",
"Nguyen"
],
[
44,
"Roberto",
"Lopez"
],
[
45,
"Amanda",
"Kim"
],
[
46,
"Jane",
"Doe"
],
[
47,
"John",
"Smith"
],
[
48,
"Jessica",
"Chang"
],
[
49,
"James",
"Kim"
],
[
50,
"Samantha",
"Wu"
],
[
51,
"Robert",
"Johnson"
],
[
52,
"Sophia",
"Kim"
],
[
53,
"William",
"Chang"
],
[
54,
"Jessica",
"Wong"
],
[
55,
"Ethan",
"Garcia"
],
[
56,
"Olivia",
"Jackson"
],
[
57,
"Jacob",
"Rivera"
],
[
58,
"Sophia",
"Young"
],
[
59,
"Ryan",
"Tanaka"
],
[
60,
"Julie",
"Nguyen"
],
[
61,
"Matthew",
"Kim"
],
[
62,
"Emily",
"Wilson"
],
[
63,
"James",
"Baker"
],
[
64,
"Isabella",
"Santos"
],
[
65,
"Nathan",
"Chen"
],
[
66,
"Hannah",
"Lim"
],
[
67,
"Isaac",
"Rodriguez"
],
[
68,
"Natalie",
"Kim"
],
[
69,
"Sean",
"Miller"
],
[
70,
"Emma",
"Lopez"
]
]
},
{
"question": "How many items of product ID 1292 are currently in stock?",
"answer": 100,
"sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1292;",
"sql_execute_result": [
[
"100.0000"
]
]
},
{
"question": "What is the default name of the region with ID 880?",
"answer": "Medio Campidano",
"sql": "SELECT default_name FROM directory_country_region WHERE region_id = 880;",
"sql_execute_result": [
[
"Medio Campidano"
]
]
},
{
"question": "What is the current sequence value for orders?",
"answer": 308,
"sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value DESC LIMIT 1;",
"sql_execute_result": [
[
308
]
]
},
{
"question": "Find the product name for entity ID 1718 in the catalog.",
"answer": "Nona Fitness Tank-XS-Purple",
"sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1718 AND attribute_id = 73;",
"sql_execute_result": [
[
"Nona Fitness Tank-XS-Purple"
]
]
},
{
"question": "What is the country code for the region named 'Olt'?",
"answer": "RO",
"sql": "SELECT country_id FROM directory_country_region WHERE default_name = 'Olt';",
"sql_execute_result": [
[
"RO"
]
]
},
{
"question": "List all active sequence profiles.",
"answer": [
{
"profile_id": 1,
"meta_id": 1
},
{
"profile_id": 2,
"meta_id": 2
},
{
"profile_id": 3,
"meta_id": 3
},
{
"profile_id": 4,
"meta_id": 4
},
{
"profile_id": 5,
"meta_id": 5
},
{
"profile_id": 6,
"meta_id": 6
},
{
"profile_id": 7,
"meta_id": 7
},
{
"profile_id": 8,
"meta_id": 8
}
],
"sql": "SELECT profile_id, meta_id FROM sales_sequence_profile WHERE is_active = 1;",
"sql_execute_result": [
[
1,
1
],
[
2,
2
],
[
3,
3
],
[
4,
4
],
[
5,
5
],
[
6,
6
],
[
7,
7
],
[
8,
8
]
]
},
{
"question": "What is the sort order for the attribute option ID 95?",
"answer": 8,
"sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 95;",
"sql_execute_result": [
[
8
]
]
},
{
"question": "Find the SKU for the product with entity ID 1640.",
"answer": "Prima Compete Bra Top-S-Blue",
"sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1640 AND attribute_id = 73;",
"sql_execute_result": [
[
"Prima Compete Bra Top-S-Blue"
]
]
},
{
"question": "Find the image path for the product with entity ID 8.",
"answer": "/w/b/wb01-black-0.jpg",
"sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 8 AND attribute_id = 88;",
"sql_execute_result": [
[
"/w/b/wb01-black-0.jpg"
]
]
},
{
"question": "What is the country ID for the region code 'GR-L'?",
"answer": "GR",
"sql": "SELECT country_id FROM directory_country_region WHERE code = 'GR-L';",
"sql_execute_result": [
[
"GR"
]
]
},
{
"question": "What is the price of the product with SKU 'WS03-XS-Red'?",
"answer": "The price of the product with SKU 'WS03-XS-Red' is 29.00.",
"sql": "SELECT price FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
"sql_execute_result": [
[
"29.0000"
]
]
},
{
"question": "Find the tax amount for the product 'Minerva LumaTech\u2122 V-Tee'.",
"answer": "The tax amount for the product 'Minerva LumaTech\u2122 V-Tee' is 2.6400.",
"sql": "SELECT tax_amount FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
"sql_execute_result": [
[
"2.6400"
]
]
},
{
"question": "What is the ISO3 code for the country with ISO2 code 'TT'?",
"answer": "TTO",
"sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'TT';",
"sql_execute_result": [
[
"TTO"
]
]
},
{
"question": "How many products have a decimal attribute value of 1.000000?",
"answer": 1847,
"sql": "SELECT sku FROM catalog_product_entity WHERE entity_id IN (SELECT entity_id FROM catalog_product_entity_decimal WHERE value = '1.000000');",
"sql_execute_result": [
[
"MH01-L-Black"
],
[
"MH01-L-Gray"
],
[
"MH01-L-Orange"
],
[
"MH01-M-Black"
],
[
"MH01-M-Gray"
],
[
"MH01-M-Orange"
],
[
"MH01-S-Black"
],
[
"MH01-S-Gray"
],
[
"MH01-S-Orange"
],
[
"MH01-XL-Black"
],
[
"MH01-XL-Gray"
],
[
"MH01-XL-Orange"
],
[
"MH01-XS-Black"
],
[
"MH01-XS-Gray"
],
[
"MH01-XS-Orange"
],
[
"MH02-L-Black"
],
[
"MH02-L-Purple"
],
[
"MH02-L-Red"
],
[
"MH02-M-Black"
],
[
"MH02-M-Purple"
],
[
"MH02-M-Red"
],
[
"MH02-S-Black"
],
[
"MH02-S-Purple"
],
[
"MH02-S-Red"
],
[
"MH02-XL-Black"
],
[
"MH02-XL-Purple"
],
[
"MH02-XL-Red"
],
[
"MH02-XS-Black"
],
[
"MH02-XS-Purple"
],
[
"MH02-XS-Red"
],
[
"MH03-L-Black"
],
[
"MH03-L-Blue"
],
[
"MH03-L-Green"
],
[
"MH03-M-Black"
],
[
"MH03-M-Blue"
],
[
"MH03-M-Green"
],
[
"MH03-S-Black"
],
[
"MH03-S-Blue"
],
[
"MH03-S-Green"
],
[
"MH03-XL-Black"
],
[
"MH03-XL-Blue"
],
[
"MH03-XL-Green"
],
[
"MH03-XS-Black"
],
[
"MH03-XS-Blue"
],
[
"MH03-XS-Green"
],
[
"MH04-L-Green"
],
[
"MH04-L-White"
],
[
"MH04-L-Yellow"
],
[
"MH04-M-Green"
],
[
"MH04-M-White"
],
[
"MH04-M-Yellow"
],
[
"MH04-S-Green"
],
[
"MH04-S-White"
],
[
"MH04-S-Yellow"
],
[
"MH04-XL-Green"
],
[
"MH04-XL-White"
],
[
"MH04-XL-Yellow"
],
[
"MH04-XS-Green"
],
[
"MH04-XS-White"
],
[
"MH04-XS-Yellow"
],
[
"MH05-L-Green"
],
[
"MH05-L-Red"
],
[
"MH05-L-White"
],
[
"MH05-M-Green"
],
[
"MH05-M-Red"
],
[
"MH05-M-White"
],
[
"MH05-S-Green"
],
[
"MH05-S-Red"
],
[
"MH05-S-White"
],
[
"MH05-XL-Green"
],
[
"MH05-XL-Red"
],
[
"MH05-XL-White"
],
[
"MH05-XS-Green"
],
[
"MH05-XS-Red"
],
[
"MH05-XS-White"
],
[
"MH06-L-Black"
],
[
"MH06-L-Blue"
],
[
"MH06-L-Purple"
],
[
"MH06-M-Black"
],
[
"MH06-M-Blue"
],
[
"MH06-M-Purple"
],
[
"MH06-S-Black"
],
[
"MH06-S-Blue"
],
[
"MH06-S-Purple"
],
[
"MH06-XL-Black"
],
[
"MH06-XL-Blue"
],
[
"MH06-XL-Purple"
],
[
"MH06-XS-Black"
],
[
"MH06-XS-Blue"
],
[
"MH06-XS-Purple"
],
[
"MH07-L-Black"
],
[
"MH07-L-Gray"
],
[
"MH07-L-Green"
],
[
"MH07-M-Black"
],
[
"MH07-M-Gray"
],
[
"MH07-M-Green"
],
[
"MH07-S-Black"
],
[
"MH07-S-Gray"
],
[
"MH07-S-Green"
],
[
"MH07-XL-Black"
],
[
"MH07-XL-Gray"
],
[
"MH07-XL-Green"
],
[
"MH07-XS-Black"
],
[
"MH07-XS-Gray"
],
[
"MH07-XS-Green"
],
[
"MH08-L-Brown"
],
[
"MH08-L-Purple"
],
[
"MH08-L-Red"
],
[
"MH08-M-Brown"
],
[
"MH08-M-Purple"
],
[
"MH08-M-Red"
],
[
"MH08-S-Brown"
],
[
"MH08-S-Purple"
],
[
"MH08-S-Red"
],
[
"MH08-XL-Brown"
],
[
"MH08-XL-Purple"
],
[
"MH08-XL-Red"
],
[
"MH08-XS-Brown"
],
[
"MH08-XS-Purple"
],
[
"MH08-XS-Red"
],
[
"MH09-L-Blue"
],
[
"MH09-L-Green"
],
[
"MH09-L-Red"
],
[
"MH09-M-Blue"
],
[
"MH09-M-Green"
],
[
"MH09-M-Red"
],
[
"MH09-S-Blue"
],
[
"MH09-S-Green"
],
[
"MH09-S-Red"
],
[
"MH09-XL-Blue"
],
[
"MH09-XL-Green"
],
[
"MH09-XL-Red"
],
[
"MH09-XS-Blue"
],
[
"MH09-XS-Green"
],
[
"MH09-XS-Red"
],
[
"MH10-L-Black"
],
[
"MH10-L-Blue"
],
[
"MH10-L-Red"
],
[
"MH10-M-Black"
],
[
"MH10-M-Blue"
],
[
"MH10-M-Red"
],
[
"MH10-S-Black"
],
[
"MH10-S-Blue"
],
[
"MH10-S-Red"
],
[
"MH10-XL-Black"
],
[
"MH10-XL-Blue"
],
[
"MH10-XL-Red"
],
[
"MH10-XS-Black"
],
[
"MH10-XS-Blue"
],
[
"MH10-XS-Red"
],
[
"MH11-L-Orange"
],
[
"MH11-L-Red"
],
[
"MH11-L-White"
],
[
"MH11-M-Orange"
],
[
"MH11-M-Red"
],
[
"MH11-M-White"
],
[
"MH11-S-Orange"
],
[
"MH11-S-Red"
],
[
"MH11-S-White"
],
[
"MH11-XL-Orange"
],
[
"MH11-XL-Red"
],
[
"MH11-XL-White"
],
[
"MH11-XS-Orange"
],
[
"MH11-XS-Red"
],
[
"MH11-XS-White"
],
[
"MH12-L-Blue"
],
[
"MH12-L-Green"
],
[
"MH12-L-Red"
],
[
"MH12-M-Blue"
],
[
"MH12-M-Green"
],
[
"MH12-M-Red"
],
[
"MH12-S-Blue"
],
[
"MH12-S-Green"
],
[
"MH12-S-Red"
],
[
"MH12-XL-Blue"
],
[
"MH12-XL-Green"
],
[
"MH12-XL-Red"
],
[
"MH12-XS-Blue"
],
[
"MH12-XS-Green"
],
[
"MH12-XS-Red"
],
[
"MH13-L-Blue"
],
[
"MH13-L-Green"
],
[
"MH13-L-Lavender"
],
[
"MH13-M-Blue"
],
[
"MH13-M-Green"
],
[
"MH13-M-Lavender"
],
[
"MH13-S-Blue"
],
[
"MH13-S-Green"
],
[
"MH13-S-Lavender"
],
[
"MH13-XL-Blue"
],
[
"MH13-XL-Green"
],
[
"MH13-XL-Lavender"
],
[
"MH13-XS-Blue"
],
[
"MH13-XS-Green"
],
[
"MH13-XS-Lavender"
],
[
"MJ01-L-Orange"
],
[
"MJ01-L-Red"
],
[
"MJ01-L-Yellow"
],
[
"MJ01-M-Orange"
],
[
"MJ01-M-Red"
],
[
"MJ01-M-Yellow"
],
[
"MJ01-S-Orange"
],
[
"MJ01-S-Red"
],
[
"MJ01-S-Yellow"
],
[
"MJ01-XL-Orange"
],
[
"MJ01-XL-Red"
],
[
"MJ01-XL-Yellow"
],
[
"MJ01-XS-Orange"
],
[
"MJ01-XS-Red"
],
[
"MJ01-XS-Yellow"
],
[
"MJ02-L-Green"
],
[
"MJ02-L-Orange"
],
[
"MJ02-L-Red"
],
[
"MJ02-M-Green"
],
[
"MJ02-M-Orange"
],
[
"MJ02-M-Red"
],
[
"MJ02-S-Green"
],
[
"MJ02-S-Orange"
],
[
"MJ02-S-Red"
],
[
"MJ02-XL-Green"
],
[
"MJ02-XL-Orange"
],
[
"MJ02-XL-Red"
],
[
"MJ02-XS-Green"
],
[
"MJ02-XS-Orange"
],
[
"MJ02-XS-Red"
],
[
"MJ03-L-Black"
],
[
"MJ03-L-Green"
],
[
"MJ03-L-Red"
],
[
"MJ03-M-Black"
],
[
"MJ03-M-Green"
],
[
"MJ03-M-Red"
],
[
"MJ03-S-Black"
],
[
"MJ03-S-Green"
],
[
"MJ03-S-Red"
],
[
"MJ03-XL-Black"
],
[
"MJ03-XL-Green"
],
[
"MJ03-XL-Red"
],
[
"MJ03-XS-Black"
],
[
"MJ03-XS-Green"
],
[
"MJ03-XS-Red"
],
[
"MJ04-L-Black"
],
[
"MJ04-L-Blue"
],
[
"MJ04-L-Purple"
],
[
"MJ04-M-Black"
],
[
"MJ04-M-Blue"
],
[
"MJ04-M-Purple"
],
[
"MJ04-S-Black"
],
[
"MJ04-S-Blue"
],
[
"MJ04-S-Purple"
],
[
"MJ04-XL-Black"
],
[
"MJ04-XL-Blue"
],
[
"MJ04-XL-Purple"
],
[
"MJ04-XS-Black"
],
[
"MJ04-XS-Blue"
],
[
"MJ04-XS-Purple"
],
[
"MJ06-L-Blue"
],
[
"MJ06-L-Green"
],
[
"MJ06-L-Purple"
],
[
"MJ06-M-Blue"
],
[
"MJ06-M-Green"
],
[
"MJ06-M-Purple"
],
[
"MJ06-S-Blue"
],
[
"MJ06-S-Green"
],
[
"MJ06-S-Purple"
],
[
"MJ06-XL-Blue"
],
[
"MJ06-XL-Green"
],
[
"MJ06-XL-Purple"
],
[
"MJ06-XS-Blue"
],
[
"MJ06-XS-Green"
],
[
"MJ06-XS-Purple"
],
[
"MJ07-L-Black"
],
[
"MJ07-L-Red"
],
[
"MJ07-L-Yellow"
],
[
"MJ07-M-Black"
],
[
"MJ07-M-Red"
],
[
"MJ07-M-Yellow"
],
[
"MJ07-S-Black"
],
[
"MJ07-S-Red"
],
[
"MJ07-S-Yellow"
],
[
"MJ07-XL-Black"
],
[
"MJ07-XL-Red"
],
[
"MJ07-XL-Yellow"
],
[
"MJ07-XS-Black"
],
[
"MJ07-XS-Red"
],
[
"MJ07-XS-Yellow"
],
[
"MJ08-L-Blue"
],
[
"MJ08-L-Gray"
],
[
"MJ08-L-Green"
],
[
"MJ08-M-Blue"
],
[
"MJ08-M-Gray"
],
[
"MJ08-M-Green"
],
[
"MJ08-S-Blue"
],
[
"MJ08-S-Gray"
],
[
"MJ08-S-Green"
],
[
"MJ08-XL-Blue"
],
[
"MJ08-XL-Gray"
],
[
"MJ08-XL-Green"
],
[
"MJ08-XS-Blue"
],
[
"MJ08-XS-Gray"
],
[
"MJ08-XS-Green"
],
[
"MJ09-L-Blue"
],
[
"MJ09-L-White"
],
[
"MJ09-L-Yellow"
],
[
"MJ09-M-Blue"
],
[
"MJ09-M-White"
],
[
"MJ09-M-Yellow"
],
[
"MJ09-S-Blue"
],
[
"MJ09-S-White"
],
[
"MJ09-S-Yellow"
],
[
"MJ09-XL-Blue"
],
[
"MJ09-XL-White"
],
[
"MJ09-XL-Yellow"
],
[
"MJ09-XS-Blue"
],
[
"MJ09-XS-White"
],
[
"MJ09-XS-Yellow"
],
[
"MJ10-L-Black"
],
[
"MJ10-L-Orange"
],
[
"MJ10-L-Red"
],
[
"MJ10-M-Black"
],
[
"MJ10-M-Orange"
],
[
"MJ10-M-Red"
],
[
"MJ10-S-Black"
],
[
"MJ10-S-Orange"
],
[
"MJ10-S-Red"
],
[
"MJ10-XL-Black"
],
[
"MJ10-XL-Orange"
],
[
"MJ10-XL-Red"
],
[
"MJ10-XS-Black"
],
[
"MJ10-XS-Orange"
],
[
"MJ10-XS-Red"
],
[
"MJ11-L-Black"
],
[
"MJ11-L-Green"
],
[
"MJ11-L-Red"
],
[
"MJ11-M-Black"
],
[
"MJ11-M-Green"
],
[
"MJ11-M-Red"
],
[
"MJ11-S-Black"
],
[
"MJ11-S-Green"
],
[
"MJ11-S-Red"
],
[
"MJ11-XL-Black"
],
[
"MJ11-XL-Green"
],
[
"MJ11-XL-Red"
],
[
"MJ11-XS-Black"
],
[
"MJ11-XS-Green"
],
[
"MJ11-XS-Red"
],
[
"MJ12-L-Black"
],
[
"MJ12-L-Blue"
],
[
"MJ12-L-Orange"
],
[
"MJ12-M-Black"
],
[
"MJ12-M-Blue"
],
[
"MJ12-M-Orange"
],
[
"MJ12-S-Black"
],
[
"MJ12-S-Blue"
],
[
"MJ12-S-Orange"
],
[
"MJ12-XL-Black"
],
[
"MJ12-XL-Blue"
],
[
"MJ12-XL-Orange"
],
[
"MJ12-XS-Black"
],
[
"MJ12-XS-Blue"
],
[
"MJ12-XS-Orange"
],
[
"MP01-32-Black"
],
[
"MP01-32-Gray"
],
[
"MP01-32-Purple"
],
[
"MP01-33-Black"
],
[
"MP01-33-Gray"
],
[
"MP01-33-Purple"
],
[
"MP01-34-Black"
],
[
"MP01-34-Gray"
],
[
"MP01-34-Purple"
],
[
"MP01-36-Black"
],
[
"MP01-36-Gray"
],
[
"MP01-36-Purple"
],
[
"MP02-32-Blue"
],
[
"MP02-32-Gray"
],
[
"MP02-32-Red"
],
[
"MP02-33-Blue"
],
[
"MP02-33-Gray"
],
[
"MP02-33-Red"
],
[
"MP02-34-Blue"
],
[
"MP02-34-Gray"
],
[
"MP02-34-Red"
],
[
"MP02-36-Blue"
],
[
"MP02-36-Gray"
],
[
"MP02-36-Red"
],
[
"MP03-32-Blue"
],
[
"MP03-32-Green"
],
[
"MP03-32-Red"
],
[
"MP03-33-Blue"
],
[
"MP03-33-Green"
],
[
"MP03-33-Red"
],
[
"MP03-34-Blue"
],
[
"MP03-34-Green"
],
[
"MP03-34-Red"
],
[
"MP03-36-Blue"
],
[
"MP03-36-Green"
],
[
"MP03-36-Red"
],
[
"MP04-32-Black"
],
[
"MP04-32-Gray"
],
[
"MP04-32-Green"
],
[
"MP04-33-Black"
],
[
"MP04-33-Gray"
],
[
"MP04-33-Green"
],
[
"MP04-34-Black"
],
[
"MP04-34-Gray"
],
[
"MP04-34-Green"
],
[
"MP04-36-Black"
],
[
"MP04-36-Gray"
],
[
"MP04-36-Green"
],
[
"MP05-32-Black"
],
[
"MP05-32-Blue"
],
[
"MP05-32-Green"
],
[
"MP05-33-Black"
],
[
"MP05-33-Blue"
],
[
"MP05-33-Green"
],
[
"MP05-34-Black"
],
[
"MP05-34-Blue"
],
[
"MP05-34-Green"
],
[
"MP05-36-Black"
],
[
"MP05-36-Blue"
],
[
"MP05-36-Green"
],
[
"MP06-32-Gray"
],
[
"MP06-32-Green"
],
[
"MP06-32-Orange"
],
[
"MP06-33-Gray"
],
[
"MP06-33-Green"
],
[
"MP06-33-Orange"
],
[
"MP06-34-Gray"
],
[
"MP06-34-Green"
],
[
"MP06-34-Orange"
],
[
"MP06-36-Gray"
],
[
"MP06-36-Green"
],
[
"MP06-36-Orange"
],
[
"MP07-32-Black"
],
[
"MP07-32-Blue"
],
[
"MP07-32-Purple"
],
[
"MP07-33-Black"
],
[
"MP07-33-Blue"
],
[
"MP07-33-Purple"
],
[
"MP07-34-Black"
],
[
"MP07-34-Blue"
],
[
"MP07-34-Purple"
],
[
"MP07-36-Black"
],
[
"MP07-36-Blue"
],
[
"MP07-36-Purple"
],
[
"MP08-32-Blue"
],
[
"MP08-32-Green"
],
[
"MP08-32-Red"
],
[
"MP08-33-Blue"
],
[
"MP08-33-Green"
],
[
"MP08-33-Red"
],
[
"MP08-34-Blue"
],
[
"MP08-34-Green"
],
[
"MP08-34-Red"
],
[
"MP08-36-Blue"
],
[
"MP08-36-Green"
],
[
"MP08-36-Red"
],
[
"MP09-32-Black"
],
[
"MP09-32-Blue"
],
[
"MP09-32-Red"
],
[
"MP09-33-Black"
],
[
"MP09-33-Blue"
],
[
"MP09-33-Red"
],
[
"MP09-34-Black"
],
[
"MP09-34-Blue"
],
[
"MP09-34-Red"
],
[
"MP09-36-Black"
],
[
"MP09-36-Blue"
],
[
"MP09-36-Red"
],
[
"MP10-32-Black"
],
[
"MP10-32-Blue"
],
[
"MP10-32-Green"
],
[
"MP10-33-Black"
],
[
"MP10-33-Blue"
],
[
"MP10-33-Green"
],
[
"MP10-34-Black"
],
[
"MP10-34-Blue"
],
[
"MP10-34-Green"
],
[
"MP10-36-Black"
],
[
"MP10-36-Blue"
],
[
"MP10-36-Green"
],
[
"MP11-32-Blue"
],
[
"MP11-32-Brown"
],
[
"MP11-32-Green"
],
[
"MP11-33-Blue"
],
[
"MP11-33-Brown"
],
[
"MP11-33-Green"
],
[
"MP11-34-Blue"
],
[
"MP11-34-Brown"
],
[
"MP11-34-Green"
],
[
"MP11-36-Blue"
],
[
"MP11-36-Brown"
],
[
"MP11-36-Green"
],
[
"MP12-32-Black"
],
[
"MP12-32-Blue"
],
[
"MP12-32-Red"
],
[
"MP12-33-Black"
],
[
"MP12-33-Blue"
],
[
"MP12-33-Red"
],
[
"MP12-34-Black"
],
[
"MP12-34-Blue"
],
[
"MP12-34-Red"
],
[
"MP12-36-Black"
],
[
"MP12-36-Blue"
],
[
"MP12-36-Red"
],
[
"MS01-L-Black"
],
[
"MS01-L-Brown"
],
[
"MS01-L-Yellow"
],
[
"MS01-M-Black"
],
[
"MS01-M-Brown"
],
[
"MS01-M-Yellow"
],
[
"MS01-S-Black"
],
[
"MS01-S-Brown"
],
[
"MS01-S-Yellow"
],
[
"MS01-XL-Black"
],
[
"MS01-XL-Brown"
],
[
"MS01-XL-Yellow"
],
[
"MS01-XS-Black"
],
[
"MS01-XS-Brown"
],
[
"MS01-XS-Yellow"
],
[
"MS02-L-Black"
],
[
"MS02-L-Blue"
],
[
"MS02-L-Gray"
],
[
"MS02-M-Black"
],
[
"MS02-M-Blue"
],
[
"MS02-M-Gray"
],
[
"MS02-S-Black"
],
[
"MS02-S-Blue"
],
[
"MS02-S-Gray"
],
[
"MS02-XL-Black"
],
[
"MS02-XL-Blue"
],
[
"MS02-XL-Gray"
],
[
"MS02-XS-Black"
],
[
"MS02-XS-Blue"
],
[
"MS02-XS-Gray"
],
[
"MS03-L-Gray"
],
[
"MS03-L-Green"
],
[
"MS03-L-Orange"
],
[
"MS03-M-Gray"
],
[
"MS03-M-Green"
],
[
"MS03-M-Orange"
],
[
"MS03-S-Gray"
],
[
"MS03-S-Green"
],
[
"MS03-S-Orange"
],
[
"MS03-XL-Gray"
],
[
"MS03-XL-Green"
],
[
"MS03-XL-Orange"
],
[
"MS03-XS-Gray"
],
[
"MS03-XS-Green"
],
[
"MS03-XS-Orange"
],
[
"MS04-L-Black"
],
[
"MS04-L-Orange"
],
[
"MS04-L-Red"
],
[
"MS04-M-Black"
],
[
"MS04-M-Orange"
],
[
"MS04-M-Red"
],
[
"MS04-S-Black"
],
[
"MS04-S-Orange"
],
[
"MS04-S-Red"
],
[
"MS04-XL-Black"
],
[
"MS04-XL-Orange"
],
[
"MS04-XL-Red"
],
[
"MS04-XS-Black"
],
[
"MS04-XS-Orange"
],
[
"MS04-XS-Red"
],
[
"MS05-L-Black"
],
[
"MS05-L-Blue"
],
[
"MS05-L-Purple"
],
[
"MS05-M-Black"
],
[
"MS05-M-Blue"
],
[
"MS05-M-Purple"
],
[
"MS05-S-Black"
],
[
"MS05-S-Blue"
],
[
"MS05-S-Purple"
],
[
"MS05-XL-Black"
],
[
"MS05-XL-Blue"
],
[
"MS05-XL-Purple"
],
[
"MS05-XS-Black"
],
[
"MS05-XS-Blue"
],
[
"MS05-XS-Purple"
],
[
"MS06-L-Blue"
],
[
"MS06-L-Green"
],
[
"MS06-L-Yellow"
],
[
"MS06-M-Blue"
],
[
"MS06-M-Green"
],
[
"MS06-M-Yellow"
],
[
"MS06-S-Blue"
],
[
"MS06-S-Green"
],
[
"MS06-S-Yellow"
],
[
"MS06-XL-Blue"
],
[
"MS06-XL-Green"
],
[
"MS06-XL-Yellow"
],
[
"MS06-XS-Blue"
],
[
"MS06-XS-Green"
],
[
"MS06-XS-Yellow"
],
[
"MS07-L-Black"
],
[
"MS07-L-Green"
],
[
"MS07-L-White"
],
[
"MS07-M-Black"
],
[
"MS07-M-Green"
],
[
"MS07-M-White"
],
[
"MS07-S-Black"
],
[
"MS07-S-Green"
],
[
"MS07-S-White"
],
[
"MS07-XL-Black"
],
[
"MS07-XL-Green"
],
[
"MS07-XL-White"
],
[
"MS07-XS-Black"
],
[
"MS07-XS-Green"
],
[
"MS07-XS-White"
],
[
"MS08-L-Black"
],
[
"MS08-L-Blue"
],
[
"MS08-L-Red"
],
[
"MS08-M-Black"
],
[
"MS08-M-Blue"
],
[
"MS08-M-Red"
],
[
"MS08-S-Black"
],
[
"MS08-S-Blue"
],
[
"MS08-S-Red"
],
[
"MS08-XL-Black"
],
[
"MS08-XL-Blue"
],
[
"MS08-XL-Red"
],
[
"MS08-XS-Black"
],
[
"MS08-XS-Blue"
],
[
"MS08-XS-Red"
],
[
"MS09-L-Black"
],
[
"MS09-L-Blue"
],
[
"MS09-L-Red"
],
[
"MS09-M-Black"
],
[
"MS09-M-Blue"
],
[
"MS09-M-Red"
],
[
"MS09-S-Black"
],
[
"MS09-S-Blue"
],
[
"MS09-S-Red"
],
[
"MS09-XL-Black"
],
[
"MS09-XL-Blue"
],
[
"MS09-XL-Red"
],
[
"MS09-XS-Black"
],
[
"MS09-XS-Blue"
],
[
"MS09-XS-Red"
],
[
"MS10-L-Black"
],
[
"MS10-L-Blue"
],
[
"MS10-L-Red"
],
[
"MS10-M-Black"
],
[
"MS10-M-Blue"
],
[
"MS10-M-Red"
],
[
"MS10-S-Black"
],
[
"MS10-S-Blue"
],
[
"MS10-S-Red"
],
[
"MS10-XL-Black"
],
[
"MS10-XL-Blue"
],
[
"MS10-XL-Red"
],
[
"MS10-XS-Black"
],
[
"MS10-XS-Blue"
],
[
"MS10-XS-Red"
],
[
"MS11-L-Blue"
],
[
"MS11-L-Green"
],
[
"MS11-L-Yellow"
],
[
"MS11-M-Blue"
],
[
"MS11-M-Green"
],
[
"MS11-M-Yellow"
],
[
"MS11-S-Blue"
],
[
"MS11-S-Green"
],
[
"MS11-S-Yellow"
],
[
"MS11-XL-Blue"
],
[
"MS11-XL-Green"
],
[
"MS11-XL-Yellow"
],
[
"MS11-XS-Blue"
],
[
"MS11-XS-Green"
],
[
"MS11-XS-Yellow"
],
[
"MS12-L-Black"
],
[
"MS12-L-Blue"
],
[
"MS12-L-Red"
],
[
"MS12-M-Black"
],
[
"MS12-M-Blue"
],
[
"MS12-M-Red"
],
[
"MS12-S-Black"
],
[
"MS12-S-Blue"
],
[
"MS12-S-Red"
],
[
"MS12-XL-Black"
],
[
"MS12-XL-Blue"
],
[
"MS12-XL-Red"
],
[
"MS12-XS-Black"
],
[
"MS12-XS-Blue"
],
[
"MS12-XS-Red"
],
[
"MSH01-32-Black"
],
[
"MSH01-32-Blue"
],
[
"MSH01-32-Red"
],
[
"MSH01-33-Black"
],
[
"MSH01-33-Blue"
],
[
"MSH01-33-Red"
],
[
"MSH01-34-Black"
],
[
"MSH01-34-Blue"
],
[
"MSH01-34-Red"
],
[
"MSH01-36-Black"
],
[
"MSH01-36-Blue"
],
[
"MSH01-36-Red"
],
[
"MSH02-32-Black"
],
[
"MSH02-33-Black"
],
[
"MSH02-34-Black"
],
[
"MSH02-36-Black"
],
[
"MSH03-32-Black"
],
[
"MSH03-32-Blue"
],
[
"MSH03-32-Green"
],
[
"MSH03-33-Black"
],
[
"MSH03-33-Blue"
],
[
"MSH03-33-Green"
],
[
"MSH03-34-Black"
],
[
"MSH03-34-Blue"
],
[
"MSH03-34-Green"
],
[
"MSH03-36-Black"
],
[
"MSH03-36-Blue"
],
[
"MSH03-36-Green"
],
[
"MSH04-32-Gray"
],
[
"MSH04-32-Purple"
],
[
"MSH04-32-Yellow"
],
[
"MSH04-33-Gray"
],
[
"MSH04-33-Purple"
],
[
"MSH04-33-Yellow"
],
[
"MSH04-34-Gray"
],
[
"MSH04-34-Purple"
],
[
"MSH04-34-Yellow"
],
[
"MSH04-36-Gray"
],
[
"MSH04-36-Purple"
],
[
"MSH04-36-Yellow"
],
[
"MSH05-32-Black"
],
[
"MSH05-32-Blue"
],
[
"MSH05-32-Gray"
],
[
"MSH05-33-Black"
],
[
"MSH05-33-Blue"
],
[
"MSH05-33-Gray"
],
[
"MSH05-34-Black"
],
[
"MSH05-34-Blue"
],
[
"MSH05-34-Gray"
],
[
"MSH05-36-Black"
],
[
"MSH05-36-Blue"
],
[
"MSH05-36-Gray"
],
[
"MSH06-32-Blue"
],
[
"MSH06-32-Gray"
],
[
"MSH06-32-Red"
],
[
"MSH06-33-Blue"
],
[
"MSH06-33-Gray"
],
[
"MSH06-33-Red"
],
[
"MSH06-34-Blue"
],
[
"MSH06-34-Gray"
],
[
"MSH06-34-Red"
],
[
"MSH06-36-Blue"
],
[
"MSH06-36-Gray"
],
[
"MSH06-36-Red"
],
[
"MSH07-32-Black"
],
[
"MSH07-32-Blue"
],
[
"MSH07-32-Purple"
],
[
"MSH07-33-Black"
],
[
"MSH07-33-Blue"
],
[
"MSH07-33-Purple"
],
[
"MSH07-34-Black"
],
[
"MSH07-34-Blue"
],
[
"MSH07-34-Purple"
],
[
"MSH07-36-Black"
],
[
"MSH07-36-Blue"
],
[
"MSH07-36-Purple"
],
[
"MSH08-32-Black"
],
[
"MSH08-32-Blue"
],
[
"MSH08-32-Green"
],
[
"MSH08-33-Black"
],
[
"MSH08-33-Blue"
],
[
"MSH08-33-Green"
],
[
"MSH08-34-Black"
],
[
"MSH08-34-Blue"
],
[
"MSH08-34-Green"
],
[
"MSH08-36-Black"
],
[
"MSH08-36-Blue"
],
[
"MSH08-36-Green"
],
[
"MSH09-32-Black"
],
[
"MSH09-32-Blue"
],
[
"MSH09-32-Green"
],
[
"MSH09-33-Black"
],
[
"MSH09-33-Blue"
],
[
"MSH09-33-Green"
],
[
"MSH09-34-Black"
],
[
"MSH09-34-Blue"
],
[
"MSH09-34-Green"
],
[
"MSH09-36-Black"
],
[
"MSH09-36-Blue"
],
[
"MSH09-36-Green"
],
[
"MSH10-32-Blue"
],
[
"MSH10-32-Green"
],
[
"MSH10-32-Purple"
],
[
"MSH10-33-Blue"
],
[
"MSH10-33-Green"
],
[
"MSH10-33-Purple"
],
[
"MSH10-34-Blue"
],
[
"MSH10-34-Green"
],
[
"MSH10-34-Purple"
],
[
"MSH10-36-Blue"
],
[
"MSH10-36-Green"
],
[
"MSH10-36-Purple"
],
[
"MSH11-32-Black"
],
[
"MSH11-32-Blue"
],
[
"MSH11-32-Red"
],
[
"MSH11-33-Black"
],
[
"MSH11-33-Blue"
],
[
"MSH11-33-Red"
],
[
"MSH11-34-Black"
],
[
"MSH11-34-Blue"
],
[
"MSH11-34-Red"
],
[
"MSH11-36-Black"
],
[
"MSH11-36-Blue"
],
[
"MSH11-36-Red"
],
[
"MSH12-32-Black"
],
[
"MSH12-32-Gray"
],
[
"MSH12-32-Red"
],
[
"MSH12-33-Black"
],
[
"MSH12-33-Gray"
],
[
"MSH12-33-Red"
],
[
"MSH12-34-Black"
],
[
"MSH12-34-Gray"
],
[
"MSH12-34-Red"
],
[
"MSH12-36-Black"
],
[
"MSH12-36-Gray"
],
[
"MSH12-36-Red"
],
[
"MT01-L-Gray"
],
[
"MT01-L-Orange"
],
[
"MT01-L-Red"
],
[
"MT01-M-Gray"
],
[
"MT01-M-Orange"
],
[
"MT01-M-Red"
],
[
"MT01-S-Gray"
],
[
"MT01-S-Orange"
],
[
"MT01-S-Red"
],
[
"MT01-XL-Gray"
],
[
"MT01-XL-Orange"
],
[
"MT01-XL-Red"
],
[
"MT01-XS-Gray"
],
[
"MT01-XS-Orange"
],
[
"MT01-XS-Red"
],
[
"MT02-L-Gray"
],
[
"MT02-L-Red"
],
[
"MT02-L-White"
],
[
"MT02-M-Gray"
],
[
"MT02-M-Red"
],
[
"MT02-M-White"
],
[
"MT02-S-Gray"
],
[
"MT02-S-Red"
],
[
"MT02-S-White"
],
[
"MT02-XL-Gray"
],
[
"MT02-XL-Red"
],
[
"MT02-XL-White"
],
[
"MT02-XS-Gray"
],
[
"MT02-XS-Red"
],
[
"MT02-XS-White"
],
[
"MT03-L-Blue"
],
[
"MT03-L-Red"
],
[
"MT03-L-Yellow"
],
[
"MT03-M-Blue"
],
[
"MT03-M-Red"
],
[
"MT03-M-Yellow"
],
[
"MT03-S-Blue"
],
[
"MT03-S-Red"
],
[
"MT03-S-Yellow"
],
[
"MT03-XL-Blue"
],
[
"MT03-XL-Red"
],
[
"MT03-XL-Yellow"
],
[
"MT03-XS-Blue"
],
[
"MT03-XS-Red"
],
[
"MT03-XS-Yellow"
],
[
"MT04-L-Blue"
],
[
"MT04-M-Blue"
],
[
"MT04-S-Blue"
],
[
"MT04-XL-Blue"
],
[
"MT04-XS-Blue"
],
[
"MT05-L-Blue"
],
[
"MT05-M-Blue"
],
[
"MT05-S-Blue"
],
[
"MT05-XL-Blue"
],
[
"MT05-XS-Blue"
],
[
"MT06-L-Black"
],
[
"MT06-M-Black"
],
[
"MT06-S-Black"
],
[
"MT06-XL-Black"
],
[
"MT06-XS-Black"
],
[
"MT07-L-Gray"
],
[
"MT07-M-Gray"
],
[
"MT07-S-Gray"
],
[
"MT07-XL-Gray"
],
[
"MT07-XS-Gray"
],
[
"MT08-L-Green"
],
[
"MT08-M-Green"
],
[
"MT08-S-Green"
],
[
"MT08-XL-Green"
],
[
"MT08-XS-Green"
],
[
"MT09-L-Blue"
],
[
"MT09-M-Blue"
],
[
"MT09-S-Blue"
],
[
"MT09-XL-Blue"
],
[
"MT09-XS-Blue"
],
[
"MT10-L-Yellow"
],
[
"MT10-M-Yellow"
],
[
"MT10-S-Yellow"
],
[
"MT10-XL-Yellow"
],
[
"MT10-XS-Yellow"
],
[
"MT11-L-Blue"
],
[
"MT11-M-Blue"
],
[
"MT11-S-Blue"
],
[
"MT11-XL-Blue"
],
[
"MT11-XS-Blue"
],
[
"MT12-L-Blue"
],
[
"MT12-M-Blue"
],
[
"MT12-S-Blue"
],
[
"MT12-XL-Blue"
],
[
"MT12-XS-Blue"
],
[
"WB01-L-Black"
],
[
"WB01-L-Gray"
],
[
"WB01-L-Purple"
],
[
"WB01-M-Black"
],
[
"WB01-M-Gray"
],
[
"WB01-M-Purple"
],
[
"WB01-S-Black"
],
[
"WB01-S-Gray"
],
[
"WB01-S-Purple"
],
[
"WB01-XL-Black"
],
[
"WB01-XL-Gray"
],
[
"WB01-XL-Purple"
],
[
"WB01-XS-Black"
],
[
"WB01-XS-Gray"
],
[
"WB01-XS-Purple"
],
[
"WB02-L-Blue"
],
[
"WB02-L-Orange"
],
[
"WB02-L-Yellow"
],
[
"WB02-M-Blue"
],
[
"WB02-M-Orange"
],
[
"WB02-M-Yellow"
],
[
"WB02-S-Blue"
],
[
"WB02-S-Orange"
],
[
"WB02-S-Yellow"
],
[
"WB02-XL-Blue"
],
[
"WB02-XL-Orange"
],
[
"WB02-XL-Yellow"
],
[
"WB02-XS-Blue"
],
[
"WB02-XS-Orange"
],
[
"WB02-XS-Yellow"
],
[
"WB03-L-Green"
],
[
"WB03-L-Red"
],
[
"WB03-L-Yellow"
],
[
"WB03-M-Green"
],
[
"WB03-M-Red"
],
[
"WB03-M-Yellow"
],
[
"WB03-S-Green"
],
[
"WB03-S-Red"
],
[
"WB03-S-Yellow"
],
[
"WB03-XL-Green"
],
[
"WB03-XL-Red"
],
[
"WB03-XL-Yellow"
],
[
"WB03-XS-Green"
],
[
"WB03-XS-Red"
],
[
"WB03-XS-Yellow"
],
[
"WB04-L-Blue"
],
[
"WB04-L-Purple"
],
[
"WB04-L-Yellow"
],
[
"WB04-M-Blue"
],
[
"WB04-M-Purple"
],
[
"WB04-M-Yellow"
],
[
"WB04-S-Blue"
],
[
"WB04-S-Purple"
],
[
"WB04-S-Yellow"
],
[
"WB04-XL-Blue"
],
[
"WB04-XL-Purple"
],
[
"WB04-XL-Yellow"
],
[
"WB04-XS-Blue"
],
[
"WB04-XS-Purple"
],
[
"WB04-XS-Yellow"
],
[
"WB05-L-Black"
],
[
"WB05-L-Orange"
],
[
"WB05-L-Purple"
],
[
"WB05-M-Black"
],
[
"WB05-M-Orange"
],
[
"WB05-M-Purple"
],
[
"WB05-S-Black"
],
[
"WB05-S-Orange"
],
[
"WB05-S-Purple"
],
[
"WB05-XL-Black"
],
[
"WB05-XL-Orange"
],
[
"WB05-XL-Purple"
],
[
"WB05-XS-Black"
],
[
"WB05-XS-Orange"
],
[
"WB05-XS-Purple"
],
[
"WH01-L-Green"
],
[
"WH01-L-Orange"
],
[
"WH01-L-Purple"
],
[
"WH01-M-Green"
],
[
"WH01-M-Orange"
],
[
"WH01-M-Purple"
],
[
"WH01-S-Green"
],
[
"WH01-S-Orange"
],
[
"WH01-S-Purple"
],
[
"WH01-XL-Green"
],
[
"WH01-XL-Orange"
],
[
"WH01-XL-Purple"
],
[
"WH01-XS-Green"
],
[
"WH01-XS-Orange"
],
[
"WH01-XS-Purple"
],
[
"WH02-L-Blue"
],
[
"WH02-L-Green"
],
[
"WH02-L-Orange"
],
[
"WH02-M-Blue"
],
[
"WH02-M-Green"
],
[
"WH02-M-Orange"
],
[
"WH02-S-Blue"
],
[
"WH02-S-Green"
],
[
"WH02-S-Orange"
],
[
"WH02-XL-Blue"
],
[
"WH02-XL-Green"
],
[
"WH02-XL-Orange"
],
[
"WH02-XS-Blue"
],
[
"WH02-XS-Green"
],
[
"WH02-XS-Orange"
],
[
"WH03-L-Green"
],
[
"WH03-L-Purple"
],
[
"WH03-L-Red"
],
[
"WH03-M-Green"
],
[
"WH03-M-Purple"
],
[
"WH03-M-Red"
],
[
"WH03-S-Green"
],
[
"WH03-S-Purple"
],
[
"WH03-S-Red"
],
[
"WH03-XL-Green"
],
[
"WH03-XL-Purple"
],
[
"WH03-XL-Red"
],
[
"WH03-XS-Green"
],
[
"WH03-XS-Purple"
],
[
"WH03-XS-Red"
],
[
"WH04-L-Blue"
],
[
"WH04-L-Orange"
],
[
"WH04-L-Purple"
],
[
"WH04-M-Blue"
],
[
"WH04-M-Orange"
],
[
"WH04-M-Purple"
],
[
"WH04-S-Blue"
],
[
"WH04-S-Orange"
],
[
"WH04-S-Purple"
],
[
"WH04-XL-Blue"
],
[
"WH04-XL-Orange"
],
[
"WH04-XL-Purple"
],
[
"WH04-XS-Blue"
],
[
"WH04-XS-Orange"
],
[
"WH04-XS-Purple"
],
[
"WH05-L-Orange"
],
[
"WH05-L-Purple"
],
[
"WH05-L-White"
],
[
"WH05-M-Orange"
],
[
"WH05-M-Purple"
],
[
"WH05-M-White"
],
[
"WH05-S-Orange"
],
[
"WH05-S-Purple"
],
[
"WH05-S-White"
],
[
"WH05-XL-Orange"
],
[
"WH05-XL-Purple"
],
[
"WH05-XL-White"
],
[
"WH05-XS-Orange"
],
[
"WH05-XS-Purple"
],
[
"WH05-XS-White"
],
[
"WH06-L-Purple"
],
[
"WH06-M-Purple"
],
[
"WH06-S-Purple"
],
[
"WH06-XL-Purple"
],
[
"WH06-XS-Purple"
],
[
"WH07-L-Gray"
],
[
"WH07-L-Purple"
],
[
"WH07-L-White"
],
[
"WH07-M-Gray"
],
[
"WH07-M-Purple"
],
[
"WH07-M-White"
],
[
"WH07-S-Gray"
],
[
"WH07-S-Purple"
],
[
"WH07-S-White"
],
[
"WH07-XL-Gray"
],
[
"WH07-XL-Purple"
],
[
"WH07-XL-White"
],
[
"WH07-XS-Gray"
],
[
"WH07-XS-Purple"
],
[
"WH07-XS-White"
],
[
"WH08-L-Orange"
],
[
"WH08-L-Purple"
],
[
"WH08-L-White"
],
[
"WH08-M-Orange"
],
[
"WH08-M-Purple"
],
[
"WH08-M-White"
],
[
"WH08-S-Orange"
],
[
"WH08-S-Purple"
],
[
"WH08-S-White"
],
[
"WH08-XL-Orange"
],
[
"WH08-XL-Purple"
],
[
"WH08-XL-White"
],
[
"WH08-XS-Orange"
],
[
"WH08-XS-Purple"
],
[
"WH08-XS-White"
],
[
"WH09-L-Green"
],
[
"WH09-L-Purple"
],
[
"WH09-L-Red"
],
[
"WH09-M-Green"
],
[
"WH09-M-Purple"
],
[
"WH09-M-Red"
],
[
"WH09-S-Green"
],
[
"WH09-S-Purple"
],
[
"WH09-S-Red"
],
[
"WH09-XL-Green"
],
[
"WH09-XL-Purple"
],
[
"WH09-XL-Red"
],
[
"WH09-XS-Green"
],
[
"WH09-XS-Purple"
],
[
"WH09-XS-Red"
],
[
"WH10-L-Blue"
],
[
"WH10-L-Gray"
],
[
"WH10-L-Yellow"
],
[
"WH10-M-Blue"
],
[
"WH10-M-Gray"
],
[
"WH10-M-Yellow"
],
[
"WH10-S-Blue"
],
[
"WH10-S-Gray"
],
[
"WH10-S-Yellow"
],
[
"WH10-XL-Blue"
],
[
"WH10-XL-Gray"
],
[
"WH10-XL-Yellow"
],
[
"WH10-XS-Blue"
],
[
"WH10-XS-Gray"
],
[
"WH10-XS-Yellow"
],
[
"WH11-L-Blue"
],
[
"WH11-L-Green"
],
[
"WH11-L-Orange"
],
[
"WH11-M-Blue"
],
[
"WH11-M-Green"
],
[
"WH11-M-Orange"
],
[
"WH11-S-Blue"
],
[
"WH11-S-Green"
],
[
"WH11-S-Orange"
],
[
"WH11-XL-Blue"
],
[
"WH11-XL-Green"
],
[
"WH11-XL-Orange"
],
[
"WH11-XS-Blue"
],
[
"WH11-XS-Green"
],
[
"WH11-XS-Orange"
],
[
"WH12-L-Gray"
],
[
"WH12-L-Green"
],
[
"WH12-L-Purple"
],
[
"WH12-M-Gray"
],
[
"WH12-M-Green"
],
[
"WH12-M-Purple"
],
[
"WH12-S-Gray"
],
[
"WH12-S-Green"
],
[
"WH12-S-Purple"
],
[
"WH12-XL-Gray"
],
[
"WH12-XL-Green"
],
[
"WH12-XL-Purple"
],
[
"WH12-XS-Gray"
],
[
"WH12-XS-Green"
],
[
"WH12-XS-Purple"
],
[
"WJ01-L-Blue"
],
[
"WJ01-L-Red"
],
[
"WJ01-L-Yellow"
],
[
"WJ01-M-Blue"
],
[
"WJ01-M-Red"
],
[
"WJ01-M-Yellow"
],
[
"WJ01-S-Blue"
],
[
"WJ01-S-Red"
],
[
"WJ01-S-Yellow"
],
[
"WJ02-L-Black"
],
[
"WJ02-L-Blue"
],
[
"WJ02-L-Gray"
],
[
"WJ02-M-Black"
],
[
"WJ02-M-Blue"
],
[
"WJ02-M-Gray"
],
[
"WJ02-S-Black"
],
[
"WJ02-S-Blue"
],
[
"WJ02-S-Gray"
],
[
"WJ02-XL-Black"
],
[
"WJ02-XL-Blue"
],
[
"WJ02-XL-Gray"
],
[
"WJ02-XS-Black"
],
[
"WJ02-XS-Blue"
],
[
"WJ02-XS-Gray"
],
[
"WJ03-L-Blue"
],
[
"WJ03-L-Orange"
],
[
"WJ03-L-Red"
],
[
"WJ03-M-Blue"
],
[
"WJ03-M-Orange"
],
[
"WJ03-M-Red"
],
[
"WJ03-S-Blue"
],
[
"WJ03-S-Orange"
],
[
"WJ03-S-Red"
],
[
"WJ03-XL-Blue"
],
[
"WJ03-XL-Orange"
],
[
"WJ03-XL-Red"
],
[
"WJ03-XS-Blue"
],
[
"WJ03-XS-Orange"
],
[
"WJ03-XS-Red"
],
[
"WJ04-L-Orange"
],
[
"WJ04-L-Red"
],
[
"WJ04-L-White"
],
[
"WJ04-M-Orange"
],
[
"WJ04-M-Red"
],
[
"WJ04-M-White"
],
[
"WJ04-S-Orange"
],
[
"WJ04-S-Red"
],
[
"WJ04-S-White"
],
[
"WJ04-XL-Orange"
],
[
"WJ04-XL-Red"
],
[
"WJ04-XL-White"
],
[
"WJ04-XS-Orange"
],
[
"WJ04-XS-Red"
],
[
"WJ04-XS-White"
],
[
"WJ05-L-Brown"
],
[
"WJ05-L-Green"
],
[
"WJ05-L-Red"
],
[
"WJ05-M-Brown"
],
[
"WJ05-M-Green"
],
[
"WJ05-M-Red"
],
[
"WJ05-S-Brown"
],
[
"WJ05-S-Green"
],
[
"WJ05-S-Red"
],
[
"WJ05-XL-Brown"
],
[
"WJ05-XL-Green"
],
[
"WJ05-XL-Red"
],
[
"WJ05-XS-Brown"
],
[
"WJ05-XS-Green"
],
[
"WJ05-XS-Red"
],
[
"WJ06-L-Blue"
],
[
"WJ06-L-Green"
],
[
"WJ06-L-Purple"
],
[
"WJ06-M-Blue"
],
[
"WJ06-M-Green"
],
[
"WJ06-M-Purple"
],
[
"WJ06-S-Blue"
],
[
"WJ06-S-Green"
],
[
"WJ06-S-Purple"
],
[
"WJ06-XL-Blue"
],
[
"WJ06-XL-Green"
],
[
"WJ06-XL-Purple"
],
[
"WJ06-XS-Blue"
],
[
"WJ06-XS-Green"
],
[
"WJ06-XS-Purple"
],
[
"WJ07-L-Orange"
],
[
"WJ07-L-Purple"
],
[
"WJ07-L-Red"
],
[
"WJ07-M-Orange"
],
[
"WJ07-M-Purple"
],
[
"WJ07-M-Red"
],
[
"WJ07-S-Orange"
],
[
"WJ07-S-Purple"
],
[
"WJ07-S-Red"
],
[
"WJ07-XL-Orange"
],
[
"WJ07-XL-Purple"
],
[
"WJ07-XL-Red"
],
[
"WJ07-XS-Orange"
],
[
"WJ07-XS-Purple"
],
[
"WJ07-XS-Red"
],
[
"WJ08-L-Gray"
],
[
"WJ08-L-Orange"
],
[
"WJ08-L-Purple"
],
[
"WJ08-M-Gray"
],
[
"WJ08-M-Orange"
],
[
"WJ08-M-Purple"
],
[
"WJ08-S-Gray"
],
[
"WJ08-S-Orange"
],
[
"WJ08-S-Purple"
],
[
"WJ08-XL-Gray"
],
[
"WJ08-XL-Orange"
],
[
"WJ08-XL-Purple"
],
[
"WJ08-XS-Gray"
],
[
"WJ08-XS-Orange"
],
[
"WJ08-XS-Purple"
],
[
"WJ09-L-Blue"
],
[
"WJ09-L-Gray"
],
[
"WJ09-L-Green"
],
[
"WJ09-M-Blue"
],
[
"WJ09-M-Gray"
],
[
"WJ09-M-Green"
],
[
"WJ09-S-Blue"
],
[
"WJ09-S-Gray"
],
[
"WJ09-S-Green"
],
[
"WJ09-XL-Blue"
],
[
"WJ09-XL-Gray"
],
[
"WJ09-XL-Green"
],
[
"WJ09-XS-Blue"
],
[
"WJ09-XS-Gray"
],
[
"WJ09-XS-Green"
],
[
"WJ10-L-Black"
],
[
"WJ10-L-Orange"
],
[
"WJ10-L-Yellow"
],
[
"WJ10-M-Black"
],
[
"WJ10-M-Orange"
],
[
"WJ10-M-Yellow"
],
[
"WJ10-S-Black"
],
[
"WJ10-S-Orange"
],
[
"WJ10-S-Yellow"
],
[
"WJ10-XL-Black"
],
[
"WJ10-XL-Orange"
],
[
"WJ10-XL-Yellow"
],
[
"WJ10-XS-Black"
],
[
"WJ10-XS-Orange"
],
[
"WJ10-XS-Yellow"
],
[
"WJ11-L-Black"
],
[
"WJ11-L-Blue"
],
[
"WJ11-L-Orange"
],
[
"WJ11-M-Black"
],
[
"WJ11-M-Blue"
],
[
"WJ11-M-Orange"
],
[
"WJ11-S-Black"
],
[
"WJ11-S-Blue"
],
[
"WJ11-S-Orange"
],
[
"WJ11-XL-Black"
],
[
"WJ11-XL-Blue"
],
[
"WJ11-XL-Orange"
],
[
"WJ11-XS-Black"
],
[
"WJ11-XS-Blue"
],
[
"WJ11-XS-Orange"
],
[
"WJ12-L-Black"
],
[
"WJ12-L-Blue"
],
[
"WJ12-L-Purple"
],
[
"WJ12-M-Black"
],
[
"WJ12-M-Blue"
],
[
"WJ12-M-Purple"
],
[
"WJ12-S-Black"
],
[
"WJ12-S-Blue"
],
[
"WJ12-S-Purple"
],
[
"WJ12-XL-Black"
],
[
"WJ12-XL-Blue"
],
[
"WJ12-XL-Purple"
],
[
"WJ12-XS-Black"
],
[
"WJ12-XS-Blue"
],
[
"WJ12-XS-Purple"
],
[
"WP01-28-Black"
],
[
"WP01-28-Gray"
],
[
"WP01-28-White"
],
[
"WP01-29-Black"
],
[
"WP01-29-Gray"
],
[
"WP01-29-White"
],
[
"WP02-28-Blue"
],
[
"WP02-28-Purple"
],
[
"WP02-28-Red"
],
[
"WP02-29-Blue"
],
[
"WP02-29-Purple"
],
[
"WP02-29-Red"
],
[
"WP03-28-Black"
],
[
"WP03-28-Blue"
],
[
"WP03-28-Purple"
],
[
"WP03-29-Black"
],
[
"WP03-29-Blue"
],
[
"WP03-29-Purple"
],
[
"WP04-28-Black"
],
[
"WP04-28-Blue"
],
[
"WP04-28-White"
],
[
"WP04-29-Black"
],
[
"WP04-29-Blue"
],
[
"WP04-29-White"
],
[
"WP05-28-Blue"
],
[
"WP05-28-Gray"
],
[
"WP05-28-Red"
],
[
"WP05-29-Blue"
],
[
"WP05-29-Gray"
],
[
"WP05-29-Red"
],
[
"WP06-28-Black"
],
[
"WP06-28-Blue"
],
[
"WP06-28-Orange"
],
[
"WP06-29-Black"
],
[
"WP06-29-Blue"
],
[
"WP06-29-Orange"
],
[
"WP07-28-Black"
],
[
"WP07-28-Blue"
],
[
"WP07-28-Orange"
],
[
"WP07-29-Black"
],
[
"WP07-29-Blue"
],
[
"WP07-29-Orange"
],
[
"WP08-28-Black"
],
[
"WP08-28-Green"
],
[
"WP08-28-Red"
],
[
"WP08-29-Black"
],
[
"WP08-29-Green"
],
[
"WP08-29-Red"
],
[
"WP09-28-Black"
],
[
"WP09-28-Blue"
],
[
"WP09-28-Purple"
],
[
"WP09-29-Black"
],
[
"WP09-29-Blue"
],
[
"WP09-29-Purple"
],
[
"WP10-28-Black"
],
[
"WP10-28-Gray"
],
[
"WP10-28-White"
],
[
"WP10-29-Black"
],
[
"WP10-29-Gray"
],
[
"WP10-29-White"
],
[
"WP11-28-Blue"
],
[
"WP11-28-Green"
],
[
"WP11-28-Red"
],
[
"WP11-29-Blue"
],
[
"WP11-29-Green"
],
[
"WP11-29-Red"
],
[
"WP12-28-Blue"
],
[
"WP12-28-Gray"
],
[
"WP12-28-Green"
],
[
"WP12-29-Blue"
],
[
"WP12-29-Gray"
],
[
"WP12-29-Green"
],
[
"WP13-28-Blue"
],
[
"WP13-28-Green"
],
[
"WP13-28-Orange"
],
[
"WP13-29-Blue"
],
[
"WP13-29-Green"
],
[
"WP13-29-Orange"
],
[
"WS01-L-Black"
],
[
"WS01-L-Green"
],
[
"WS01-L-Yellow"
],
[
"WS01-M-Black"
],
[
"WS01-M-Green"
],
[
"WS01-M-Yellow"
],
[
"WS01-S-Black"
],
[
"WS01-S-Green"
],
[
"WS01-S-Yellow"
],
[
"WS01-XL-Black"
],
[
"WS01-XL-Green"
],
[
"WS01-XL-Yellow"
],
[
"WS01-XS-Black"
],
[
"WS01-XS-Green"
],
[
"WS01-XS-Yellow"
],
[
"WS02-L-Blue"
],
[
"WS02-L-Green"
],
[
"WS02-L-Red"
],
[
"WS02-M-Blue"
],
[
"WS02-M-Green"
],
[
"WS02-M-Red"
],
[
"WS02-S-Blue"
],
[
"WS02-S-Green"
],
[
"WS02-S-Red"
],
[
"WS02-XL-Blue"
],
[
"WS02-XL-Green"
],
[
"WS02-XL-Red"
],
[
"WS02-XS-Blue"
],
[
"WS02-XS-Green"
],
[
"WS02-XS-Red"
],
[
"WS03-L-Blue"
],
[
"WS03-L-Green"
],
[
"WS03-L-Red"
],
[
"WS03-M-Blue"
],
[
"WS03-M-Green"
],
[
"WS03-M-Red"
],
[
"WS03-S-Blue"
],
[
"WS03-S-Green"
],
[
"WS03-S-Red"
],
[
"WS03-XL-Blue"
],
[
"WS03-XL-Green"
],
[
"WS03-XL-Red"
],
[
"WS03-XS-Blue"
],
[
"WS03-XS-Green"
],
[
"WS03-XS-Red"
],
[
"WS04-L-Blue"
],
[
"WS04-L-Green"
],
[
"WS04-L-Red"
],
[
"WS04-M-Blue"
],
[
"WS04-M-Green"
],
[
"WS04-M-Red"
],
[
"WS04-S-Blue"
],
[
"WS04-S-Green"
],
[
"WS04-S-Red"
],
[
"WS04-XL-Blue"
],
[
"WS04-XL-Green"
],
[
"WS04-XL-Red"
],
[
"WS04-XS-Blue"
],
[
"WS04-XS-Green"
],
[
"WS04-XS-Red"
],
[
"WS05-L-Black"
],
[
"WS05-L-Orange"
],
[
"WS05-L-Yellow"
],
[
"WS05-M-Black"
],
[
"WS05-M-Orange"
],
[
"WS05-M-Yellow"
],
[
"WS05-S-Black"
],
[
"WS05-S-Orange"
],
[
"WS05-S-Yellow"
],
[
"WS05-XL-Black"
],
[
"WS05-XL-Orange"
],
[
"WS05-XL-Yellow"
],
[
"WS05-XS-Black"
],
[
"WS05-XS-Orange"
],
[
"WS05-XS-Yellow"
],
[
"WS06-L-Gray"
],
[
"WS06-L-Purple"
],
[
"WS06-L-Red"
],
[
"WS06-M-Gray"
],
[
"WS06-M-Purple"
],
[
"WS06-M-Red"
],
[
"WS06-S-Gray"
],
[
"WS06-S-Purple"
],
[
"WS06-S-Red"
],
[
"WS06-XL-Gray"
],
[
"WS06-XL-Purple"
],
[
"WS06-XL-Red"
],
[
"WS06-XS-Gray"
],
[
"WS06-XS-Purple"
],
[
"WS06-XS-Red"
],
[
"WS07-L-Black"
],
[
"WS07-L-White"
],
[
"WS07-L-Yellow"
],
[
"WS07-M-Black"
],
[
"WS07-M-White"
],
[
"WS07-M-Yellow"
],
[
"WS07-S-Black"
],
[
"WS07-S-White"
],
[
"WS07-S-Yellow"
],
[
"WS07-XL-Black"
],
[
"WS07-XL-White"
],
[
"WS07-XL-Yellow"
],
[
"WS07-XS-Black"
],
[
"WS07-XS-White"
],
[
"WS07-XS-Yellow"
],
[
"WS08-L-Black"
],
[
"WS08-L-Blue"
],
[
"WS08-L-Red"
],
[
"WS08-M-Black"
],
[
"WS08-M-Blue"
],
[
"WS08-M-Red"
],
[
"WS08-S-Black"
],
[
"WS08-S-Blue"
],
[
"WS08-S-Red"
],
[
"WS08-XL-Black"
],
[
"WS08-XL-Blue"
],
[
"WS08-XL-Red"
],
[
"WS08-XS-Black"
],
[
"WS08-XS-Blue"
],
[
"WS08-XS-Red"
],
[
"WS09-L-Blue"
],
[
"WS09-L-Red"
],
[
"WS09-L-White"
],
[
"WS09-M-Blue"
],
[
"WS09-M-Red"
],
[
"WS09-M-White"
],
[
"WS09-S-Blue"
],
[
"WS09-S-Red"
],
[
"WS09-S-White"
],
[
"WS09-XL-Blue"
],
[
"WS09-XL-Red"
],
[
"WS09-XL-White"
],
[
"WS09-XS-Blue"
],
[
"WS09-XS-Red"
],
[
"WS09-XS-White"
],
[
"WS10-L-Green"
],
[
"WS10-L-Red"
],
[
"WS10-L-Yellow"
],
[
"WS10-M-Green"
],
[
"WS10-M-Red"
],
[
"WS10-M-Yellow"
],
[
"WS10-S-Green"
],
[
"WS10-S-Red"
],
[
"WS10-S-Yellow"
],
[
"WS10-XL-Green"
],
[
"WS10-XL-Red"
],
[
"WS10-XL-Yellow"
],
[
"WS10-XS-Green"
],
[
"WS10-XS-Red"
],
[
"WS10-XS-Yellow"
],
[
"WS11-L-Green"
],
[
"WS11-L-Orange"
],
[
"WS11-L-Yellow"
],
[
"WS11-M-Green"
],
[
"WS11-M-Orange"
],
[
"WS11-M-Yellow"
],
[
"WS11-S-Green"
],
[
"WS11-S-Orange"
],
[
"WS11-S-Yellow"
],
[
"WS11-XL-Green"
],
[
"WS11-XL-Orange"
],
[
"WS11-XL-Yellow"
],
[
"WS11-XS-Green"
],
[
"WS11-XS-Orange"
],
[
"WS11-XS-Yellow"
],
[
"WS12-L-Blue"
],
[
"WS12-L-Orange"
],
[
"WS12-L-Purple"
],
[
"WS12-M-Blue"
],
[
"WS12-M-Orange"
],
[
"WS12-M-Purple"
],
[
"WS12-S-Blue"
],
[
"WS12-S-Orange"
],
[
"WS12-S-Purple"
],
[
"WS12-XL-Blue"
],
[
"WS12-XL-Orange"
],
[
"WS12-XL-Purple"
],
[
"WS12-XS-Blue"
],
[
"WS12-XS-Orange"
],
[
"WS12-XS-Purple"
],
[
"WSH01-28-Black"
],
[
"WSH01-28-Green"
],
[
"WSH01-28-Red"
],
[
"WSH01-29-Black"
],
[
"WSH01-29-Green"
],
[
"WSH01-29-Red"
],
[
"WSH01-30-Black"
],
[
"WSH01-30-Green"
],
[
"WSH01-30-Red"
],
[
"WSH01-31-Black"
],
[
"WSH01-31-Green"
],
[
"WSH01-31-Red"
],
[
"WSH01-32-Black"
],
[
"WSH01-32-Green"
],
[
"WSH01-32-Red"
],
[
"WSH02-28-Gray"
],
[
"WSH02-28-Orange"
],
[
"WSH02-28-Yellow"
],
[
"WSH02-29-Gray"
],
[
"WSH02-29-Orange"
],
[
"WSH02-29-Yellow"
],
[
"WSH02-30-Gray"
],
[
"WSH02-30-Orange"
],
[
"WSH02-30-Yellow"
],
[
"WSH02-31-Gray"
],
[
"WSH02-31-Orange"
],
[
"WSH02-31-Yellow"
],
[
"WSH02-32-Gray"
],
[
"WSH02-32-Orange"
],
[
"WSH02-32-Yellow"
],
[
"WSH03-28-Blue"
],
[
"WSH03-28-Gray"
],
[
"WSH03-28-Orange"
],
[
"WSH03-29-Blue"
],
[
"WSH03-29-Gray"
],
[
"WSH03-29-Orange"
],
[
"WSH03-30-Blue"
],
[
"WSH03-30-Gray"
],
[
"WSH03-30-Orange"
],
[
"WSH03-31-Blue"
],
[
"WSH03-31-Gray"
],
[
"WSH03-31-Orange"
],
[
"WSH03-32-Blue"
],
[
"WSH03-32-Gray"
],
[
"WSH03-32-Orange"
],
[
"WSH04-28-Black"
],
[
"WSH04-28-Green"
],
[
"WSH04-28-Orange"
],
[
"WSH04-29-Black"
],
[
"WSH04-29-Green"
],
[
"WSH04-29-Orange"
],
[
"WSH04-30-Black"
],
[
"WSH04-30-Green"
],
[
"WSH04-30-Orange"
],
[
"WSH04-31-Black"
],
[
"WSH04-31-Green"
],
[
"WSH04-31-Orange"
],
[
"WSH04-32-Black"
],
[
"WSH04-32-Green"
],
[
"WSH04-32-Orange"
],
[
"WSH05-28-Blue"
],
[
"WSH05-28-Purple"
],
[
"WSH05-28-Yellow"
],
[
"WSH05-29-Blue"
],
[
"WSH05-29-Purple"
],
[
"WSH05-29-Yellow"
],
[
"WSH05-30-Blue"
],
[
"WSH05-30-Purple"
],
[
"WSH05-30-Yellow"
],
[
"WSH05-31-Blue"
],
[
"WSH05-31-Purple"
],
[
"WSH05-31-Yellow"
],
[
"WSH05-32-Blue"
],
[
"WSH05-32-Purple"
],
[
"WSH05-32-Yellow"
],
[
"WSH06-28-Gray"
],
[
"WSH06-28-Orange"
],
[
"WSH06-28-Purple"
],
[
"WSH06-29-Gray"
],
[
"WSH06-29-Orange"
],
[
"WSH06-29-Purple"
],
[
"WSH07-28-Black"
],
[
"WSH07-28-Blue"
],
[
"WSH07-28-Purple"
],
[
"WSH07-29-Black"
],
[
"WSH07-29-Blue"
],
[
"WSH07-29-Purple"
],
[
"WSH08-28-Purple"
],
[
"WSH08-29-Purple"
],
[
"WSH08-30-Purple"
],
[
"WSH08-31-Purple"
],
[
"WSH08-32-Purple"
],
[
"WSH09-28-Gray"
],
[
"WSH09-28-Green"
],
[
"WSH09-28-White"
],
[
"WSH09-29-Gray"
],
[
"WSH09-29-Green"
],
[
"WSH09-29-White"
],
[
"WSH10-28-Black"
],
[
"WSH10-28-Orange"
],
[
"WSH10-28-White"
],
[
"WSH10-29-Black"
],
[
"WSH10-29-Orange"
],
[
"WSH10-29-White"
],
[
"WSH11-28-Blue"
],
[
"WSH11-28-Orange"
],
[
"WSH11-28-Red"
],
[
"WSH11-29-Blue"
],
[
"WSH11-29-Orange"
],
[
"WSH11-29-Red"
],
[
"WSH12-28-Green"
],
[
"WSH12-28-Purple"
],
[
"WSH12-28-Red"
],
[
"WSH12-29-Green"
],
[
"WSH12-29-Purple"
],
[
"WSH12-29-Red"
],
[
"WSH12-30-Green"
],
[
"WSH12-30-Purple"
],
[
"WSH12-30-Red"
],
[
"WSH12-31-Green"
],
[
"WSH12-31-Purple"
],
[
"WSH12-31-Red"
],
[
"WSH12-32-Green"
],
[
"WSH12-32-Purple"
],
[
"WSH12-32-Red"
],
[
"WT01-L-Black"
],
[
"WT01-L-Blue"
],
[
"WT01-L-Orange"
],
[
"WT01-M-Black"
],
[
"WT01-M-Blue"
],
[
"WT01-M-Orange"
],
[
"WT01-S-Black"
],
[
"WT01-S-Blue"
],
[
"WT01-S-Orange"
],
[
"WT01-XL-Black"
],
[
"WT01-XL-Blue"
],
[
"WT01-XL-Orange"
],
[
"WT01-XS-Black"
],
[
"WT01-XS-Blue"
],
[
"WT01-XS-Orange"
],
[
"WT02-L-Green"
],
[
"WT02-L-Orange"
],
[
"WT02-L-Yellow"
],
[
"WT02-M-Green"
],
[
"WT02-M-Orange"
],
[
"WT02-M-Yellow"
],
[
"WT02-S-Green"
],
[
"WT02-S-Orange"
],
[
"WT02-S-Yellow"
],
[
"WT02-XL-Green"
],
[
"WT02-XL-Orange"
],
[
"WT02-XL-Yellow"
],
[
"WT02-XS-Green"
],
[
"WT02-XS-Orange"
],
[
"WT02-XS-Yellow"
],
[
"WT03-L-Orange"
],
[
"WT03-L-Purple"
],
[
"WT03-L-Red"
],
[
"WT03-M-Orange"
],
[
"WT03-M-Purple"
],
[
"WT03-M-Red"
],
[
"WT03-S-Orange"
],
[
"WT03-S-Purple"
],
[
"WT03-S-Red"
],
[
"WT03-XL-Orange"
],
[
"WT03-XL-Purple"
],
[
"WT03-XL-Red"
],
[
"WT03-XS-Orange"
],
[
"WT03-XS-Purple"
],
[
"WT03-XS-Red"
],
[
"WT04-L-Blue"
],
[
"WT04-L-Purple"
],
[
"WT04-L-Red"
],
[
"WT04-M-Blue"
],
[
"WT04-M-Purple"
],
[
"WT04-M-Red"
],
[
"WT04-S-Blue"
],
[
"WT04-S-Purple"
],
[
"WT04-S-Red"
],
[
"WT04-XL-Blue"
],
[
"WT04-XL-Purple"
],
[
"WT04-XL-Red"
],
[
"WT04-XS-Blue"
],
[
"WT04-XS-Purple"
],
[
"WT04-XS-Red"
],
[
"WT05-L-Orange"
],
[
"WT05-L-Purple"
],
[
"WT05-L-White"
],
[
"WT05-M-Orange"
],
[
"WT05-M-Purple"
],
[
"WT05-M-White"
],
[
"WT05-S-Orange"
],
[
"WT05-S-Purple"
],
[
"WT05-S-White"
],
[
"WT05-XL-Orange"
],
[
"WT05-XL-Purple"
],
[
"WT05-XL-White"
],
[
"WT05-XS-Orange"
],
[
"WT05-XS-Purple"
],
[
"WT05-XS-White"
],
[
"WT06-L-Blue"
],
[
"WT06-L-Red"
],
[
"WT06-L-Yellow"
],
[
"WT06-M-Blue"
],
[
"WT06-M-Red"
],
[
"WT06-M-Yellow"
],
[
"WT06-S-Blue"
],
[
"WT06-S-Red"
],
[
"WT06-S-Yellow"
],
[
"WT06-XL-Blue"
],
[
"WT06-XL-Red"
],
[
"WT06-XL-Yellow"
],
[
"WT06-XS-Blue"
],
[
"WT06-XS-Red"
],
[
"WT06-XS-Yellow"
],
[
"WT07-L-Green"
],
[
"WT07-L-White"
],
[
"WT07-L-Yellow"
],
[
"WT07-M-Green"
],
[
"WT07-M-White"
],
[
"WT07-M-Yellow"
],
[
"WT07-S-Green"
],
[
"WT07-S-White"
],
[
"WT07-S-Yellow"
],
[
"WT07-XL-Green"
],
[
"WT07-XL-White"
],
[
"WT07-XL-Yellow"
],
[
"WT07-XS-Green"
],
[
"WT07-XS-White"
],
[
"WT07-XS-Yellow"
],
[
"WT08-L-Black"
],
[
"WT08-L-Purple"
],
[
"WT08-L-Yellow"
],
[
"WT08-M-Black"
],
[
"WT08-M-Purple"
],
[
"WT08-M-Yellow"
],
[
"WT08-S-Black"
],
[
"WT08-S-Purple"
],
[
"WT08-S-Yellow"
],
[
"WT08-XL-Black"
],
[
"WT08-XL-Purple"
],
[
"WT08-XL-Yellow"
],
[
"WT08-XS-Black"
],
[
"WT08-XS-Purple"
],
[
"WT08-XS-Yellow"
],
[
"WT09-L-Purple"
],
[
"WT09-L-White"
],
[
"WT09-L-Yellow"
],
[
"WT09-M-Purple"
],
[
"WT09-M-White"
],
[
"WT09-M-Yellow"
],
[
"WT09-S-Purple"
],
[
"WT09-S-White"
],
[
"WT09-S-Yellow"
],
[
"WT09-XL-Purple"
],
[
"WT09-XL-White"
],
[
"WT09-XL-Yellow"
],
[
"WT09-XS-Purple"
],
[
"WT09-XS-White"
],
[
"WT09-XS-Yellow"
]
]
},
{
"question": "How many product IDs have an integer attribute ID 93 with a value of 60?",
"answer": 137,
"sql": "SELECT entity_id FROM catalog_product_entity_int WHERE attribute_id = 93 AND value = 60;",
"sql_execute_result": [
[
97
],
[
100
],
[
103
],
[
106
],
[
109
],
[
257
],
[
260
],
[
263
],
[
266
],
[
269
],
[
305
],
[
308
],
[
311
],
[
314
],
[
317
],
[
337
],
[
340
],
[
343
],
[
346
],
[
349
],
[
481
],
[
484
],
[
487
],
[
490
],
[
493
],
[
529
],
[
532
],
[
535
],
[
538
],
[
541
],
[
545
],
[
548
],
[
551
],
[
554
],
[
557
],
[
657
],
[
660
],
[
663
],
[
666
],
[
669
],
[
707
],
[
708
],
[
709
],
[
710
],
[
711
],
[
914
],
[
917
],
[
920
],
[
923
],
[
1165
],
[
1168
],
[
1171
],
[
1174
],
[
1177
],
[
1213
],
[
1216
],
[
1219
],
[
1335
],
[
1338
],
[
1341
],
[
1344
],
[
1347
],
[
1463
],
[
1466
],
[
1469
],
[
1472
],
[
1475
],
[
1511
],
[
1514
],
[
1517
],
[
1520
],
[
1523
],
[
1527
],
[
1530
],
[
1533
],
[
1536
],
[
1539
],
[
1559
],
[
1562
],
[
1565
],
[
1568
],
[
1571
],
[
1575
],
[
1578
],
[
1581
],
[
1584
],
[
1587
],
[
1607
],
[
1610
],
[
1613
],
[
1616
],
[
1619
],
[
1623
],
[
1626
],
[
1629
],
[
1632
],
[
1635
],
[
1639
],
[
1642
],
[
1645
],
[
1648
],
[
1651
],
[
1687
],
[
1690
],
[
1693
],
[
1696
],
[
1699
],
[
1751
],
[
1754
],
[
1757
],
[
1760
],
[
1763
],
[
1767
],
[
1770
],
[
1773
],
[
1776
],
[
1779
],
[
1783
],
[
1786
],
[
1789
],
[
1792
],
[
1795
],
[
1799
],
[
1802
],
[
1805
],
[
1808
],
[
1811
],
[
1922
],
[
1925
],
[
1928
],
[
1931
],
[
1934
],
[
1970
],
[
1973
],
[
1976
],
[
1979
],
[
1982
]
]
},
{
"question": "What is the entity ID of the product with SKU 'WS12-M-Orange'?",
"answer": 1548,
"sql": "SELECT entity_id FROM catalog_product_entity WHERE sku = 'WS12-M-Orange';",
"sql_execute_result": [
[
1548
]
]
},
{
"question": "Retrieve the base price including tax for the product with SKU 'WS08-XS-Blue'.",
"answer": "34.6400",
"sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
"sql_execute_result": [
[
"34.6400"
]
]
},
{
"question": "How many countries have their ISO2 code in the sample data?",
"answer": 5,
"sql": "SELECT COUNT(*) FROM directory_country WHERE iso2_code IN ('TT', 'QA', 'IM', 'NU', 'CH');",
"sql_execute_result": [
[
5
]
]
},
{
"question": "What is the product type of the product with SKU 'MH06-L-Black'?",
"answer": "simple",
"sql": "SELECT type_id FROM catalog_product_entity WHERE sku = 'MH06-L-Black';",
"sql_execute_result": [
[
"simple"
]
]
},
{
"question": "Determine the attribute set ID of the product with SKU 'MJ10-L-Orange'.",
"answer": 9,
"sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE sku = 'MJ10-L-Orange';",
"sql_execute_result": [
[
9
]
]
},
{
"question": "What is the price of the product with SKU 'aero-daily-fitness-tee-s-yellow'?",
"answer": "The price of the product with SKU 'aero-daily-fitness-tee-s-yellow' is 24.00.",
"sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = (SELECT entity_id FROM catalog_product_entity_varchar WHERE value = 'aero-daily-fitness-tee-s-yellow') AND attribute_id = 77;",
"sql_execute_result": [
[
"24.000000"
]
]
},
{
"question": "Find the description of the product with ID 460.",
"answer": "<p>Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>",
"sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 460 AND attribute_id = 75;",
"sql_execute_result": [
[
"<p>Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>"
]
]
},
{
"question": "What is the total quantity ordered for the product 'Maxima Drawstring Short-29-Orange' in 2022?",
"answer": 2,
"sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Maxima Drawstring Short-29-Orange' AND period = '2022-01-01';",
"sql_execute_result": [
[
"1.0000"
],
[
"1.0000"
]
]
},
{
"question": "What is the address of customer Sophia Young?",
"answer": "1 International Pl, Boston, Massachusetts, 02110",
"sql": "SELECT CONCAT(street, ', ', city, ', ', region, ', ', postcode) AS full_address FROM customer_address_entity WHERE firstname = 'Sophia' AND lastname = 'Young';",
"sql_execute_result": [
[
"1 International Pl, Boston, Massachusetts, 02110"
]
]
},
{
"question": "What is the price of the product with entity ID 1532?",
"answer": "The price of the product with entity ID 1532 is 32.00.",
"sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1532 AND attribute_id = 77;",
"sql_execute_result": [
[
"32.000000"
]
]
},
{
"question": "How many orders for products purchased in store with ID 1 during 2023 were found?",
"answer": 141,
"sql": "SELECT product_id, product_name, qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01';",
"sql_execute_result": [
[
3,
"Crown Summit Backpack",
"1.0000"
],
[
7,
"Impulse Duffle",
"2.0000"
],
[
11,
"Endeavor Daytrip Backpack",
"1.0000"
],
[
13,
"Overnight Duffle",
"3.0000"
],
[
16,
"Dual Handle Cardio Ball",
"1.0000"
],
[
20,
"Quest Lumaflex&trade; Band",
"1.0000"
],
[
23,
"Harmony Lumaflex&trade; Strength Band Kit ",
"1.0000"
],
[
25,
"Sprite Stasis Ball 55 cm",
"1.0000"
],
[
26,
"Sprite Stasis Ball 55 cm",
"1.0000"
],
[
27,
"Sprite Stasis Ball 65 cm",
"1.0000"
],
[
28,
"Sprite Stasis Ball 65 cm",
"2.0000"
],
[
29,
"Sprite Stasis Ball 65 cm",
"2.0000"
],
[
30,
"Sprite Stasis Ball 75 cm",
"1.0000"
],
[
33,
"Sprite Yoga Strap 6 foot",
"4.0000"
],
[
34,
"Sprite Yoga Strap 8 foot",
"2.0000"
],
[
36,
"Aim Analog Watch",
"2.0000"
],
[
37,
"Endurance Watch",
"1.0000"
],
[
47,
"Chaz Kangeroo Hoodie-XS-Black",
"1.0000"
],
[
50,
"Chaz Kangeroo Hoodie-S-Black",
"1.0000"
],
[
88,
"Bruno Compete Hoodie-L-Black",
"1.0000"
],
[
95,
"Frankie Sweatshirt-XS-Green",
"1.0000"
],
[
127,
"Stark Fundamental Hoodie-XS-Black",
"1.0000"
],
[
128,
"Stark Fundamental Hoodie-XS-Blue",
"1.0000"
],
[
129,
"Stark Fundamental Hoodie-XS-Purple",
"1.0000"
],
[
134,
"Stark Fundamental Hoodie-M-Blue",
"1.0000"
],
[
204,
"Mach Street Sweatshirt -XL-Blue",
"2.0000"
],
[
220,
"Grayson Crewneck Sweatshirt -XL-Red",
"1.0000"
],
[
234,
"Ajax Full-Zip Sweatshirt -L-Red",
"1.0000"
],
[
243,
"Marco Lightweight Active Hoodie-S-Green",
"1.0000"
],
[
262,
"Beaumont Summit Kit-M-Red",
"1.0000"
],
[
315,
"Orion Two-Tone Fitted Jacket-XL-Black",
"1.0000"
],
[
336,
"Taurus Elements Shell-XS-White",
"1.0000"
],
[
351,
"Mars HeatTech&trade; Pullover-XS-Black",
"1.0000"
],
[
388,
"Jupiter All-Weather Trainer -S-Purple",
"1.0000"
],
[
421,
"Proteus Fitness Jackshirt-M-Black",
"1.0000"
],
[
422,
"Proteus Fitness Jackshirt-M-Blue",
"1.0000"
],
[
432,
"Gobi HeatTec&reg; Tee-XS-Orange",
"2.0000"
],
[
546,
"Aero Daily Fitness Tee-S-Black",
"1.0000"
],
[
586,
"Logan HeatTec&reg; Tee-L-Red",
"1.0000"
],
[
601,
"Deion Long-Sleeve EverCool&trade; Tee-L-Green",
"1.0000"
],
[
603,
"Deion Long-Sleeve EverCool&trade; Tee-XL-Black",
"1.0000"
],
[
645,
"Tristan Endurance Tank-M-Gray",
"1.0000"
],
[
652,
"Tristan Endurance Tank-XL-Red",
"1.0000"
],
[
662,
"Primo Endurance Tank-M-Red",
"1.0000"
],
[
691,
"Argus All-Weather Tank-M-Gray",
"1.0000"
],
[
699,
"Sparta Gym Tank-XL-Green",
"2.0000"
],
[
709,
"Tiberius Gym Tank-M-Yellow",
"1.0000"
],
[
716,
"Atlas Fitness Tank-L-Blue",
"1.0000"
],
[
726,
"Caesar Warm-Up Pant-32-Gray",
"1.0000"
],
[
736,
"Caesar Warm-Up Pant-36-Purple",
"1.0000"
],
[
758,
"Geo Insulated Jogging Pant-34-Green",
"1.0000"
],
[
764,
"Supernova Sport Pant-32-Black",
"1.0000"
],
[
790,
"Mithra Warmup Pant-32-Gray",
"1.0000"
],
[
796,
"Mithra Warmup Pant-34-Gray",
"1.0000"
],
[
801,
"Mithra Warmup Pant-36-Orange",
"1.0000"
],
[
804,
"Thorpe Track Pant-32-Blue",
"1.0000"
],
[
805,
"Thorpe Track Pant-32-Purple",
"1.0000"
],
[
824,
"Zeppelin Yoga Pant-34-Red",
"1.0000"
],
[
850,
"Orestes Yoga Pant -34-Green",
"1.0000"
],
[
859,
"Aether Gym Pant -33-Brown",
"1.0000"
],
[
863,
"Aether Gym Pant -34-Green",
"1.0000"
],
[
865,
"Aether Gym Pant -36-Brown",
"1.0000"
],
[
883,
"Cobalt CoolTech&trade; Fitness Short-32-Red",
"1.0000"
],
[
895,
"Apollo Running Short-33-Black",
"1.0000"
],
[
926,
"Hawkeye Yoga Short-32-Blue",
"2.0000"
],
[
936,
"Hawkeye Yoga Short-36-Gray",
"2.0000"
],
[
948,
"Lono Yoga Short-36-Gray",
"1.0000"
],
[
961,
"Rapha Sports Short-36-Blue",
"1.0000"
],
[
977,
"Troy Yoga Short-32-Black",
"1.0000"
],
[
986,
"Troy Yoga Short-36-Black",
"1.0000"
],
[
1007,
"Arcadio Gym Short-33-Blue",
"1.0000"
],
[
1014,
"Arcadio Gym Short-36-Red",
"1.0000"
],
[
1033,
"Mona Pullover Hoodlie-S-Orange",
"1.0000"
],
[
1040,
"Mona Pullover Hoodlie-L-Purple",
"1.0000"
],
[
1063,
"Autumn Pullie-XS-Red",
"1.0000"
],
[
1064,
"Autumn Pullie-S-Green",
"1.0000"
],
[
1175,
"Helena Hooded Fleece-XL-Blue",
"1.0000"
],
[
1182,
"Eos V-Neck Hoodie-S-Blue",
"1.0000"
],
[
1202,
"Circe Hooded Ice Fleece-M-Green",
"1.0000"
],
[
1219,
"Stellar Solar Jacket-L-Yellow",
"1.0000"
],
[
1222,
"Josie Yoga Jacket-XS-Blue",
"1.0000"
],
[
1225,
"Josie Yoga Jacket-S-Blue",
"1.0000"
],
[
1240,
"Augusta Pullover Jacket-S-Blue",
"1.0000"
],
[
1243,
"Augusta Pullover Jacket-M-Blue",
"1.0000"
],
[
1254,
"Ingrid Running Jacket-XS-Red",
"1.0000"
],
[
1255,
"Ingrid Running Jacket-XS-White",
"1.0000"
],
[
1271,
"Riona Full Zip Jacket-XS-Red",
"1.0000"
],
[
1283,
"Riona Full Zip Jacket-XL-Red",
"1.0000"
],
[
1299,
"Inez Full Zip Jacket-XL-Red",
"1.0000"
],
[
1329,
"Jade Yoga Jacket-XL-Blue",
"1.0000"
],
[
1335,
"Nadia Elements Shell-XS-Yellow",
"1.0000"
],
[
1336,
"Nadia Elements Shell-S-Black",
"1.0000"
],
[
1340,
"Nadia Elements Shell-M-Orange",
"1.0000"
],
[
1351,
"Neve Studio Dance Jacket-XS-Orange",
"1.0000"
],
[
1354,
"Neve Studio Dance Jacket-S-Orange",
"1.0000"
],
[
1355,
"Neve Studio Dance Jacket-M-Black",
"1.0000"
],
[
1365,
"Juno Jacket-XS-Blue",
"1.0000"
],
[
1407,
"Gabrielle Micro Sleeve Top-L-Green",
"1.0000"
],
[
1424,
"Iris Workout Top-L-Red",
"1.0000"
],
[
1430,
"Layla Tee-XS-Green",
"2.0000"
],
[
1468,
"Juliana Short-Sleeve Tee-M-White",
"1.0000"
],
[
1473,
"Juliana Short-Sleeve Tee-XL-Black",
"1.0000"
],
[
1479,
"Minerva LumaTech&trade; V-Tee-XS-Red",
"2.0000"
],
[
1483,
"Minerva LumaTech&trade; V-Tee-M-Black",
"1.0000"
],
[
1500,
"Tiffany Fitness Tee-M-Red",
"1.0000"
],
[
1505,
"Tiffany Fitness Tee-XL-Blue",
"1.0000"
],
[
1568,
"Gwyn Endurance Tee-L-Yellow",
"1.0000"
],
[
1607,
"Erica Evercool Sports Bra-XS-Yellow",
"1.0000"
],
[
1631,
"Celeste Sports Bra-L-Red",
"1.0000"
],
[
1644,
"Prima Compete Bra Top-M-Purple",
"1.0000"
],
[
1681,
"Bella Tank-XL-Black",
"1.0000"
],
[
1685,
"Zoe Tank-XS-Green",
"1.0000"
],
[
1690,
"Zoe Tank-S-Yellow",
"1.0000"
],
[
1695,
"Zoe Tank-L-Orange",
"1.0000"
],
[
1699,
"Zoe Tank-XL-Yellow",
"1.0000"
],
[
1757,
"Chloe Compete Tank-M-Yellow",
"1.0000"
],
[
1818,
"Karmen Yoga Pant-29-White",
"1.0000"
],
[
1828,
"Ida Workout Parachute Pant-28-Blue",
"1.0000"
],
[
1832,
"Ida Workout Parachute Pant-29-Purple",
"3.0000"
],
[
1836,
"Cora Parachute Pant-28-White",
"1.0000"
],
[
1838,
"Cora Parachute Pant-29-Blue",
"1.0000"
],
[
1849,
"Diana Tights-28-Blue",
"1.0000"
],
[
1855,
"Aeon Capri-28-Black",
"1.0000"
],
[
1859,
"Aeon Capri-29-Blue",
"1.0000"
],
[
1885,
"Sylvia Capri-28-Red",
"1.0000"
],
[
1905,
"Fiona Fitness Short-28-Green",
"1.0000"
],
[
1906,
"Fiona Fitness Short-28-Red",
"1.0000"
],
[
1910,
"Fiona Fitness Short-30-Black",
"1.0000"
],
[
1913,
"Fiona Fitness Short-31-Black",
"1.0000"
],
[
1922,
"Maxima Drawstring Short-28-Yellow",
"1.0000"
],
[
1932,
"Maxima Drawstring Short-32-Gray",
"1.0000"
],
[
1938,
"Gwen Drawstring Bike Short-28-Orange",
"1.0000"
],
[
1941,
"Gwen Drawstring Bike Short-29-Orange",
"1.0000"
],
[
1958,
"Artemis Running Short-30-Black",
"1.0000"
],
[
1988,
"Angel Light Running Short-29-Orange",
"1.0000"
],
[
1989,
"Angel Light Running Short-29-Purple",
"2.0000"
],
[
1993,
"Echo Fit Compression Short-28-Purple",
"1.0000"
],
[
1995,
"Echo Fit Compression Short-29-Blue",
"1.0000"
],
[
2022,
"Ina Compression Short-29-Orange",
"1.0000"
],
[
2023,
"Ina Compression Short-29-Red",
"1.0000"
],
[
2038,
"Erika Running Short-32-Purple",
"1.0000"
]
]
},
{
"question": "What is the full name and phone number of the customer living at 789 Main St, Dallas?",
"answer": {
"full_name": "John Smith",
"telephone": "2145551212"
},
"sql": "SELECT CONCAT(firstname, ' ', lastname) AS full_name, telephone FROM customer_address_entity WHERE street = '789 Main St' AND city = 'Dallas';",
"sql_execute_result": [
[
"John Smith",
"2145551212"
]
]
},
{
"question": "Find the entity ID for the product named 'Hollister Backyard Sweatshirt-XL-Green'.",
"answer": 123,
"sql": "SELECT entity_id FROM catalog_product_entity_varchar WHERE value = 'Hollister Backyard Sweatshirt-XL-Green';",
"sql_execute_result": [
[
123
]
]
},
{
"question": "What is the attribute code for the attribute with ID 33?",
"answer": "postcode",
"sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 33;",
"sql_execute_result": [
[
"postcode"
]
]
},
{
"question": "How many search results are there for the query 'Antonia Racer Tank'?",
"answer": 23,
"sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
"sql_execute_result": [
[
23
]
]
},
{
"question": "What is the name of the store group with ID 0?",
"answer": "Default",
"sql": "SELECT name FROM store_group WHERE group_id = 0;",
"sql_execute_result": [
[
"Default"
]
]
},
{
"question": "What is the stock name for stock ID 1?",
"answer": "Default",
"sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
"sql_execute_result": [
[
"Default"
]
]
},
{
"question": "Is the search query 'nike' active?",
"answer": "Yes, the search query 'nike' is active.",
"sql": "SELECT is_active FROM search_query WHERE query_text = 'nike';",
"sql_execute_result": [
[
1
]
]
},
{
"question": "What is the website ID of the main website store group?",
"answer": 1,
"sql": "SELECT website_id FROM store_group WHERE name = 'Main Website Store';",
"sql_execute_result": [
[
1
]
]
},
{
"question": "What is the popularity of the search query 'hollister'?",
"answer": 19,
"sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
"sql_execute_result": [
[
19
]
]
},
{
"question": "Find the default store ID for the store group named 'Main Website Store'.",
"answer": 1,
"sql": "SELECT default_store_id FROM store_group WHERE name = 'Main Website Store';",
"sql_execute_result": [
[
1
]
]
},
{
"question": "Find the email address for customer with the billing address '6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978'.",
"answer": "The email address for the customer with the specified billing address is 'roni_cost@example.com'.",
"sql": "SELECT customer_email FROM sales_order_grid WHERE billing_address = '6146 Honey Bluff Parkway,Calder,Michigan,49628-7978';",
"sql_execute_result": [
[
"roni_cost@example.com"
],
[
"roni_cost@example.com"
]
]
},
{
"question": "What is the SKU of the product with entity_id 2040?",
"answer": "The SKU of the product with entity_id 2040 is WSH12.",
"sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
"sql_execute_result": [
[
"WSH12"
]
]
},
{
"question": "How many children does the category with ID 29 have?",
"answer": 4,
"sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 29;",
"sql_execute_result": [
[
4
]
]
},
{
"question": "List all order IDs for the customer with email 'roni_cost@example.com'.",
"answer": [
1,
2
],
"sql": "SELECT entity_id FROM sales_order WHERE customer_email = 'roni_cost@example.com';",
"sql_execute_result": [
[
1
],
[
2
]
]
},
{
"question": "What is the total quantity of products ordered in order with increment ID '000000002'?",
"answer": "The total quantity of products ordered in order with increment ID '000000002' is 1.0000.",
"sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000002';",
"sql_execute_result": [
[
"1.0000"
]
]
},
{
"question": "What is the grand total of the invoice with entity_id 2?",
"answer": "The grand total of the invoice with entity_id 2 is 39.6400.",
"sql": "SELECT grand_total FROM sales_invoice WHERE entity_id = 2;",
"sql_execute_result": [
[
"39.6400"
]
]
},
{
"question": "How many orders were placed on '2023-04-19'?",
"answer": 9,
"sql": "SELECT COUNT(*) FROM sales_order WHERE DATE(created_at) = '2023-04-19';",
"sql_execute_result": [
[
9
]
]
},
{
"question": "Which region does 'Burtnieku novads' belong to?",
"answer": "The region 'Burtnieku novads' belongs to the locale 'en_US'.",
"sql": "SELECT locale FROM directory_country_region_name WHERE name = 'Burtnieku novads';",
"sql_execute_result": [
[
"en_US"
]
]
},
{
"question": "What is the subtotal of the order with entity_id 1?",
"answer": "The subtotal of the order with entity_id 1 is 29.0000.",
"sql": "SELECT subtotal FROM sales_order WHERE entity_id = 1;",
"sql_execute_result": [
[
"29.0000"
]
]
},
{
"question": "What is the status label for the 'fraud' status?",
"answer": "Suspected Fraud",
"sql": "SELECT label FROM sales_order_status WHERE status = 'fraud';",
"sql_execute_result": [
[
"Suspected Fraud"
]
]
},
{
"question": "Find the sequence value for the latest order in store 1.",
"answer": 308,
"sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
"sql_execute_result": [
[
308
]
]
},
{
"question": "What is the name of the default stock available on website 0?",
"answer": "Default",
"sql": "SELECT stock_name FROM cataloginventory_stock WHERE website_id = 0 AND stock_id = 1;",
"sql_execute_result": [
[
"Default"
]
]
},
{
"question": "How many orders have a status of 'pending_payment'?",
"answer": 0,
"sql": "SELECT COUNT(*) FROM sales_order WHERE status = 'pending_payment';",
"sql_execute_result": [
[
0
]
]
},
{
"question": "Retrieve the sequence table associated with the creditmemo entity type in store 1.",
"answer": "The sequence table associated with the creditmemo entity type in store 1 is 'sequence_creditmemo_1'.",
"sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'creditmemo' AND store_id = 1;",
"sql_execute_result": [
[
"sequence_creditmemo_1"
]
]
},
{
"question": "What is the sequence value for the first invoice in store 1?",
"answer": 1,
"sql": "SELECT MIN(sequence_value) FROM sequence_invoice_1;",
"sql_execute_result": [
[
1
]
]
},
{
"question": "How many status labels for sales orders were found?",
"answer": 12,
"sql": "SELECT label FROM sales_order_status;",
"sql_execute_result": [
[
"Canceled"
],
[
"Closed"
],
[
"Complete"
],
[
"Suspected Fraud"
],
[
"On Hold"
],
[
"Payment Review"
],
[
"PayPal Canceled Reversal"
],
[
"PayPal Reversed"
],
[
"Pending"
],
[
"Pending Payment"
],
[
"Pending PayPal"
],
[
"Processing"
]
]
},
{
"question": "Find the sequence table used for orders in store 0.",
"answer": "The sequence table used for orders in store 0 is 'sequence_order_0'.",
"sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 0;",
"sql_execute_result": [
[
"sequence_order_0"
]
]
},
{
"question": "What is the sequence value for the last invoice in store 1?",
"answer": 2,
"sql": "SELECT MAX(sequence_value) FROM sequence_invoice_1;",
"sql_execute_result": [
[
2
]
]
},
{
"question": "Which store uses the sequence table 'sequence_shipment_1'?",
"answer": 1,
"sql": "SELECT store_id FROM sales_sequence_meta WHERE sequence_table = 'sequence_shipment_1';",
"sql_execute_result": [
[
1
]
]
},
{
"question": "What is the product name and price for the best-selling product with ID 848 in 2022?",
"answer": [
{
"product_name": "Orestes Yoga Pant -34-Black",
"product_price": "52.8000"
}
],
"sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_yearly WHERE product_id = 848 AND period = '2022-01-01';",
"sql_execute_result": [
[
"Orestes Yoga Pant -34-Black",
"52.8000"
],
[
"Orestes Yoga Pant -34-Black",
"52.8000"
]
]
},
{
"question": "What is the total quantity ordered for the canceled order with increment ID 000000291?",
"answer": "The total quantity ordered for the canceled order with increment ID 000000291 is 1.0000.",
"sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000291' AND status = 'canceled';",
"sql_execute_result": [
[
"1.0000"
]
]
},
{
"question": "Find the store code for the store group with group ID 1.",
"answer": "The store code for the store group with group ID 1 is 'main_website_store'.",
"sql": "SELECT code FROM store_group WHERE group_id = 1;",
"sql_execute_result": [
[
"main_website_store"
]
]
},
{
"question": "What is the description of the product with entity ID 992?",
"answer": "The description of the product with entity ID 992 is: <p>You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>",
"sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 992 AND attribute_id = 75;",
"sql_execute_result": [
[
"<p>You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.</p>\n<p>&bull; Light blue jersey shorts with mesh detail.<br />&bull; 87% Spandex 13% Lycra.<br />&bull; Machine wash cold, tumble dry low.<br />&bull; Superior performance fabric.<br />&bull; Flat-lock seams.</p>"
]
]
},
{
"question": "How many orders were completed on April 5, 2023?",
"answer": 3,
"sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-04-05' AND order_status = 'complete';",
"sql_execute_result": [
[
3
],
[
3
]
]
},
{
"question": "How many total income amounts were found?",
"answer": 2,
"sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-01-31' AND order_status = 'complete';",
"sql_execute_result": [
[
"176.6000"
],
[
"176.6000"
]
]
},
{
"question": "Find the customer email and first name for the order with increment ID 000000065.",
"answer": {
"customer_email": "avidreader99@yahoo.com",
"customer_firstname": "Grace"
},
"sql": "SELECT customer_email, customer_firstname FROM sales_order WHERE increment_id = '000000065';",
"sql_execute_result": [
[
"avidreader99@yahoo.com",
"Grace"
]
]
},
{
"question": "What is the total shipping amount for canceled orders on February 18, 2022?",
"answer": "The total shipping amount for canceled orders on February 18, 2022, is 10.0000.",
"sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-02-18' AND order_status = 'canceled';",
"sql_execute_result": [
[
"5.0000"
],
[
"5.0000"
]
]
},
{
"question": "Find the total quantity ordered for product with ID 39 in 2022.",
"answer": "The total quantity ordered for product with ID 39 in 2022 is 8.",
"sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_id = 39 AND period = '2022-01-01';",
"sql_execute_result": [
[
"4.0000"
],
[
"4.0000"
]
]
},
{
"question": "What are the applied rule IDs for the complete order with increment ID 000000028?",
"answer": "The applied rule IDs for the complete order with increment ID 000000028 are 1, 2, and 3.",
"sql": "SELECT applied_rule_ids FROM sales_order WHERE increment_id = '000000028' AND status = 'complete';",
"sql_execute_result": [
[
"1,2,3"
]
]
},
{
"question": "What is the payment method used for the order with parent_id 203?",
"answer": "Check / Money order",
"sql": "SELECT additional_information FROM sales_order_payment WHERE parent_id = 203;",
"sql_execute_result": [
[
"{\"method_title\":\"Check \\/ Money order\"}"
]
]
},
{
"question": "What is the SKU of the product that has entity_id 948?",
"answer": "The SKU of the product with entity_id 948 is MSH06-36-Gray.",
"sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 948;",
"sql_execute_result": [
[
"MSH06-36-Gray"
]
]
},
{
"question": "Find the product name with product_id 865 from the bestsellers aggregated yearly table for the period 2023-01-01.",
"answer": "The product name with product_id 865 for the period 2023-01-01 is 'Aether Gym Pant -36-Brown'.",
"sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 865 AND period = '2023-01-01';",
"sql_execute_result": [
[
"Aether Gym Pant -36-Brown"
],
[
"Aether Gym Pant -36-Brown"
]
]
},
{
"question": "What is the current stock quantity for the product with product_id 2040?",
"answer": "The current stock quantity for the product with product_id 2040 is 0.",
"sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
"sql_execute_result": [
[
"0.0000"
]
]
},
{
"question": "Get the total number of orders with status 'pending'.",
"answer": 10,
"sql": "SELECT COUNT(*) FROM sales_order WHERE status = 'pending';",
"sql_execute_result": [
[
10
]
]
},
{
"question": "What is the current stock quantity for the product with ID 2040?",
"answer": "The current stock quantity for the product with ID 2040 is 0.",
"sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
"sql_execute_result": [
[
"0.0000"
]
]
},
{
"question": "What is the SKU for the product with entity_id 2040?",
"answer": "The SKU for the product with entity_id 2040 is WSH12.",
"sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
"sql_execute_result": [
[
"WSH12"
]
]
},
{
"question": "How many products are associated with category ID 258?",
"answer": 0,
"sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 258;",
"sql_execute_result": [
[
0
]
]
},
{
"question": "What is the average product price in the sales_bestsellers_aggregated_monthly table for store_id 0?",
"answer": 41.31,
"sql": "SELECT AVG(product_price) FROM sales_bestsellers_aggregated_monthly WHERE store_id = 0;",
"sql_execute_result": [
[
"41.31182556"
]
]
},
{
"question": "What is the SKU of the product with entity ID 1013?",
"answer": "MSH11-36-Blue",
"sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1013;",
"sql_execute_result": [
[
"MSH11-36-Blue"
]
]
},
{
"question": "How many results were returned for the search query 'hollister'?",
"answer": 1,
"sql": "SELECT num_results FROM search_query WHERE query_text = 'hollister';",
"sql_execute_result": [
[
1
]
]
},
{
"question": "What is the name of the customer with customer ID 5?",
"answer": "Sarah Miller",
"sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE entity_id = 5;",
"sql_execute_result": [
[
"Sarah Miller"
]
]
},
{
"question": "What is the total stock quantity for product ID 143?",
"answer": "The total stock quantity for product ID 143 is 100.",
"sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 143;",
"sql_execute_result": [
[
"100.0000"
]
]
},
{
"question": "What is the category path for the category with entity ID 29?",
"answer": "The category path for the category with entity ID 29 is '1/2/29'.",
"sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 29;",
"sql_execute_result": [
[
"1/2/29"
]
]
},
{
"question": "What is the base price of the product with entity ID 918?",
"answer": "The base price of the product with entity ID 918 is 32.50.",
"sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 918 AND attribute_id = 77;",
"sql_execute_result": [
[
"32.500000"
]
]
},
{
"question": "What is the email address of the customer with entity ID 3?",
"answer": "jane.doe@hotmail.com",
"sql": "SELECT email FROM customer_entity WHERE entity_id = 3;",
"sql_execute_result": [
[
"jane.doe@hotmail.com"
]
]
},
{
"question": "What is the SKU of the product with entity_id 1536?",
"answer": "The SKU of the product with entity_id 1536 is WS11-L-Yellow.",
"sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1536;",
"sql_execute_result": [
[
"WS11-L-Yellow"
]
]
},
{
"question": "Find the email address associated with the order having address entity_id 389.",
"answer": "lisa.kim@gmail.com",
"sql": "SELECT email FROM sales_order_address WHERE entity_id = 389;",
"sql_execute_result": [
[
"lisa.kim@gmail.com"
]
]
},
{
"question": "What is the product name of the bestseller item with product_id 1980 in the year 2022?",
"answer": "Bess Yoga Short-32-Blue",
"sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1980 AND period = '2022-01-01';",
"sql_execute_result": [
[
"Bess Yoga Short-32-Blue"
],
[
"Bess Yoga Short-32-Blue"
]
]
},
{
"question": "What is the value associated with the option having option_id 114?",
"answer": "Track Pants",
"sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 114;",
"sql_execute_result": [
[
"Track Pants"
]
]
},
{
"question": "What is the street address for the shipping address with entity_id 299?",
"answer": "789 Rodeo Drive",
"sql": "SELECT street FROM sales_order_address WHERE entity_id = 299;",
"sql_execute_result": [
[
"789 Rodeo Drive"
]
]
},
{
"question": "What is the rating position of the product 'Kratos Gym Pant-32-Green' for the year 2022?",
"answer": [
93,
214
],
"sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Kratos Gym Pant-32-Green' AND period = '2022-01-01';",
"sql_execute_result": [
[
93
],
[
214
]
]
},
{
"question": "What is the first name associated with the billing address having entity_id 322?",
"answer": "Samantha",
"sql": "SELECT firstname FROM sales_order_address WHERE entity_id = 322;",
"sql_execute_result": [
[
"Samantha"
]
]
},
{
"question": "Find the SKU of the product with entity_id 1268.",
"answer": "WJ04",
"sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1268;",
"sql_execute_result": [
[
"WJ04"
]
]
},
{
"question": "What is the created timestamp for the product with SKU 'MJ07-XS-Black'?",
"answer": "The created timestamp for the product with SKU 'MJ07-XS-Black' is 2023-04-19 16:13:28.",
"sql": "SELECT created_at FROM catalog_product_entity WHERE sku = 'MJ07-XS-Black';",
"sql_execute_result": [
[
"2023-04-19 16:13:28"
]
]
},
{
"question": "What is the postal code for the address with entity_id 346?",
"answer": "10001",
"sql": "SELECT postcode FROM sales_order_address WHERE entity_id = 346;",
"sql_execute_result": [
[
"10001"
]
]
},
{
"question": "What is the status code for the review status with ID 3?",
"answer": "Not Approved",
"sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
"sql_execute_result": [
[
"Not Approved"
]
]
},
{
"question": "How many orders were canceled on 2022-11-22?",
"answer": 2,
"sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-11-22' AND order_status = 'canceled';",
"sql_execute_result": [
[
1
],
[
1
]
]
},
{
"question": "Find the default name for the region with the code 'VE-D'.",
"answer": "Aragua",
"sql": "SELECT default_name FROM directory_country_region WHERE code = 'VE-D';",
"sql_execute_result": [
[
"Aragua"
]
]
},
{
"question": "What is the total income amount for store ID 1 on 2022-07-01?",
"answer": "The total income amount for store ID 1 on 2022-07-01 is 168.8000.",
"sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-07-01' AND store_id = 1;",
"sql_execute_result": [
[
"168.8000"
]
]
},
{
"question": "What is the frontend label for the attribute with the code 'performance_fabric'?",
"answer": "Performance Fabric",
"sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'performance_fabric';",
"sql_execute_result": [
[
"Performance Fabric"
]
]
},
{
"question": "What is the price value for the product with entity ID 1489?",
"answer": "The price value for the product with entity ID 1489 is 32.00.",
"sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1489 AND attribute_id = 77;",
"sql_execute_result": [
[
"32.000000"
]
]
},
{
"question": "What is the attribute code for the attribute with ID 46?",
"answer": "The attribute code for the attribute with ID 46 is 'is_active'.",
"sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 46;",
"sql_execute_result": [
[
"is_active"
]
]
},
{
"question": "Which country has the region code 'BG-23'?",
"answer": "The country with the region code 'BG-23' is BG.",
"sql": "SELECT country_id FROM directory_country_region WHERE code = 'BG-23';",
"sql_execute_result": [
[
"BG"
]
]
},
{
"question": "What is the frontend input type for the attribute with the code 'price_type'?",
"answer": "The frontend input type for the attribute with the code 'price_type' is 'boolean'.",
"sql": "SELECT frontend_input FROM eav_attribute WHERE attribute_code = 'price_type';",
"sql_execute_result": [
[
"boolean"
]
]
},
{
"question": "Find the total shipping amount for orders on 2023-02-22.",
"answer": "The total shipping amounts for orders on 2023-02-22 are 25.0000 and 25.0000.",
"sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2023-02-22';",
"sql_execute_result": [
[
"25.0000"
],
[
"25.0000"
]
]
}
]